-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10a1edd
commit c920355
Showing
14 changed files
with
217 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
var $ = window.$ = require('jquery'); | ||
var jQuery = window.jQuery = $; | ||
var px = require('./modules/dashed.js'); | ||
|
||
require('../stylesheets/dashed.css'); | ||
require('../stylesheets/welcome.css'); | ||
|
||
require('bootstrap'); | ||
require('datatables'); | ||
require('d3'); | ||
|
||
require('../node_modules/cal-heatmap/cal-heatmap.css'); | ||
var CalHeatMap = require('cal-heatmap'); | ||
|
||
|
||
|
||
function modelViewTable(selector, modelEndpoint, ordering) { | ||
// Builds a dataTable from a flask appbuilder api endpoint | ||
$.getJSON(modelEndpoint + '/api/read', function (data) { | ||
var tableData = jQuery.map(data.result, function(el, i) { | ||
var row = $.map(data.list_columns, function(col, i) { | ||
return el[col]; | ||
}); | ||
return [row]; | ||
}); | ||
var cols = jQuery.map(data.list_columns, function(col, i) { | ||
return { "sTitle": data.label_columns[col] } | ||
}); | ||
$(selector).DataTable({ | ||
aaData: tableData, | ||
aoColumns: cols, | ||
bPaginate: false, | ||
order: ordering, | ||
searching: false | ||
}); | ||
$('[data-toggle="tooltip"]').tooltip({ container: 'body' }); | ||
}); | ||
} | ||
|
||
$(document).ready(function () { | ||
var cal = new CalHeatMap(); | ||
cal.init({ | ||
start: new Date().setFullYear(new Date().getFullYear() - 1), | ||
range: 13, | ||
data: '/dashed/activity_per_day', | ||
domain : "month", | ||
subDomain : "day", | ||
itemName: "action", | ||
tooltip: true | ||
}); | ||
modelViewTable('#dash_table', '/dashboardmodelviewasync'); | ||
modelViewTable('#slice_table', '/sliceasync'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.welcome .widget{ | ||
border-radius: 0; | ||
border: 1px solid #ccc; | ||
box-shadow: 2px 1px 5px -2px #aaa; | ||
background-color: #fff; | ||
} | ||
|
||
.welcome .widget .header { | ||
background-color: #f1f1f1; | ||
text-align: center; | ||
} | ||
|
||
.welcome .widget>div { | ||
padding: 3px; | ||
overflow: auto; | ||
max-height: 500px; | ||
} | ||
|
||
.table i { | ||
padding-top: 6px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
"""log dt | ||
Revision ID: 1d2ddd543133 | ||
Revises: d2424a248d63 | ||
Create Date: 2016-03-25 14:35:44.642576 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '1d2ddd543133' | ||
down_revision = 'd2424a248d63' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
def upgrade(): | ||
op.add_column('logs', sa.Column('dt', sa.Date(), nullable=True)) | ||
|
||
|
||
def downgrade(): | ||
op.drop_column('logs', 'dt') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{% extends "dashed/basic.html" %} | ||
|
||
{% block head_js %} | ||
{{ super() }} | ||
<script src="/static/assets/javascripts/dist/welcome.entry.js"></script> | ||
{% endblock %} | ||
|
||
{% block title %}Welcome!{% endblock %} | ||
|
||
{% block body %} | ||
<div class="container welcome"> | ||
<div class="header"> | ||
<h3><i class='fa fa-star'></i> Welcome!</h3> | ||
</div> | ||
<hr/> | ||
<div id="cal-heatmap"></div> | ||
<hr/> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="widget"> | ||
<div class="header"><h4><i class="fa fa-dashboard"></i> Dashboards</h4></div> | ||
<div> | ||
<table id="dash_table" class="table"></table> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="widget"> | ||
<div class="header"><h4><i class="fa fa-bar-chart"></i> Slices</h4></div> | ||
<div> | ||
<table id="slice_table" class="table"></table> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<hr/> | ||
{% endblock %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.