- if (vname == "ajax_document_pubmark")
- return base_path + "/pubmark/" + arguments[1] + '/';
-
- if (vname == "ajax_cover_preview")
- return "/cover/preview/";
-
- console.log("Couldn't reverse match:", vname);
- return "/404.html";
- };
-
- /*
- * Document Abstraction
- */
- function WikiDocument(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.galleryLink = $("*[data-key='gallery']", meta).text();
- this.galleryStart = parseInt($("*[data-key='gallery-start']", meta).text());
-
- var diff = $("*[data-key='diff']", meta).text();
- if (diff) {
- diff = diff.split(',');
- if (diff.length == 2 && diff[0] < diff[1])
- this.diff = diff;
- else if (diff.length == 1) {
- diff = parseInt(diff);
- if (diff != NaN)
- this.diff = [diff - 1, diff];
- }
+ if (vname == "ajax_document_pubmark")
+ return base_path + "/pubmark/" + arguments[1] + '/';
+
+ if (vname == "ajax_cover_preview")
+ return "/cover/preview/";
+
+ console.log("Couldn't reverse match:", vname);
+ return "/404.html";
+ };
+ class Api {
+ static csrf = $('input[name="csrfmiddlewaretoken"]').val();
+
+ // TODO: Add waiting marker, error reporting.
+ static post(url, data) {
+ data['csrfmiddlewaretoken'] = this.csrf;
+ $.ajax({
+ url: url,
+ type: "POST",
+ data: data
+ });
+ }
+
+ 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.");
+ }
+ });