mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-03 12:36:06 +02:00
* enhance: refine uploadFile * fix: missing locale * refactor: harden types * refactor: シェーダーファイルをlazy-loadingできるように * fix(frontend): omit console.log in production environment * fix: glslのバージョン表記は最初の行になければならない * fix: シェーダーの読み込みが完了してからレンダリングを行うように * fix merge failure * fix: ウォーターマークのプリセットがない場合にdividerが2重に表示される問題を修正 * fix: アップローダーダイアログの機能設定でウォーターマークが無効な場合でもデフォルトのプリセットが適用されてしまう問題を修正 * fix lint * Revert "fix: シェーダーの読み込みが完了してからレンダリングを行うように" This reverts commite06f37a7d4. * Revert "fix: glslのバージョン表記は最初の行になければならない" This reverts commitafcc37d886. * Revert "refactor: シェーダーファイルをlazy-loadingできるように" This reverts commita1ab2fa38c. * fix: ウォーターマークのFX定義を分ける * Update packages/frontend/src/components/MkWatermarkEditorDialog.vue * Update packages/frontend/src/components/MkWatermarkEditorDialog.vue * Update packages/frontend/src/components/MkWatermarkEditorDialog.vue --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
75 lines
1.7 KiB
Vue
75 lines
1.7 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<MkButton inline rounded primary @click="selectButton($event)">{{ i18n.ts.selectFile }}</MkButton>
|
|
<div :class="['_nowrap', !fileName && $style.fileNotSelected]">{{ friendlyFileName }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import * as Misskey from 'misskey-js';
|
|
import { computed, ref } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import { selectFile } from '@/utility/drive.js';
|
|
import { misskeyApi } from '@/utility/misskey-api.js';
|
|
|
|
const props = defineProps<{
|
|
fileId?: string | null;
|
|
validate?: (file: Misskey.entities.DriveFile) => Promise<boolean>;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'update', result: Misskey.entities.DriveFile): void;
|
|
}>();
|
|
|
|
const fileUrl = ref('');
|
|
const fileName = ref<string>('');
|
|
|
|
const friendlyFileName = computed<string>(() => {
|
|
if (fileName.value) {
|
|
return fileName.value;
|
|
}
|
|
if (fileUrl.value) {
|
|
return fileUrl.value;
|
|
}
|
|
|
|
return i18n.ts.fileNotSelected;
|
|
});
|
|
|
|
if (props.fileId) {
|
|
misskeyApi('drive/files/show', {
|
|
fileId: props.fileId,
|
|
}).then((apiRes) => {
|
|
fileName.value = apiRes.name;
|
|
fileUrl.value = apiRes.url;
|
|
});
|
|
}
|
|
|
|
function selectButton(ev: MouseEvent) {
|
|
selectFile({
|
|
anchorElement: ev.currentTarget ?? ev.target,
|
|
multiple: false,
|
|
}).then(async (file) => {
|
|
if (!file) return;
|
|
if (props.validate && !await props.validate(file)) return;
|
|
|
|
emit('update', file);
|
|
fileName.value = file.name;
|
|
fileUrl.value = file.url;
|
|
});
|
|
}
|
|
|
|
</script>
|
|
|
|
<style module>
|
|
.fileNotSelected {
|
|
font-weight: 700;
|
|
color: var(--MI_THEME-infoWarnFg);
|
|
}
|
|
</style>
|