1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 13:49:42 +02:00
documize/gui/app/components/document/view-revision.js
McMatts 3e37b9b7e4 Flip revisions diff format, by popular request
Switch from 'what you will lose' to 'what you will gain'...
2018-04-26 15:01:43 +01:00

78 lines
2.1 KiB
JavaScript

// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
import { computed, set } from '@ember/object';
import { inject as service } from '@ember/service';
import Component from '@ember/component';
import ModalMixin from '../../mixins/modal';
export default Component.extend(ModalMixin, {
documentService: service('document'),
revision: null,
diff: '',
hasRevisions: computed('revisions', function() {
return this.get('revisions').length > 0;
}),
hasDiff: computed('diff', function() {
return this.get('diff').length > 0;
}),
init() {
this._super(...arguments);
this.revisions = [];
},
didReceiveAttrs() {
this._super(...arguments);
this.fetchRevisions();
},
fetchRevisions() {
this.get('documentService').getDocumentRevisions(this.get('document.id')).then((revisions) => {
revisions.forEach((r) => {
set(r, 'deleted', r.revisions === 0);
let date = moment(r.created).format('Do MMMM YYYY HH:mm');
let format = `${r.firstname} ${r.lastname} on ${date} changed ${r.title}`;
set(r, 'label', format);
});
this.set('revisions', revisions);
if (revisions.length > 0 && is.null(this.get('revision'))) {
this.send('onSelectRevision', revisions[0]);
}
});
},
fetchDiff(pageId, revisionId) {
this.get('documentService').getPageRevisionDiff(this.get('document.id'), pageId, revisionId).then((revision) => {
this.set('diff', revision);
});
},
actions: {
onSelectRevision(revision) {
this.set('revision', revision);
if (!revision.deleted) {
this.fetchDiff(revision.pageId, revision.id);
}
},
onRollback() {
let revision = this.get('revision');
let cb = this.get('onRollback');
cb(revision.pageId, revision.id);
this.modalClose('#document-rollback-modal');
}
}
});