mirror of
https://github.com/open-webui/open-webui
synced 2025-04-05 13:15:36 +00:00
feat: Add Google Drive picker button to MessageInput component
This commit is contained in:
parent
61b1a8fdab
commit
f566c5940a
@ -2316,6 +2316,8 @@
|
|||||||
await uploadWeb(data);
|
await uploadWeb(data);
|
||||||
} else if (type === 'youtube') {
|
} else if (type === 'youtube') {
|
||||||
await uploadYoutubeTranscription(data);
|
await uploadYoutubeTranscription(data);
|
||||||
|
} else if (type === 'google-drive') {
|
||||||
|
await uploadGoogleDriveFile(data);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
on:submit={async (e) => {
|
on:submit={async (e) => {
|
||||||
|
@ -496,6 +496,16 @@
|
|||||||
uploadFilesHandler={() => {
|
uploadFilesHandler={() => {
|
||||||
filesInputElement.click();
|
filesInputElement.click();
|
||||||
}}
|
}}
|
||||||
|
uploadGoogleDriveHandler={async () => {
|
||||||
|
try {
|
||||||
|
const fileData = await createPicker();
|
||||||
|
if (fileData) {
|
||||||
|
dispatch('upload', { type: 'google-drive', data: fileData });
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
toast.error('Error accessing Google Drive: ' + error.message);
|
||||||
|
}
|
||||||
|
}}
|
||||||
onClose={async () => {
|
onClose={async () => {
|
||||||
await tick();
|
await tick();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user