%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/src/components/ |
Current File : //www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/src/components/MoveDialog.vue |
<!-- - Copyright (c) 2020. The Nextcloud Bookmarks contributors. - - This file is licensed under the Affero General Public License version 3 or later. See the COPYING file. --> <template> <NcModal v-if="showNcModal" :title="title" @close="onClose"> <div class="move-dialog"> <FolderPicker :title="title" :filter="filterFolders" @submit="onSubmit" /> </div> </NcModal> </template> <script> import { NcModal } from '@nextcloud/vue' import { actions, mutations } from '../store/index.js' import FolderPicker from './FolderPicker.vue' export default { name: 'MoveDialog', components: { FolderPicker, NcModal, }, computed: { showNcModal() { return this.$store.state.displayMoveDialog }, selection() { return this.$store.state.selection }, title() { if (this.selection.folders.length) { if (this.selection.bookmarks.length) { return n('bookmarks', 'Moving %n folder and some bookmarks', 'Moving %n folders and some bookmarks', this.selection.folders.length ) } else { return n('bookmarks', 'Moving %n folder', 'Moving %n folders', this.selection.folders.length ) } } else { return n('bookmarks', 'Moving %n bookmark', 'Moving %n bookmarks', this.selection.bookmarks.length ) } }, }, methods: { async onSubmit(folderId) { this.$store.commit(mutations.DISPLAY_MOVE_DIALOG, false) try { await this.$store.dispatch(actions.MOVE_SELECTION, folderId) } finally { this.$store.commit(mutations.RESET_SELECTION) } }, onClose() { this.$store.commit(mutations.DISPLAY_MOVE_DIALOG, false) }, filterFolders(child) { return !this.selection.folders.some(folder => folder.id === child.id) }, }, } </script> <style> .move-dialog { min-width: 300px; height: 300px; overflow-y: scroll; padding: 20px; } </style>