@quartic/bokehjs
Version:
Interactive, novel data visualization
40 lines (39 loc) • 1.59 kB
JavaScript
;
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;
var model_1 = require("../../model");
var hittest = require("core/hittest");
var p = require("core/properties");
var types_1 = require("core/util/types");
exports.DataSource = (function (superClass) {
extend(DataSource, superClass);
function DataSource() {
return DataSource.__super__.constructor.apply(this, arguments);
}
DataSource.prototype.type = 'DataSource';
DataSource.define({
selected: [p.Any, hittest.create_hit_test_result()],
callback: [p.Any]
});
DataSource.prototype.initialize = function (options) {
DataSource.__super__.initialize.call(this, options);
return this.listenTo(this, 'change:selected', (function (_this) {
return function () {
var callback;
callback = _this.callback;
if (callback != null) {
if (types_1.isFunction(callback)) {
return callback(_this);
}
else {
return callback.execute(_this);
}
}
};
})(this));
};
return DataSource;
})(model_1.Model);