mirror of
https://github.com/documize/community.git
synced 2025-07-19 21:29:42 +02:00
88 lines
2.6 KiB
JavaScript
88 lines
2.6 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 Ember from 'ember';
|
||
|
import NotifierMixin from '../../../mixins/notifier';
|
||
|
|
||
|
export default Ember.Controller.extend(NotifierMixin, {
|
||
|
documentService: Ember.inject.service('document'),
|
||
|
folderService: Ember.inject.service('folder'),
|
||
|
localStorage: Ember.inject.service('localStorage'),
|
||
|
selectedDocuments: [],
|
||
|
hasSelectedDocuments: Ember.computed.gt('selectedDocuments.length', 0),
|
||
|
queryParams: ['tab'],
|
||
|
tab: 'index',
|
||
|
|
||
|
actions: {
|
||
|
onMoveDocument(folder) {
|
||
|
let self = this;
|
||
|
let documents = this.get('selectedDocuments');
|
||
|
|
||
|
documents.forEach(function (documentId) {
|
||
|
self.get('documentService').getDocument(documentId).then(function (doc) {
|
||
|
doc.set('folderId', folder);
|
||
|
doc.set('selected', !doc.get('selected'));
|
||
|
self.get('documentService').save(doc).then(function () {
|
||
|
self.get('target._routerMicrolib').refresh();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
this.set('selectedDocuments', []);
|
||
|
this.send("showNotification", "Moved");
|
||
|
},
|
||
|
|
||
|
onDeleteDocument() {
|
||
|
let documents = this.get('selectedDocuments');
|
||
|
let self = this;
|
||
|
let promises = [];
|
||
|
|
||
|
documents.forEach(function (document, index) {
|
||
|
promises[index] = self.get('documentService').deleteDocument(document);
|
||
|
});
|
||
|
|
||
|
Ember.RSVP.all(promises).then(() => {
|
||
|
let documents = this.get('model.documents');
|
||
|
documents.forEach(function (document) {
|
||
|
document.set('selected', false);
|
||
|
});
|
||
|
this.set('model.documents', documents);
|
||
|
|
||
|
this.set('selectedDocuments', []);
|
||
|
this.send("showNotification", "Deleted");
|
||
|
this.get('target._routerMicrolib').refresh();
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onAddSpace(payload) {
|
||
|
let self = this;
|
||
|
this.showNotification("Added");
|
||
|
|
||
|
this.get('folderService').add(payload).then(function (newFolder) {
|
||
|
self.get('folderService').setCurrentFolder(newFolder);
|
||
|
self.transitionToRoute('folder', newFolder.get('id'), newFolder.get('slug'));
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onDeleteSpace() {
|
||
|
this.get('folderService').delete(this.get('model.folder.id')).then(() => { /* jshint ignore:line */
|
||
|
this.showNotification("Deleted");
|
||
|
this.get('localStorage').clearSessionItem('folder');
|
||
|
this.transitionToRoute('application');
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onImport() {
|
||
|
this.get('target._routerMicrolib').refresh();
|
||
|
}
|
||
|
}
|
||
|
});
|