2017-02-28 03:25:06 +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
|
|
|
|
|
|
|
|
import Ember from 'ember';
|
|
|
|
import NotifierMixin from '../../mixins/notifier';
|
|
|
|
import TooltipMixin from '../../mixins/tooltip';
|
|
|
|
|
|
|
|
export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
|
|
|
|
documentService: Ember.inject.service('document'),
|
|
|
|
sectionService: Ember.inject.service('section'),
|
|
|
|
editMode: false,
|
|
|
|
|
2017-03-07 16:10:13 +00:00
|
|
|
didReceiveAttrs() {
|
2017-03-06 18:30:55 +00:00
|
|
|
this._super(...arguments);
|
|
|
|
|
2017-03-22 09:40:34 +00:00
|
|
|
if (this.get('isDestroyed') || this.get('isDestroying')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-06 18:30:55 +00:00
|
|
|
let page = this.get('page');
|
|
|
|
|
|
|
|
this.get('documentService').getPageMeta(page.get('documentId'), page.get('id')).then((meta) => {
|
2017-03-22 09:40:34 +00:00
|
|
|
if (this.get('isDestroyed') || this.get('isDestroying')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-06 18:30:55 +00:00
|
|
|
this.set('meta', meta);
|
2017-09-18 13:02:15 +01:00
|
|
|
if (this.get('toEdit') === this.get('page.id') && this.get('permissions.documentEdit')) {
|
2017-03-07 16:10:13 +00:00
|
|
|
this.send('onEdit');
|
|
|
|
}
|
2017-03-06 18:30:55 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-02-28 03:25:06 +00:00
|
|
|
actions: {
|
2017-03-06 19:11:54 +00:00
|
|
|
onSavePage(page, meta) {
|
|
|
|
this.set('page', page);
|
|
|
|
this.set('meta', meta);
|
|
|
|
this.set('editMode', false);
|
|
|
|
this.get('onSavePage')(page, meta);
|
|
|
|
},
|
|
|
|
|
2017-03-02 20:30:26 +00:00
|
|
|
onSavePageAsBlock(block) {
|
|
|
|
this.attrs.onSavePageAsBlock(block);
|
2017-02-28 03:25:06 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onCopyPage(documentId) {
|
|
|
|
this.attrs.onCopyPage(this.get('page.id'), documentId);
|
|
|
|
},
|
|
|
|
|
|
|
|
onMovePage(documentId) {
|
|
|
|
this.attrs.onMovePage(this.get('page.id'), documentId);
|
|
|
|
},
|
|
|
|
|
|
|
|
onDeletePage(deleteChildren) {
|
|
|
|
let page = this.get('page');
|
|
|
|
|
|
|
|
if (is.undefined(page)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
id: page.get('id'),
|
|
|
|
title: page.get('title'),
|
|
|
|
children: deleteChildren
|
|
|
|
};
|
|
|
|
|
|
|
|
this.attrs.onDeletePage(params);
|
|
|
|
},
|
|
|
|
|
|
|
|
onEdit() {
|
|
|
|
if (this.get('editMode')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-09 17:18:50 +00:00
|
|
|
this.get('toEdit', '');
|
|
|
|
// this.set('pageId', this.get('page.id'));
|
2017-03-06 18:30:55 +00:00
|
|
|
this.set('editMode', true);
|
2017-02-28 03:25:06 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onCancelEdit() {
|
|
|
|
this.set('editMode', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|