mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-19 15:30:24 +00:00
71 lines
No EOL
1.8 KiB
JavaScript
71 lines
No EOL
1.8 KiB
JavaScript
(function($) {
|
|
// TODO this is entire thing sucks
|
|
$(function() {
|
|
var searchMap = (function() {
|
|
var searchSplit, searchMap = {};
|
|
|
|
if ( !location.search ){
|
|
return searchMap;
|
|
}
|
|
|
|
searchSplit = location.search.replace(/^\?/, "").split( /&|;/ );
|
|
|
|
for( var i = 0; i < searchSplit.length; i++ ) {
|
|
var kv = searchSplit[i].split(/=/);
|
|
searchMap[ kv[0] ] = kv[1];
|
|
}
|
|
|
|
return searchMap;
|
|
})();
|
|
|
|
$.get("../", searchMap, function(data) {
|
|
$.each(data, function( i, avg ) {
|
|
var tablename = avg.point + " " + avg.agent + " " + avg.agent_version + " " + avg.pathname,
|
|
$table = $( "table > caption:contains(" + tablename + ")").parent();
|
|
|
|
if( !$table.length ) {
|
|
$table = $( "<table></table>", {
|
|
"data-pathname": avg.pathname,
|
|
"data-point": avg.point,
|
|
"data-agent": avg.agent,
|
|
"data-agent-version": avg.agent_version
|
|
});
|
|
|
|
$table.append( "<caption>" + tablename + "</caption>");
|
|
$table.append( "<thead><tr></tr></thead>" );
|
|
$table.append( "<tbody><tr></tr></tbody>" );
|
|
}
|
|
|
|
// TODO assume time ordering in the data set
|
|
var $heading = $table.find("thead > tr > th:contains(" + avg.day + ")");
|
|
|
|
if( !$heading.length ) {
|
|
$heading = $("<th></th>", {
|
|
text: avg.day,
|
|
scope: "column"
|
|
});
|
|
|
|
$table.find("thead > tr").append($heading);
|
|
}
|
|
|
|
var $rowHeading = $table.find("tbody > tr > th:contains(" + avg.point + ")" ),
|
|
$row = $table.find( "tbody > tr" );
|
|
|
|
if( !$rowHeading.length ) {
|
|
$rowHeading = $("<th></th>", {
|
|
text: avg.point,
|
|
scope: "row"
|
|
});
|
|
|
|
$row.append( $rowHeading );
|
|
}
|
|
|
|
$row.append( "<td>" + avg.avg_value + "</td>" );
|
|
|
|
$("#tables").append($table);
|
|
});
|
|
|
|
$("#tables table").visualize({ type: "bar", width: 400, height: 400 }).appendTo("#graphs");
|
|
});
|
|
});
|
|
})(jQuery); |