Files
DiceCloud/app/imports/client/ui/library/LibraryCollectionCreationDialog.vue
2022-11-19 17:51:50 +02:00

108 lines
2.3 KiB
Vue

<template lang="html">
<dialog-base>
<template slot="toolbar">
<v-toolbar-title>
New Collection
</v-toolbar-title>
</template>
<template>
<text-field
label="Name"
:value="libraryCollection.name"
:debounce-time="0"
@change="nameChanged"
/>
<text-area
label="Description"
:value="libraryCollection.description"
:debounce-time="0"
@change="descriptionChanged"
/>
<smart-select
label="Libraries"
:items="libraryOptions"
:value="libraryCollection.libraries"
:debounce-time="0"
multiple
chips
deletable-chips
no-data-text="No libraries found"
@change="librariesChanged"
/>
</template>
<template slot="actions">
<v-spacer />
<v-btn
text
:disabled="!valid"
@click="$store.dispatch('popDialogStack', libraryCollection)"
>
Insert Collection
</v-btn>
</template>
</dialog-base>
</template>
<script lang="js">
import DialogBase from '/imports/client/ui/dialogStack/DialogBase.vue';
import Libraries from '/imports/api/library/Libraries.js';
export default {
components: {
DialogBase,
},
data(){ return {
libraryCollection: {
name: 'New Collection',
description: undefined,
libraries: [],
},
valid: true,
}},
meteor: {
libraryOptions() {
const userId = Meteor.userId();
return Libraries.find(
{
$or: [
{ owner: userId },
{ writers: userId },
{ readers: userId },
{ public: true },
]
},
{sort: {name: 1}}
).map(library => {
return {
text: library.name,
value: library._id,
};
});
}
},
methods: {
nameChanged(val, ack){
if (val){
this.libraryCollection.name = val;
this.valid = true,
ack();
} else {
this.valid = false;
ack('Name is required')
}
},
descriptionChanged(val, ack){
this.libraryCollection.description = val;
ack();
},
librariesChanged(val, ack){
this.libraryCollection.libraries = val;
ack();
},
},
};
</script>
<style lang="css" scoped>
</style>