@quartic/bokehjs
Version:
Interactive, novel data visualization
89 lines (88 loc) • 3.75 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
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, indexOf = [].indexOf || function (item) { for (var i = 0, l = this.length; i < l; i++) {
if (i in this && this[i] === item)
return i;
} return -1; };
var $ = require("jquery");
require("bootstrap/button");
var widget_1 = require("./widget");
var p = require("core/properties");
var button_group_template_1 = require("./button_group_template");
exports.CheckboxButtonGroupView = (function (superClass) {
extend(CheckboxButtonGroupView, superClass);
function CheckboxButtonGroupView() {
return CheckboxButtonGroupView.__super__.constructor.apply(this, arguments);
}
CheckboxButtonGroupView.prototype.events = {
"change input": "change_input"
};
CheckboxButtonGroupView.prototype.template = button_group_template_1.default;
CheckboxButtonGroupView.prototype.initialize = function (options) {
CheckboxButtonGroupView.__super__.initialize.call(this, options);
this.render();
return this.listenTo(this.model, 'change', this.render);
};
CheckboxButtonGroupView.prototype.render = function () {
var $input, $label, active, html, i, j, label, len, ref;
CheckboxButtonGroupView.__super__.render.call(this);
this.$el.empty();
html = this.template();
this.el.appendChild(html);
active = this.model.active;
ref = this.model.labels;
for (i = j = 0, len = ref.length; j < len; i = ++j) {
label = ref[i];
$input = $('<input type="checkbox">').attr({
value: "" + i
});
if (indexOf.call(active, i) >= 0) {
$input.prop("checked", true);
}
$label = $('<label class="bk-bs-btn"></label>');
$label.text(label).prepend($input);
$label.addClass("bk-bs-btn-" + this.model.button_type);
if (indexOf.call(active, i) >= 0) {
$label.addClass("bk-bs-active");
}
this.$el.find('.bk-bs-btn-group').append($label);
}
return this;
};
CheckboxButtonGroupView.prototype.change_input = function () {
var active, checkbox, i, ref;
active = (function () {
var j, len, ref, results;
ref = this.$el.find("input");
results = [];
for (i = j = 0, len = ref.length; j < len; i = ++j) {
checkbox = ref[i];
if (checkbox.checked) {
results.push(i);
}
}
return results;
}).call(this);
this.model.active = active;
return (ref = this.model.callback) != null ? ref.execute(this.model) : void 0;
};
return CheckboxButtonGroupView;
})(widget_1.WidgetView);
exports.CheckboxButtonGroup = (function (superClass) {
extend(CheckboxButtonGroup, superClass);
function CheckboxButtonGroup() {
return CheckboxButtonGroup.__super__.constructor.apply(this, arguments);
}
CheckboxButtonGroup.prototype.type = "CheckboxButtonGroup";
CheckboxButtonGroup.prototype.default_view = exports.CheckboxButtonGroupView;
CheckboxButtonGroup.define({
active: [p.Array, []],
labels: [p.Array, []],
button_type: [p.String, "default"],
callback: [p.Instance]
});
return CheckboxButtonGroup;
})(widget_1.Widget);