Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-02-22 15:37:40 +0300
committerJulius Härtl <jus@bitgrid.net>2019-03-01 22:57:00 +0300
commit37e6488206d119ff99fbeab2fd77fe1f22d7ddee (patch)
tree0d0fa2581b62eed6473f44423205d20c1bdfd622 /apps/files_sharing/src/views
parent55cd9eab03aeaf30b743fa2e4fd8789588188fd1 (diff)
Use nextcloud-vue-collection 0.1.2
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/src/views')
-rw-r--r--apps/files_sharing/src/views/CollaborationView.vue23
1 files changed, 22 insertions, 1 deletions
diff --git a/apps/files_sharing/src/views/CollaborationView.vue b/apps/files_sharing/src/views/CollaborationView.vue
index 1c1cdd7c3e7..6a64abb1467 100644
--- a/apps/files_sharing/src/views/CollaborationView.vue
+++ b/apps/files_sharing/src/views/CollaborationView.vue
@@ -21,14 +21,35 @@
-->
<template>
- <collection-list type="files"></collection-list>
+ <collection-list v-if="fileId" type="files" :id="fileId" :name="filename"></collection-list>
</template>
<script>
import { CollectionList } from 'nextcloud-vue-collections'
+ /**
+ * Those translations will be used by the vue component but they should be shipped with the server
+ * t('files_sharing', 'Add to a collection')
+ * t('files_sharing', 'Details')
+ * t('files_sharing', 'Rename collection')
+ */
+
export default {
name: 'CollaborationView',
+ computed: {
+ fileId() {
+ if (this.$root.model && this.$root.model.id) {
+ return '' + this.$root.model.id;
+ }
+ return null;
+ },
+ filename() {
+ if (this.$root.model && this.$root.model.name) {
+ return '' + this.$root.model.name;
+ }
+ return '';
+ }
+ },
components: {
CollectionList
}