1 /*globals Editor fileId SplitView PanelContainerView EditorView*/
2 var documentsUrl = '/api/documents/';
5 Editor.Model = Editor.Object.extend({
11 Editor.ToolbarButtonsModel = Editor.Model.extend({
12 _className: 'Editor.ToolbarButtonsModel',
13 serverURL: '/api/toolbar/buttons',
21 if (!this.get('buttons').length) {
25 success: this.loadSucceeded.bind(this)
30 loadSucceeded: function(data) {
31 this.set('buttons', data);
38 // empty -> loading -> synced -> unsynced -> loading
40 // -> dirty -> updating -> updated -> synced
42 Editor.XMLModel = Editor.Model.extend({
43 _className: 'Editor.XMLModel',
48 init: function(serverURL, revision) {
50 this.set('state', 'empty');
51 this.set('revision', revision);
52 this.serverURL = serverURL;
53 this.toolbarButtonsModel = new Editor.ToolbarButtonsModel();
54 this.addObserver(this, 'data', this.dataChanged.bind(this));
58 if (this.get('state') == 'empty') {
59 this.set('state', 'loading');
63 data: {revision: this.get('revision')},
64 success: this.loadingSucceeded.bind(this)
71 update: function(message) {
72 if (this.get('state') == 'dirty') {
73 this.set('state', 'updating');
76 contents: this.get('data'),
77 revision: this.get('revision')
80 payload.message = message;
88 success: this.updatingSucceeded.bind(this),
89 error: this.updatingFailed.bind(this)
96 updatingSucceeded: function() {
97 if (this.get('state') != 'updating') {
98 alert('erroneous state:', this.get('state'));
100 this.set('state', 'updated');
103 updatingFailed: function() {
104 if (this.get('state') != 'updating') {
105 alert('erroneous state:', this.get('state'));
107 this.set('state', 'dirty');
111 set: function(property, value) {
112 if (property == 'state') {
113 console.log(this.description(), ':', property, '=', value);
115 return this._super(property, value);
118 dataChanged: function(property, value) {
119 if (this.get('state') == 'synced') {
120 this.set('state', 'dirty');
124 loadingSucceeded: function(data) {
125 if (this.get('state') != 'loading') {
126 alert('erroneous state:', this.get('state'));
128 this.set('data', data);
129 this.set('state', 'synced');
132 dispose: function() {
133 this.removeObserver(this);
139 Editor.HTMLModel = Editor.Model.extend({
140 _className: 'Editor.HTMLModel',
145 init: function(serverURL, revision) {
147 this.set('state', 'empty');
148 this.set('revision', revision);
149 this.serverURL = serverURL;
153 if (this.get('state') == 'empty') {
154 this.set('state', 'loading');
158 data: {revision: this.get('revision')},
159 success: this.loadingSucceeded.bind(this)
164 loadingSucceeded: function(data) {
165 if (this.get('state') != 'loading') {
166 alert('erroneous state:', this.get('state'));
168 this.set('data', data);
169 this.set('state', 'synced');
173 set: function(property, value) {
174 if (property == 'state') {
175 console.log(this.description(), ':', property, '=', value);
177 return this._super(property, value);
182 Editor.ImageGalleryModel = Editor.Model.extend({
183 _className: 'Editor.ImageGalleryModel',
188 init: function(serverURL) {
190 this.set('state', 'empty');
191 this.serverURL = serverURL;
197 if (this.get('state') == 'empty') {
198 this.set('state', 'loading');
202 success: this.loadingSucceeded.bind(this)
207 loadingSucceeded: function(data) {
208 if (this.get('state') != 'loading') {
209 alert('erroneous state:', this.get('state'));
212 console.log('galleries:', data);
214 if (data.length === 0) {
215 this.set('data', []);
218 this.set('data', data[0].pages);
221 this.set('state', 'synced');
224 set: function(property, value) {
225 if (property == 'state') {
226 console.log(this.description(), ':', property, '=', value);
228 return this._super(property, value);
233 Editor.DocumentModel = Editor.Model.extend({
234 _className: 'Editor.DocumentModel',
235 data: null, // name, text_url, user_revision, latest_shared_rev, parts_url, dc_url, size, merge_url
241 this.set('state', 'empty');
246 if (this.get('state') == 'empty') {
247 this.set('state', 'loading');
250 url: documentsUrl + fileId,
252 success: this.successfulLoad.bind(this)
257 successfulLoad: function(data) {
258 this.set('data', data);
259 this.set('state', 'synced');
260 this.contentModels = {
261 'xml': new Editor.XMLModel(data.text_url, data.user_revision),
262 'html': new Editor.HTMLModel(data.html_url, data.user_revision),
263 'gallery': new Editor.ImageGalleryModel(data.gallery_url)
265 for (var key in this.contentModels) {
266 this.contentModels[key].addObserver(this, 'state', this.contentModelStateChanged.bind(this));
270 contentModelStateChanged: function(property, value, contentModel) {
271 if (value == 'dirty') {
272 this.set('state', 'dirty');
273 for (var key in this.contentModels) {
274 if (this.contentModels[key].guid() != contentModel.guid()) {
275 this.contentModels[key].set('state', 'unsynced');
278 } else if (value == 'updated') {
279 this.set('state', 'synced');
280 for (key in this.contentModels) {
281 if (this.contentModels[key].guid() == contentModel.guid()) {
282 this.contentModels[key].set('state', 'synced');
283 } else if (this.contentModels[key].get('state') == 'unsynced') {
284 this.contentModels[key].set('state', 'empty');
290 saveDirtyContentModel: function(message) {
291 for (var key in this.contentModels) {
292 if (this.contentModels[key].get('state') == 'dirty') {
293 this.contentModels[key].update(message);
300 this.set('state', 'loading');
302 url: this.data.merge_url,
307 target_revision: this.data.user_revision
309 complete: this.updateCompleted.bind(this),
310 success: function(data) { this.set('updateData', data); }.bind(this)
314 updateCompleted: function(xhr, textStatus) {
315 console.log(xhr.status, textStatus);
316 if (xhr.status == 200) { // Sukces
317 this.data.user_revision = this.get('updateData').revision;
318 for (var key in this.contentModels) {
319 this.contentModels[key].set('revision', this.data.user_revision);
320 this.contentModels[key].set('state', 'empty');
322 } else if (xhr.status == 202) { // Wygenerowano PullRequest (tutaj?)
323 } else if (xhr.status == 204) { // Nic nie zmieniono
324 } else if (xhr.status == 409) { // Konflikt podczas operacji
326 this.set('state', 'synced');
327 this.set('updateData', null);
330 merge: function(message) {
331 this.set('state', 'loading');
333 url: this.data.merge_url,
338 target_revision: this.data.user_revision,
341 complete: this.mergeCompleted.bind(this),
342 success: function(data) { this.set('mergeData', data); }.bind(this)
346 mergeCompleted: function(xhr, textStatus) {
347 console.log(xhr.status, textStatus);
348 if (xhr.status == 200) { // Sukces
349 this.data.user_revision = this.get('mergeData').revision;
350 for (var key in this.contentModels) {
351 this.contentModels[key].set('revision', this.data.user_revision);
352 this.contentModels[key].set('state', 'empty');
354 } else if (xhr.status == 202) { // Wygenerowano PullRequest
355 } else if (xhr.status == 204) { // Nic nie zmieniono
356 } else if (xhr.status == 409) { // Konflikt podczas operacji
358 this.set('state', 'synced');
359 this.set('mergeData', null);
363 set: function(property, value) {
364 if (property == 'state') {
365 console.log(this.description(), ':', property, '=', value);
367 return this._super(property, value);
372 var leftPanelView, rightPanelContainer, doc;
375 doc = new Editor.DocumentModel();
376 var editor = new EditorView('#body-wrap', doc);
378 var splitView = new SplitView('#splitview', doc);
379 leftPanelView = new PanelContainerView('#left-panel-container', doc);
380 rightPanelContainer = new PanelContainerView('#right-panel-container', doc);