blob: 316830cf4d7ae0cdd15ddd93261fa66b1ef9b724 [file] [log] [blame]
Milo Lin26b2cbb2022-03-26 17:35:20 -07001import {Component, OnInit} from '@angular/core';
2import {Builder, ByteBuffer} from 'flatbuffers';
Philipp Schradere5d13942024-03-17 15:44:35 -07003import {ErrorResponse} from '@org_frc971/scouting/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}