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

191 lines
6 KiB
Vue
Raw Normal View History

2022-05-12 23:05:07 +08:00
<template>
<div class="attachment-container asset"
:data-asset-id="attachment.id"
@mouseenter="handleMouseEnter"
@mouseleave="handleMouseLeave"
v-click-outside="handleClickOutsideThumbnail"
:data-e2e="`e2e-CO-${dataE2e}-attachment${attachment.id}-thumbnail`"
2022-05-12 23:05:07 +08:00
>
<a :class="{ hidden: showOptions }"
:href="attachment.attributes.urls.blob"
2022-05-12 23:05:07 +08:00
class="file-preview-link file-name"
:id="`modal_link${attachment.id}`"
data-no-turbolink="true"
:data-id="attachment.id"
:data-gallery-view-id="parentId"
2022-05-12 23:05:07 +08:00
:data-preview-url="attachment.attributes.urls.preview"
:data-e2e="`e2e-BT-attachment-${attachment.id}`"
2022-05-12 23:05:07 +08:00
>
2022-05-13 19:07:50 +08:00
<div class="attachment-preview" :class= "attachment.attributes.asset_type">
<img v-if="attachment.attributes.medium_preview !== null"
2023-09-18 21:32:53 +08:00
class="rounded-sm"
2022-05-13 19:07:50 +08:00
:src="attachment.attributes.medium_preview"
2022-05-12 23:05:07 +08:00
style='opacity: 0' />
2023-09-18 21:32:53 +08:00
<div v-else class="w-[186px] h-[186px] bg-sn-super-light-grey rounded-sm"></div>
2022-05-12 23:05:07 +08:00
</div>
<div class="attachment-label"
data-toggle="tooltip"
data-placement="bottom"
:title="`${ attachment.attributes.file_name }`">
2022-05-12 23:05:07 +08:00
{{ attachment.attributes.file_name }}
</div>
</a>
<div :class="{ hidden: !showOptions }" class="hovered-thumbnail h-full">
<a
:href="attachment.attributes.urls.blob"
class="file-preview-link file-name max-h-36 overflow-auto"
:id="`modal_link${attachment.id}`"
data-no-turbolink="true"
:data-id="attachment.id"
:data-gallery-view-id="parentId"
:data-preview-url="attachment.attributes.urls.preview"
>
{{ attachment.attributes.file_name }}
</a>
2023-09-25 20:15:08 +08:00
<div class="absolute bottom-16 text-sn-grey">
2022-05-13 19:07:50 +08:00
{{ attachment.attributes.file_size_formatted }}
2022-05-12 23:05:07 +08:00
</div>
<div class="absolute bottom-4">
<AttachmentActions
:withBorder="true"
2024-04-30 16:32:24 +08:00
:attachment="attachment"
:showOptions="showOptions"
2024-04-30 16:32:24 +08:00
@attachment:viewMode="updateViewMode"
@attachment:delete="deleteAttachment"
@attachment:moved="attachmentMoved"
@attachment:uploaded="reloadAttachments"
@attachment:changed="$emit('attachment:changed', $event)"
@attachment:update="$emit('attachment:update', $event)"
@attachment:toggle_menu="toggleMenu"
@attachment:move_modal="showMoveModal"
@attachment:open="$emit($event)"
2024-04-30 16:32:24 +08:00
/>
</div>
</div>
<Teleport to="body">
<deleteAttachmentModal
v-if="deleteModal"
:fileName="attachment.attributes.file_name"
@confirm="deleteAttachment"
@cancel="deleteModal = false"
/>
<MoveAssetModal
v-if="movingAttachment"
:parent_type="attachment.attributes.parent_type"
:targets_url="attachment.attributes.urls.move_targets"
@confirm="moveAttachment($event)" @cancel="closeMoveModal"
/>
</Teleport>
<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>
2022-05-12 23:05:07 +08:00
</div>
</template>
<script>
2024-01-04 20:59:54 +08:00
import AttachmentMovedMixin from './mixins/attachment_moved.js';
import ContextMenuMixin from './mixins/context_menu.js';
import ContextMenu from './context_menu.vue';
import deleteAttachmentModal from './delete_modal.vue';
import MenuDropdown from '../../../shared/menu_dropdown.vue';
import MoveAssetModal from '../modal/move.vue';
import MoveMixin from './mixins/move.js';
import OpenMenu from './open_menu.vue';
import AttachmentActions from './attachment_actions.vue';
import { vOnClickOutside } from '@vueuse/components';
2024-01-04 17:15:06 +08:00
export default {
name: 'thumbnailAttachment',
mixins: [ContextMenuMixin, AttachmentMovedMixin, MoveMixin],
2024-01-04 20:59:54 +08:00
components: {
ContextMenu,
deleteAttachmentModal,
MoveAssetModal,
MenuDropdown,
OpenMenu,
AttachmentActions
2024-01-04 20:59:54 +08:00
},
2024-01-04 17:15:06 +08:00
props: {
attachment: {
type: Object,
required: true
},
2024-01-04 17:15:06 +08:00
parentId: {
type: Number,
required: true
},
dataE2e: {
type: String,
default: ''
2024-01-04 17:15:06 +08:00
}
},
data() {
return {
2024-01-15 20:44:50 +08:00
showOptions: false,
2024-01-04 17:15:06 +08:00
deleteModal: false,
isMenuOpen: false
2024-01-04 17:15:06 +08:00
};
},
directives: {
'click-outside': vOnClickOutside
},
2024-01-04 17:15:06 +08:00
mounted() {
2024-01-04 20:59:54 +08:00
$(this.$nextTick(() => {
$('.attachment-preview img')
2024-01-04 17:15:06 +08:00
.on('error', (event) => ActiveStoragePreviews.reCheckPreview(event))
2024-01-04 20:59:54 +08:00
.on('load', (event) => ActiveStoragePreviews.showPreview(event));
}));
2024-01-04 17:15:06 +08:00
},
watch: {
2024-01-15 20:44:50 +08:00
showOptions(newValue) {
2024-01-04 17:15:06 +08:00
// reload thumbnail on mouse out
if (newValue) return;
2024-01-04 20:59:54 +08:00
$(this.$nextTick(() => {
$('.attachment-preview img')
.on('error', (event) => ActiveStoragePreviews.reCheckPreview(event))
2024-01-04 20:59:54 +08:00
.on('load', (event) => ActiveStoragePreviews.showPreview(event));
}));
2024-01-04 17:15:06 +08:00
}
},
methods: {
openOVEditor(url) {
window.showIFrameModal(url);
},
openScinoteEditor() {
this.$refs.imageEditButton.click();
},
handleMouseLeave() {
if (!this.isMenuOpen) {
this.showOptions = false;
}
},
async handleMouseEnter() {
this.showOptions = true;
},
toggleMenu(isMenuOpen) {
this.isMenuOpen = isMenuOpen;
if (isMenuOpen) {
this.showOptions = true;
}
},
handleClickOutsideThumbnail(event) {
const isClickInsideModal = event.target.closest('.modal');
if (!isClickInsideModal) {
this.showOptions = false;
this.isMenuOpen = false;
}
},
2022-05-12 23:05:07 +08:00
}
2024-01-04 20:59:54 +08:00
};
2022-05-12 23:05:07 +08:00
</script>