define(function(require) {
+ /* globals gettext */
'use strict';
var _ = require('libs/underscore'),
var DialogView = Backbone.View.extend({
template: _.template(dialogTemplate),
events: {
- 'click .save-btn': 'onSave',
- 'click .cancel-btn': 'close',
+ 'click .execute-btn': 'onExecute',
+ 'click .cancel-btn': 'onCancel',
'click .close': 'close'
},
initialize: function() {
this.actionsDisabled = false;
},
show: function() {
- this.setElement(this.template(this.options));
+ this.setElement(this.template(_.extend({
+ executeButtonText: gettext('Submit'),
+ cancelButtonText: gettext('Cancel')
+ }, this.options)));
var body = this.$('.modal-body');
- this.options.fields.forEach(function(field) {
+ (this.options.fields || []).forEach(function(field) {
var template = fieldTemplates[field.type];
if(!template) {
throw new Error('Field type {type} not recognized.'.replace('{type}', field.type));
);
});
+ if(this.options.text) {
+ body.append('<p>' + this.options.text + '</p>');
+ }
+
this.$el.modal({backdrop: 'static'});
this.$el.modal('show');
this.$('textarea').focus();
},
- onSave: function(e) {
+ onExecute: function(e) {
e.preventDefault();
var view = this,
formData = {};
- this.options.fields.forEach(function(field) {
+ (this.options.fields || []).forEach(function(field) {
var widget = view.$('[name=' + field.name +']');
formData[field.name] = widget.val();
});
- this.trigger('save', {
+ this.trigger('execute', {
formData: formData,
success: function() { view.actionsDisabled = false; view.close(); },
error: function() { view.actionsDisabled = false; view.close(); },
});
},
+ onCancel: function() {
+ this.trigger('cancel');
+ this.close();
+ },
close: function(e) {
if(e) {
e.preventDefault();
this.$el.modal('hide');
this.$el.remove();
}
+ this.trigger('close');
},
toggleButtons: function(toggle) {
this.$('.btn, button').toggleClass('disabled', !toggle);