mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 01:16:27 +01:00
19 lines
445 B
TypeScript
19 lines
445 B
TypeScript
|
import MkChooseFileFromDriveWindow from '../views/components/choose-file-from-drive-window.vue';
|
||
|
|
||
|
export default function(opts) {
|
||
|
return new Promise((res, rej) => {
|
||
|
const o = opts || {};
|
||
|
const w = new MkChooseFileFromDriveWindow({
|
||
|
propsData: {
|
||
|
title: o.title,
|
||
|
multiple: o.multiple,
|
||
|
initFolder: o.currentFolder
|
||
|
}
|
||
|
}).$mount();
|
||
|
w.$once('selected', file => {
|
||
|
res(file);
|
||
|
});
|
||
|
document.body.appendChild(w.$el);
|
||
|
});
|
||
|
}
|