55b3ae22ee
* メニューをComposition API化、switchアイテム追加 クライアントサイド画像圧縮の準備 * メニュー型定義を分離 (TypeScriptの型支援が効かないので) * disabled * make keepOriginal to follow setting value * fix * fix * Fix * clean up
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import { ref } from 'vue';
|
|
import * as os from '@/os';
|
|
import { stream } from '@/stream';
|
|
import { i18n } from '@/i18n';
|
|
import { defaultStore } from '@/store';
|
|
import { DriveFile } from 'misskey-js/built/entities';
|
|
|
|
function select(src: any, label: string | null, multiple: boolean): Promise<DriveFile | DriveFile[]> {
|
|
return new Promise((res, rej) => {
|
|
const keepOriginal = ref(defaultStore.state.keepOriginalUploading);
|
|
|
|
const chooseFileFromPc = () => {
|
|
const input = document.createElement('input');
|
|
input.type = 'file';
|
|
input.multiple = multiple;
|
|
input.onchange = () => {
|
|
const promises = Array.from(input.files).map(file => os.upload(file, defaultStore.state.uploadFolder, undefined, keepOriginal.value));
|
|
|
|
Promise.all(promises).then(driveFiles => {
|
|
res(multiple ? driveFiles : driveFiles[0]);
|
|
}).catch(e => {
|
|
os.alert({
|
|
type: 'error',
|
|
text: e
|
|
});
|
|
});
|
|
|
|
// 一応廃棄
|
|
(window as any).__misskey_input_ref__ = null;
|
|
};
|
|
|
|
// https://qiita.com/fukasawah/items/b9dc732d95d99551013d
|
|
// iOS Safari で正常に動かす為のおまじない
|
|
(window as any).__misskey_input_ref__ = input;
|
|
|
|
input.click();
|
|
};
|
|
|
|
const chooseFileFromDrive = () => {
|
|
os.selectDriveFile(multiple).then(files => {
|
|
res(files);
|
|
});
|
|
};
|
|
|
|
const chooseFileFromUrl = () => {
|
|
os.inputText({
|
|
title: i18n.ts.uploadFromUrl,
|
|
type: 'url',
|
|
placeholder: i18n.ts.uploadFromUrlDescription
|
|
}).then(({ canceled, result: url }) => {
|
|
if (canceled) return;
|
|
|
|
const marker = Math.random().toString(); // TODO: UUIDとか使う
|
|
|
|
const connection = stream.useChannel('main');
|
|
connection.on('urlUploadFinished', data => {
|
|
if (data.marker === marker) {
|
|
res(multiple ? [data.file] : data.file);
|
|
connection.dispose();
|
|
}
|
|
});
|
|
|
|
os.api('drive/files/upload-from-url', {
|
|
url: url,
|
|
folderId: defaultStore.state.uploadFolder,
|
|
marker
|
|
});
|
|
|
|
os.alert({
|
|
title: i18n.ts.uploadFromUrlRequested,
|
|
text: i18n.ts.uploadFromUrlMayTakeTime
|
|
});
|
|
});
|
|
};
|
|
|
|
os.popupMenu([label ? {
|
|
text: label,
|
|
type: 'label'
|
|
} : undefined, {
|
|
type: 'switch',
|
|
text: i18n.ts.keepOriginalUploading,
|
|
ref: keepOriginal
|
|
}, {
|
|
text: i18n.ts.upload,
|
|
icon: 'fas fa-upload',
|
|
action: chooseFileFromPc
|
|
}, {
|
|
text: i18n.ts.fromDrive,
|
|
icon: 'fas fa-cloud',
|
|
action: chooseFileFromDrive
|
|
}, {
|
|
text: i18n.ts.fromUrl,
|
|
icon: 'fas fa-link',
|
|
action: chooseFileFromUrl
|
|
}], src);
|
|
});
|
|
}
|
|
|
|
export function selectFile(src: any, label: string | null = null): Promise<DriveFile> {
|
|
return select(src, label, false) as Promise<DriveFile>;
|
|
}
|
|
|
|
export function selectFiles(src: any, label: string | null = null): Promise<DriveFile[]> {
|
|
return select(src, label, true) as Promise<DriveFile[]>;
|
|
}
|