add confirm dialog

This commit is contained in:
samunohito 2024-02-08 08:22:19 +09:00
parent b7192e5ac6
commit 9c4e40f83f

View file

@ -239,11 +239,20 @@ async function onDrop(ev: DragEvent) {
},
),
);
} catch (err: any) {
} catch (err) {
//
return;
}
const confirm = await os.confirm({
type: 'info',
title: '確認',
text: `ドラッグ&ドロップされた${uploadedItems.length}個のファイルをドライブにアップロードします。実行しますか?`,
});
if (confirm.canceled) {
return;
}
const items = uploadedItems.map(({ droppedFile, driveFile }) => {
const item = fromDriveFile(driveFile);
if (directoryToCategory.value) {