cartodb-4.42/lib/assets/javascripts/builder/components/tab-pane/tab-pane-mixed-view.js

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
var template = require('./tab-pane-file.tpl');
var CoreView = require('backbone/core-view');
var ImageLoaderView = require('builder/components/img-loader-view');
/**
* File component
*/
module.exports = CoreView.extend({
tagName: 'i',
className: 'CDB-IconFont',
initialize: function (options) {
if (!this.model) throw new Error('A model should be provided');
this.model.bind('change:label', this.render, this);
this.model.bind('change:color', this._updateColor, this);
},
render: function () {
this.clearSubViews();
var labelType = this._getLabelType();
this.$el.html(template({
type: labelType,
label: this.model.get('label'),
kind: this.model.get('kind'),
selectedChild: this.model.get('selectedChild') || ''
}));
if (labelType === 'file') {
this._loadImages();
}
return this;
},
_loadImages: function () {
this.iconView = new ImageLoaderView({
imageClass: 'Tab-paneLabelImage',
imageUrl: this._getImageURL(),
color: this.model.get('color')
});
this.addView(this.iconView);
this.$('.js-image-container').append(this.iconView.render().el);
},
_updateColor: function () {
this.iconView && this.iconView.updateImageColor(this.model.get('color'));
},
_getLabelType: function () {
var label = this.model.get('label');
return label && label.match(/^http/) ? 'file' : 'text';
},
_getImageURL: function () {
return this.model.get('label');
}
});