sinonimo.component.ts
923 Bytes
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
import { Component, OnInit } from '@angular/core';
import { ISinonimo } from 'src/app/interfaces/ISinonimo';
import { IArticulo } from 'src/app/interfaces/IArticulo';
@Component({
selector: 'app-sinonimo',
templateUrl: './sinonimo.component.html',
styleUrls: ['./sinonimo.component.scss']
})
export class SinonimoComponent implements OnInit {
sinonimos: ISinonimo[] = [];
isValid: boolean;
constructor() { }
ngOnInit() {
}
selectArticulo(articulo: IArticulo) {
for (const s of this.sinonimos) {
for (const articulo of s.productos) {
articulo.seleccionado = false;
}
}
articulo.seleccionado = true;
}
validate() {
this.isValid = false;
for (const s of this.sinonimos) {
for (const articulo of s.productos) {
if (articulo.seleccionado) {
this.isValid = true;
}
}
}
return !this.isValid ? 'disabled' : '';
}
}