-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
142 lines (118 loc) · 3.64 KB
/
index.js
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
(() => {
const isPathString = (d) => typeof d === 'string'
const setAttributesFromOptions = (d, tail, markerOptions, head) => {
if (isPathString(d)) {
const [M] = d.split(/(?=[LMC])/);
tail.setAttribute('d', M);
} else {
const m = d.getPointAtLength(0);
tail.setAttribute('d', `M${m.x} ${m.y}`);
}
Object.keys(markerOptions.tail).forEach((attr) => {
tail.setAttribute(attr, markerOptions.tail[attr]);
});
Object.keys(markerOptions.head).forEach((attr) => {
head.setAttribute(attr, markerOptions.head[attr]);
});
};
const createClonePath = d => {
const clone = document.createElementNS('http://www.w3.org/2000/svg', 'path');
clone.setAttribute('d', d);
return clone;
};
const running = (idx, totalLength) => idx < totalLength;
const followAlongPath = (markerOptions, clone, tail, head, totalLength, onEnd, onStart) => {
let idx = 0;
const speed = markerOptions.speed || 2;
let destroy = null;
const run = () => {
const {
x,
y
} = clone.getPointAtLength(idx);
tail.setAttribute('d', tail.getAttribute('d') + ' ' + "L " + x + ',' + y);
head.setAttribute('cx', x);
head.setAttribute('cy', y);
if (running(idx, totalLength)) {
idx = idx + speed;
destroy = requestAnimationFrame(run);
} else {
cancelAnimationFrame(destroy);
if (typeof onEnd === 'function') {
onEnd({
head,
tail
});
}
}
};
destroy = requestAnimationFrame(run);
};
const bootstrap = ({
svg,
d,
markerOptions,
onEnd,
onStart
}) => {
const head = document.createElementNS('http://www.w3.org/2000/svg', markerOptions.head.elem);
const tail = document.createElementNS('http://www.w3.org/2000/svg', 'path');
setAttributesFromOptions(d, tail, markerOptions, head);
const context = document.querySelector(svg);
context.appendChild(head);
context.appendChild(tail);
let clone = null;
let totalLength = null;
if (isPathString(d)) {
clone = createClonePath(d);
totalLength = clone.getTotalLength();
} else {
clone = d;
totalLength = clone.getTotalLength();
}
followAlongPath(markerOptions, clone, tail, head, totalLength, onEnd, onStart);
onStart({
tail,
head
})
};
const studiousDoodle = ({
svg = 'svg',
d,
speed,
head,
tail,
onEnd,
onStart
}) => {
const markerOptions = {
speed: speed || 3,
head: head || {
elem: 'circle',
fill: 'black',
r: 2
},
tail: tail || {
fill: 'none',
stroke: 'black',
'stroke-dasharray': 3
}
};
bootstrap({
svg,
d,
markerOptions,
onEnd: (() => {
return null;
}),
onStart: onStart || (() => {
return null;
})
});
};
if (typeof module !== "undefined" && module.exports) {
module.exports = studiousDoodle;
} else {
window.studiousDoodle = studiousDoodle;
}
})()