85 lines
1.9 KiB
Vue
85 lines
1.9 KiB
Vue
<template lang="html">
|
|
<v-toolbar-items>
|
|
<v-btn
|
|
v-if="showSubscribeButton"
|
|
flat
|
|
:loading="loading"
|
|
@click="subscribe(!subscribed)"
|
|
>
|
|
{{ subscribed ? 'Unsubscribe' : 'Subscribe' }}
|
|
</v-btn>
|
|
<v-btn
|
|
v-if="canEdit"
|
|
flat
|
|
icon
|
|
data-id="library-edit-button"
|
|
@click="editLibrary(library._id)"
|
|
>
|
|
<v-icon>create</v-icon>
|
|
</v-btn>
|
|
</v-toolbar-items>
|
|
</template>
|
|
|
|
<script>
|
|
import Libraries from '/imports/api/library/Libraries.js';
|
|
import { assertDocEditPermission } from '/imports/api/sharing/sharingPermissions.js';
|
|
export default {
|
|
data(){ return {
|
|
loading: false,
|
|
}},
|
|
meteor: {
|
|
library(){
|
|
return Libraries.findOne(this.$route.params.id);
|
|
},
|
|
subscribed(){
|
|
let libraryId = this.$route.params.id;
|
|
let subs = Meteor.user().subscribedLibraries;
|
|
return subs.includes(libraryId);
|
|
},
|
|
showSubscribeButton(){
|
|
let userId = Meteor.userId();
|
|
let library = this.library;
|
|
if (!library) return;
|
|
if (
|
|
library.readers.includes(userId) ||
|
|
library.writers.includes(userId) ||
|
|
library.owner === userId
|
|
) {
|
|
return false
|
|
} else {
|
|
return true;
|
|
}
|
|
},
|
|
canEdit(){
|
|
try {
|
|
assertDocEditPermission(this.library, Meteor.userId());
|
|
return true
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
subscribe(value){
|
|
this.loading = true;
|
|
Meteor.users.subscribeToLibrary.call({
|
|
libraryId: this.$route.params.id,
|
|
subscribe: value,
|
|
}, () => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
editLibrary(){
|
|
this.$store.commit('pushDialogStack', {
|
|
component: 'library-edit-dialog',
|
|
elementId: 'library-edit-button',
|
|
data: {_id: this.$route.params.id},
|
|
});
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|