2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* File: LeftAndMain.EditForm.js
|
|
|
|
*/
|
|
|
|
(function($) {
|
|
|
|
$.entwine('ss', function($){
|
|
|
|
|
|
|
|
/**
|
2011-03-31 10:52:29 +02:00
|
|
|
* Class: .cms-edit-form
|
2011-03-23 10:51:00 +01:00
|
|
|
*
|
|
|
|
* Base edit form, provides ajaxified saving
|
|
|
|
* and reloading itself through the ajax return values.
|
|
|
|
* Takes care of resizing tabsets within the layout container.
|
|
|
|
* @name ss.Form_EditForm
|
|
|
|
* @require jquery.changetracker
|
|
|
|
*
|
|
|
|
* Events:
|
|
|
|
* ajaxsubmit - Form is about to be submitted through ajax
|
|
|
|
* validate - Contains validation result
|
|
|
|
* removeform - A form is about to be removed from the DOM
|
|
|
|
* load - Form is about to be loaded through ajax
|
|
|
|
*/
|
2011-03-31 10:52:29 +02:00
|
|
|
$('.cms-edit-form').entwine(/** @lends ss.Form_EditForm */{
|
2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* Variable: PlaceholderHtml
|
|
|
|
* (String_ HTML text to show when no form content is chosen.
|
|
|
|
* Will show inside the <form> tag.
|
|
|
|
*/
|
|
|
|
PlaceholderHtml: '',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variable: ChangeTrackerOptions
|
|
|
|
* (Object)
|
|
|
|
*/
|
|
|
|
ChangeTrackerOptions: {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor: onmatch
|
|
|
|
*/
|
|
|
|
onmatch: function() {
|
|
|
|
var self = this;
|
2011-12-15 11:38:29 +01:00
|
|
|
|
|
|
|
// Turn off autocomplete to fix the access tab randomly switching radio buttons in Firefox
|
|
|
|
// when refresh the page with an anchor tag in the URL. E.g: /admin#Root_Access.
|
|
|
|
// Autocomplete in the CMS also causes strangeness in other browsers,
|
|
|
|
// filling out sections of the form that the user does not want to be filled out,
|
|
|
|
// so this turns it off for all browsers.
|
|
|
|
// See the following page for demo and explanation of the Firefox bug:
|
|
|
|
// http://www.ryancramer.com/journal/entries/radio_buttons_firefox/
|
|
|
|
this.attr("autocomplete", "off");
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
this._setupChangeTracker();
|
|
|
|
|
|
|
|
// Can't bind this through jQuery
|
2011-12-15 11:38:29 +01:00
|
|
|
window.onbeforeunload = function(e) {
|
|
|
|
self.trigger('beforesave');
|
|
|
|
if(self.is('.changed')) return ss.i18n._t('LeftAndMain.CONFIRMUNSAVEDSHORT');
|
|
|
|
};
|
|
|
|
|
|
|
|
// Catch navigation events before they reach handleStateChange(),
|
|
|
|
// in order to avoid changing the menu state if the action is cancelled by the user
|
|
|
|
$('.cms-menu')
|
2011-06-08 01:35:56 +02:00
|
|
|
|
|
|
|
// focus input on first form element
|
2011-09-19 21:34:03 +02:00
|
|
|
this.find(':input:visible:not(:submit):first').focus();
|
2011-06-08 01:35:56 +02:00
|
|
|
|
|
|
|
// Optionally get the form attributes from embedded fields, see Form->formHtmlContent()
|
|
|
|
for(var overrideAttr in {'action':true,'method':true,'enctype':true,'name':true}) {
|
|
|
|
var el = this.find(':input[name='+ '_form_' + overrideAttr + ']');
|
|
|
|
if(el) {
|
|
|
|
this.attr(overrideAttr, el.val());
|
|
|
|
el.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
// // Rewrite # links
|
|
|
|
// html = html.replace(/(<a[^>]+href *= *")#/g, '$1' + window.location.href.replace(/#.*$/,'') + '#');
|
|
|
|
//
|
|
|
|
// // Rewrite iframe links (for IE)
|
|
|
|
// html = html.replace(/(<iframe[^>]*src=")([^"]+)("[^>]*>)/g, '$1' + $('base').attr('href') + '$2$3');
|
|
|
|
|
|
|
|
// Show validation errors if necessary
|
|
|
|
if(this.hasClass('validationerror')) {
|
|
|
|
// TODO validation shouldnt need a special case
|
|
|
|
statusMessage(ss.i18n._t('ModelAdmin.VALIDATIONERROR', 'Validation Error'), 'bad');
|
|
|
|
}
|
2011-07-21 20:14:33 +02:00
|
|
|
|
|
|
|
// Move navigator to preview if one is available.
|
|
|
|
// If not, just leave the links in the form.
|
|
|
|
var previewEl = $('.cms-preview');
|
|
|
|
if(previewEl.length) {
|
|
|
|
// TODO Relies on DOM element order (the second .cms-navigator is the "old" one)
|
|
|
|
previewEl.find('.cms-preview-controls').html(this.find('.cms-navigator').detach());
|
|
|
|
}
|
2011-06-08 01:35:56 +02:00
|
|
|
|
|
|
|
this._super();
|
|
|
|
},
|
2011-12-13 14:56:35 +01:00
|
|
|
|
2011-07-21 18:39:26 +02:00
|
|
|
redraw: function() {
|
2011-12-15 20:37:20 +01:00
|
|
|
// Force initialization of tabsets to avoid layout glitches
|
|
|
|
this.add(this.find('.ss-tabset')).redrawTabs();
|
|
|
|
|
2011-12-15 22:04:03 +01:00
|
|
|
var approxWidth = $('.cms-container').width() - $('.cms-menu').width();
|
|
|
|
this.find('.cms-content-actions').width(approxWidth).height('auto');
|
2011-07-21 18:39:26 +02:00
|
|
|
|
|
|
|
this.layout();
|
|
|
|
},
|
2011-09-19 21:01:17 +02:00
|
|
|
|
2011-03-23 10:51:00 +01:00
|
|
|
/**
|
|
|
|
* Function: _setupChangeTracker
|
|
|
|
*/
|
|
|
|
_setupChangeTracker: function() {
|
|
|
|
// Don't bind any events here, as we dont replace the
|
|
|
|
// full <form> tag by any ajax updates they won't automatically reapply
|
|
|
|
this.changetracker(this.getChangeTrackerOptions());
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-12-15 12:23:32 +01:00
|
|
|
* Function: confirmUnsavedChanges
|
2011-03-23 10:51:00 +01:00
|
|
|
*
|
2011-12-15 12:23:32 +01:00
|
|
|
* Checks the jquery.changetracker plugin status for this form,
|
|
|
|
* and asks the user for confirmation via a browser dialog if changes are detected.
|
|
|
|
* Doesn't cancel any unload or form removal events, you'll need to implement this based on the return
|
|
|
|
* value of this message.
|
2011-03-23 10:51:00 +01:00
|
|
|
*
|
|
|
|
* Returns:
|
2011-12-15 12:23:32 +01:00
|
|
|
* (Boolean) FALSE if the user wants to abort with changes present, TRUE if no changes are detected
|
|
|
|
* or the user wants to discard them.
|
2011-03-23 10:51:00 +01:00
|
|
|
*/
|
2011-12-15 12:23:32 +01:00
|
|
|
confirmUnsavedChanges: function() {
|
|
|
|
this.trigger('beforesave');
|
|
|
|
return (this.is('.changed')) ? confirm(ss.i18n._t('LeftAndMain.CONFIRMUNSAVED')) : true;
|
2011-03-23 10:51:00 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: onsubmit
|
|
|
|
*
|
|
|
|
* Suppress submission unless it is handled through ajaxSubmit().
|
|
|
|
*/
|
|
|
|
onsubmit: function(e) {
|
2011-06-08 01:35:56 +02:00
|
|
|
this.parents('.cms-content').submitForm(this);
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: validate
|
|
|
|
*
|
|
|
|
* Hook in (optional) validation routines.
|
|
|
|
* Currently clientside validation is not supported out of the box in the CMS.
|
|
|
|
*
|
|
|
|
* Todo:
|
|
|
|
* Placeholder implementation
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* {boolean}
|
|
|
|
*/
|
|
|
|
validate: function() {
|
|
|
|
var isValid = true;
|
|
|
|
this.trigger('validate', {isValid: isValid});
|
|
|
|
|
|
|
|
return isValid;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2011-03-31 10:52:29 +02:00
|
|
|
* Class: .cms-edit-form .Actions :submit
|
2011-03-23 10:51:00 +01:00
|
|
|
*
|
|
|
|
* All buttons in the right CMS form go through here by default.
|
|
|
|
* We need this onclick overloading because we can't get to the
|
|
|
|
* clicked button from a form.onsubmit event.
|
|
|
|
*/
|
2011-12-12 18:35:25 +01:00
|
|
|
$('.cms-edit-form .Actions input, .cms-edit-form .Actions button').entwine({
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: onclick
|
|
|
|
*/
|
|
|
|
onclick: function(e) {
|
2011-06-08 01:35:56 +02:00
|
|
|
$('.cms-content').submitForm(this.parents('form'), this);
|
2011-03-23 10:51:00 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2011-03-31 10:52:29 +02:00
|
|
|
* Class: .cms-edit-form textarea.htmleditor
|
2011-03-23 10:51:00 +01:00
|
|
|
*
|
2011-12-13 14:56:35 +01:00
|
|
|
* Add tinymce to HtmlEditorFields within the CMS. Works in combination
|
|
|
|
* with a TinyMCE.init() call which is prepopulated with the used HTMLEditorConfig settings,
|
|
|
|
* and included in the page as an inline <script> tag.
|
2011-03-23 10:51:00 +01:00
|
|
|
*/
|
2011-03-31 10:52:29 +02:00
|
|
|
$('.cms-edit-form textarea.htmleditor').entwine({
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor: onmatch
|
|
|
|
*/
|
|
|
|
onmatch : function() {
|
2011-12-15 12:23:32 +01:00
|
|
|
var self = this;
|
|
|
|
this.closest('form').bind('beforesave', function() {
|
2011-12-15 22:04:42 +01:00
|
|
|
if(typeof tinyMCE == 'undefined') return;
|
|
|
|
|
|
|
|
// TinyMCE modifies input, so change tracking might get false
|
|
|
|
// positives when comparing string values - don't save if the editor doesn't think its dirty.
|
|
|
|
if(self.isChanged()) {
|
|
|
|
tinyMCE.triggerSave();
|
|
|
|
// TinyMCE assigns value attr directly, which doesn't trigger change event
|
|
|
|
self.trigger('change');
|
|
|
|
}
|
2011-12-15 12:23:32 +01:00
|
|
|
});
|
|
|
|
|
2011-12-13 14:56:35 +01:00
|
|
|
// Only works after TinyMCE.init() has been invoked, see $(window).bind() call below for details.
|
|
|
|
this.redraw();
|
2011-10-29 11:43:02 +02:00
|
|
|
|
|
|
|
this._super();
|
|
|
|
},
|
2011-12-13 14:56:35 +01:00
|
|
|
|
|
|
|
redraw: function() {
|
|
|
|
// Using a global config (generated through HTMLEditorConfig PHP logic)
|
|
|
|
var config = ssTinyMceConfig, self = this;
|
|
|
|
|
|
|
|
// Avoid flicker (also set in CSS to apply as early as possible)
|
|
|
|
self.css('visibility', '');
|
|
|
|
|
|
|
|
// Create editor instance and render it.
|
|
|
|
// Similar logic to adapter/jquery/jquery.tinymce.js, but doesn't rely on monkey-patching
|
|
|
|
// jQuery methods, and avoids replicate the script lazyloading which is already in place with jQuery.ondemand.
|
|
|
|
var ed = new tinymce.Editor(this.attr('id'), config);
|
|
|
|
ed.onInit.add(function() {
|
|
|
|
self.css('visibility', 'visible');
|
|
|
|
});
|
|
|
|
ed.render();
|
|
|
|
|
2011-12-15 22:04:42 +01:00
|
|
|
// Handle editor de-registration by hooking into state changes.
|
|
|
|
// TODO Move to onunmatch for less coupling (once we figure out how to work with detached DOM nodes in TinyMCE)
|
|
|
|
$('.cms-container').bind('beforestatechange', function() {
|
|
|
|
self.css('visibility', 'hidden');
|
|
|
|
var ed = tinyMCE.get(self.attr('id'));
|
|
|
|
if(ed) ed.remove();
|
|
|
|
});
|
|
|
|
|
2011-12-13 14:56:35 +01:00
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
|
|
|
|
isChanged: function() {
|
2011-12-15 22:04:42 +01:00
|
|
|
if(typeof tinyMCE == 'undefined') return;
|
|
|
|
|
2011-12-13 14:56:35 +01:00
|
|
|
return tinyMCE.getInstanceById(this.attr('id')).isDirty();
|
|
|
|
},
|
|
|
|
|
|
|
|
resetChanged: function() {
|
2011-12-15 22:04:42 +01:00
|
|
|
if(typeof tinyMCE == 'undefined') return;
|
|
|
|
|
2011-12-13 14:56:35 +01:00
|
|
|
var inst = tinyMCE.getInstanceById(this.attr('id'));
|
|
|
|
if (inst) inst.startContent = tinymce.trim(inst.getContent({format : 'raw', no_events : 1}));
|
|
|
|
},
|
|
|
|
|
2011-10-29 11:43:02 +02:00
|
|
|
onunmatch: function() {
|
2011-12-13 14:56:35 +01:00
|
|
|
// TODO Throws exceptions in Firefox, most likely due to the element being removed from the DOM at this point
|
|
|
|
// var ed = tinyMCE.get(this.attr('id'));
|
|
|
|
// if(ed) ed.remove();
|
|
|
|
|
2011-10-29 11:43:02 +02:00
|
|
|
this._super();
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
|
|
|
});
|
2011-12-15 22:04:42 +01:00
|
|
|
|
2011-03-23 10:51:00 +01:00
|
|
|
});
|
2011-12-13 14:56:35 +01:00
|
|
|
|
2011-03-23 10:51:00 +01:00
|
|
|
}(jQuery));
|