- this.galleryImages = [];
- this.text = null;
- this.has_local_changes = false;
- this._lock = -1;
- this._context_lock = -1;
- this._lock_count = 0;
- };
-
- WikiDocument.prototype.triggerDocumentChanged = function() {
- $(document).trigger('wlapi_document_changed', this);
- };
- /*
- * Fetch text of this document.
- */
- WikiDocument.prototype.fetch = function(params) {
- params = $.extend({}, noops, params);
- var self = this;
- $.ajax({
- method: "GET",
- url: reverse("ajax_document_text", self.id),
- data: {"revision": self.revision},
- dataType: 'json',
- success: function(data) {
- var changed = false;
-
- if (self.text === null || self.revision !== data.revision) {
- self.text = data.text;
- self.revision = data.revision;
- self.gallery = data.gallery;
- changed = true;
- self.triggerDocumentChanged();
- };
-
- self.has_local_changes = false;
- params['success'](self, changed);
- },
- error: function() {
- params['failure'](self, "Nie udało się wczytać treści dokumentu.");
- }
- });
- };
- /*
- * Fetch history of this document.
- *
- * from - First revision to fetch (default = 0) upto - Last revision to
- * fetch (default = tip)
- *
- */
- WikiDocument.prototype.fetchHistory = function(params) {
- /* this doesn't modify anything, so no locks */
- params = $.extend({}, noops, params);
- var self = this;
- $.ajax({
- method: "GET",
- url: reverse("ajax_document_history", self.id),
- dataType: 'json',
- data: {
- "from": params['from'],
- "upto": params['upto']
- },
- success: function(data) {
- params['success'](self, data);
- },
- error: function() {
- params['failure'](self, "Nie udało się wczytać historii dokumentu.");
- }
- });
- };
- WikiDocument.prototype.fetchDiff = function(params) {
- /* this doesn't modify anything, so no locks */
- var self = this;
- params = $.extend({
- 'from': self.revision,
- 'to': self.revision
- }, noops, params);
- $.ajax({
- method: "GET",
- url: reverse("ajax_document_diff", self.id),
- dataType: 'html',
- data: {
- "from": params['from'],
- "to": params['to']
- },
- success: function(data) {
- params['success'](self, data);
- },
- error: function() {
- params['failure'](self, "Nie udało się wczytać porównania wersji.");
- }
- });
- };
-
- WikiDocument.prototype.checkRevision = function(params) {
- /* this doesn't modify anything, so no locks */
- var self = this;
- $.ajax({
- method: "GET",
- url: reverse("ajax_document_rev", self.id),
- dataType: 'text',
- success: function(data) {
- if (data == '') {
- if (params.error)
- params.error();
+ static get(url, callback) {
+ $.ajax({
+ url: url,
+ type: "GET",
+ success: function(data) {
+ callback(data);
+ },
+ });
+ }
+
+ static setGallery(id, gallery) {
+ this.post(
+ '/editor/set-gallery/' + id + '/',
+ {gallery: gallery}
+ )
+ }
+ static setGalleryStart(id, start) {
+ this.post(
+ '/editor/set-gallery-start/' + id + '/',
+ {start: start}
+ )
+ }
+
+ static openGalleryEdit(bookSlug) {
+ window.open(
+ '/documents/book/' + bookSlug + '/gallery/',
+ '_blank'
+ ).focus();
+ }
+
+ static withGalleryList(callback) {
+ this.get(
+ '/editor/galleries/',
+ callback
+ );
+ }
+ }
+
+ /*
+ * Document Abstraction
+ */
+ class WikiDocument {
+ constructor(element_id) {
+ var meta = $('#' + element_id);
+ this.id = meta.attr('data-chunk-id');
+
+ this.revision = $("*[data-key='revision']", meta).text();
+ this.readonly = !!$("*[data-key='readonly']", meta).text();
+
+ this.bookSlug = $("*[data-key='book-slug']", meta).text();
+ this.galleryLink = $("*[data-key='gallery']", meta).text();
+ this.galleryStart = parseInt($("*[data-key='gallery-start']", meta).text());
+ this.fullUri = $("*[data-key='full-uri']", meta).text();
+
+ this.galleryImages = [];
+ this.text = null;
+ this.has_local_changes = false;
+ this.active = true;
+ this._lock = -1;
+ this._context_lock = -1;
+ this._lock_count = 0;
+ };
+
+ triggerDocumentChanged() {
+ $(document).trigger('wlapi_document_changed', this);
+ }
+
+ /*
+ * Fetch text of this document.
+ */
+ fetch(params) {
+ params = $.extend({}, noops, params);
+ var self = this;
+ $.ajax({
+ method: "GET",
+ url: reverse("ajax_document_text", self.id),
+ data: {"revision": self.revision},
+ dataType: 'json',
+ success: function(data) {
+ var changed = false;
+
+ if (self.text === null || self.revision !== data.revision) {
+ self.text = data.text;
+ $.wiki.undo.push(data.text);
+ self.revision = data.revision;
+ self.gallery = data.gallery;
+ changed = true;
+ self.triggerDocumentChanged();
+ };
+
+ self.has_local_changes = false;
+ params['success'](self, changed);
+ },
+ error: function() {
+ params['failure'](self, "Nie udało się wczytać treści dokumentu.");
+ }
+ });
+ }
+
+ /*
+ * Fetch history of this document.
+ */
+ fetchHistory(params) {
+ /* this doesn't modify anything, so no locks */
+ params = $.extend({}, noops, params);
+ var self = this;
+ $.ajax({
+ method: "GET",
+ url: reverse("ajax_document_history", self.id) + "?before=" + params.before,
+ dataType: 'json',
+ success: function(data) {
+ params['success'](self, data);
+ },
+ error: function() {
+ params['failure'](self, "Nie udało się wczytać historii dokumentu.");
+ }
+ });
+ }
+
+ fetchDiff(params) {
+ /* this doesn't modify anything, so no locks */
+ var self = this;
+ params = $.extend({
+ 'from': self.revision,
+ 'to': self.revision
+ }, noops, params);
+ $.ajax({
+ method: "GET",
+ url: reverse("ajax_document_diff", self.id),
+ dataType: 'html',
+ data: {
+ "from": params['from'],
+ "to": params['to']
+ },
+ success: function(data) {
+ params['success'](self, data);
+ },
+ error: function() {
+ params['failure'](self, "Nie udało się wczytać porównania wersji.");
+ }
+ });
+ }
+
+ checkRevision(params) {
+ /* this doesn't modify anything, so no locks */
+ var self = this;
+ let active = self.active;
+ self.active = false;
+ $.ajax({
+ method: "GET",
+ url: reverse("ajax_document_rev", self.id),
+ data: {
+ 'a': active,
+ },
+ dataType: 'text',
+ success: function(data) {
+ if (data == '') {
+ if (params.error)
+ params.error();
+ }
+ else if (data != self.revision)
+ params.outdated();