* refactor(frontend): Reactivityで型を明示するように * fix: プロパティの参照が誤っているのを修正 * fix: 初期化の値を空配列に書き換えていた部分をnullに置き換え
62 lines
1.5 KiB
Vue
62 lines
1.5 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<!-- eslint-disable vue/no-mutating-props -->
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
|
<template #header><i class="ti ti-photo"></i> {{ i18n.ts._pages.blocks.image }}</template>
|
|
<template #func>
|
|
<button @click="choose()">
|
|
<i class="ti ti-folder"></i>
|
|
</button>
|
|
</template>
|
|
|
|
<section>
|
|
<MkDriveFileThumbnail v-if="file" style="height: 150px;" :file="file" fit="contain" @click="choose()"/>
|
|
</section>
|
|
</XContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
/* eslint-disable vue/no-mutating-props */
|
|
import { onMounted, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkDriveFileThumbnail from '@/components/MkDriveFileThumbnail.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const props = defineProps<{
|
|
modelValue: any
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'update:modelValue', value: any): void;
|
|
}>();
|
|
|
|
const file = ref<Misskey.entities.DriveFile | null>(null);
|
|
|
|
async function choose() {
|
|
os.selectDriveFile(false).then((fileResponse) => {
|
|
file.value = fileResponse[0];
|
|
emit('update:modelValue', {
|
|
...props.modelValue,
|
|
fileId: file.value.id,
|
|
});
|
|
});
|
|
}
|
|
|
|
onMounted(async () => {
|
|
if (props.modelValue.fileId == null) {
|
|
await choose();
|
|
} else {
|
|
os.api('drive/files/show', {
|
|
fileId: props.modelValue.fileId,
|
|
}).then(fileResponse => {
|
|
file.value = fileResponse;
|
|
});
|
|
}
|
|
});
|
|
</script>
|