master.component.ts
729 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
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-master',
templateUrl: './master.component.html',
styleUrls: ['./master.component.scss']
})
export class MasterComponent implements OnInit, OnDestroy {
private timerReposo: any;
constructor(
private router: Router
) { }
ngOnInit() {
this.timerReposo = setTimeout(() => {
this.router.navigate(['cancelar-compra']);
}, 90000)
}
ngOnDestroy() {
clearTimeout(this.timerReposo);
}
reiniciarTimer() {
clearTimeout(this.timerReposo);
this.timerReposo = setTimeout(() => {
this.router.navigate(['cancelar-compra']);
}, 90000)
}
}