blob: de0b2e1929b85d6cb86cbe74f0f23c9b1c063c51 [file] [log] [blame]
Milo Lin26b2cbb2022-03-26 17:35:20 -07001import {Component, OnInit} from '@angular/core';
2import {Builder, ByteBuffer} from 'flatbuffers';
Philipp Schraderd7efa2b2023-02-17 21:15:13 -08003import {ErrorResponse} from '../../webserver/requests/messages/error_response_generated';
Milo Lin26b2cbb2022-03-26 17:35:20 -07004
5@Component({
6 selector: 'shift-schedule',
7 templateUrl: './shift_schedule.ng.html',
Philipp Schrader175a93c2023-02-19 13:13:40 -08008 styleUrls: ['../app/common.css', './shift_schedule.component.css'],
Milo Lin26b2cbb2022-03-26 17:35:20 -07009})
10export class ShiftsComponent {
11 progressMessage: string = '';
12 errorMessage: string = '';
13 // used to calculate shift blocks from starting match to ending match
14 numMatches: number[] = [20, 40, 60, 80, 100, 120, 140, 160, 180, 200];
15}