-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathClickToComponent.js
222 lines (190 loc) · 5.09 KB
/
ClickToComponent.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/**
* @typedef {import('./types').ClickToComponentProps} Props
* @typedef {import('./types').Coords} Coords
*/
import { FloatingPortal } from '@floating-ui/react-dom-interactions'
import { html } from 'htm/react'
import * as React from 'react'
import { ContextMenu } from './ContextMenu.js'
import { getPathToSource } from './getPathToSource.js'
import { getSourceForElement } from './getSourceForElement.js'
export const State = /** @type {const} */ ({
IDLE: 'IDLE',
HOVER: 'HOVER',
SELECT: 'SELECT',
})
/**
* @param {Props} props
*/
export function ClickToComponent({ editor = 'vscode', pathModifier }) {
const [state, setState] = React.useState(
/** @type {State[keyof State]} */
(State.IDLE)
)
const [target, setTarget] = React.useState(
/** @type {HTMLElement | null} */
(null)
)
const onClick = React.useCallback(
function handleClick(
/**
* @type {MouseEvent}
*/
event
) {
if (state === State.HOVER && target instanceof HTMLElement) {
const source = getSourceForElement(target)
const path = getPathToSource(source)
let modifiedPath = path
if (pathModifier) {
modifiedPath = pathModifier(path)
}
const url = `${editor}://file/${modifiedPath}`
event.preventDefault()
window.location.assign(url)
setState(State.IDLE)
}
},
[editor, state, target]
)
const onClose = React.useCallback(
function handleClose(returnValue) {
if (returnValue) {
const url = `${editor}://file/${returnValue}`
window.location.assign(url)
}
setState(State.IDLE)
},
[editor]
)
const onContextMenu = React.useCallback(
function handleContextMenu(
/**
* @type {MouseEvent}
*/
event
) {
const { target } = event
if (state === State.HOVER && target instanceof HTMLElement) {
event.preventDefault()
setState(State.SELECT)
setTarget(target)
}
},
[state]
)
const onKeyDown = React.useCallback(
function handleKeyDown(
/**
* @type {KeyboardEvent}
*/
event
) {
switch (state) {
case State.IDLE:
if (event.altKey) setState(State.HOVER)
break
default:
}
},
[state]
)
const onKeyUp = React.useCallback(
function handleKeyUp(
/**
* @type {KeyboardEvent}
*/
event
) {
switch (state) {
case State.HOVER:
setState(State.IDLE)
break
default:
}
},
[state]
)
const onMouseMove = React.useCallback(
function handleMouseMove(
/** @type {MouseEvent} */
event
) {
if (!(event.target instanceof HTMLElement)) {
return
}
switch (state) {
case State.IDLE:
case State.HOVER:
setTarget(event.target)
break
default:
break
}
},
[state]
)
React.useEffect(
function toggleIndicator() {
for (const element of Array.from(
document.querySelectorAll('[data-click-to-component-target]')
)) {
if (element instanceof HTMLElement) {
delete element.dataset.clickToComponentTarget
}
}
if (state === State.IDLE) {
delete window.document.body.dataset.clickToComponent
if (target) {
delete target.dataset.clickToComponentTarget
}
return
}
if (target instanceof HTMLElement) {
window.document.body.dataset.clickToComponent = state
target.dataset.clickToComponentTarget = state
}
},
[state, target]
)
React.useEffect(
function addEventListenersToWindow() {
window.addEventListener('click', onClick, { capture: true })
window.addEventListener('contextmenu', onContextMenu, { capture: true })
window.addEventListener('keydown', onKeyDown)
window.addEventListener('keyup', onKeyUp)
window.addEventListener('mousemove', onMouseMove)
return function removeEventListenersFromWindow() {
window.removeEventListener('click', onClick, { capture: true })
window.removeEventListener('contextmenu', onContextMenu, {
capture: true,
})
window.removeEventListener('keydown', onKeyDown)
window.removeEventListener('keyup', onKeyUp)
window.removeEventListener('mousemove', onMouseMove)
}
},
[onClick, onContextMenu, onKeyDown, onKeyUp, onMouseMove]
)
return html`
<style key="click-to-component-style">
[data-click-to-component] * {
pointer-events: auto !important;
}
[data-click-to-component-target] {
cursor: var(--click-to-component-cursor, context-menu) !important;
outline: auto 1px;
outline: var(
--click-to-component-outline,
-webkit-focus-ring-color auto 1px
) !important;
}
</style>
<${FloatingPortal} key="click-to-component-portal">
${html`<${ContextMenu}
key="click-to-component-contextmenu"
onClose=${onClose}
/>`}
</${FloatingPortal}
`
}