mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 09:13:08 +02:00
f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
78 lines
1.6 KiB
Vue
78 lines
1.6 KiB
Vue
<template>
|
|
<x-container @remove="() => $emit('remove')" :draggable="true">
|
|
<template #header><fa :icon="faImage"/> {{ $t('_pages.blocks.image') }}</template>
|
|
<template #func>
|
|
<button @click="choose()">
|
|
<fa :icon="faFolderOpen"/>
|
|
</button>
|
|
</template>
|
|
|
|
<section class="oyyftmcf">
|
|
<mk-file-thumbnail class="preview" v-if="file" :file="file" :detail="true" fit="contain" @click="choose()"/>
|
|
</section>
|
|
</x-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
|
import { faImage, faFolderOpen } from '@fortawesome/free-regular-svg-icons';
|
|
import i18n from '../../../i18n';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkFileThumbnail from '../../../components/drive-file-thumbnail.vue';
|
|
import { selectDriveFile } from '../../../scripts/select-drive-file';
|
|
|
|
export default Vue.extend({
|
|
i18n,
|
|
|
|
components: {
|
|
XContainer, MkFileThumbnail
|
|
},
|
|
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
file: null,
|
|
faPencilAlt, faImage, faFolderOpen
|
|
};
|
|
},
|
|
|
|
created() {
|
|
if (this.value.fileId === undefined) Vue.set(this.value, 'fileId', null);
|
|
},
|
|
|
|
mounted() {
|
|
if (this.value.fileId == null) {
|
|
this.choose();
|
|
} else {
|
|
this.$root.api('drive/files/show', {
|
|
fileId: this.value.fileId
|
|
}).then(file => {
|
|
this.file = file;
|
|
});
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
async choose() {
|
|
selectDriveFile(this.$root, false).then(file => {
|
|
this.file = file;
|
|
this.value.fileId = file.id;
|
|
});
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.oyyftmcf {
|
|
> .preview {
|
|
height: 150px;
|
|
}
|
|
}
|
|
</style>
|