mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
48093b8651
* ux/54-help tooltips * ux/54-help refetch after mutation * ux/54-help broadcast event index * ux/54-help prevent multiple keypresses when key held * ux/54-help fat clock * ux/54-help progress bar user defined * ux/54-help onAir is button * ux/54-help OSC: add missing presenter message * ux/54-help OSC: enable / disable OSC * ux/54-help handle timezone in excel date import * ux/54-help tray left click to show app * ux/54-help create queriable endpoint * ux/54-help fix memoisation in lower thirds * ux/54-help revise icons * ux/54-help clarify text * ux/54-help forgiving text parsing * ux/54-help add smart keywords * ux/54-help version bump
53 lines
1.0 KiB
JavaScript
53 lines
1.0 KiB
JavaScript
const dummy = new Date();
|
|
|
|
export const sampleData = {
|
|
presenterMessage: {
|
|
text: 'Only the timer sees this',
|
|
active: false,
|
|
},
|
|
publicMessage: {
|
|
text: 'Everyone sees this',
|
|
active: false,
|
|
},
|
|
events: [
|
|
{
|
|
id: '1',
|
|
title: 'Is the internet a fad?',
|
|
subtitle: 'It is',
|
|
presenter: 'Carlos Valente',
|
|
timeStart: 37800000,
|
|
timeEnd: 39600000,
|
|
clockStarted: dummy,
|
|
timerDuration: 60,
|
|
type: 'event',
|
|
},
|
|
{
|
|
id: 0.4849093424577693,
|
|
duration: 25*60000,
|
|
type: 'delay',
|
|
},
|
|
{
|
|
id: '2',
|
|
title: 'Is reddit a dictatorship?',
|
|
subtitle: 'It is',
|
|
presenter: 'Carlos Valente',
|
|
timeStart: 39600000,
|
|
timeEnd: 40320000,
|
|
clockStarted: dummy,
|
|
timerDuration: 60*60000,
|
|
type: 'event',
|
|
},
|
|
{
|
|
id: '3',
|
|
title: 'Out of words',
|
|
subtitle: '',
|
|
presenter: 'Carlos Valente',
|
|
timeStart: 41400000,
|
|
timeEnd: 43200000,
|
|
clockStarted: dummy,
|
|
timerDuration: 60,
|
|
type: 'event',
|
|
},
|
|
],
|
|
};
|