28 lines
1.9 KiB
JavaScript
28 lines
1.9 KiB
JavaScript
// Configuration of periodic events in CoBiE time
|
|
// Each object describes when the event occurs and how often it repeats.
|
|
//
|
|
// Fields:
|
|
// start - CoBiE timestamp when the first occurrence happens.
|
|
// end - optional CoBiE timestamp after which the event stops.
|
|
// unit - the unit of the recurrence ("second", "xenocycle", "quantic",
|
|
// "chronon", "eonstrip", "megasequence", "cosmocycle", ...).
|
|
// interval - how many units between occurrences (1 = every unit,
|
|
// 2 = every second unit, ...).
|
|
// label - short description displayed on the calendar.
|
|
// duration - optional length of the event in seconds.
|
|
// showMega - optional boolean, show label on the megasequence view (default true).
|
|
// showDetail - optional boolean, show event in the detail view (default true).
|
|
// color - optional hex color for the event (used in detail view)
|
|
|
|
window.SPECIAL_EVENTS = [
|
|
{ cobie: '49f4.9332', label: 'Afina', color: '#e57373', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '11e5.f552', label: 'Oleks', color: '#64b5f6', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '4d07.a2b2', label: 'Vincent', color: '#81c784', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '3edc.d430', label: 'Hochzeitstag', color: '#ffb74d', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '330d.d4ae', label: 'Zusammentag', color: '#ba68c8', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '11de.0c52', label: 'Anna', color: '#4db6ac', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '467f.ae61', label: 'Iris', color: '#7986cb', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '6854.7a75', label: 'Sleep', color: '#546e7a', unit: 'second', interval: 86400, duration: 28800, showMega: false },
|
|
{ cobie: '6854.9695', label: 'Night', color: '#212121', unit: 'second', interval: 86400, duration: 28800, showMega: false, shiftWithTimezone: true }
|
|
];
|