mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
25 lines
901 B
TypeScript
25 lines
901 B
TypeScript
// Exported viewer link location
|
|
const minimalLocation = 'minimal';
|
|
const speakerLocation = 'speaker';
|
|
const smLocation = 'sm';
|
|
const publicLocation = 'public';
|
|
const pipLocation = 'pip';
|
|
const studioLocation = 'studio';
|
|
const cuesheetLocation = 'cuesheet';
|
|
const countdownLocation = 'countdown';
|
|
const clockLocation = 'clock';
|
|
const lowerLocation = 'lower';
|
|
|
|
export const viewerLocations = [
|
|
{ link: speakerLocation, label: 'Stage timer' },
|
|
{ link: clockLocation, label: 'Clock' },
|
|
{ link: minimalLocation, label: 'Minimal timer' },
|
|
{ link: smLocation, label: 'Backstage screen' },
|
|
{ link: publicLocation, label: 'Public screen' },
|
|
{ link: lowerLocation, label: 'Lower thirds' },
|
|
{ link: pipLocation, label: 'Picture in Picture' },
|
|
{ link: studioLocation, label: 'Studio clock' },
|
|
{ link: countdownLocation, label: 'Countdown' },
|
|
{ link: cuesheetLocation, label: 'Cuesheet' },
|
|
];
|