main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
729 bytes
|
Line | |
---|
1 | import { getDownloadURL, ref, uploadBytesResumable } from 'firebase/storage';
|
---|
2 | import { storage } from 'src/lib/firebase';
|
---|
3 |
|
---|
4 | /**
|
---|
5 | * Uploads a file to Firebase Cloud Storage.
|
---|
6 | *
|
---|
7 | * @param data - The file in Blob format to be uploaded.
|
---|
8 | * @param path - The path in Firebase Storage where the file should be stored.
|
---|
9 | * @returns A promise that resolves with the download URL of the uploaded file.
|
---|
10 | */
|
---|
11 | async function uploadToFirebaseStorage(
|
---|
12 | data: Blob | Uint8Array | ArrayBuffer,
|
---|
13 | path: string
|
---|
14 | ): Promise<string> {
|
---|
15 | const storageRef = ref(storage, path);
|
---|
16 |
|
---|
17 | // Upload the Blob
|
---|
18 | await uploadBytesResumable(storageRef, data);
|
---|
19 |
|
---|
20 | const url = await getDownloadURL(storageRef);
|
---|
21 | return url;
|
---|
22 | }
|
---|
23 |
|
---|
24 | export default uploadToFirebaseStorage;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.