Skip to content
Snippets Groups Projects
Commit 06f44efe authored by Dara Leslie Silvera Martinez's avatar Dara Leslie Silvera Martinez
Browse files

Traducciones aregladas para matefun y grupos

parent cdad2c4e
No related branches found
No related tags found
1 merge request!1Se actualiza Angular a la versión 13 y se resuelven vulnerabilidades
......@@ -84,6 +84,12 @@ export class GruposComponent {
});
}
private notificationTypeDictonarty = {
error: (message: string) => this.notifService.error(message),
success: (message: string) => this.notifService.success(message),
warning: (message: string) => this.notifService.warning(message),
};
ngOnInit() {
let cedula = this.authService.getUser().cedula;
this.loading = true;
......@@ -97,6 +103,12 @@ export class GruposComponent {
);
}
showNotification(type: "error" | "success" | "warning", traslation: string) {
this.translateService
.get(traslation)
.subscribe(this.notificationTypeDictonarty[type]);
}
//ordenar archivos del grupo seleccionado.
ordenarAlph(a, b) {
if (a.nombre.toLowerCase() < b.nombre.toLowerCase()) return -1;
......@@ -238,20 +250,11 @@ export class GruposComponent {
}
cargarArchivoCompartido() {
if (this.archivoSeleccionado) {
if (this.archivoSeleccionado.directorio) {
this.notifService.warning(
this.translateService.get("i18n.warning.file.noSelected").value,
false
);
} else {
this.sessionService.setArchivo(this.archivoSeleccionado);
this.router.navigate(["/matefun"]);
}
} else {
this.notifService.warning(
this.translateService.get("i18n.warning.file.noSelected").value
);
if (!this.archivoSeleccionado || this.archivoSeleccionado.directorio) {
this.showNotification("warning", "i18n.warning.file.noSelected");
return;
}
this.sessionService.setArchivo(this.archivoSeleccionado);
this.router.navigate(["/matefun"]);
}
}
......@@ -385,6 +385,12 @@ export class MateFunComponent {
}
}
private notificationTypeDictonarty = {
error: (message: string) => this.notifService.error(message),
success: (message: string) => this.notifService.success(message),
warning: (message: string) => this.notifService.warning(message),
};
ngOnInit() {
window["matefunComponent"] = { component: this };
......@@ -504,6 +510,12 @@ export class MateFunComponent {
}
}
showNotification(type: "error" | "success" | "warning", traslation: string) {
this.translateService
.get(traslation)
.subscribe(this.notificationTypeDictonarty[type]);
}
makeAJump() {
if (this.jump) {
this.jump = false;
......@@ -808,9 +820,7 @@ export class MateFunComponent {
const padreId = event.detail.padreId;
if (nombre == undefined || nombre == "") {
this.notifService.error(
this.translateService.get("i18n.warning.file.invalidName").value
);
this.showNotification("error", "i18n.warning.file.invalidName");
return;
}
......@@ -818,9 +828,7 @@ export class MateFunComponent {
var regex = /^[A-Z]/;
if (!regex.test(nombre)) {
this.notifService.error(
this.translateService.get("i18n.warning.file.capitalLetter").value
);
this.showNotification("error", "i18n.warning.file.capitalLetter");
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment