1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-21 14:19:43 +02:00
documize/gui/app/components/document/view-revision.js

65 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-12-11 13:45:56 +00:00
// 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
2018-12-20 13:05:22 +00:00
import { computed } from '@ember/object';
2017-12-11 13:45:56 +00:00
import { inject as service } from '@ember/service';
import ModalMixin from '../../mixins/modal';
import Component from '@ember/component';
2017-12-11 13:45:56 +00:00
export default Component.extend(ModalMixin, {
documentService: service('document'),
diff: '',
2018-12-20 13:05:22 +00:00
revision: null,
2017-12-11 13:45:56 +00:00
hasDiff: computed('diff', function() {
return this.get('diff').length > 0;
}),
canRollback: computed('permissions.documentEdit', 'document.protection', function() {
let constants = this.get('constants');
if (this.get('document.protection') === constants.ProtectionType.Lock) return false;
return this.get('permissions.documentEdit') &&
this.get('document.protection') === constants.ProtectionType.None;
}),
2017-12-11 13:45:56 +00:00
didReceiveAttrs() {
this._super(...arguments);
2018-12-20 13:05:22 +00:00
let revision = this.get('revision');
2017-12-11 13:45:56 +00:00
if (!_.isNull(revision)) {
2018-12-20 13:05:22 +00:00
if (!revision.deleted) {
this.fetchDiff(revision.pageId, revision.id);
2017-12-11 13:45:56 +00:00
}
2018-12-20 13:05:22 +00:00
}
},
2017-12-11 13:45:56 +00:00
fetchDiff(pageId, revisionId) {
this.get('documentService').getPageRevisionDiff(this.get('document.id'), pageId, revisionId).then((revision) => {
this.set('diff', revision);
});
},
actions: {
2018-12-20 13:05:22 +00:00
onShowModal() {
this.modalOpen('#document-rollback-modal', {show:true});
2017-12-11 13:45:56 +00:00
},
onRollback() {
let revision = this.get('revision');
let cb = this.get('onRollback');
cb(revision.pageId, revision.id);
2017-12-11 13:45:56 +00:00
this.modalClose('#document-rollback-modal');
}
}
});