@nebularstreams/libmui 3.1.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/libmui.esm.js +3 -0
- package/package.json +6 -2
- package/readme.md +48 -0
- package/dist/libui.esm.js +0 -3
- package/rollup.config.js +0 -20
- package/src/app/MainState.js +0 -22
- package/src/app/app.js +0 -9
- package/src/css/a-measures.css +0 -6
- package/src/css/b-colors.css +0 -12
- package/src/css/b-root-bootstrap-ext.css +0 -81
- package/src/css/b-root-bootstrap.css +0 -178
- package/src/css/b-root-semantic-flex.css +0 -87
- package/src/css/b-root-semantic-size-new.css +0 -37
- package/src/css/b-root-semantic-size.css +0 -75
- package/src/css/b-root-semantic-skin.css +0 -48
- package/src/css/b-root-semantic.css +0 -111
- package/src/css/b-root.css +0 -3
- package/src/css/cardie.css +0 -6
- package/src/css/flex.css +0 -46
- package/src/css/fontawesome/brands.min.css +0 -16
- package/src/css/fontawesome/fontawesome-ext.css +0 -7
- package/src/css/fontawesome/fontawesome-solid.css +0 -17
- package/src/css/fontawesome/fontawesome.css +0 -4359
- package/src/css/ui.notifications.css +0 -23
- package/src/css/ui.popup.css +0 -127
- package/src/css/ui.witharia.css +0 -25
- package/src/index.js +0 -112
- package/src/meta/InputTemplates.js +0 -3
- package/src/style.js +0 -37
- package/src/util/colorjoe.js +0 -1370
- package/src/util/filepath.js +0 -10
- package/src/util/fuckingconfirm.js +0 -28
- package/src/util/mithril-range.js +0 -445
- package/src/util/tainter.js +0 -39
- package/src/util/util.clone.js +0 -8
- package/src/util/util.tokenizer.js +0 -266
- package/src/util/widgets.core.js +0 -314
- package/src/util/widgets.js +0 -79
- package/src/util/widgets.utils.js +0 -10
- package/src/widgets/Basic.js +0 -352
- package/src/widgets/ButtonChoiceWidget.js +0 -72
- package/src/widgets/CardieWidget.js +0 -168
- package/src/widgets/ColorJoePack.js +0 -108
- package/src/widgets/ColorJoeWidget.js +0 -140
- package/src/widgets/ComboPrompt.js +0 -112
- package/src/widgets/ComboWidget.js +0 -156
- package/src/widgets/CoolContentTicker.js +0 -244
- package/src/widgets/CoolerEmpty.js +0 -37
- package/src/widgets/EmptyButton.js +0 -36
- package/src/widgets/FontSelectorButton.js +0 -37
- package/src/widgets/InputWidget.js +0 -254
- package/src/widgets/NoticeWidget.js +0 -31
- package/src/widgets/OverflowUtils.js +0 -449
- package/src/widgets/PlusMinusWidget.js +0 -55
- package/src/widgets/RangeWidget.js +0 -200
- package/src/widgets/SelectFileMiniButton.js +0 -170
- package/src/widgets/Separator.js +0 -21
- package/src/widgets/SmileysButton.js +0 -19
- package/src/widgets/SwitchWidget.js +0 -42
- package/src/widgets/TemplatedInputWidget.js +0 -1395
- package/src/widgets/TitleBarWidget.js +0 -71
- package/src/widgets/css/buttonchoice.css +0 -62
- package/src/widgets/css/buttonchoice.toggle.css +0 -37
- package/src/widgets/css/choicer.css +0 -24
- package/src/widgets/css/colorjoe.css +0 -230
- package/src/widgets/css/colorjoewidget.css +0 -105
- package/src/widgets/css/combo-ellipsis.css +0 -29
- package/src/widgets/css/fileminibutton.css +0 -12
- package/src/widgets/css/input.css +0 -35
- package/src/widgets/css/mithril-range.css +0 -69
- package/src/widgets/css/progressstrip.css +0 -31
- package/src/widgets/css/range-anims.css +0 -23
- package/src/widgets/css/separator.css +0 -21
- package/src/widgets/css/smileys.css +0 -85
- package/src/widgets/css/templatedinput.css +0 -67
- package/src/widgets/css/ui.titlebar.css +0 -44
- package/src/widgets/css/uploadfile.css +0 -5
- /package/dist/{libui.css → libmui.css} +0 -0
package/src/util/filepath.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
const
|
|
2
|
-
AGENT = "Windows NT",
|
|
3
|
-
isWindows = () => navigator.userAgent.indexOf(AGENT) !== -1,
|
|
4
|
-
SEPARATOR_WINDOWS = "\\",
|
|
5
|
-
SEPARATOR_LINUX = "/",
|
|
6
|
-
SEPARATOR = isWindows() ? SEPARATOR_WINDOWS : SEPARATOR_LINUX,
|
|
7
|
-
makeLocalPath = (pathArray) => pathArray.join(SEPARATOR),
|
|
8
|
-
makeLocalUrl = (base, pathArray) => ["file://", ...base.split(SEPARATOR_WINDOWS), ...pathArray].join(SEPARATOR_LINUX);
|
|
9
|
-
|
|
10
|
-
export {makeLocalPath, makeLocalUrl}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import {ConfirmPromise} from "./widgets.core";
|
|
2
|
-
|
|
3
|
-
function confirm(text, onAction, onCancel = undefined, optionYes = "YES", optionNo = "NO") {
|
|
4
|
-
confirmPromise(text, [optionNo, optionYes], onCancel)
|
|
5
|
-
.then((idx) => {
|
|
6
|
-
if (idx) onAction(idx); else if (onCancel) onCancel();
|
|
7
|
-
})
|
|
8
|
-
.catch(() => {
|
|
9
|
-
if (onCancel) onCancel();
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
function confirmPromise(text, options = ["NO", "YES"], cancelError = "cancelled") {
|
|
14
|
-
|
|
15
|
-
return new Promise((resolve, reject) => {
|
|
16
|
-
ConfirmPromise(null, text, options, () => reject(new Error(cancelError)))
|
|
17
|
-
.then(({idx}) => {
|
|
18
|
-
if (idx >= 0) {
|
|
19
|
-
resolve(idx);
|
|
20
|
-
} else {
|
|
21
|
-
reject(new Error(cancelError));
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export {confirm, confirmPromise};
|
|
@@ -1,445 +0,0 @@
|
|
|
1
|
-
import m from "mithril";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
///////////////////////////////////////////////
|
|
5
|
-
// Mithril Range
|
|
6
|
-
// (c) 2017-2018 by Mike Linkovich
|
|
7
|
-
// https://github.com/spacejack/mithril-range
|
|
8
|
-
// License: MIT
|
|
9
|
-
///////////////////////////////////////////////
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
NONE = 0,
|
|
13
|
-
MOUSE = 1,
|
|
14
|
-
TOUCH = 2,
|
|
15
|
-
|
|
16
|
-
// So we aren't triggered by echoed mouse events (some mobile browsers)
|
|
17
|
-
DEVICE_DELAY = 350,
|
|
18
|
-
|
|
19
|
-
isIOS = !!navigator.userAgent.match(/iPhone|iPad|iPod/i);
|
|
20
|
-
|
|
21
|
-
// This is some unbelievable stone-age nonsense.
|
|
22
|
-
// Workaround for webkit bug where event.preventDefault
|
|
23
|
-
// within touchmove handler fails to prevent scrolling.
|
|
24
|
-
|
|
25
|
-
let
|
|
26
|
-
iOSHackApplied = false;
|
|
27
|
-
|
|
28
|
-
/** Clamp number to range */
|
|
29
|
-
function clamp(n, min, max) {
|
|
30
|
-
return Math.min(Math.max(n, min), max);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
function applyIOSHack() {
|
|
34
|
-
// Only apply this hack if iOS, haven't yet applied it,
|
|
35
|
-
// and only if a component is actually created
|
|
36
|
-
if (!isIOS || iOSHackApplied) {
|
|
37
|
-
return;
|
|
38
|
-
}
|
|
39
|
-
window.addEventListener("touchmove", function () {
|
|
40
|
-
});
|
|
41
|
-
iOSHackApplied = true;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export function quantize(val, min, max, step) {
|
|
45
|
-
if (max - min <= 0) {
|
|
46
|
-
return min;
|
|
47
|
-
}
|
|
48
|
-
if (step <= 0) {
|
|
49
|
-
return clamp(val, min, max);
|
|
50
|
-
}
|
|
51
|
-
const
|
|
52
|
-
steps = Math.ceil((max - min) / step),
|
|
53
|
-
v = min + Math.round(steps * (val - min) / (max - min)) * step;
|
|
54
|
-
return clamp(v, min, max);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
/** Range Component */
|
|
59
|
-
function MithrilRange() {
|
|
60
|
-
let
|
|
61
|
-
elHit,
|
|
62
|
-
elBar,
|
|
63
|
-
elBar0,
|
|
64
|
-
elBar1,
|
|
65
|
-
elHandle,
|
|
66
|
-
rcBar,
|
|
67
|
-
device = NONE,
|
|
68
|
-
pressed = false,
|
|
69
|
-
|
|
70
|
-
useAbsolute = false,
|
|
71
|
-
factorCoarse = 4,
|
|
72
|
-
factorFine = 1,
|
|
73
|
-
absolute,
|
|
74
|
-
lastRead,
|
|
75
|
-
|
|
76
|
-
// Attrs we need to cache
|
|
77
|
-
min = 0,
|
|
78
|
-
max = 10,
|
|
79
|
-
value = 0,
|
|
80
|
-
startValue = 0,
|
|
81
|
-
step = 1,
|
|
82
|
-
orientation = "horizontal",
|
|
83
|
-
onchange,
|
|
84
|
-
ondrag;
|
|
85
|
-
|
|
86
|
-
// App handlers
|
|
87
|
-
function onPressAbsolute(x, y) {
|
|
88
|
-
startValue = value;
|
|
89
|
-
pressed = absolute = true;
|
|
90
|
-
rcBar = elBar.getBoundingClientRect();
|
|
91
|
-
const val = moveHandleAbsolute(x, y);
|
|
92
|
-
if (val !== value) {
|
|
93
|
-
value = val;
|
|
94
|
-
if (ondrag && ondrag(value) !== false) {
|
|
95
|
-
m.redraw();
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
function onPressDelta(x, y, e, isTouch) {
|
|
101
|
-
startValue = value;
|
|
102
|
-
pressed = true;
|
|
103
|
-
absolute = false;
|
|
104
|
-
rcBar = elBar.getBoundingClientRect();
|
|
105
|
-
lastRead = (orientation === "vertical") ? y : x;
|
|
106
|
-
if (!isTouch) e.target.requestPointerLock();
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
function moveHandleAbsolute(x, y) {
|
|
110
|
-
|
|
111
|
-
let
|
|
112
|
-
barLength,
|
|
113
|
-
delta;
|
|
114
|
-
|
|
115
|
-
if (orientation === "vertical") {
|
|
116
|
-
|
|
117
|
-
barLength = rcBar.bottom - rcBar.top;
|
|
118
|
-
delta = rcBar.bottom - y;
|
|
119
|
-
|
|
120
|
-
} else {
|
|
121
|
-
barLength = rcBar.right - rcBar.left;
|
|
122
|
-
delta = x - rcBar.left;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
delta = clamp(delta, 0, barLength);
|
|
126
|
-
const val = quantize((delta / barLength) * (max - min) + min, min, max, step);
|
|
127
|
-
setStyles(val);
|
|
128
|
-
return val;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
function moveHandleDelta(x, y, event) {
|
|
132
|
-
|
|
133
|
-
const
|
|
134
|
-
factor = event.shiftKey
|
|
135
|
-
? factorCoarse
|
|
136
|
-
: (event.metaKey || event.ctrlKey)
|
|
137
|
-
? 4 * factorCoarse
|
|
138
|
-
: factorFine;
|
|
139
|
-
|
|
140
|
-
let
|
|
141
|
-
delta;
|
|
142
|
-
|
|
143
|
-
if (orientation === "vertical") {
|
|
144
|
-
delta = event.movementY || 0;
|
|
145
|
-
} else {
|
|
146
|
-
delta = event.movementX || 0;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
let newVal;
|
|
150
|
-
let s = step > 0 ? step : (max - min) / 100;
|
|
151
|
-
|
|
152
|
-
if (delta < 0) {
|
|
153
|
-
newVal = Math.max(value + s * factor * delta, min);
|
|
154
|
-
} else if (delta > 0) { // right/up
|
|
155
|
-
newVal = Math.min(value + s * factor * delta, max);
|
|
156
|
-
} else {
|
|
157
|
-
return value;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
newVal = quantize(newVal, min, max, step);
|
|
161
|
-
|
|
162
|
-
setStyles(newVal);
|
|
163
|
-
return newVal;
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
function onPress(x, y, event) {
|
|
168
|
-
return useAbsolute
|
|
169
|
-
? onPressAbsolute(x, y, event)
|
|
170
|
-
: onPressDelta(x, y, event);
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
function moveHandle(x, y, event) {
|
|
174
|
-
return absolute
|
|
175
|
-
? moveHandleAbsolute(x, y, event)
|
|
176
|
-
: moveHandleDelta(x, y, event);
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
// Event handlers
|
|
180
|
-
function onMouseDown(e) {
|
|
181
|
-
if (device === TOUCH) {
|
|
182
|
-
return;
|
|
183
|
-
}
|
|
184
|
-
device = MOUSE;
|
|
185
|
-
if (e.button !== 0) {
|
|
186
|
-
return;
|
|
187
|
-
}
|
|
188
|
-
window.addEventListener("mousemove", onMouseMove);
|
|
189
|
-
window.addEventListener("mouseup", onMouseUp);
|
|
190
|
-
onPress(e.clientX, e.clientY, e);
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
function onMouseMove(e) {
|
|
194
|
-
e.preventDefault();
|
|
195
|
-
onMove(e.clientX, e.clientY, e);
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
function onMouseUp(e) {
|
|
199
|
-
window.removeEventListener("mousemove", onMouseMove);
|
|
200
|
-
window.removeEventListener("mouseup", onMouseUp);
|
|
201
|
-
onRelease(e.clientX, e.clientY, e);
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
function onTouchStart(e) {
|
|
205
|
-
if (device === MOUSE) {
|
|
206
|
-
return;
|
|
207
|
-
}
|
|
208
|
-
elHit.addEventListener("touchmove", onTouchMove);
|
|
209
|
-
elHit.addEventListener("touchend", onTouchEnd);
|
|
210
|
-
const t = e.changedTouches[0];
|
|
211
|
-
onPress(t.clientX, t.clientY, e, true);
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
function onTouchMove(e) {
|
|
215
|
-
e.preventDefault();
|
|
216
|
-
const t = e.changedTouches[0];
|
|
217
|
-
onMove(t.clientX, t.clientY, e);
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
function onTouchEnd(e) {
|
|
221
|
-
elHit.removeEventListener("touchmove", onTouchMove);
|
|
222
|
-
elHit.removeEventListener("touchend", onTouchEnd);
|
|
223
|
-
const t = e.changedTouches[0];
|
|
224
|
-
onRelease(t.clientX, t.clientY, t);
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
function onKeyDown(e) {
|
|
228
|
-
|
|
229
|
-
const k = e.keyCode;
|
|
230
|
-
let newVal;
|
|
231
|
-
|
|
232
|
-
if (k === 33) { // pgup
|
|
233
|
-
e.preventDefault();
|
|
234
|
-
let s = Math.max((max - min) / 10, step);
|
|
235
|
-
if (s <= 0) {
|
|
236
|
-
s = 1;
|
|
237
|
-
}
|
|
238
|
-
newVal = quantize(value + s, min, max, step);
|
|
239
|
-
} else if (k === 34) { // pgdown
|
|
240
|
-
e.preventDefault();
|
|
241
|
-
let s = Math.max((max - min) / 10, step);
|
|
242
|
-
if (s <= 0) {
|
|
243
|
-
s = 1;
|
|
244
|
-
}
|
|
245
|
-
newVal = quantize(value - s, min, max, step);
|
|
246
|
-
} else if (k === 35) { // end
|
|
247
|
-
e.preventDefault();
|
|
248
|
-
newVal = max;
|
|
249
|
-
} else if (k === 36) { // home
|
|
250
|
-
e.preventDefault();
|
|
251
|
-
newVal = min;
|
|
252
|
-
} else if (k === 37 || k === 40) { // left/down
|
|
253
|
-
e.preventDefault();
|
|
254
|
-
let s = (step > 0 ? step : (max - min) / 10) * (e.shiftKey ? 0.25 : (e.ctrlKey || e.metaKey) ? 4 : 1);
|
|
255
|
-
newVal = Math.max(value - s, min);
|
|
256
|
-
} else if (k === 38 || k === 39) { // right/up
|
|
257
|
-
e.preventDefault();
|
|
258
|
-
let s = (step > 0 ? step : (max - min) / 10) * (e.shiftKey ? 0.25 : (e.ctrlKey || e.metaKey) ? 4 : 1);
|
|
259
|
-
newVal = Math.min(value + s, max);
|
|
260
|
-
} else if (k === 48) { // 0
|
|
261
|
-
newVal = (max + min) / 2;
|
|
262
|
-
}
|
|
263
|
-
if (typeof newVal !== "number" || newVal === value) {
|
|
264
|
-
return; // no change to make
|
|
265
|
-
}
|
|
266
|
-
value = newVal;
|
|
267
|
-
setStyles(value);
|
|
268
|
-
if (onchange && onchange(value) !== false) {
|
|
269
|
-
m.redraw();
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
function onMove(x, y, event) {
|
|
274
|
-
if (!pressed) {
|
|
275
|
-
return;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
const val = moveHandle(x, y, event);
|
|
279
|
-
if (val !== value) {
|
|
280
|
-
value = val;
|
|
281
|
-
if (ondrag && ondrag(value) !== false) {
|
|
282
|
-
m.redraw();
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
function onRelease(x, y, e) {
|
|
288
|
-
|
|
289
|
-
if (!pressed) {
|
|
290
|
-
return;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
pressed = false;
|
|
294
|
-
value = moveHandle(x, y, e);
|
|
295
|
-
|
|
296
|
-
if (onchange && onchange(value) !== false) {
|
|
297
|
-
m.redraw();
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
/*
|
|
301
|
-
if (value !== startValue) {
|
|
302
|
-
if (onchange && onchange(value) !== false) {
|
|
303
|
-
m.redraw();
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
*/
|
|
307
|
-
|
|
308
|
-
if (!absolute) document.exitPointerLock();
|
|
309
|
-
|
|
310
|
-
setTimeout(function () {
|
|
311
|
-
if (!pressed) {
|
|
312
|
-
device = NONE;
|
|
313
|
-
}
|
|
314
|
-
}, DEVICE_DELAY);
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
/** Compute handle position style */
|
|
318
|
-
function positionStyle(val) {
|
|
319
|
-
let s = (val - min) / (max - min);
|
|
320
|
-
if (orientation === "vertical") {
|
|
321
|
-
s = 1.0 - s;
|
|
322
|
-
}
|
|
323
|
-
return String(100 * s) + "%";
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
/** Set styles for movable parts */
|
|
327
|
-
function setStyles(value) {
|
|
328
|
-
const
|
|
329
|
-
ps = positionStyle(value),
|
|
330
|
-
rps = positionStyle(max - value + min);
|
|
331
|
-
|
|
332
|
-
if (orientation === "vertical") {
|
|
333
|
-
elHandle.style.top = ps;
|
|
334
|
-
elBar0.style.height = ps;
|
|
335
|
-
elBar1.style.height = rps;
|
|
336
|
-
} else {
|
|
337
|
-
elHandle.style.left = ps;
|
|
338
|
-
elBar0.style.width = rps;
|
|
339
|
-
elBar1.style.width = ps;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
/** Some attrs need to be cached (and updated) so that they are current in event handlers */
|
|
344
|
-
function updateAttrs(attrs) {
|
|
345
|
-
min = attrs.min;
|
|
346
|
-
max = attrs.max;
|
|
347
|
-
step = (typeof attrs.step === "number" && !Number.isNaN(attrs.step))
|
|
348
|
-
? clamp(attrs.step, 0, max - min) : 1;
|
|
349
|
-
orientation = attrs.orientation === "vertical" ? "vertical" : "horizontal";
|
|
350
|
-
onchange = attrs.onchange;
|
|
351
|
-
ondrag = attrs.ondrag;
|
|
352
|
-
if (typeof attrs.value === "number") {
|
|
353
|
-
value = clamp(attrs.value, min, max);
|
|
354
|
-
}
|
|
355
|
-
useAbsolute = !attrs.relative;
|
|
356
|
-
factorCoarse = (attrs.factor && attrs.factor[0]) || 4;
|
|
357
|
-
factorFine = (attrs.factor && attrs.factor[1]) || 1;
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
/** Return mithril component hooks object */
|
|
362
|
-
return {
|
|
363
|
-
oncreate: ({attrs, dom}) => {
|
|
364
|
-
applyIOSHack();
|
|
365
|
-
updateAttrs(attrs);
|
|
366
|
-
elHit = dom;
|
|
367
|
-
elBar = elHit.querySelector(".mithril-range-bar");
|
|
368
|
-
elBar0 = elBar.querySelector(".mithril-range-bar-0");
|
|
369
|
-
elBar1 = elBar.querySelector(".mithril-range-bar-1");
|
|
370
|
-
elHandle = elBar.querySelector(".mithril-range-handle");
|
|
371
|
-
elHit.addEventListener("mousedown", onMouseDown);
|
|
372
|
-
elHit.addEventListener("touchstart", onTouchStart);
|
|
373
|
-
elHit.addEventListener("keydown", onKeyDown);
|
|
374
|
-
},
|
|
375
|
-
onremove: function () {
|
|
376
|
-
window.removeEventListener("mousemove", onMouseMove);
|
|
377
|
-
window.removeEventListener("mouseup", onMouseUp);
|
|
378
|
-
elHit.removeEventListener("mousedown", onMouseDown);
|
|
379
|
-
elHit.removeEventListener("touchstart", onTouchStart);
|
|
380
|
-
elHit.removeEventListener("touchmove", onTouchMove);
|
|
381
|
-
elHit.removeEventListener("touchend", onTouchEnd);
|
|
382
|
-
elHit.removeEventListener("keydown", onKeyDown);
|
|
383
|
-
},
|
|
384
|
-
view: function ({attrs, children}) {
|
|
385
|
-
|
|
386
|
-
const NOKEY = attrs.nokey ? " nokey" : "";
|
|
387
|
-
|
|
388
|
-
updateAttrs(attrs);
|
|
389
|
-
value = quantize(value, min, max, step);
|
|
390
|
-
const a = {
|
|
391
|
-
class: "mithril-range " + NOKEY + (attrs.relative ? " isrelative " : " ") + (value === 0 ? "atzero" : value < 0 ? "belowzero" : "overzero") + (attrs.class != null ? " " + attrs.class : ""),
|
|
392
|
-
tabIndex: "0",
|
|
393
|
-
role: "slider",
|
|
394
|
-
"aria-valuemin": String(min),
|
|
395
|
-
"aria-valuemax": String(max),
|
|
396
|
-
"aria-valuenow": String(value),
|
|
397
|
-
"aria-orientation": orientation
|
|
398
|
-
};
|
|
399
|
-
if (attrs.id) {
|
|
400
|
-
a.id = attrs.id;
|
|
401
|
-
}
|
|
402
|
-
// noinspection JSUnresolvedVariable
|
|
403
|
-
if (attrs.ariaLabelledby) {
|
|
404
|
-
a["aria-labelledby"] = attrs.ariaLabelledby;
|
|
405
|
-
}
|
|
406
|
-
if (attrs.disabled) {
|
|
407
|
-
a.style = {pointerEvents: "none"};
|
|
408
|
-
a["aria-disabled"] = "true";
|
|
409
|
-
}
|
|
410
|
-
const
|
|
411
|
-
ps = positionStyle(value),
|
|
412
|
-
rps = positionStyle(max - value + min);
|
|
413
|
-
let
|
|
414
|
-
handleStyle,
|
|
415
|
-
bar0Style,
|
|
416
|
-
bar1Style;
|
|
417
|
-
|
|
418
|
-
if (orientation === "vertical") {
|
|
419
|
-
handleStyle = {top: ps};
|
|
420
|
-
bar0Style = {height: ps};
|
|
421
|
-
bar1Style = {height: rps};
|
|
422
|
-
} else {
|
|
423
|
-
handleStyle = {left: ps};
|
|
424
|
-
bar0Style = {width: rps};
|
|
425
|
-
bar1Style = {width: ps};
|
|
426
|
-
}
|
|
427
|
-
return m("div", a, m("div", {class: "mithril-range-bar" + NOKEY}, m("div", {
|
|
428
|
-
class: "mithril-range-bar-0" + NOKEY,
|
|
429
|
-
style: bar0Style
|
|
430
|
-
}), m("div", {
|
|
431
|
-
class: "mithril-range-bar-1" + NOKEY,
|
|
432
|
-
style: bar1Style
|
|
433
|
-
}), m("div", {
|
|
434
|
-
class: "mithril-range-handle" + NOKEY,
|
|
435
|
-
style: handleStyle
|
|
436
|
-
}, children)), !!attrs.name && m("input", {
|
|
437
|
-
type: "hidden",
|
|
438
|
-
name: attrs.name,
|
|
439
|
-
value: String(value)
|
|
440
|
-
}));
|
|
441
|
-
}
|
|
442
|
-
};
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
export default MithrilRange;
|
package/src/util/tainter.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import m from "mithril";
|
|
2
|
-
|
|
3
|
-
let
|
|
4
|
-
gTainted = false;
|
|
5
|
-
|
|
6
|
-
function taint() {
|
|
7
|
-
gTainted = true;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
function taintRedraw() {
|
|
11
|
-
const r = gTainted;
|
|
12
|
-
gTainted = true;
|
|
13
|
-
// eslint-disable-next-line no-unused-expressions
|
|
14
|
-
r && m.redraw();
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
function isTainted() {
|
|
18
|
-
return gTainted;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
function untaint() {
|
|
22
|
-
gTainted = false;
|
|
23
|
-
m.redraw();
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
export {
|
|
28
|
-
taint,
|
|
29
|
-
taintRedraw,
|
|
30
|
-
isTainted,
|
|
31
|
-
untaint
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
export default {
|
|
35
|
-
taint,
|
|
36
|
-
taintRedraw,
|
|
37
|
-
isTainted,
|
|
38
|
-
untaint
|
|
39
|
-
}
|