Added reasonable back/forward support to menus, and give each view its own URL.
This commit is contained in:
Родитель
2ac8bc5910
Коммит
31a5c3c6e0
124
website/awfy.js
124
website/awfy.js
|
@ -6,11 +6,12 @@ AWFY.refreshTime = 1000 * 60 * 5;
|
|||
AWFY.machineId = 0;
|
||||
AWFY.hasLegend = false;
|
||||
AWFY.panes = [];
|
||||
AWFY.queryParams = {};
|
||||
AWFY.queryParams = null;
|
||||
AWFY.aggregate = null;
|
||||
AWFY.xhr = [];
|
||||
AWFY.view = 'overview';
|
||||
AWFY.view = 'none';
|
||||
AWFY.suiteName = null;
|
||||
AWFY.lastHash = null;
|
||||
|
||||
AWFY.request = function (files, callback) {
|
||||
var url = window.location.protocol + '//' +
|
||||
|
@ -44,6 +45,27 @@ AWFY.request = function (files, callback) {
|
|||
}
|
||||
}
|
||||
|
||||
AWFY.pushState = function () {
|
||||
// Build URL query.
|
||||
var vars = []
|
||||
vars.push('machine=' + this.machineId);
|
||||
|
||||
if (this.view == 'breakdown') {
|
||||
vars.push('view=breakdown');
|
||||
vars.push('suite=' + this.suiteName);
|
||||
}
|
||||
|
||||
if ($('#about').is(':visible'))
|
||||
vars.push('about=1');
|
||||
|
||||
var text = '#' + vars.join('&');
|
||||
this.lastHash = text;
|
||||
if (window.history.pushState)
|
||||
window.history.pushState(null, 'AreWeFastYet', text);
|
||||
else
|
||||
window.location.hash = '#' + text;
|
||||
}
|
||||
|
||||
AWFY.loadAggregateGraph = function (blobgraph) {
|
||||
var lines = [];
|
||||
for (var i = 0; i < blobgraph.lines.length; i++) {
|
||||
|
@ -505,39 +527,97 @@ AWFY.reset = function (view) {
|
|||
this.xhr = [];
|
||||
}
|
||||
|
||||
AWFY.startup = function () {
|
||||
this.panes = [$('#ss-graph'),
|
||||
$('#kraken-graph'),
|
||||
$('#v8real-graph')];
|
||||
AWFY.onHashChange = function () {
|
||||
this.parseURL();
|
||||
}
|
||||
|
||||
var query = window.location.search.substring(1);
|
||||
AWFY.parseURL = function () {
|
||||
if (this.lastHash == window.location.hash)
|
||||
return;
|
||||
|
||||
var query = window.location.hash.substring(1);
|
||||
var items = query.split('&');
|
||||
this.queryParams = {};
|
||||
for (var i = 0; i < items.length; i++) {
|
||||
var item = items[i].split('=');
|
||||
this.queryParams[item[0]] = item[1];
|
||||
}
|
||||
|
||||
var machineId;
|
||||
if ('machine' in this.queryParams)
|
||||
this.machineId = parseInt(this.queryParams['machine']);
|
||||
machineId = parseInt(this.queryParams['machine']);
|
||||
else
|
||||
this.machineId = 11;
|
||||
machineId = 11;
|
||||
|
||||
this.request(['aggregate-' + this.machineId],
|
||||
this.computeAggregate.bind(this));
|
||||
var view = this.queryParams['view'];
|
||||
if (!view || (view != 'overview' && view != 'breakdown'))
|
||||
view = 'overview';
|
||||
if (view == 'breakdown') {
|
||||
var suiteName = this.queryParams['suite'];
|
||||
if (!suiteName || !AWFYMaster.suites[suiteName])
|
||||
view = 'overview';
|
||||
}
|
||||
|
||||
// Make sure the menus are up to date.
|
||||
if (this.view != 'none') {
|
||||
if (this.machineId != machineId) {
|
||||
$('#machinelist .clicked').removeClass('clicked');
|
||||
$('#machine' + machineId).addClass('clicked');
|
||||
}
|
||||
$('#breakdownlist .clicked').removeClass('clicked');
|
||||
if (view == 'overview')
|
||||
$('#suite-overview').addClass('clicked');
|
||||
else if (view == 'breakdown')
|
||||
$('#suite-' + suiteName).addClass('clicked');
|
||||
}
|
||||
|
||||
if (view == this.view) {
|
||||
// See if we just need to change the current machine.
|
||||
if (view == 'overview') {
|
||||
if (machineId != this.machineId)
|
||||
this.changeMachine(machineId);
|
||||
return;
|
||||
} else if (view == 'breakdown') {
|
||||
if (suiteName == this.suiteName) {
|
||||
if (machineId != this.machineId)
|
||||
this.changeMachine(machineId);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Nope.
|
||||
this.machineId = machineId;
|
||||
|
||||
if (view == 'overview')
|
||||
this.showOverview();
|
||||
else if (view == 'breakdown')
|
||||
this.showBreakdown(suiteName);
|
||||
|
||||
this.lastHash = window.location.hash;
|
||||
}
|
||||
|
||||
AWFY.startup = function () {
|
||||
this.panes = [$('#ss-graph'),
|
||||
$('#kraken-graph'),
|
||||
$('#v8real-graph')];
|
||||
|
||||
this.parseURL();
|
||||
|
||||
// Add machine information to the menu.
|
||||
var menu = $('#machinelist');
|
||||
for (var id in AWFYMaster.machines) {
|
||||
var machine = AWFYMaster.machines[id];
|
||||
var li = $('<li></li>');
|
||||
var a = $('<a href="#"></a>');
|
||||
var a = $('<a href="#" id="machine' + id + '"></a>');
|
||||
a.click((function (id) {
|
||||
return (function (event) {
|
||||
this.changeMachine(parseInt(id));
|
||||
$('#machinelist .clicked').removeClass('clicked');
|
||||
$(event.target).addClass('clicked');
|
||||
this.pushState();
|
||||
return false;
|
||||
}).bind(this)
|
||||
}).bind(this);
|
||||
}).bind(this)(id));
|
||||
if (parseInt(id) == this.machineId)
|
||||
a.addClass('clicked');
|
||||
|
@ -559,26 +639,33 @@ AWFY.startup = function () {
|
|||
|
||||
var breakdown = $('#breakdownlist');
|
||||
|
||||
$('<a href="#" class="clicked"></a>').click(
|
||||
var home = $('<a href="#" id="suite-overview"></a>').click(
|
||||
(function (event) {
|
||||
$('#breakdownlist .clicked').removeClass('clicked');
|
||||
$(event.target).addClass('clicked');
|
||||
this.showOverview();
|
||||
this.pushState();
|
||||
return false;
|
||||
}).bind(this))
|
||||
.html('Overview')
|
||||
.appendTo($('<li></li>').appendTo(breakdown));
|
||||
if (this.view == 'overview')
|
||||
home.addClass('clicked');
|
||||
|
||||
for (var name in AWFYMaster.suites) {
|
||||
var li = $('<li></li>');
|
||||
var a = $('<a href="#"></a>');
|
||||
var a = $('<a href="#" id="suite-' + name + '"></a>');
|
||||
a.click((function (name) {
|
||||
return (function(event) {
|
||||
$('#breakdownlist .clicked').removeClass('clicked');
|
||||
$(event.target).addClass('clicked');
|
||||
this.showBreakdown(name);
|
||||
this.pushState();
|
||||
return false;
|
||||
}).bind(this);
|
||||
}).bind(this)(name));
|
||||
if (this.view == 'breakdown' && this.suiteName == name)
|
||||
a.addClass('clicked');
|
||||
a.html(AWFYMaster.suites[name].description);
|
||||
a.appendTo(li);
|
||||
li.appendTo(breakdown);
|
||||
|
@ -611,7 +698,14 @@ AWFY.startup = function () {
|
|||
}
|
||||
menu.hide();
|
||||
breakdown.hide();
|
||||
this.pushState();
|
||||
return false;
|
||||
}).bind(this));
|
||||
|
||||
if (this.queryParams['help'])
|
||||
about.trigger('click');
|
||||
|
||||
$(window).hashchange(this.onHashChange.bind(this));
|
||||
$(window).bind('popstate', this.onHashChange.bind(this));
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
<link rel="stylesheet" title="Default Stylesheet" type="text/css" href="style.css">
|
||||
<link rel="shortcut icon" href="http://www.arewefastyet.com/awfy_favicon.png">
|
||||
<script type="text/javascript" src="jquery/jquery-1.8.3.min.js"></script>
|
||||
<script type="text/javascript" src="jquery/jquery.ba-hashchange.min.js"></script>
|
||||
<script type="text/javascript" src="flot/jquery.flot.js"></script>
|
||||
<script type="text/javascript" src="flot/jquery.flot.selection.js"></script>
|
||||
<script type="text/javascript" src="data/master.js"></script>
|
||||
<script type="text/javascript" src="awfy.js"></script>
|
||||
<script type="text/javascript" src="frontpage.js"></script>
|
||||
|
@ -16,14 +18,24 @@
|
|||
<body>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
AWFY.refresh = true;
|
||||
AWFY.panes = ['kraken', 'ss', 'v8real'];
|
||||
AWFY.startup();
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="graph-row">
|
||||
<ul id="legend"></ul>
|
||||
<div id="navcontainer">
|
||||
<ul id="legend"></ul>
|
||||
<br><br>
|
||||
<ul class="menu">
|
||||
<li><a href="#" id="machinedrop">Machines</a> »
|
||||
<ul id="machinelist"></ul>
|
||||
</li>
|
||||
<li><a href="#" id="bkdrop">Breakdown</a> »
|
||||
<ul id="breakdownlist"></ul>
|
||||
</li>
|
||||
<li><a href='#' id="aboutdrop">About</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="graph-container">
|
||||
<div id="kraken-label">kraken time</div>
|
||||
<div class="graph" id="kraken-graph"><h2>Loading...</h2></div>
|
||||
|
@ -43,6 +55,62 @@
|
|||
<div class="graph" id="v8real-graph"><h2>Loading...</h2></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="breakdown">
|
||||
</div>
|
||||
<div id="about">
|
||||
<h2>AreWeFastYet: tracking performance of popular JavaScript engines</h2>
|
||||
<strong>Basic usage:</strong>
|
||||
<ul>
|
||||
<li>The x-axis is the date we ran tests, and the y-axis is the score of the benchmark.</li>
|
||||
<li>The front page displays a hybrid of historical data, as well as the most recent samples.</li>
|
||||
<li>You can click on a datapoint to see a tooltip with more information.</li>
|
||||
<li>Tooltips can be dragged around, for easier comparison.</li>
|
||||
<li>Some benchmarks use time (lower is better), and some use points (higher is better). We orient all graphs so lower is better, visually.</li>
|
||||
<li>Use the "machine" menu to see different computers' benchmark results.</li>
|
||||
<li>Use the "view" menu to drill down into individual benchmarks.</li>
|
||||
<li>You can click and highlight any area of any graph to zoom in. It might pause to download data.</li>
|
||||
<li>You can unzoom by double-clicking inside a graph.</li>
|
||||
</ul>
|
||||
<strong>FAQ:</strong>
|
||||
<ul>
|
||||
<li>
|
||||
<p>Who maintains this site?</p>
|
||||
<p>This site is maintained by Mozilla's JavaScript team.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>How does it work?</p>
|
||||
<p>AWFY is automated. Throughout the day, we checkout the latest source code to each available JavaScript engine, and compile it. Then we run it through some benchmark suites, and tally up the scores into a database. This data gets exported as JSON which can then be easily plotted.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Why aren't Opera or IE available?</p>
|
||||
<p>AWFY currently runs standalone, command-line JavaScript shells - not the web browsers that embed them. Opera doesn't provide a standalone shell, and IE doesn't work on Mac or Linux (which is where we benchmark right now).</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>What are the graphs?</p>
|
||||
<p>The top left-hand graph is Mozilla's Kraken benchmark. The top right-hand graph is Apple's SunSpider benchmark. The bottom graph is Google's V8 benchmark suite.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>What do the hover tips mean?</p>
|
||||
<p>"Source" is where we got the engine from. "Tested" is when we downloaded the engine, compiled, and tested it. "Rev" is the unique point in the engine's revision history we tested. If the datapoint represents a range, there may be multiple revs. These numbers/strings are for developers to see which changes happened in between points in the graph.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>What's ARM?</p>
|
||||
<p>ARM is the CPU present in many embedded devices, like smartphones. We're interested in this for mobile Firefox and Firefox OS.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Is this open source?</p>
|
||||
<p>Fo' sho', <a href="https://github.com/dvander/arewefastyet">https://github.com/dvander/arewefastyet</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Can I still see the original AWFY, from the JaegerMonkey days?</p>
|
||||
<p>Yup: <a href="http://arewefastyet.com/historic/old-awfy.php">http://arewefastyet.com/historic/old-awfy.php</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Suggestions?</p>
|
||||
<p><a href="mailto:danderson@mozilla.com">e-mail</a></p>
|
||||
</ul>
|
||||
</div>
|
||||
<br>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Загрузка…
Ссылка в новой задаче