-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.js
164 lines (143 loc) · 4.57 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import Zdog from 'zdog'
import React, { useContext, useRef, useEffect, useLayoutEffect, useState, useImperativeHandle } from 'react'
import ResizeObserver from 'resize-observer-polyfill'
const stateContext = React.createContext()
const parentContext = React.createContext()
let globalEffects = []
export function addEffect(callback) {
globalEffects.push(callback)
}
export function invalidate() {
// TODO: render loop has to be able to render frames on demand
}
export function applyProps(instance, newProps) {
Zdog.extend(instance, newProps)
invalidate()
}
function useMeasure() {
const ref = useRef()
const [bounds, set] = useState({ left: 0, top: 0, width: 0, height: 0 })
const [ro] = useState(() => new ResizeObserver(([entry]) => set(entry.contentRect)))
useEffect(() => {
if (ref.current) ro.observe(ref.current)
return () => ro.disconnect()
}, [ref.current])
return [{ ref }, bounds]
}
function useRender(fn, deps = []) {
const state = useContext(stateContext)
useEffect(() => {
// Subscribe to the render-loop
const unsubscribe = state.current.subscribe(fn)
// Call subscription off on unmount
return () => unsubscribe()
}, deps)
}
function useZdog() {
const state = useContext(stateContext)
return state.current
}
function useZdogPrimitive(primitive, children, props, ref) {
const state = useContext(stateContext)
const parent = useContext(parentContext)
const [node] = useState(() => new primitive(props))
useImperativeHandle(ref, () => node)
useLayoutEffect(() => void applyProps(node, props), [props])
useLayoutEffect(() => {
if (parent) {
parent.addChild(node)
state.current.illu.updateGraph()
return () => {
parent.removeChild(node)
parent.updateFlatGraph()
state.current.illu.updateGraph()
}
}
}, [parent])
return [<parentContext.Provider value={node} children={children} />, node]
}
const Illustration = React.memo(({ children, style, resize, element: Element = 'svg', dragRotate, ...rest }) => {
const canvas = useRef()
const [bind, size] = useMeasure()
const [result, scene] = useZdogPrimitive(Zdog.Anchor, children)
const state = useRef({
scene,
illu: undefined,
size: {},
subscribers: [],
subscribe: fn => {
state.current.subscribers.push(fn)
return () => (state.current.subscribers = state.current.subscribers.filter(s => s !== fn))
},
})
useEffect(() => {
state.current.size = size
if (state.current.illu) state.current.illu.setSize(size.width, size.height)
}, [size])
useEffect(() => {
state.current.illu = new Zdog.Illustration({ element: canvas.current, dragRotate, ...rest })
state.current.illu.addChild(scene)
state.current.illu.updateGraph()
let frame
let active = true
function render(t) {
const { size, subscribers } = state.current
if (size.width && size.height) {
// Run global effects
globalEffects.forEach(fn => fn(t))
// Run local effects
subscribers.forEach(fn => fn(t))
// Render scene
state.current.illu.updateRenderGraph()
}
if (active) frame = requestAnimationFrame(render)
}
// Start render loop
render()
return () => {
// Take no chances, the loop has got to stop if the component unmounts
active = false
cancelAnimationFrame(frame)
}
}, [])
// Takes care of updating the main illustration
useLayoutEffect(() => void (state.current.illu && applyProps(state.current.illu, rest)), [rest])
return (
<div
ref={bind.ref}
{...rest}
style={{ position: 'relative', width: '100%', height: '100%', overflow: 'hidden', ...style }}>
<Element ref={canvas} style={{ display: 'block' }} width={size.width} height={size.height} />
{state.current.illu && <stateContext.Provider value={state} children={result} />}
</div>
)
})
const createZdog = primitive =>
React.forwardRef(({ children, ...rest }, ref) => useZdogPrimitive(primitive, children, rest, ref)[0])
const Anchor = createZdog(Zdog.Anchor)
const Shape = createZdog(Zdog.Shape)
const Group = createZdog(Zdog.Group)
const Rect = createZdog(Zdog.Rect)
const RoundedRect = createZdog(Zdog.RoundedRect)
const Ellipse = createZdog(Zdog.Ellipse)
const Polygon = createZdog(Zdog.Polygon)
const Hemisphere = createZdog(Zdog.Hemisphere)
const Cylinder = createZdog(Zdog.Cylinder)
const Cone = createZdog(Zdog.Cone)
const Box = createZdog(Zdog.Box)
export {
Illustration,
useRender,
useZdog,
Anchor,
Shape,
Group,
Rect,
RoundedRect,
Ellipse,
Polygon,
Hemisphere,
Cylinder,
Cone,
Box,
}