2016-11-30 17:56:36 -08: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
|
|
|
|
|
|
|
|
import Ember from 'ember';
|
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
2017-03-08 17:32:46 +00:00
|
|
|
revision: null,
|
2016-11-30 17:56:36 -08:00
|
|
|
hasDiff: Ember.computed('diff', function () {
|
|
|
|
return this.get('diff').length > 0;
|
|
|
|
}),
|
|
|
|
|
|
|
|
didReceiveAttrs() {
|
|
|
|
let revisions = this.get('revisions');
|
|
|
|
|
2017-03-08 17:32:46 +00:00
|
|
|
revisions.forEach((r) => {
|
|
|
|
Ember.set(r, 'deleted', r.revisions === 0);
|
|
|
|
Ember.set(r, 'label', `${r.created} - ${r.firstname} ${r.lastname} - ${r.title}`);
|
2016-11-30 17:56:36 -08:00
|
|
|
});
|
|
|
|
|
2017-03-08 17:32:46 +00:00
|
|
|
if (revisions.length > 0 && is.null(this.get('revision'))) {
|
|
|
|
this.send('onSelectRevision', revisions[0]);
|
|
|
|
}
|
2017-01-24 08:48:27 -08:00
|
|
|
|
2017-03-08 17:32:46 +00:00
|
|
|
this.set('revisions', revisions);
|
2016-11-30 17:56:36 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
2017-03-08 17:32:46 +00:00
|
|
|
onSelectRevision(revision) {
|
2016-11-30 17:56:36 -08:00
|
|
|
this.set('revision', revision);
|
2017-03-08 17:32:46 +00:00
|
|
|
|
2016-11-30 17:56:36 -08:00
|
|
|
if (!revision.deleted) {
|
|
|
|
this.attrs.onFetchDiff(revision.pageId, revision.id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-03-08 17:32:46 +00:00
|
|
|
onRollback() {
|
2016-11-30 17:56:36 -08:00
|
|
|
let revision = this.get('revision');
|
|
|
|
this.attrs.onRollback(revision.pageId, revision.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|