This repository was archived by the owner on Nov 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpopup.ts
68 lines (58 loc) · 1.8 KB
/
popup.ts
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
import { Library } from './checks/types'
const sendRequest = () => {
chrome.tabs.query({ currentWindow: true, active: true }, tabs => {
if (tabs[0] && tabs[0].id) {
chrome.tabs.sendMessage(
tabs[0].id as number,
{ type: 'GET_STACK' },
renderStack
)
const $message = document.querySelector('.message')
if ($message) {
$message.textContent = 'Loading...'
}
}
})
}
const renderStack = (libs: Library[]): void => {
if (!libs) {
sendRequest()
return
}
const $container = document.querySelector('.container') as HTMLElement
if (libs.length === 0) {
$container.innerHTML = `
<div class="message">Nothing found. <span class="try-again">Try again</span></div>
`
const $tryAgain = document.querySelector('.try-again')
if ($tryAgain) {
$tryAgain.addEventListener('click', sendRequest)
}
} else {
$container.innerHTML = libs.reduce(
(html, library) => `
${html}
<div class="flex-container lib">
<div class="flex-item-1 logo">
<img src="../images/${library.slug}.png" alt="${
library.title
}" />
</div>
<div class="flex-item-4 info">
<div class="title">${library.title}</div>
${library.website &&
`<a href="${library.website}" data-href="${library.website}" class="website">${library.website}</a>`}
<div class="version">${library.version || ''}</div>
</div>
</div>
`,
''
)
}
;[...(document.querySelectorAll('.website') as any)].forEach(el => {
el.addEventListener('click', e => {
chrome.tabs.create({ url: e.target.dataset.href })
})
})
}
sendRequest()