mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
132 lines
3.5 KiB
JavaScript
132 lines
3.5 KiB
JavaScript
// 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 { debounce } from '@ember/runloop';
|
|
import { computed, set } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import TooltipMixin from '../../mixins/tooltip';
|
|
import ModalMixin from '../../mixins/modal';
|
|
|
|
export default Component.extend(ModalMixin, TooltipMixin, {
|
|
link: service(),
|
|
linkName: '',
|
|
selection: null,
|
|
|
|
tab1Selected: true,
|
|
tab2Selected: false,
|
|
tab3Selected: false,
|
|
showSections: computed('tab1Selected', function() { return this.get('tab1Selected'); }),
|
|
showAttachments: computed('tab2Selected', function() { return this.get('tab2Selected'); }),
|
|
showSearch: computed('tab3Selected', function() { return this.get('tab3Selected'); }),
|
|
|
|
keywords: '',
|
|
matches: {
|
|
documents: [],
|
|
pages: [],
|
|
attachments: []
|
|
},
|
|
hasMatches: computed('matches', function () {
|
|
let m = this.get('matches');
|
|
return m.documents.length || m.pages.length || m.attachments.length;
|
|
}),
|
|
|
|
modalId: computed('page', function() { return '#content-linker-modal-' + this.get('page.id'); }),
|
|
showModal: false,
|
|
onToggle: function() {
|
|
let modalId = this.get('modalId');
|
|
|
|
if (!this.get('showModal')) {
|
|
this.modalClose(modalId);
|
|
return;
|
|
}
|
|
|
|
let self = this;
|
|
let folderId = this.get('folder.id');
|
|
let documentId = this.get('document.id');
|
|
let pageId = this.get('page.id');
|
|
|
|
this.get('link').getCandidates(folderId, documentId, pageId).then(function (candidates) {
|
|
self.set('candidates', candidates);
|
|
self.set('hasSections', is.not.null(candidates.pages) && candidates.pages.length);
|
|
self.set('hasAttachments', is.not.null(candidates.attachments) && candidates.attachments.length);
|
|
});
|
|
|
|
this.modalOpen(modalId, {show: true});
|
|
}.observes('showModal'),
|
|
|
|
didRender() {
|
|
this._super(...arguments);
|
|
|
|
this.renderTooltips();
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this._super(...arguments);
|
|
|
|
this.removeTooltips();
|
|
|
|
this.modalClose(this.get('modalId'));
|
|
},
|
|
|
|
onKeywordChange: function() {
|
|
debounce(this, this.fetch, 750);
|
|
}.observes('keywords'),
|
|
|
|
fetch() {
|
|
let keywords = this.get('keywords');
|
|
let self = this;
|
|
|
|
if (_.isEmpty(keywords)) {
|
|
this.set('matches', { documents: [], pages: [], attachments: [] });
|
|
return;
|
|
}
|
|
|
|
this.get('link').searchCandidates(keywords).then(function (matches) {
|
|
self.set('matches', matches);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
setSelection(i) {
|
|
let candidates = this.get('candidates');
|
|
let matches = this.get('matches');
|
|
|
|
this.set('selection', i);
|
|
|
|
candidates.pages.forEach(c => { set(c, 'selected', c.id === i.id); });
|
|
candidates.attachments.forEach(c => { set(c, 'selected', c.id === i.id); });
|
|
matches.documents.forEach(c => { set(c, 'selected', c.id === i.id); });
|
|
matches.pages.forEach(c => { set(c, 'selected', c.id === i.id); });
|
|
matches.attachments.forEach(c => { set(c, 'selected', c.id === i.id); });
|
|
},
|
|
|
|
onCancel() {
|
|
this.set('showModal', false);
|
|
},
|
|
|
|
onInsertLink() {
|
|
let selection = this.get('selection');
|
|
|
|
if (is.null(selection)) {
|
|
return;
|
|
}
|
|
|
|
this.get('onInsertLink')(selection);
|
|
},
|
|
|
|
onTabSelect(id) {
|
|
this.set('tab1Selected', id === 1);
|
|
this.set('tab2Selected', id === 2);
|
|
this.set('tab3Selected', id === 3);
|
|
}
|
|
}
|
|
});
|