summaryrefslogtreecommitdiff
path: root/scripts/cards/drag.js
blob: 807e0c520cc6dd1098c37c0405cdb4654b3ddd84 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
'use strict';

class MultiDrag extends EventTarget {
    del = false;
    drag = [];
    mouse = [null, null];

    constructor(ret = false) {
        super();

        window.addEventListener("mousemove", this.update.bind(this));
        window.addEventListener("mouseup", this.stopDraggingAll.bind(this));
        document.body.addEventListener("mouseleave", this.stopDraggingAll.bind(this));

        this.ret = ret;
    }

    addDragEl(el, ox, oy, px, py, pt) {
        if(this.del)
            return;
    
        el.style.transitionDuration = "0s";
        
        let push = {
            e: el,
            osx: ox,
            osy: oy,
            ptd: pt
        };

        if(this.ret) {
            push.prx = px;
            push.pry = py;
        }

        this.drag.push(push);
    
        return push;
    }

    dragging(e) {
        for(let i in this.drag) {
            if(this.drag[i].e == e)
                return true;
        }
        return false;
    }

    startDragging(e) {
        if(this.del)
            return;
    
        console.log(e);
    
        if(e.button != 0)
            return;

        var cap = new Event("dragstart");
        
        cap.drag = this.addDragEl(
            e.target,
            e.pageX - parseInt(e.target.style.left),
            e.pageY - parseInt(e.target.style.top),
            e.target.style.left,
            e.target.style.top,
            e.target.style.transitionDuration
        );

        this.dispatchEvent(cap);
    }
    
    stopDragging(i) {
        if(this.del)
            return;
        
        this.del = true;
    
        if (i < 0 || i >= this.drag.length)
            return;
        
        var cap = new Event("dragstop");
        cap.x = this.mouse[0];
        cap.y = this.mouse[1];
        
        this.drag[i].e.style.transitionDuration = this.drag[i].ptd;

        if(this.ret) {
            this.drag[i].e.style.left = this.drag[i].prx;
            this.drag[i].e.style.top = this.drag[i].pry;
        }

        cap.drag = this.drag.splice(i, 1);
    
        this.del = false;

        this.dispatchEvent(cap);
    }

    stopDraggingEl(el) {
        for(let d of this.drag) {
            if(d.e === el)
                this.stopDragging(this.drag.indexOf(d));
        }
    }

    stopDraggingAll() {
        if(this.del)
            return;
        
        this.del = true;
        
        var cap = new Event("dragstop");

        cap.x = this.mouse[0];
        cap.y = this.mouse[1];

        cap.drag = [];
        
        while (this.drag.length > 0) {
            this.drag[0].e.style.transitionDuration = this.drag[0].ptd;

            if(this.ret) {
                this.drag[0].e.style.left = this.drag[0].prx;
                this.drag[0].e.style.top = this.drag[0].pry;
            }
    
            cap.drag.push(this.drag.shift());
        }
    
        this.del = false;

        this.dispatchEvent(cap);
    }

    update(e) {
        this.mouse[0] = e.pageX;
        this.mouse[1] = e.pageY;

        for (let i = 0; i < this.drag.length && !this.del; i++) {
            this.drag[i].e.style.left = e.pageX - this.drag[i].osx + "px";
            this.drag[i].e.style.top = e.pageY - this.drag[i].osy + "px";
        }
    }

    addTarget(e) {
        e.addEventListener("mousedown", this.startDragging.bind(this));
    }

    removeTarget (e) {
        e.removeEventListener("mousedown", this.startDragging.bind(this));
    }
}