cartodb-4.42/lib/assets/javascripts/builder/components/onboardings/onboarding-view-model.js
2024-04-06 05:25:13 +00:00

47 lines
883 B
JavaScript
Executable File

var Backbone = require('backbone');
var CoreView = require('backbone/core-view');
/**
* View model of a onboarding
*/
module.exports = Backbone.Model.extend({
defaults: {
show: true,
createContentView: function () {
return new CoreView();
},
getContentClasses: function () {
return null;
}
},
createContentView: function () {
return this.get('createContentView')(this);
},
getContentClasses: function () {
return this.get('contentClasses');
},
show: function () {
this.set('show', true);
},
hide: function () {
this.set('show', false);
},
isHidden: function () {
return !this.get('show');
},
/**
* @override {Backbone.Model.prototype.destroy}
*/
destroy: function () {
var args = Array.prototype.slice.call(arguments);
this.trigger.apply(this, ['destroy'].concat(args));
}
});