1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

open/edit doc templates

This commit is contained in:
Harvey Kandola 2017-12-16 16:01:22 +00:00
parent 5d3ddaa2d9
commit 1ed6427532
2 changed files with 50 additions and 0 deletions

View file

@ -16,6 +16,7 @@ import { inject as service } from '@ember/service';
import TooltipMixin from '../../mixins/tooltip';
import ModalMixin from '../../mixins/modal';
import AuthMixin from '../../mixins/auth';
import stringUtil from '../../utils/string';
export default Component.extend(ModalMixin, TooltipMixin, AuthMixin, {
spaceService: service('folder'),
@ -332,6 +333,21 @@ export default Component.extend(ModalMixin, TooltipMixin, AuthMixin, {
this.modalClose("#import-doc-modal");
this.attrs.onRefresh();
}
},
onOpenTemplate(e) {
e.preventDefault();
let id = this.get('selectedTemplate');
if (is.empty(id)) {
return;
}
let template = this.get('templates').findBy('id', id)
this.modalClose("#space-template-modal");
let slug = stringUtil.makeSlug(template.get('title'));
this.get('router').transitionTo('document', this.get('space.id'), this.get('space.slug'), id, slug);
}
}
});