-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
62 lines (62 loc) · 1.5 KB
/
script.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
new Vue({
el: "#app",
data: () => ({
numero: null,
factorial: null,
worker: null,
cargando: false,
mostrarCopiado: false,
}),
mounted() {
if (typeof Worker === "undefined") return alert("Tu navegador no soporta los web workers. Prueba usando uno más reciente.");
this.worker = new Worker("worker.js");
this.worker.onmessage = evento => {
this.factorial = evento.data;
this.cargando = false;
this.enfocar();
};
this.enfocar();
},
watch: {
numero() {
this.factorial = null;
}
},
methods: {
copiarAlPortapapeles(texto) {
if (!texto) return;
if (!navigator.clipboard) {
return this.copiarAlPortapapelesSiLaPrimeraOpcionFalla(texto);
}
navigator.clipboard.writeText(texto)
.then(() => {
this.indicarCopiadoExitoso();
})
.catch(error => {
// Por si el usuario no da permiso u ocurre un error
console.log("Hubo un error: ", error);
this.copiarAlPortapapelesSiLaPrimeraOpcionFalla(texto);
});
},
copiarAlPortapapelesSiLaPrimeraOpcionFalla(texto) {
prompt("Presiona CTRL + C para copiar, y luego presiona ENTER", texto);
this.indicarCopiadoExitoso();
},
indicarCopiadoExitoso() {
this.mostrarCopiado = true;
setTimeout(() => {
this.mostrarCopiado = false;
}, 1000);
},
enfocar() {
this.$refs.input.focus();
},
calcularFactorial() {
if (!this.worker) return;
this.factorial = null;
if (!this.numero) return this.enfocar();
this.cargando = true;
this.worker.postMessage(this.numero);
}
},
});