61 lines
1.2 KiB
JavaScript
Executable File
61 lines
1.2 KiB
JavaScript
Executable File
var CoreView = require('backbone/core-view');
|
|
var template = require('./mosaic.tpl');
|
|
var MosaicCollection = require('./mosaic-collection');
|
|
var MosaicItemView = require('./mosaic-item-view');
|
|
|
|
/*
|
|
* A mosaic selector
|
|
*
|
|
* It accepts a collection of (val, label) model attributes or a values array
|
|
* with the same content or only strings.
|
|
*
|
|
* new Mosaic({
|
|
* options: [
|
|
* {
|
|
* val: 'hello',
|
|
* label: 'hi'
|
|
* }
|
|
* ]
|
|
* });
|
|
*/
|
|
|
|
module.exports = CoreView.extend({
|
|
|
|
className: 'Mosaic',
|
|
|
|
tagName: 'div',
|
|
|
|
initialize: function (opts) {
|
|
if (!opts.collection) {
|
|
if (!opts.options) throw new Error('options array {value, label} is required');
|
|
|
|
this.collection = new MosaicCollection(opts.options);
|
|
}
|
|
|
|
this._disabled = opts.disabled;
|
|
},
|
|
|
|
render: function () {
|
|
this.clearSubViews();
|
|
this.$el.html(template());
|
|
this._renderList();
|
|
return this;
|
|
},
|
|
|
|
_renderList: function () {
|
|
this.collection.each(function (mdl) {
|
|
this._createItem(mdl);
|
|
}, this);
|
|
},
|
|
|
|
_createItem: function (mdl) {
|
|
var view = new MosaicItemView({
|
|
model: mdl,
|
|
disabled: this._disabled
|
|
});
|
|
this.$('.js-mosaic').append(view.render().el);
|
|
this.addView(view);
|
|
}
|
|
|
|
});
|