forked from lunu-bounir/path-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath-view.js
136 lines (127 loc) · 4.45 KB
/
path-view.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
/**
"path-view" custom component
Copyright (C) 2022 [Lunu Bounir]
This program is free software: you can redistribute it and/or modify
it under the terms of the Mozilla Public License as published by
the Mozilla Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Mozilla Public License for more details.
You should have received a copy of the Mozilla Public License
along with this program. If not, see {https://www.mozilla.org/en-US/MPL/}.
GitHub: https://github.com/lunu-bounir/path-view
Homepage: https://webextension.org/custom-component/path-view/index.html
*/
class PathView extends HTMLElement {
static version = '0.1.0';
constructor() {
super();
const shadow = this.attachShadow({
mode: 'open'
});
shadow.innerHTML = `
<style>
:host {
--height: 24px;
--gap: 2px;
--opacity: 0.7;
--image-size: 10px;
}
div {
display: flex;
gap: var(--gap);
white-space: nowrap;
overflow: auto;
flex: 1;
}
#body {
height: 100%;
align-items: center;
}
label {
overflow: hidden;
text-overflow: ellipsis;
display: inline-flex;
align-items: center;
justify-content: center;
height: var(--height); /* we need this to prevent special chars from resizing labels */
user-select: none;
min-width: 3ch;
}
label:not(:last-of-type) {
background: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xODQuNyw0MTMuMWwyLjEtMS44bDE1Ni41LTEzNmM1LjMtNC42LDguNi0xMS41LDguNi0xOS4yYzAtNy43LTMuNC0xNC42LTguNi0xOS4yTDE4Ny4xLDEwMWwtMi42LTIuMyAgQzE4Miw5NywxNzksOTYsMTc1LjgsOTZjLTguNywwLTE1LjgsNy40LTE1LjgsMTYuNmgwdjI4Ni44aDBjMCw5LjIsNy4xLDE2LjYsMTUuOCwxNi42QzE3OS4xLDQxNiwxODIuMiw0MTQuOSwxODQuNyw0MTMuMXoiIGZpbGw9IiNjY2MiLz48L3N2Zz4=);
background-size: var(--image-size);
background-repeat: no-repeat;
background-position: center right;
padding-inline-end: calc(var(--image-size) + var(--gap));
}
label span {
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
opacity: var(--opacity);
}
input:checked + label {
max-width: min-content;
min-width: 3ch;
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
}
input:checked + label span {
opacity: 1;
font-weight: bold;
}
input[type=radio] {
display: none;
}
</style>
<div id="body">
<div id="content"></div>
<slot></slot>
</div>
`;
this.content = shadow.getElementById('content');
this.entries = new Map();
}
connectedCallback() {
this.content.addEventListener('change', e => {
if (this.entries.has(e.target)) {
this.dispatchEvent(new Event('change'));
}
});
}
build(map = [{title: 'empty list'}]) {
this.content.textContent = '';
const f = document.createDocumentFragment();
map.forEach(o => {
const {title, id = 'pve-' + Math.random(), checked = false} = o;
const label = document.createElement('label');
const span = document.createElement('span');
const input = document.createElement('input');
input.type = 'radio';
input.name = 'group';
input.id = typeof id === 'string' ? id : JSON.stringify(id);
input.checked = checked;
f.appendChild(input);
label.title = span.textContent = title || '';
label.appendChild(span);
f.appendChild(label);
label.setAttribute('for', input.id);
this.entries.set(input, o);
});
// check
if (!f.querySelector('input:checked')) {
f.querySelector('input:last-of-type').checked = true;
}
this.content.appendChild(f);
this.content.scrollLeft = this.content.scrollWidth;
}
get value() {
const e = this.content.querySelector('input:checked');
return this.entries.get(e);
}
}
window.customElements.define('path-view', PathView);