2017-02-27 17:07:49 +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';
|
|
|
|
|
|
|
|
const {
|
|
|
|
computed,
|
|
|
|
} = Ember;
|
|
|
|
|
|
|
|
export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
|
|
|
|
documentService: Ember.inject.service('document'),
|
|
|
|
editMode: false,
|
|
|
|
docName: '',
|
|
|
|
docExcerpt: '',
|
|
|
|
hasNameError: computed.empty('docName'),
|
|
|
|
hasExcerptError: computed.empty('docExcerpt'),
|
|
|
|
|
2017-03-22 10:24:30 +00:00
|
|
|
keyUp(e) {
|
|
|
|
if (e.keyCode === 27) { // escape key
|
|
|
|
this.send('onCancel');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-02-27 17:07:49 +00:00
|
|
|
actions: {
|
|
|
|
toggleEdit() {
|
|
|
|
this.set('docName', this.get('document.name'));
|
|
|
|
this.set('docExcerpt', this.get('document.excerpt'));
|
|
|
|
this.set('editMode', true);
|
2017-03-22 10:24:30 +00:00
|
|
|
|
|
|
|
Ember.run.schedule('afterRender', () => {
|
|
|
|
$('#document-name').select();
|
|
|
|
});
|
2017-02-27 17:07:49 +00:00
|
|
|
},
|
|
|
|
|
2017-03-22 10:24:30 +00:00
|
|
|
onSave() {
|
2017-02-27 17:07:49 +00:00
|
|
|
if (this.get('hasNameError') || this.get('hasExcerptError')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.set('document.name', this.get('docName'));
|
|
|
|
this.set('document.excerpt', this.get('docExcerpt'));
|
2017-04-04 19:11:59 +01:00
|
|
|
|
2017-02-27 17:07:49 +00:00
|
|
|
this.showNotification('Saved');
|
2017-04-04 19:11:59 +01:00
|
|
|
this.get('browser').setTitle(this.get('document.name'));
|
|
|
|
this.get('browser').setMetaDescription(this.get('document.excerpt'));
|
|
|
|
|
2017-02-27 17:07:49 +00:00
|
|
|
this.get('documentService').save(this.get('document'));
|
|
|
|
|
|
|
|
this.set('editMode', false);
|
|
|
|
},
|
|
|
|
|
2017-03-22 10:24:30 +00:00
|
|
|
onCancel() {
|
2017-02-27 17:07:49 +00:00
|
|
|
this.set('editMode', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|