-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathomni-box.js
385 lines (309 loc) · 9.59 KB
/
omni-box.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/* global HTMLElement, CustomEvent, customElements */
const { looksLikeLegacySSB, convertLegacySSB: makeSSB } = require('ssb-fetch')
const { CID } = require('multiformats/cid')
const IPNS_PREFIX = '/ipns/'
const IPFS_PREFIX = '/ipfs/'
class OmniBox extends HTMLElement {
constructor () {
super()
this.firstLoad = true
this.lastSearch = 0
}
get options () {
return document.querySelector('#' + this.getAttribute('nav-options-id'))
}
connectedCallback () {
this.innerHTML = `
<section class="omni-box-header">
<button class="hidden omni-box-button omni-box-back" title="Go back in history">⬅</button>
<button class="hidden omni-box-button omni-box-forward" title="Go forward in history">➡</button>
<form class="omni-box-form">
<input class="omni-box-target-input" readonly></input>
<input class="omni-box-input" title="Enter search params">
<button class="omni-box-button" type="submit" title="Load page or Reload">⊚</button>
</form>
</section>
`
this.backButton = this.$('.omni-box-back')
this.forwardButton = this.$('.omni-box-forward')
this.form = this.$('.omni-box-form')
this.input = this.$('.omni-box-input')
this.targetUrl = this.$('.omni-box-target-input')
this.input.addEventListener('focus', () => {
this.input.select()
})
this.targetUrl.addEventListener('focus', () => {
this.showInput()
this.input.select()
})
this.input.addEventListener('blur', () => {
this.input.blur()
})
this.form.addEventListener('submit', (e) => {
e.preventDefault(true)
const rawURL = this.getURL()
let url = rawURL
if (!isURL(rawURL)) {
if (looksLikeLegacySSB(rawURL)) {
url = makeSSB(rawURL)
} else if (looksLikeIPFS(rawURL)) {
url = makeIPFS(rawURL)
} else if (looksLikeIPNS(rawURL)) {
url = makeIPNS(rawURL)
} else if (isBareLocalhost(rawURL)) {
url = makeHttp(rawURL)
} else if (looksLikeDomain(rawURL)) {
url = makeHttps(rawURL)
} else {
url = makeDuckDuckGo(rawURL)
}
}
this.clearOptions()
const searchID = Date.now()
this.lastSearch = searchID
this.dispatchEvent(new CustomEvent('navigate', { detail: { url } }))
})
this.input.addEventListener('input', () => {
this.updateOptions()
})
this.input.addEventListener('keydown', ({ keyCode, key }) => {
// Pressed down arrow
if (keyCode === 40) this.selectNext()
// Pressed up arrow
if (keyCode === 38) this.selectPrevious()
if (keyCode === 39) {
const { selectionStart, selectionEnd, value } = this.input
const isAtEnd = (selectionStart === value.length) && (selectionEnd === value.length)
if (isAtEnd) this.fillWithSelected()
}
if (key === 'Escape') {
this.clearOptions()
this.input.blur()
this.dispatchEvent(new CustomEvent('unfocus'))
}
})
this.backButton.addEventListener('click', () => {
this.dispatchEvent(new CustomEvent('back'))
})
this.forwardButton.addEventListener('click', () => {
this.dispatchEvent(new CustomEvent('forward'))
})
// mouse side-buttons for navigating
window.addEventListener("mouseup", (e) => {
e.preventDefault()
if(e.button === 3) {
this.dispatchEvent(new CustomEvent('back'))
} else if(e.button === 4) {
this.dispatchEvent(new CustomEvent('forward'))
}
})
// mouse gestures for navigating
let isMouseDown = false
let startX = 0
let startY = 0
window.addEventListener('mousedown', (e) => {
isMouseDown = true
startX = e.clientX
startY = e.clientY
})
window.addEventListener('mousemove', (e) => {
if (isMouseDown) {
const distX = e.clientX - startX
const distY = e.clientY - startY
if (Math.abs(distX) > Math.abs(distY)) {
if (distX > 0) {
this.dispatchEvent(new CustomEvent('forward'))
} else {
this.dispatchEvent(new CustomEvent('back'))
}
}
isMouseDown = false
}
})
window.addEventListener('mouseup', () => {
isMouseDown = false
})
}
clearOptions () {
this.options.innerHTML = ''
}
getURL () {
const item = this.getSelected()
return item ? item.dataset.url : this.input.value
}
getSelected () {
return (this.options.querySelector('[data-selected]') || this.options.firstElementChild)
}
selectNext () {
const item = this.getSelected()
if (!item) return
const sibling = item.nextElementSibling
if (!sibling) return
item.removeAttribute('data-selected')
sibling.setAttribute('data-selected', 'selected')
}
selectPrevious () {
const item = this.getSelected()
if (!item) return
const sibling = item.previousElementSibling
if (!sibling) return
item.removeAttribute('data-selected')
sibling.setAttribute('data-selected', 'selected')
}
fillWithSelected () {
const item = this.getSelected()
if (!item) return
const { url } = item.dataset
this.input.value = url
}
async updateOptions () {
const query = this.input.value
const searchID = Date.now()
this.lastSearch = searchID
this.clearOptions()
if (!query) {
return
}
this.dispatchEvent(new CustomEvent('search', { detail: { query, searchID } }))
}
async setSearchResults (results, query, searchID) {
if (this.lastSearch !== searchID) {
return console.debug('Urlbar changed since query finished', this.lastSearch, searchID, query)
}
const finalItems = []
if (isURL(query)) {
finalItems.push(this.makeNavItem(query, `Go to ${query}`))
} else if (looksLikeLegacySSB(query)) {
const url = makeSSB(query)
finalItems.push(this.makeNavItem(url, `Go to ${url}`))
} else if (looksLikeIPNS(query)) {
const url = makeIPNS(query)
finalItems.push(this.makeNavItem(url, `Go to ${url}`))
} else if (looksLikeIPFS(query)) {
const url = makeIPFS(query)
finalItems.push(this.makeNavItem(url, `Go to ${url}`))
} else if (isBareLocalhost(query)) {
finalItems.push(this.makeNavItem(makeHttp(query), `Go to http://${query}`))
} else if (looksLikeDomain(query)) {
finalItems.push(this.makeNavItem(makeHttps(query), `Go to https://${query}`))
} else {
finalItems.push(
this.makeNavItem(
makeDuckDuckGo(query),
`Search for "${query}" on DuckDuckGo`
)
)
}
finalItems.push(...results
.map(({ title, url }) => this.makeNavItem(url, `${title} - ${url}`))
)
for (const item of finalItems) {
this.options.appendChild(item)
}
this.getSelected().setAttribute('data-selected', 'selected')
}
makeNavItem (url, text) {
const element = document.createElement('button')
element.classList.add('omni-box-nav-item')
element.classList.add('omni-box-button')
element.dataset.url = url
element.innerText = text
element.onclick = () => {
this.clearOptions()
this.dispatchEvent(new CustomEvent('navigate', { detail: { url } }))
}
return element
}
static get observedAttributes () {
return ['src', 'back', 'forward']
}
attributeChangedCallback (name, oldValue, newValue) {
if (name === 'src') {
this.input.value = newValue
const noFocus = window.searchParams.get('noFocus') === 'true'
if (noFocus) {
return
}
if (this.firstLoad && (newValue === window.DEFAULT_PAGE)) {
this.firstLoad = false
this.focus()
}
} if (name === 'back') {
this.backButton.classList.toggle('hidden', newValue === 'hidden')
} else if (name === 'forward') {
this.forwardButton.classList.toggle('hidden', newValue === 'hidden')
}
}
get src () {
return this.input.value
}
set src (value) {
this.setAttribute('src', value)
}
showInput (show = true) {
this.targetUrl.classList.toggle('hidden', show)
this.input.classList.toggle('hidden', !show)
}
showTarget (url) {
this.targetUrl.value = url
const inputSelected = this.input === document.activeElement
if (url && !inputSelected) {
this.showInput(false)
} else {
this.showInput(true)
}
}
focus () {
this.input.focus()
this.input.select()
}
$ (query) {
return this.querySelector(query)
}
convertURL (rawURL) {
}
}
function makeHttp (query) {
return `http://${query}`
}
function makeHttps (query) {
return `https://${query}`
}
function makeDuckDuckGo (query) {
return `https://duckduckgo.com/?q=${encodeURIComponent(query)}`
}
function isURL (string) {
try {
// localhost: is a valid url apparently!
if (isBareLocalhost(string)) return false
return !!new URL(string)
} catch {
return false
}
}
function looksLikeDomain (string) {
return !string.match(/\s/) && string.includes('.')
}
function isBareLocalhost (string) {
return string.match(/^localhost(:[0-9]+)?\/?$/)
}
function looksLikeIPFS (string) {
return string.startsWith(IPFS_PREFIX)
}
function makeIPFS (path) {
const sections = path.slice(IPFS_PREFIX.length).split('/')
const cid = sections[0]
if (cid.startsWith('Qm')) {
const parsed = CID.parse(cid)
sections[0] = parsed.toV1().toString()
}
const final = sections.join('/')
return `ipfs://${final}`
}
function looksLikeIPNS (string) {
return string.startsWith(IPNS_PREFIX)
}
function makeIPNS (path) {
return `ipns://${path.slice(IPNS_PREFIX.length)}`
}
customElements.define('omni-box', OmniBox)