141 lines
3.9 KiB
JavaScript
141 lines
3.9 KiB
JavaScript
/*jslint browser : true, continue : true,
|
|
devel : true, indent : 2, maxerr : 50,
|
|
newcap : true, nomen : true, plusplus : true,
|
|
regexp : true, sloppy : true, vars : false,
|
|
white : true
|
|
*/
|
|
|
|
/*global $, app */
|
|
|
|
app.templateEdit = (function () {
|
|
'use strict';
|
|
//---------------- BEGIN MODULE SCOPE VARIABLES --------------
|
|
var
|
|
stateMap = {},
|
|
onSave, onDelete,
|
|
configModule, initModule;
|
|
//----------------- END MODULE SCOPE VARIABLES ---------------
|
|
|
|
|
|
//------------------- BEGIN EVENT HANDLERS -------------------
|
|
|
|
//ONSAVE
|
|
//
|
|
onSave = function (event) {
|
|
event.preventDefault();
|
|
$.gevent.publish('app-clear-error');
|
|
|
|
//get form data
|
|
var formData = $("form").serializeArray({
|
|
checkboxesAsBools: true
|
|
});
|
|
|
|
var submitData = app.utilB.objectifyFormDataArray(formData);
|
|
|
|
//is this a new record?
|
|
if (stateMap.id != 'new') {
|
|
//put id into the form data
|
|
submitData.id = stateMap.id;
|
|
|
|
|
|
app.api.update('textTemplate', submitData, function (res) {
|
|
if (res.error) {
|
|
$.gevent.publish('app-show-error',res.msg);
|
|
}
|
|
});
|
|
} else {
|
|
//it's a new record - create
|
|
app.api.create('textTemplate', submitData, function (res) {
|
|
if (res.error) {
|
|
$.gevent.publish('app-show-error',res.msg);
|
|
} else {
|
|
page('#!/templateEdit/' + res.id);
|
|
}
|
|
});
|
|
}
|
|
return false; //prevent default?
|
|
};
|
|
|
|
//ONDELETE
|
|
//
|
|
onDelete = function (event) {
|
|
event.preventDefault();
|
|
$.gevent.publish('app-clear-error');
|
|
|
|
var r = confirm("Are you sure you want to delete this record?");
|
|
if (r == true) {
|
|
app.api.remove('textTemplate/' + stateMap.id, function (res) {
|
|
if (res.error) {
|
|
$.gevent.publish('app-show-error',res.msg);
|
|
} else {
|
|
//deleted, return to list
|
|
page('#!/templates');
|
|
return false;
|
|
}
|
|
});
|
|
|
|
} else {
|
|
return false;
|
|
}
|
|
return false; //prevent default?
|
|
};
|
|
|
|
|
|
//-------------------- END EVENT HANDLERS --------------------
|
|
|
|
//------------------- BEGIN PUBLIC METHODS -------------------
|
|
|
|
|
|
//CONFIGMODULE
|
|
//
|
|
configModule = function (context) {
|
|
stateMap.context = context.context;
|
|
if (stateMap.context.params.id) {
|
|
stateMap.id = stateMap.context.params.id;
|
|
}
|
|
};
|
|
|
|
//INITMODULE
|
|
//
|
|
initModule = function ($container) {
|
|
if (typeof $container === 'undefined') {
|
|
$container = $('#app-shell-main-content');
|
|
}
|
|
|
|
$container.html(Handlebars.templates['app.templateEdit']({}));
|
|
|
|
//id should always have a value, either a record id or the keyword 'new' for making a new object
|
|
if (stateMap.id != 'new') {
|
|
//fetch existing record
|
|
app.api.get('textTemplate/' + stateMap.id, function (res) {
|
|
if (res.error) {
|
|
$.gevent.publish('app-show-error',res.msg);
|
|
} else {
|
|
//fill out form
|
|
app.utilB.formData(res);
|
|
}
|
|
});
|
|
|
|
} else {
|
|
$('#btn-delete').hide();
|
|
}
|
|
|
|
|
|
//Context menu
|
|
app.nav.contextClear();
|
|
app.nav.contextAddLink("templates/", "Templates", "layers");
|
|
|
|
// bind actions
|
|
$('#btn-save').bind('click', onSave);
|
|
$('#btn-delete').bind('click', onDelete);
|
|
};
|
|
|
|
|
|
// RETURN PUBLIC METHODS
|
|
//
|
|
return {
|
|
configModule: configModule,
|
|
initModule: initModule
|
|
};
|
|
//------------------- END PUBLIC METHODS ---------------------
|
|
}()); |