123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with this
- * work for additional information regarding copyright ownership. The ASF
- * licenses this file to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- var App = require('app');
- var string_utils = require('utils/string_utils');
- /**
- * @class
- *
- * This is a view which GETs data from a URL and shows it as a time based line
- * graph. Time is shown on the X axis with data series shown on Y axis. It
- * optionally also has the ability to auto refresh itself over a given time
- * interval.
- *
- * This is an abstract class which is meant to be extended.
- *
- * Extending classes should override the following:
- * <ul>
- * <li>url - from where the data can be retrieved
- * <li>title - Title to be displayed when showing the chart
- * <li>id - which uniquely identifies this chart in any page
- * <li>#transformToSeries(jsonData) - function to map server data into graph
- * series
- * </ul>
- *
- * Extending classes could optionally override the following:
- * <ul>
- * <li>#colorForSeries(series) - function to get custom colors per series
- * </ul>
- *
- * @extends Ember.Object
- * @extends Ember.View
- */
- App.ChartLinearTimeView = Ember.View.extend({
- templateName: require('templates/main/charts/linear_time'),
- /**
- * The URL from which data can be retrieved.
- *
- * This property must be provided for the graph to show properly.
- *
- * @type String
- * @default null
- */
- url: null,
- /**
- * A unique ID for this chart.
- *
- * @type String
- * @default null
- */
- id: null,
- /**
- * Title to be shown under the chart.
- *
- * @type String
- * @default null
- */
- title: null,
- /**
- * @private
- *
- * @type Rickshaw.Graph
- * @default null
- */
- _graph: null,
- _popupGraph: null,
- popupSuffix: '-popup',
- isPopup: false,
- /**
- * Color palette used for this chart
- *
- * @private
- * @type String[]
- */
- _paletteScheme: [ 'rgba(181,182,169,0.4)', 'rgba(133,135,114,0.4)',
- 'rgba(120,95,67,0.4)', 'rgba(150,85,126,0.4)',
- 'rgba(70,130,180,0.4)', 'rgba(0,255,204,0.4)',
- 'rgba(255,105,180,0.4)', 'rgba(101,185,172,0.4)',
- 'rgba(115,192,58,0.4)', 'rgba(203,81,58,0.4)' ].reverse(),
- init: function () {
- this._super();
- },
- selector: function () {
- return '#' + this.get('elementId');
- }.property('elementId'),
- didInsertElement: function () {
- this._super();
- this.loadData();
- this.registerGraph();
- },
- registerGraph: function(){
- var graph = {
- name: this.get('title'),
- id: this.get('elementId'),
- popupId: this.get('id')
- };
- App.router.get('updateController.graphs').push(graph);
- },
- loadData: function() {
- var validUrl = this.get('url');
- if (validUrl) {
- var hash = {};
- hash.url = validUrl;
- hash.type = 'GET';
- hash.dataType = 'json';
- hash.contentType = 'application/json; charset=utf-8';
- hash.context = this;
- hash.success = this._refreshGraph;
- hash.error = function (xhr, textStatus, errorThrown) {
- this._showMessage('warn', 'Error', 'There was a problem getting data for the chart (' + textStatus + ': ' + errorThrown + ')');
- }
- jQuery.ajax(hash);
- }
- },
-
- /**
- * Shows a yellow warning message in place of the chart.
- *
- * @param type Can be any of 'warn', 'error', 'info', 'success'
- * @param title Bolded title for the message
- * @param message String representing the message
- * @type: Function
- */
- _showMessage: function(type, title, message){
- var chartOverlayId = '#' + this.id + '-chart';
- if (this.get('isPopup')) {
- chartOverlayId += this.get('popupSuffix');
- }
- var typeClass;
- switch (type) {
- case 'error':
- typeClass = 'alert-error';
- break;
- case 'success':
- typeClass = 'alert-success';
- break;
- case 'info':
- typeClass = 'alert-info';
- break;
- default:
- typeClass = '';
- break;
- }
- $(chartOverlayId).html('');
- $(chartOverlayId).append('<div class=\"alert '+typeClass+'\"><strong>'+title+'</strong> '+message+'</div>');
- },
- /**
- * Transforms the JSON data retrieved from the server into the series
- * format that Rickshaw.Graph understands.
- *
- * The series object is generally in the following format: [ { name :
- * "Series 1", data : [ { x : 0, y : 0 }, { x : 1, y : 1 } ] } ]
- *
- * Extending classes should override this method.
- *
- * @param jsonData
- * Data retrieved from the server
- * @type: Function
- *
- */
- transformToSeries: function (jsonData) {
- return [ {
- name: "Series 1",
- data: [ {
- x: 0,
- y: 0
- }, {
- x: 1,
- y: 1
- } ]
- } ]
- },
- /**
- * Provides the formatter to use in displaying Y axis.
- *
- * The default is Rickshaw.Fixtures.Number.formatKMBT which shows 10K,
- * 300M etc.
- *
- * @type Function
- */
- yAxisFormatter: function(y) {
- var value = Rickshaw.Fixtures.Number.formatKMBT(y);
- if (value == '') return '0';
- value = String(value);
- var c = value[value.length - 1];
- if (!isNaN(parseInt(c))) {
- // c is digit
- value = parseFloat(value).toFixed(3);
- }
- else {
- // c in not digit
- value = parseFloat(value.substr(0, value.length - 1)).toFixed(3) + c;
- }
- return value;
- },
- /**
- * Provides the color (in any HTML color format) to use for a particular
- * series.
- *
- * @param series
- * Series for which color is being requested
- * @return color String. Returning null allows this chart to pick a color
- * from palette.
- * @default null
- * @type Function
- */
- colorForSeries: function (series) {
- return null;
- },
- /**
- * @private
- *
- * Refreshes the graph with the latest JSON data.
- *
- * @type Function
- */
- _refreshGraph: function (jsonData) {
- var seriesData = this.transformToSeries(jsonData);
- if (seriesData instanceof Array && seriesData.length>0) {
- this.draw(seriesData);
- }
- else {
- this._showMessage('info', 'No Data', 'There was no data available.');
- }
- },
-
- /**
- * Returns a custom time unit for the graph's X axis. This is needed
- * as Rickshaw's default time X axis uses UTC time, which can be confusing
- * for users expecting locale specific time. This value defaults to
- * App.ChartLinearTimeView.FifteenMinuteTimeUnit.
- *
- * If <code>null</code> is returned, Rickshaw's default time unit is used.
- *
- * @type Function
- * @return Rickshaw.Fixtures.Time
- * @default App.ChartLinearTimeView.FifteenMinuteTimeUnit
- */
- localeTimeUnit: function(){
- return App.ChartLinearTimeView.FifteenMinuteTimeUnit;
- },
- /**
- * @private
- *
- * When a graph is given a particular width and height,the lines are drawn
- * in a slightly bigger area thereby chopping off some of the UI. Hence
- * after the rendering, we adjust the SVGs size in the DOM to compensate.
- *
- * Opened https://github.com/shutterstock/rickshaw/issues/141
- *
- * @type Function
- */
- _adjustSVGHeight: function () {
- if (this._graph && this._graph.element
- && this._graph.element.firstChild) {
- var svgElement = this._graph.element.firstChild;
- svgElement.setAttribute('height', $(this._graph.element).height()
- + "px");
- svgElement.setAttribute('width', $(this._graph.element).width()
- + "px");
- }
- },
- draw: function(seriesData) {
- var isPopup = this.get('isPopup');
- var p = '';
- if (isPopup) {
- p = this.get('popupSuffix');
- }
- var palette = new Rickshaw.Color.Palette({
- scheme: this._paletteScheme
- });
- seriesData.forEach(function (series) {
- series.color = /*this.colorForSeries(series) ||*/ palette.color();
- series.stroke = 'rgba(0,0,0,0.3)';
- if (isPopup) {
- // calculate statistic data for popup legend
- var avg = 0;
- var min = Number.MAX_VALUE;
- var max = Number.MIN_VALUE;
- for (var i = 0; i < series.data.length; i++) {
- avg += series.data[i]['y'];
- if (series.data[i]['y'] < min) {
- min = series.data[i]['y'];
- }
- else {
- if (series.data[i]['y'] > max) {
- max = series.data[i]['y'];
- }
- }
- }
- series.name = string_utils.pad(series.name, 30, ' ', 2) + string_utils.pad('min', 5, ' ', 3) + string_utils.pad(this.get('yAxisFormatter')(min), 12, ' ', 3) + string_utils.pad('avg', 5, ' ', 3) + string_utils.pad(this.get('yAxisFormatter')(avg/series.data.length), 12, ' ', 3) + string_utils.pad('max', 12, ' ', 3) + string_utils.pad(this.get('yAxisFormatter')(max), 5, ' ', 3);
- }
- }.bind(this));
- var chartId = "#" + this.id + "-chart" + p;
- var chartOverlayId = "#" + this.id + "-container" + p;
- var xaxisElementId = "#" + this.id + "-xaxis" + p;
- var yaxisElementId = "#" + this.id + "-yaxis" + p;
- var legendElementId = "#" + this.id + "-legend" + p;
- var timelineElementId = "#" + this.id + "-timeline" + p;
- var chartElement = document.querySelector(chartId);
- var overlayElement = document.querySelector(chartOverlayId);
- var xaxisElement = document.querySelector(xaxisElementId);
- var yaxisElement = document.querySelector(yaxisElementId);
- var legendElement = document.querySelector(legendElementId);
- var timelineElement = document.querySelector(timelineElementId);
- var _graph = new Rickshaw.Graph({
- height: 150,
- element: chartElement,
- series: seriesData,
- interpolation: 'step-after',
- stroke: true,
- renderer: 'area',
- strokeWidth: 1
- });
- _graph.renderer.unstack = false;
- xAxis = new Rickshaw.Graph.Axis.Time({
- graph: _graph,
- timeUnit: this.localeTimeUnit()
- });
- yAxis = new Rickshaw.Graph.Axis.Y({
- tickFormat: this.yAxisFormatter,
- element: yaxisElement,
- graph: _graph
- });
- var legend = new Rickshaw.Graph.Legend({
- graph: _graph,
- element: legendElement
- });
- if (!isPopup) {
- overlayElement.addEventListener('mousemove', function () {
- $(xaxisElement).removeClass('hide');
- $(legendElement).removeClass('hide');
- $(chartElement).children("div").removeClass('hide');
- });
- overlayElement.addEventListener('mouseout', function () {
- $(legendElement).addClass('hide');
- });
- _graph.onUpdate(function () {
- $(legendElement).addClass('hide');
- });
- }
- var shelving = new Rickshaw.Graph.Behavior.Series.Toggle({
- graph: _graph,
- legend: legend
- });
- var order = new Rickshaw.Graph.Behavior.Series.Order({
- graph: _graph,
- legend: legend
- });
- var annotator = new Rickshaw.Graph.Annotate({
- graph: _graph,
- element: timelineElement
- });
- _graph.render();
- if (isPopup) {
- var self = this;
- var hoverDetail = new Rickshaw.Graph.HoverDetail({
- graph: _graph,
- yFormatter:function (y) {
- return self.yAxisFormatter(y);
- },
- xFormatter:function (x) {
- return (new Date(x)).toLocaleTimeString();
- },
- formatter:function (series, x, y, formattedX, formattedY, d) {
- return formattedY + '<br />' + formattedX;
- }
- });
- }
- if (isPopup) {
- this.set('_popupGraph', _graph);
- }
- else {
- this.set('_graph', _graph);
- }
- this.set('isPopup', false);
- },
- showGraphInPopup: function() {
- this.set('isPopup', true);
- var self = this;
- App.ModalPopup.show({
- template: Ember.Handlebars.compile([
- '<div class="modal-backdrop"></div><div class="modal modal-graph-line" id="modal" tabindex="-1" role="dialog" aria-labelledby="modal-label" aria-hidden="true">',
- '<div class="modal-header">',
- '<a class="close" {{action onClose target="view"}}>x</a>',
- '<h3 id="modal-label">',
- '{{#if headerClass}}{{view headerClass}}',
- '{{else}}{{header}}{{/if}}',
- '</h3>',
- '</div>',
- '<div class="modal-body">',
- '{{#if bodyClass}}{{view bodyClass}}',
- '{{else}}'+
- '<div id="'+this.get('id')+'-container'+this.get('popupSuffix')+'" class="chart-container">'+
- '<div id="'+this.get('id')+'-yaxis'+this.get('popupSuffix')+'" class="'+this.get('id')+'-yaxis chart-y-axis"></div>'+
- '<div id="'+this.get('id')+'-xaxis'+this.get('popupSuffix')+'" class="'+this.get('id')+'-xaxis chart-x-axis"></div>'+
- '<div id="'+this.get('id')+'-legend'+this.get('popupSuffix')+'" class="'+this.get('id')+'-legend chart-legend"></div>'+
- '<div id="'+this.get('id')+'-chart'+this.get('popupSuffix')+'" class="'+this.get('id')+'-chart chart"></div>'+
- '<div id="'+this.get('id')+'-title'+this.get('popupSuffix')+'" class="'+this.get('id')+'-title chart-title">{{view.title}}</div>'+
- '<div id="'+this.get('id')+'-timeline'+this.get('popupSuffix')+'" class="'+this.get('id')+'-timeline timeline"></div>'+
- '</div>'+
- '{{/if}}',
- '</div>',
- '<div class="modal-footer">',
- '{{#if view.primary}}<a class="btn btn-success" {{action onPrimary target="view"}}>{{view.primary}}</a>{{/if}}',
- '</div>',
- '</div>'
- ].join('\n')),
- header: this.get('title'),
- primary: 'OK',
- onPrimary: function() {
- this.hide();
- self.set('isPopup', false);
- }
- });
- Ember.run.next(function() {
- self.loadData();
- });
- }
- });
- /**
- * A formatter which will turn a number into computer storage sizes of the
- * format '23 GB' etc.
- *
- * @type Function
- */
- App.ChartLinearTimeView.BytesFormatter = function (y) {
- if (y == 0) return '0 B';
- var value = Rickshaw.Fixtures.Number.formatBase1024KMGTP(y);
- if (!y || y.length < 1) {
- value = '0 B';
- }
- else {
- if ("number" == typeof value) {
- value = String(value);
- }
- if ("string" == typeof value) {
- value = value.replace(/\.\d+/, ''); // Remove decimal part
- // Either it ends with digit or ends with character
- value = value.replace(/(\d$)/, '$1 '); // Ends with digit like '120'
- value = value.replace(/([a-zA-Z]$)/, ' $1'); // Ends with character like
- // '120M'
- value = value + 'B'; // Append B to make B, MB, GB etc.
- }
- }
- return value;
- };
- /**
- * A formatter which will turn a number into percentage display like '42%'
- *
- * @type Function
- */
- App.ChartLinearTimeView.PercentageFormatter = function (percentage) {
- var value = percentage;
- if (!value || value.length < 1) {
- value = '0 %';
- } else {
- value = value.toFixed(3) + '%';
- }
- return value;
- };
- /**
- * A formatter which will turn elapsed time into display time like '50 ms',
- * '5s', '10 m', '3 hr' etc. Time is expected to be provided in milliseconds.
- *
- * @type Function
- */
- App.ChartLinearTimeView.TimeElapsedFormatter = function (millis) {
- var value = millis;
- if (!value || value.length < 1) {
- value = '0 ms';
- } else if ("number" == typeof millis) {
- var seconds = millis > 1000 ? Math.round(millis / 1000) : 0;
- var minutes = seconds > 60 ? Math.round(seconds / 60) : 0;
- var hours = minutes > 60 ? Math.round(minutes / 60) : 0;
- var days = hours > 24 ? Math.round(hours / 24) : 0;
- if (days > 0) {
- value = days + ' d';
- } else if (hours > 0) {
- value = hours + ' hr';
- } else if (minutes > 0) {
- value = minutes + ' m';
- } else if (seconds > 0) {
- value = seconds + ' s';
- } else if (millis > 0) {
- value = millis.toFixed(3) + ' ms';
- } else {
- value = millis.toFixed(3) + ' ms';
- }
- }
- return value;
- };
- /**
- * A time unit which can be used for showing 15 minute intervals on X axis.
- *
- * @type Rickshaw.Fixtures.Time
- */
- App.ChartLinearTimeView.FifteenMinuteTimeUnit = {
- name: '15 minute',
- seconds: 60 * 15,
- formatter: function (d) {
- return d.toLocaleString().match(/(\d+:\d+):/)[1];
- }
- };
|