UNPKG

@quartic/bokehjs

Version:

Interactive, novel data visualization

98 lines (74 loc) 2.35 kB
var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; import { BokehView } from "core/bokeh_view"; import { Tool, ToolView } from "./tool"; import { div, span, empty } from "core/dom"; import * as p from "core/properties"; export var ButtonToolButtonView = (function(superClass) { extend(ButtonToolButtonView, superClass); function ButtonToolButtonView() { return ButtonToolButtonView.__super__.constructor.apply(this, arguments); } ButtonToolButtonView.prototype.className = "bk-toolbar-button"; ButtonToolButtonView.prototype.initialize = function(options) { ButtonToolButtonView.__super__.initialize.call(this, options); this.listenTo(this.model, 'change', (function(_this) { return function() { return _this.render(); }; })(this)); this.el.addEventListener("click", (function(_this) { return function(e) { return _this._clicked(e); }; })(this)); return this.render(); }; ButtonToolButtonView.prototype.render = function() { var icon, tip; empty(this.el); this.el.disabled = this.model.disabled; icon = div({ "class": ['bk-btn-icon', this.model.icon] }); tip = span({ "class": 'bk-tip' }, this.model.tooltip); this.el.appendChild(icon); return this.el.appendChild(tip); }; ButtonToolButtonView.prototype._clicked = function(e) {}; return ButtonToolButtonView; })(BokehView); export var ButtonToolView = (function(superClass) { extend(ButtonToolView, superClass); function ButtonToolView() { return ButtonToolView.__super__.constructor.apply(this, arguments); } return ButtonToolView; })(ToolView); export var ButtonTool = (function(superClass) { extend(ButtonTool, superClass); function ButtonTool() { return ButtonTool.__super__.constructor.apply(this, arguments); } ButtonTool.prototype.icon = null; ButtonTool.getters({ tooltip: function() { return this.tool_name; } }); ButtonTool.internal({ disabled: [p.Boolean, false] }); return ButtonTool; })(Tool);