2022-05-12 23:05:07 +08:00
|
|
|
<template>
|
2022-05-13 19:07:50 +08:00
|
|
|
<div class="inline-attachment-container asset"
|
|
|
|
:data-asset-id="attachment.id"
|
|
|
|
>
|
|
|
|
<div class="header">
|
|
|
|
<div class="file-info">
|
|
|
|
<a :href="attachment.attributes.urls.blob"
|
|
|
|
class="file-preview-link file-name"
|
|
|
|
:id="`modal_link${attachment.id}`"
|
|
|
|
data-no-turbolink="true"
|
|
|
|
:data-id="attachment.id"
|
2023-07-24 19:28:44 +08:00
|
|
|
:data-gallery-view-id="parentId"
|
2022-05-13 19:07:50 +08:00
|
|
|
:data-preview-url="attachment.attributes.urls.preview"
|
|
|
|
>
|
2023-02-28 13:59:45 +08:00
|
|
|
<span data-toggle="tooltip"
|
|
|
|
data-placement="bottom"
|
2022-08-16 18:20:37 +08:00
|
|
|
:title="`${ attachment.attributes.file_name }`">
|
|
|
|
{{ attachment.attributes.file_name }}
|
|
|
|
</span>
|
2022-05-13 19:07:50 +08:00
|
|
|
</a>
|
|
|
|
<div class="file-metadata">
|
|
|
|
<span>
|
|
|
|
{{ i18n.t('assets.placeholder.modified_label') }}
|
2022-05-16 17:05:18 +08:00
|
|
|
{{ attachment.attributes.updated_at_formatted }}
|
2022-05-13 19:07:50 +08:00
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{ i18n.t('assets.placeholder.size_label', {size: attachment.attributes.file_size_formatted}) }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-17 16:39:17 +08:00
|
|
|
<ContextMenu
|
|
|
|
:attachment="attachment"
|
|
|
|
@attachment:viewMode="updateViewMode"
|
|
|
|
@attachment:delete="deleteAttachment"
|
2023-08-24 21:55:20 +08:00
|
|
|
@attachment:moved="attachmentMoved"
|
2023-10-05 21:44:41 +08:00
|
|
|
@attachment:uploaded="reloadAttachments"
|
2024-03-13 16:45:37 +08:00
|
|
|
@attachment:update="$emit('attachment:update', $event)"
|
2022-05-17 16:39:17 +08:00
|
|
|
/>
|
2022-05-13 19:07:50 +08:00
|
|
|
</div>
|
|
|
|
<template v-if="attachment.attributes.wopi">
|
2023-05-30 21:49:38 +08:00
|
|
|
<div v-if="showWopi"
|
2022-05-13 19:07:50 +08:00
|
|
|
class="iframe-placeholder"
|
|
|
|
:data-iframe-url="attachment.attributes.urls.wopi_action"></div>
|
|
|
|
<div v-else class="empty-office-file">
|
|
|
|
<h2>{{ i18n.t('assets.empty_office_file.description') }}</h2>
|
|
|
|
<a :href="attachment.attributes.urls.load_asset"
|
|
|
|
class="btn btn-primary reload-asset"
|
2023-05-30 21:49:38 +08:00
|
|
|
@click.prevent="reloadAsset">
|
2022-05-13 19:07:50 +08:00
|
|
|
{{ i18n.t('assets.empty_office_file.reload') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-05-16 16:24:08 +08:00
|
|
|
<template v-else-if="attachment.attributes.pdf_previewable && attachment.attributes.pdf !== null">
|
2022-08-09 16:13:43 +08:00
|
|
|
<PdfViewer :pdf="attachment.attributes.pdf" />
|
2022-05-13 19:07:50 +08:00
|
|
|
</template>
|
|
|
|
<template v-else-if="attachment.attributes.large_preview !== null">
|
|
|
|
<div class="image-container">
|
2022-05-16 17:05:18 +08:00
|
|
|
<img :src="attachment.attributes.large_preview"
|
2022-05-13 19:07:50 +08:00
|
|
|
style='opacity: 0' />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<div class="general-file-container">
|
2023-10-04 22:16:55 +08:00
|
|
|
<i class="text-sn-grey sn-icon" :class="attachment.attributes.icon"></i>
|
2022-05-13 19:07:50 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-05-12 23:05:07 +08:00
|
|
|
</div>
|
2022-05-13 19:07:50 +08:00
|
|
|
|
2022-05-12 23:05:07 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-01-04 23:34:36 +08:00
|
|
|
import AttachmentMovedMixin from './mixins/attachment_moved.js';
|
|
|
|
import ContextMenuMixin from './mixins/context_menu.js';
|
|
|
|
import ContextMenu from './context_menu.vue';
|
|
|
|
import PdfViewer from '../../pdf_viewer.vue';
|
2022-05-17 16:39:17 +08:00
|
|
|
|
2024-01-04 23:34:36 +08:00
|
|
|
export default {
|
|
|
|
name: 'inlineAttachment',
|
|
|
|
mixins: [ContextMenuMixin, AttachmentMovedMixin],
|
|
|
|
components: { ContextMenu, PdfViewer },
|
|
|
|
props: {
|
|
|
|
attachment: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
2022-05-13 19:07:50 +08:00
|
|
|
},
|
2024-01-04 23:34:36 +08:00
|
|
|
parentId: {
|
|
|
|
type: Number,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showWopi: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.showWopi = this.attachment.attributes.file_size > 0;
|
|
|
|
$(this.$nextTick(() => {
|
|
|
|
$('.image-container img')
|
|
|
|
.on('error', (event) => ActiveStoragePreviews.reCheckPreview(event))
|
|
|
|
.on('load', (event) => ActiveStoragePreviews.showPreview(event));
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
reloadAsset() {
|
|
|
|
$.ajax({
|
|
|
|
method: 'GET',
|
|
|
|
url: this.attachment.attributes.urls.load_asset,
|
|
|
|
data: {
|
|
|
|
asset: { view_mode: this.attachment.attributes.view_mode }
|
|
|
|
},
|
|
|
|
success: (data) => {
|
|
|
|
if (!(data.html.includes('empty-office-file'))) {
|
|
|
|
this.showWopi = true;
|
2023-05-30 21:49:38 +08:00
|
|
|
}
|
2024-01-04 23:34:36 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-05-12 23:05:07 +08:00
|
|
|
}
|
2024-01-04 23:34:36 +08:00
|
|
|
};
|
2022-05-12 23:05:07 +08:00
|
|
|
</script>
|