scinote-web/app/javascript/vue/shared/content/attachments/open_locally_menu.vue

84 lines
2.5 KiB
Vue
Raw Normal View History

<template>
<div class="sn-open-locally-menu">
<div v-if="!this.canOpenLocally && (this.attachment.attributes.wopi && this.attachment.attributes.urls.edit_asset)">
<a :href="`${this.attachment.attributes.urls.edit_asset}`" target="_blank"
2024-01-04 07:13:21 +08:00
class="block whitespace-nowrap rounded px-3 py-2.5
hover:!text-sn-blue hover:no-underline cursor-pointer hover:bg-sn-super-light-grey">
{{ this.attachment.attributes.wopi_context.button_text }}
</a>
</div>
<div v-else>
<MenuDropdown
v-if="this.menu.length > 1"
class="ml-auto"
:listItems="this.menu"
:btnClasses="`btn btn-light icon-btn !bg-sn-white`"
:position="'right'"
:btnText="i18n.t('attachments.open_in')"
:caret="true"
@openLocally="openLocally"
@openImageEditor="openImageEditor"
></MenuDropdown>
<a v-else-if="this.menu.length === 1" class="btn btn-light !bg-sn-white" :href="this.menu[0].url" :target="this.menu[0].target" @click="this[this.menu[0].emit]()">
{{ this.menu[0].text }}
</a>
</div>
</div>
</template>
<script>
2024-01-04 07:13:21 +08:00
import OpenLocallyMixin from './mixins/open_locally.js';
import MenuDropdown from '../../menu_dropdown.vue';
2024-01-04 07:13:21 +08:00
export default {
name: 'OpenLocallyMenu',
mixins: [OpenLocallyMixin],
components: { MenuDropdown },
props: {
data: { type: String, required: true },
},
created() {
this.attachment = { attributes: JSON.parse(this.data) };
this.fetchLocalAppInfo();
2024-01-04 07:13:21 +08:00
},
computed: {
menu() {
const menu = [];
if (this.attachment.attributes.wopi && this.attachment.attributes.urls.edit_asset) {
2024-01-04 07:13:21 +08:00
menu.push({
text: this.attachment.attributes.wopi_context.button_text,
url: this.attachment.attributes.urls.edit_asset,
url_target: '_blank'
});
2024-01-04 07:13:21 +08:00
}
if (this.attachment.attributes.image_editable) {
menu.push({
text: this.i18n.t('assets.file_preview.edit_in_scinote'),
emit: 'openImageEditor'
});
}
2024-01-04 07:13:21 +08:00
if (this.canOpenLocally) {
const text = this.localAppName
? this.i18n.t('attachments.open_locally_in', { application: this.localAppName })
: this.i18n.t('attachments.open_locally');
2023-12-19 16:19:19 +08:00
2024-01-04 07:13:21 +08:00
menu.push({
text,
emit: 'openLocally'
2024-01-04 07:13:21 +08:00
});
}
2024-01-04 07:13:21 +08:00
return menu;
},
},
methods: {
openImageEditor() {
document.getElementById('editImageButton').click();
}
}
2024-01-04 07:13:21 +08:00
};
</script>