(function($) { $.concrete('ss', function($){ /** * A simple ajax browser history implementation tailored towards * navigating through search results and different forms loaded into * the ModelAdmin right panels. The logic listens to search and form loading * events, keeps track of the loaded URLs, and will display graphical back/forward * buttons where appropriate. A search action will cause the history to be reset. * * Note: The logic does not replay save operations or hook into any form actions. * * Available Events: * - historyAdd * - historyStart * - historyGoFoward * - historyGoBack * * @todo Switch tab state when re-displaying search forms * @todo Reload search parameters into forms * * @name ss.ModelAdmin */ $('.ModelAdmin').concrete(/** @lends ss.ModelAdmin */ { History: [], Future: [], onmatch: function() { var self = this; this._super(); // generate markup this.find('#right').prepend( '
' + '< ' + ss.i18n._t('ModelAdmin.HISTORYBACK', 'back') + '' + '' + ss.i18n._t('ModelAdmin.HISTORYFORWARD', 'forward') + ' >' + '
' ).find('.back,.forward').hide(); this.find('.historyNav .back').live('click', function() { self.goBack(); return false; }); this.find('.historyNav .forward').live('click', function() { self.goForward(); return false; }); }, redraw: function() { this.find('.historyNav .forward').toggle(Boolean(this.getFuture().length > 0)); this.find('.historyNav .back').toggle(Boolean(this.getHistory().length > 1)); }, startHistory: function(url, data) { this.trigger('historyStart', {url: url, data: data}); this.setHistory([]); this.addHistory(url, data); }, /** * Add an item to the history, to be accessed by goBack and goForward */ addHistory: function(url, data) { this.trigger('historyAdd', {url: url, data: data}); // Combine data into URL if(data) { if(url.indexOf('?') == -1) url += '?' + $.param(data); else url += '&' + $.param(data); } // Add to history this.getHistory().push(url); // Reset future this.setFuture([]); this.redraw(); }, goBack: function() { if(this.getHistory() && this.getHistory().length) { if(this.getFuture() == null) this.setFuture([]); var currentPage = this.getHistory().pop(); var previousPage = this.getHistory()[this.getHistory().length-1]; this.getFuture().push(currentPage); this.trigger('historyGoBack', {url:previousPage}); // load new location $('#Form_EditForm').loadForm(previousPage); this.redraw(); } }, goForward: function() { if(this.getFuture() && this.getFuture().length) { if(this.getFuture() == null) this.setFuture([]); var nextPage = this.getFuture().pop(); this.getHistory().push(nextPage); this.trigger('historyGoForward', {url:nextPage}); // load new location $('#Form_EditForm').loadForm(nextPage); this.redraw(); } } }); /** * A search action will cause the history to be reset. */ $('#SearchForm_holder form').concrete({ onmatch: function() { var self = this; this.bind('beforeSubmit', function(e) { $('.ModelAdmin').startHistory( self.attr('action'), self.serializeArray() ); }); this._super(); } }); /** * We have to apply this to the result table buttons instead of the * more generic form loading. */ $('form[name=Form_ResultsForm] tbody td a').concrete({ onclick: function(e) { $('.ModelAdmin').addHistory(this.attr('href')); } }); }); })(jQuery);