+ },
+
+ update: function() {
+ this.set('state', 'loading');
+ $.ajax({
+ url: this.data.merge_url,
+ dataType: 'json',
+ type: 'post',
+ data: {
+ type: 'update',
+ target_revision: this.data.user_revision
+ },
+ complete: this.updateCompleted.bind(this),
+ success: function(data) { this.set('updateData', data); }.bind(this)
+ });
+ },
+
+ updateCompleted: function(xhr, textStatus) {
+ console.log(xhr.status, textStatus);
+ if (xhr.status == 200) { // Sukces
+ this.data.user_revision = 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');
+ }
+ } else if (xhr.status == 202) { // Wygenerowano PullRequest (tutaj?)
+ } else if (xhr.status == 204) { // Nic nie zmieniono
+ } else if (xhr.status == 409) { // Konflikt podczas operacji
+ }
+ this.set('state', 'synced');
+ this.set('updateData', null);
+ },
+
+ merge: function(message) {
+ this.set('state', 'loading');
+ $.ajax({
+ url: this.data.merge_url,
+ type: 'post',
+ dataType: 'json',
+ data: {
+ type: 'share',
+ target_revision: this.data.user_revision,
+ message: message
+ },
+ complete: this.mergeCompleted.bind(this),
+ success: function(data) { this.set('mergeData', data); }.bind(this)
+ });
+ },
+
+ mergeCompleted: function(xhr, textStatus) {
+ console.log(xhr.status, textStatus);
+ if (xhr.status == 200) { // Sukces
+ this.data.user_revision = this.get('mergeData').revision;
+ for (var key in this.contentModels) {
+ this.contentModels[key].set('revision', this.data.user_revision);
+ this.contentModels[key].set('state', 'empty');
+ }
+ } else if (xhr.status == 202) { // Wygenerowano PullRequest
+ } else if (xhr.status == 204) { // Nic nie zmieniono
+ } else if (xhr.status == 409) { // Konflikt podczas operacji
+ }
+ this.set('state', 'synced');
+ this.set('mergeData', null);
+ },
+
+ // For debbuging
+ set: function(property, value) {
+ if (property == 'state') {
+ console.log(this.description(), ':', property, '=', value);
+ }
+ return this._super(property, value);