mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 06:35:14 +08:00
127 lines
4.2 KiB
Vue
127 lines
4.2 KiB
Vue
<template>
|
|
<span>
|
|
<!-- multiple options -->
|
|
<MenuDropdown
|
|
v-if="multipleOpenOptions.length > 1"
|
|
:listItems="multipleOpenOptions"
|
|
:btnClasses="'btn btn-light icon-btn thumbnail-action-btn'"
|
|
:position="'left'"
|
|
:btnIcon="'sn-icon sn-icon-open'"
|
|
:title="i18n.t('attachments.thumbnail.buttons.open')"
|
|
@menu-toggle="toggleMenu"
|
|
@open_locally="openLocally"
|
|
@open_scinote_editor="openScinoteEditor"
|
|
>
|
|
</MenuDropdown>
|
|
|
|
<!-- open locally -->
|
|
<a
|
|
class="btn btn-light icon-btn thumbnail-action-btn"
|
|
v-else-if="canOpenLocally"
|
|
@click="openLocally"
|
|
:title="i18n.t('attachments.thumbnail.buttons.open')"
|
|
>
|
|
<i class="sn-icon sn-icon-open"></i>
|
|
</a>
|
|
|
|
<!-- wopi -->
|
|
<a
|
|
class="btn btn-light icon-btn thumbnail-action-btn"
|
|
v-else-if="this.attachment.attributes.wopi && this.attachment.attributes.urls.edit_asset"
|
|
:href="attachment.attributes.urls.edit_asset"
|
|
:title="i18n.t('attachments.thumbnail.buttons.open')"
|
|
id="wopi_file_edit_button"
|
|
:class="attachment.attributes.wopi_context.edit_supported ? '' : 'disabled'"
|
|
target="_blank"
|
|
>
|
|
<i class="sn-icon sn-icon-open"></i>
|
|
</a>
|
|
|
|
<!-- gene sequence -->
|
|
<a
|
|
class="btn btn-light icon-btn thumbnail-action-btn ove-edit-button"
|
|
v-else-if="attachment.attributes.asset_type == 'gene_sequence' && attachment.attributes.urls.open_vector_editor_edit"
|
|
@click="openOVEditor(attachment.attributes.urls.open_vector_editor_edit)"
|
|
>
|
|
<i class="sn-icon sn-icon-open"></i>
|
|
</a>
|
|
|
|
<!-- marvin js -->
|
|
<a
|
|
class="btn btn-light icon-btn thumbnail-action-btn marvinjs-edit-button"
|
|
v-else-if="attachment.attributes.asset_type == 'marvinjs' && attachment.attributes.urls.marvin_js_start_edit"
|
|
:data-sketch-id="attachment.id"
|
|
:data-update-url="attachment.attributes.urls.marvin_js"
|
|
:data-sketch-start-edit-url="attachment.attributes.urls.marvin_js_start_edit"
|
|
:data-sketch-name="attachment.attributes.metadata.name"
|
|
:data-sketch-description="attachment.attributes.metadata.description"
|
|
>
|
|
<i class="sn-icon sn-icon-open"></i>
|
|
</a>
|
|
|
|
<!-- editing -->
|
|
<a
|
|
class="btn btn-light icon-btn thumbnail-action-btn image-edit-button"
|
|
v-else-if="attachment.attributes.image_editable && attachment.attributes.urls.edit_asset"
|
|
:title="i18n.t('attachments.thumbnail.buttons.open')"
|
|
:data-image-id="attachment.id"
|
|
:data-image-name="attachment.attributes.file_name"
|
|
:data-image-url="attachment.attributes.urls.asset_file"
|
|
:data-image-quality="attachment.attributes.image_context && attachment.attributes.image_context.quality"
|
|
:data-image-mime-type="attachment.attributes.image_context && attachment.attributes.image_context.type"
|
|
:data-image-start-edit-url="attachment.attributes.urls.start_edit_image"
|
|
>
|
|
<i class="sn-icon sn-icon-open"></i>
|
|
</a>
|
|
|
|
<!-- hidden -->
|
|
<a class="image-edit-button hidden"
|
|
v-if="attachment.attributes.asset_type != 'marvinjs'
|
|
&& attachment.attributes.image_editable
|
|
&& attachment.attributes.urls.start_edit_image"
|
|
ref="imageEditButton"
|
|
:data-image-id="attachment.id"
|
|
:data-image-name="attachment.attributes.file_name"
|
|
:data-image-url="attachment.attributes.urls.asset_file"
|
|
:data-image-quality="attachment.attributes.image_context.quality"
|
|
:data-image-mime-type="attachment.attributes.image_context.type"
|
|
:data-image-start-edit-url="attachment.attributes.urls.start_edit_image"
|
|
></a>
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
import OpenLocallyMixin from './mixins/open_locally.js';
|
|
import MenuDropdown from '../../../shared/menu_dropdown.vue';
|
|
|
|
export default {
|
|
name: 'multipleOpen',
|
|
mixins: [OpenLocallyMixin],
|
|
emits: ['menu-dropdown-toggle'],
|
|
components: {
|
|
MenuDropdown
|
|
},
|
|
props: {
|
|
multipleOpenOptions: {
|
|
type: Array,
|
|
required: true
|
|
},
|
|
attachment: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
},
|
|
methods: {
|
|
toggleMenu(isOpen) {
|
|
this.$emit('menu-dropdown-toggle', isOpen);
|
|
},
|
|
openScinoteEditor() {
|
|
this.$refs.imageEditButton.click();
|
|
},
|
|
openOVEditor(url) {
|
|
window.showIFrameModal(url);
|
|
}
|
|
}
|
|
};
|
|
|
|
</script>
|