1 function Panel(panelWrap) {
4 self.contentDiv = $('.panel-content', panelWrap);
5 self.instanceId = Math.ceil(Math.random() * 1000000000);
6 $.log('new panel - wrap: ', self.wrap);
8 $(document).bind('panel:unload.' + self.instanceId,
9 function(event, data) { self.unload(event, data); });
11 $(document).bind('panel:contentChanged', function(event, data) {
12 $.log(self, ' got changed event from: ', data);
14 self.otherPanelChanged(event.target);
22 Panel.prototype.callHook = function(hookName) {
23 if(this.hooks && this.hooks[hookName])
26 $.log('calling hook: ', hookName, 'with args: ', arguments);
27 return this.hooks[hookName].apply(this, arguments);
31 Panel.prototype.load = function (url) {
32 $.log('preparing xhr load: ', this.wrap);
33 $(document).trigger('panel:unload', this);
35 self.current_url = url;
40 success: function(data, tstat) {
42 $(self.contentDiv).html(data);
43 self.hooks = panel_hooks;
45 self.callHook('load');
47 error: function(request, textStatus, errorThrown) {
48 $.log('ajax', url, this.target, 'error:', textStatus, errorThrown);
53 Panel.prototype.unload = function(event, data) {
54 $.log('got unload signal', this, ' target: ', data);
57 $.log('unloading', this);
58 $(this.contentDiv).html('');
59 this.callHook('unload');
60 this.hooks = null; // flush the hooks
65 Panel.prototype.refresh = function(event, data) {
66 $('.change-notification', this.wrap).fadeOut();
67 $.log('refreshing view for panel ', this.current_url);
68 this.load(this.current_url);
69 // if( this.callHook('refresh') )
72 Panel.prototype.otherPanelChanged = function(other) {
73 $.log('panel ', other, ' changed.');
74 $('.change-notification', this.wrap).fadeIn();
75 this.callHook('dirty');
78 Panel.prototype.markChanged = function () {
79 if(!this.wrap.hasClass('changed') ) // TODO: is this needed ?
80 this.wrap.addClass('changed');
83 Panel.prototype.changed = function () {
84 return this.wrap.hasClass('changed');
87 Panel.prototype.unmarkChanged = function () {
88 this.wrap.removeClass('changed');
91 Panel.prototype.saveInfo = function() {
93 this.callHook('saveInfo', saveInfo);
99 // editor initialization
100 // this is probably a good place to set config
103 Editor.prototype.setupUI = function() {
104 // set up the UI visually and attach callbacks
106 var panelRoot = $('#panels');
107 self.rootDiv = panelRoot;
109 // Set panel widths from options.panelRatios
110 if (self.options && self.options.panelRatios) {
112 $('.panel-wrap', panelRoot).each(function(index) {
113 var panelWidth = self.options.panelRatios[index] * panelRoot.width();
114 if ($(this).hasClass('last-panel')) {
124 totalWidth += panelWidth;
129 panelRoot.makeHorizPanel({}); // TODO: this probably doesn't belong into jQuery
130 panelRoot.css('top', ($('#header').outerHeight() ) + 'px');
132 $('#panels > *.panel-wrap').each(function() {
133 var panelWrap = $(this);
134 $.log('wrap: ', panelWrap);
135 panelWrap.data('ctrl', new Panel(panelWrap)); // attach controllers to wraps
137 $('.panel-toolbar select', panelWrap).change(function() {
138 panelWrap.data('ctrl').load( $(this).val() );
142 $('#toolbar-button-save').click( function (event, data) { self.saveToBranch(); } );
144 panelRoot.bind('stopResize', function() {
145 var panelRatios = [];
146 $('.panel-wrap', panelRoot).each(function() {
147 panelRatios.push($(this).width() / panelRoot.width());
149 self.options.panelRatios = panelRatios;
150 $.log($.toJSON(self.options));
151 $.cookie('options', $.toJSON(self.options), { expires: 7, path: '/'});
155 Editor.prototype.loadConfig = function() {
156 // Load options from cookie
157 var cookie = $.cookie('options')
159 this.options = $.secureEvalJSON(cookie);
162 this.options = {panelRatios: [0.5, 0.5]}
166 Editor.prototype.saveToBranch = function() {
167 var changed_panel = $('.panel-wrap.changed');
169 $.log('Saving to local branch - panel:', changed_panel);
171 if( changed_panel.length == 0) {
172 $.log('Nothing to save.');
173 return; /* no changes */
176 if( changed_panel.length > 1) {
177 alert('Błąd: więcej niż jeden panel został zmodyfikowany. Nie można zapisać.');
181 saveInfo = changed_panel.data('ctrl').saveInfo();
186 success: function(data, textStatus) {
187 if (data.result != 'ok')
188 $.log('save errors: ', data.errors)
190 self.refreshPanels(changed_panel);
192 error: function(rq, tstat, err) {
193 $.log('save error', rq, tstat, err);
196 data: saveInfo.postData
200 Editor.prototype.refreshPanels = function(goodPanel) {
202 var panels = $('#' + self.rootDiv.attr('id') +' > *.panel-wrap', self.rootDiv.parent());
204 panels.each(function() {
205 var panel = $(this).data('ctrl');
207 if ( panel.changed() )
208 panel.unmarkChanged();
215 editor = new Editor();