blob: f7d277065995a8e7a2d333fc867c67fa64785fd7 [file] [log] [blame]
import {Component, ElementRef, ViewChild} from '@angular/core';
type Tab =
| 'MatchList'
| 'Notes'
| 'Entry'
| 'DriverRanking'
| 'ShiftSchedule'
| 'View';
// Ignore the guard for tabs that don't require the user to enter any data.
const unguardedTabs: Tab[] = ['MatchList'];
type TeamInMatch = {
teamNumber: number;
matchNumber: number;
setNumber: number;
compLevel: string;
};
@Component({
selector: 'my-app',
templateUrl: './app.ng.html',
styleUrls: ['../app/common.css'],
})
export class App {
selectedTeamInMatch: TeamInMatch = {
teamNumber: 1,
matchNumber: 1,
setNumber: 1,
compLevel: 'qm',
};
tab: Tab = 'MatchList';
@ViewChild('block_alerts') block_alerts: ElementRef;
constructor() {
window.addEventListener('beforeunload', (e) => {
if (!unguardedTabs.includes(this.tab)) {
if (!this.block_alerts.nativeElement.checked) {
// Based on
// https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeunload#example
// This combination ensures a dialog will be shown on most browsers.
e.preventDefault();
e.returnValue = '';
}
}
});
}
tabIs(tab: Tab) {
return this.tab == tab;
}
selectTeamInMatch(teamInMatch: TeamInMatch) {
this.selectedTeamInMatch = teamInMatch;
this.switchTabTo('Entry');
}
switchTabToGuarded(tab: Tab) {
let shouldSwitch = true;
if (this.tab !== tab) {
if (!unguardedTabs.includes(this.tab)) {
if (!this.block_alerts.nativeElement.checked) {
shouldSwitch = window.confirm(
'Leave current page? You will lose all data.'
);
}
}
}
if (shouldSwitch) {
this.switchTabTo(tab);
}
}
private switchTabTo(tab: Tab) {
this.tab = tab;
}
}