-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
76 lines (68 loc) · 1.69 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import {
initializeApp,
} from "https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js";
import {
getAuth,
GoogleAuthProvider,
onAuthStateChanged,
signInWithRedirect,
signOut,
} from "https://www.gstatic.com/firebasejs/9.5.0/firebase-auth.js";
import {
addDoc,
collection,
deleteDoc,
doc,
getFirestore,
onSnapshot,
orderBy,
query,
} from "https://www.gstatic.com/firebasejs/9.5.0/firebase-firestore.js";
import {
deleteObject,
getDownloadURL,
getStorage,
ref,
uploadBytes,
} from "https://www.gstatic.com/firebasejs/9.5.0/firebase-storage.js";
import {
addImage,
clearAllImages,
showLoginUi,
} from "/ui.js";
import {
getCurrentTime,
getRandomString,
} from '/utils.js';
/**
* deleteImage es la función que se llama cuando un usuario hace click en el
* botón de eliminar imagen.
*
* @param {string} id ID de la imagen en la base de datos.
* @param {string} path Ruta de la imagen en el almacenamiento.
*/
export function deleteImage(id, path) {
}
/**
* logIn es la función que se llama cuando un invitado hace click en el botón
* de iniciar sesión.
*/
export function logIn() {
}
/**
* logOut es la función que se llama cuando un usuario hace click en el botón
* de cerrar sesión.
*/
export function logOut() {
}
/**
* uploadImage es la función que se llama cuando un invitado o usuario pulsan
* el botón de Subir imagen tras rellenar el formulario.
*
* Los datos se comprueban que son correctos antes de llamar a esta función.
*
* @param {string} title Título de la imagen a subir.
* @param {File} image Archivo de imagen a subir.
*/
export async function uploadImage(title, image) {
}