/*globals Editor fileId SplitView PanelContainerView EditorView FlashView messageCenter*/
-var documentsUrl = '/api/documents/';
-
-
Editor.Model = Editor.Object.extend({
synced: false,
data: null
Editor.ToolbarButtonsModel = Editor.Model.extend({
- _className: 'Editor.ToolbarButtonsModel',
- serverURL: '/api/toolbar/buttons',
+ className: 'Editor.ToolbarButtonsModel',
buttons: {},
init: function() {
load: function() {
if (!this.get('buttons').length) {
$.ajax({
- url: this.serverURL,
+ url: toolbarUrl,
dataType: 'json',
success: this.loadSucceeded.bind(this)
});
// Stany modelu:
//
+// -> error -> loading
+// /
// empty -> loading -> synced -> unsynced -> loading
// \
// -> dirty -> updating -> updated -> synced
this.addObserver(this, 'data', this.dataChanged.bind(this));
},
- load: function() {
- if (this.get('state') == 'empty') {
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
this.set('state', 'loading');
$.ajax({
url: this.serverURL,
dataType: 'text',
data: {revision: this.get('revision')},
- success: this.loadingSucceeded.bind(this)
+ success: this.loadingSucceeded.bind(this),
+ error: this.loadingFailed.bind(this)
});
return true;
}
return false;
},
+ loadingSucceeded: function(data) {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('data', data);
+ this.set('state', 'synced');
+ },
+
+ loadingFailed: function() {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('error', 'Nie udało się załadować panelu');
+ this.set('state', 'error');
+ },
+
update: function(message) {
if (this.get('state') == 'dirty') {
this.set('state', 'updating');
return false;
},
- updatingSucceeded: function() {
+ updatingSucceeded: function(data) {
if (this.get('state') != 'updating') {
alert('erroneous state:', this.get('state'));
}
+ this.set('revision', data.revision);
this.set('state', 'updated');
},
if (this.get('state') != 'updating') {
alert('erroneous state:', this.get('state'));
}
+ messageCenter.addMessage('error', 'Uaktualnienie nie powiodło się', 'Uaktualnienie nie powiodło się');
this.set('state', 'dirty');
},
}
},
- loadingSucceeded: function(data) {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('data', data);
- this.set('state', 'synced');
- },
-
dispose: function() {
this.removeObserver(this);
this._super();
this.serverURL = serverURL;
},
- load: function() {
- if (this.get('state') == 'empty') {
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
this.set('state', 'loading');
$.ajax({
url: this.serverURL,
dataType: 'text',
data: {revision: this.get('revision')},
- success: this.loadingSucceeded.bind(this)
+ success: this.loadingSucceeded.bind(this),
+ error: this.loadingFailed.bind(this)
});
}
},
this.set('data', data);
this.set('state', 'synced');
},
+
+ loadingFailed: function() {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('error', 'Nie udało się załadować panelu');
+ this.set('state', 'error');
+ },
// For debbuging
set: function(property, value) {
this.pages = [];
},
- load: function() {
- if (this.get('state') == 'empty') {
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
this.set('state', 'loading');
$.ajax({
url: this.serverURL,
for (key in this.contentModels) {
if (this.contentModels[key].guid() == contentModel.guid()) {
this.contentModels[key].set('state', 'synced');
- } else if (this.contentModels[key].get('state') == 'unsynced') {
+ this.data.user_revision = this.contentModels[key].get('revision');
+ messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.data.user_revision,
+ 'Uaktualnienie dokumentu do wersji ' + this.data.user_revision);
+ }
+ }
+ for (key in this.contentModels) {
+ if (this.contentModels[key].guid() != contentModel.guid()) {
+ this.contentModels[key].set('revision', this.data.user_revision);
this.contentModels[key].set('state', 'empty');
}
}
console.log(xhr.status, textStatus);
if (xhr.status == 200) { // Sukces
this.data.user_revision = this.get('updateData').revision;
+ messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision,
+ 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision);
for (var key in this.contentModels) {
this.contentModels[key].set('revision', this.data.user_revision);
this.contentModels[key].set('state', 'empty');
this.contentModels[key].set('revision', this.data.user_revision);
this.contentModels[key].set('state', 'empty');
}
+ messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.get('mergeData').revision,
+ 'Uaktualnienie dokumentu do wersji ' + this.get('mergeData').revision);
} else if (xhr.status == 202) { // Wygenerowano PullRequest
} else if (xhr.status == 204) { // Nic nie zmieniono
} else if (xhr.status == 409) { // Konflikt podczas operacji
var leftPanelView, rightPanelContainer, doc;
-$(function() {
+$(function()
+{
+ documentsUrl = $('#api-base-url').text() + '/';
+ toolbarUrl = $('#api-toolbar-url').text();
+
doc = new Editor.DocumentModel();
- var editor = new EditorView('#body-wrap', doc);
+ var editor = new EditorView('#body-wrap', doc);
editor.freeze();
+
var flashView = new FlashView('#flashview', messageCenter);
var splitView = new SplitView('#splitview', doc);
+
leftPanelView = new PanelContainerView('#left-panel-container', doc);
- rightPanelContainer = new PanelContainerView('#right-panel-container', doc);
+ rightPanelContainer = new PanelContainerView('#right-panel-container', doc);
});