aboutsummaryrefslogtreecommitdiff
path: root/static/globals.ts
blob: 243e15e4cf3a92530815138f9ca7e2bf54c5ad24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export {
    find_block,
    vcal_objects, event_calendar_mapping
}

import { VEvent } from './vevent'
import { uid } from './types'
import { ComponentBlock } from './components/vevent-block'

import { v4 as uuid } from 'uuid'
import { setup_popup_element } from './components/popup-element'

const vcal_objects: Map<uid, VEvent> = new Map;
const event_calendar_mapping: Map<uid, string> = new Map;

declare global {
    interface Window {
        vcal_objects: Map<uid, VEvent>;
        VIEW: 'month' | 'week';
        EDIT_MODE: boolean;
        default_calendar: string;

        addNewEvent(): void;
    }
}
window.vcal_objects = vcal_objects;


window.addNewEvent = () => {
    let ev = new VEvent();
    let uid = uuid()
    let now = new Date()
    /* Round seconds to 0, since time inputs wants exact seconds */
    now.setUTCSeconds(0);
    ev.setProperties([
        ['uid', uid],
        ['dtstart', now, 'date-time'],
        ['dtend', new Date(now.getTime() + 3600 * 1000), 'date-time'],
    ])
    ev.calendar = window.default_calendar;

    vcal_objects.set(uid, ev);

    let popup = setup_popup_element(ev);
    popup.maximize();
}

function find_block(uid: uid): ComponentBlock | null {
    let obj = vcal_objects.get(uid)
    if (obj === undefined) {
        return null;
    }
    for (let el of obj.registered) {
        if (el instanceof ComponentBlock) {
            return el;
        }
    }
    // throw 'Popup not fonud';
    return null;
}