mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
82 lines
2 KiB
Vue
82 lines
2 KiB
Vue
<template>
|
|
<div>
|
|
<button class="ml-2 btn"
|
|
id="share-button"
|
|
type="button"
|
|
:class="shareClass"
|
|
:title="shareValue"
|
|
:disabled="disabled"
|
|
@click="openModal">
|
|
<span class="sn-icon sn-icon-shared"></span>
|
|
<span class="text-sm">
|
|
{{ shareValue }}
|
|
</span>
|
|
</button>
|
|
<div ref="modal">
|
|
<shareModalContainer :shared="share"
|
|
:open="visibleShareModal"
|
|
:shareableLinkUrl="shareableLinkUrl"
|
|
:characterLimit="255"
|
|
@enable="enableShare"
|
|
@disable="disableShare"
|
|
@close="closeModal"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import shareModalContainer from './components/shareable_link_modal.vue'
|
|
export default {
|
|
name: "ShareLinkContainer",
|
|
components: { shareModalContainer },
|
|
props: {
|
|
shared: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
shareableLinkUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
share: false,
|
|
visibleShareModal: false
|
|
};
|
|
},
|
|
created() {
|
|
this.share = this.shared;
|
|
},
|
|
computed: {
|
|
shareClass() {
|
|
return this.share ? 'btn-shared' : 'btn-secondary';
|
|
},
|
|
shareValue() {
|
|
return this.i18n.t(this.share ? 'my_modules.shareable_links.shared' : 'my_modules.shareable_links.share');
|
|
}
|
|
},
|
|
mounted() {
|
|
// move modal to body to avoid z-index issues
|
|
$('body').append($(this.$refs.modal));
|
|
},
|
|
methods:{
|
|
enableShare() {
|
|
this.share = true;
|
|
},
|
|
disableShare() {
|
|
this.share = false;
|
|
},
|
|
openModal() {
|
|
this.visibleShareModal = true;
|
|
},
|
|
closeModal() {
|
|
this.visibleShareModal = false;
|
|
}
|
|
}
|
|
};
|
|
</script>
|