| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- // Licensed to Cloudera, Inc. under one
- // or more contributor license agreements. See the NOTICE file
- // distributed with this work for additional information
- // regarding copyright ownership. Cloudera, Inc. 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.
- /*
- * jHue Blueprint plugin
- * it's a layer of abstraction on top of other chart/drawing/mapping plugins
- */
- jQuery.cachedScripts = {};
- jQuery.cacheScript = function (url, callback) {
- if (jQuery.cachedScripts != null && jQuery.cachedScripts[url] != null) {
- callback(jQuery.cachedScripts[url]);
- }
- else {
- var options = $.extend({}, {
- dataType: "script",
- cache: true,
- url: url,
- async: false,
- complete: function (script) {
- jQuery.cachedScripts[url] = script;
- callback(script);
- }
- });
- return jQuery.ajax(options);
- }
- };
- var FLOT_LOADED, FLOT_PIE_LOADED = false;
- (function ($, window, document, undefined) {
- var pluginName = "jHueBlueprint",
- COLORS = {
- ORANGE: "#FB950D",
- GREEN: "#419E08",
- BLUE: "#338BB8"
- },
- TYPES = {
- LINECHART: "lines",
- BARCHART: "bars",
- POINTCHART: "points",
- PIECHART: "pie",
- MAP: "map"
- },
- defaults = {
- data: [],
- type: TYPES.LINECHART,
- fill: false,
- width: "100%",
- height: 200
- };
- function Plugin(element, options) {
- this.element = element;
- this.options = $.extend({}, defaults, options);
- this._defaults = defaults;
- this._name = pluginName;
- this.init();
- }
- Plugin.prototype.init = function () {
- var _this = this;
- $.cacheScript("/static/ext/js/jquery/plugins/jquery.flot.min.js", function (script, textStatus) {
- FLOT_LOADED = true;
- if (_this.options.type == TYPES.PIECHART) {
- $.cacheScript("/static/ext/js/jquery/plugins/jquery.flot.pie.min.js", function (script, textStatus) {
- FLOT_PIE_LOADED = true;
- flot_pie(_this);
- });
- }
- else {
- flot(_this);
- }
- });
- };
- Plugin.prototype.setOptions = function (options) {
- this.options = $.extend({}, defaults, options);
- };
- function addSerie(element, serie) {
- if (!FLOT_LOADED) {
- window.setTimeout(function () {
- addSerie(element, serie);
- }, 500)
- }
- else {
- var _series = $(element).data("plotSeries");
- if (_series == null) {
- if (typeof console != "undefined") {
- console.warn("$(elem).jHueBlueprint('add', options) requires an existing data serie to work. Use $(elem).jHueBlueprint(options) instead.");
- }
- }
- else {
- _series.push(getSerie(serie));
- var _plot = $.plot(element, _series);
- $(element).data("plotObj", _plot);
- $(element).data("plotSeries", _series);
- }
- }
- };
- function flot(plugin) {
- var _this = plugin;
- $(_this.element).width(_this.options.width).height(_this.options.height);
- var _serie = getSerie(_this.options);
- var _plot = $.plot(_this.element, [_serie]);
- $(_this.element).data("plotObj", _plot);
- $(_this.element).data("plotSeries", [_serie]);
- }
- function flot_pie(plugin) {
- var _this = plugin;
- $(_this.element).width(_this.options.width).height(_this.options.height);
- var _plot = $.plot(_this.element, _this.options.data, {
- series: {
- pie: {
- show: true
- }
- }
- });
- $(_this.element).data("plotObj", _plot);
- }
- function getSerie(options) {
- var _flotSerie = {
- data: options.data
- }
- if (options.type == TYPES.LINECHART) {
- _flotSerie.lines = {show: true, fill: options.fill }
- }
- if (options.type == TYPES.BARCHART) {
- _flotSerie.bars = {show: true, fill: options.fill }
- }
- if (options.type == TYPES.POINTCHART) {
- _flotSerie.points = {show: true}
- }
- if (options.type == TYPES.PIECHART) {
- _flotSerie.pie = {show: true}
- }
- if (options.color != null) {
- _flotSerie.color = options.color;
- }
- return _flotSerie;
- }
- $.fn[pluginName] = function (options) {
- var _args = Array.prototype.slice.call(arguments);
- if (_args.length == 1) {
- return this.each(function () {
- if (!$.data(this, 'plugin_' + pluginName)) {
- $.data(this, 'plugin_' + pluginName, new Plugin(this, options));
- }
- });
- }
- else {
- if (_args[0] == "add") { // add a serie to the graph
- addSerie(this, _args[1]);
- }
- }
- }
- $[pluginName] = function (options) {
- if (typeof console != "undefined") {
- console.warn("$(elem).jHueBlueprint() is a preferred call method.");
- }
- $(options.element).jHueBlueprint(options);
- };
- $[pluginName].COLORS = COLORS;
- $[pluginName].TYPES = TYPES;
- })(jQuery, window, document);
|