2024-02-29 13:15:31 +00:00
|
|
|
export class GestorDeTareas {
|
2018-12-20 21:30:16 +00:00
|
|
|
tareas: boolean[] = [];
|
|
|
|
alCompletar: (() => void);
|
|
|
|
|
|
|
|
constructor(alCompletar: (() => void)) {
|
|
|
|
this.alCompletar = alCompletar;
|
|
|
|
}
|
|
|
|
|
|
|
|
agregarTarea() {
|
|
|
|
return (this.tareas.push(false) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
terminarTarea() {
|
|
|
|
this.tareas.pop();
|
|
|
|
this.verificarTareas();
|
|
|
|
}
|
|
|
|
|
|
|
|
verificarTareas() {
|
|
|
|
if (this.tareas.length === 0)
|
|
|
|
this.alCompletar();
|
|
|
|
}
|
|
|
|
}
|