-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectedSectionManager.ts
More file actions
443 lines (379 loc) · 14 KB
/
Copy pathSelectedSectionManager.ts
File metadata and controls
443 lines (379 loc) · 14 KB
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import type { Item, InputChangeEvent } from "../types.js";
import createSubscriber from "../createSubscriber.js";
export type SelectedSectionManagerOptions<T extends Item> = {
selected?: T[];
showInput?: boolean;
value?: string;
renderItem?: (item: T, defaultRender: (item: T) => HTMLElement) => HTMLElement;
renderList?: (selected: T[], defaultRender: (selected: T[]) => HTMLElement[]) => HTMLElement[];
onDelete?: (id: string) => void;
onClear?: () => void;
onInputChange?: (e: InputChangeEvent, previousValue: string | undefined) => void;
onChange?: (selected: T[]) => void;
onFocus?: (e: FocusEvent) => void;
label?: string;
disabled?: boolean;
error?: boolean;
loading?: boolean;
showDelete?: boolean;
onComponentChange?: (s: SelectedSectionManagerOptions<T>, reason: string) => void;
renderEmpty?: (defaultRender: () => string | HTMLElement) => string | HTMLElement;
};
export type SelectedSectionManagerEvents<T extends Item> = {
onDelete: [id: string];
onClear: [];
onInputChange: [e: InputChangeEvent, previousValue: string | undefined];
onChange: [selected: T[]];
onComponentChange: [s: SelectedSectionManagerOptions<T>, reason: string];
onFocus: [e: FocusEvent];
};
export class SelectedSectionManager<T extends Item> {
public propParentElement: HTMLElement;
public propContainer!: HTMLElement;
public propFlexList!: HTMLElement;
public propButtonsContainer!: HTMLElement;
public propOptions: SelectedSectionManagerOptions<T>;
public propInputElement: HTMLInputElement | null = null;
public propClearButton!: HTMLButtonElement;
public propLoaderElement: HTMLElement | null = null;
public propLabelElement: HTMLLabelElement | null = null;
private _skipNextFocusEvent = false;
protected _subscriber = createSubscriber<SelectedSectionManagerEvents<T>>();
constructor(parentElement: HTMLElement, options: SelectedSectionManagerOptions<T> = {}) {
this.propParentElement = parentElement;
const {
selected = [],
showInput = true,
value = "",
renderItem = (item, def) => def(item),
renderList = (selected, def) => def(selected),
onDelete = (id: string) => {},
onClear = () => {},
onInputChange = (e: InputChangeEvent, previousValue: string | undefined) => {},
onChange = (selected: T[]) => {},
onComponentChange = (s: SelectedSectionManagerOptions<T>, reason: string) => {},
disabled = false,
error = false,
loading = false,
renderEmpty = (def) => def() as HTMLElement,
label = "",
showDelete = true,
...rest
} = options;
this.propOptions = {
selected,
showInput,
value,
renderItem,
renderList,
onDelete,
onClear,
onInputChange,
onChange,
onComponentChange,
disabled,
error,
loading,
renderEmpty,
label,
showDelete,
...rest,
};
this.render();
Promise.resolve().then(() => {
this._bindEvents();
});
}
public getSubscriber() {
return this._subscriber;
}
protected _bindEvents() {
this.propParentElement.addEventListener("click", (e) => {
const target = e.target as HTMLElement;
// Handle Clear Button
const clearBtn = target.closest(".clear-btn");
if (clearBtn && this.propParentElement.contains(clearBtn)) {
e.preventDefault();
this.clearSearch();
return;
}
// Handle Delete Item
const delBtn = target.closest("[data-remove]");
if (delBtn && this.propParentElement.contains(delBtn)) {
e.preventDefault();
const id = delBtn.getAttribute("data-remove")!;
if (this.propOptions.onDelete) {
this.propOptions.onDelete.call(this, id);
}
this._subscriber.trigger("onDelete", id);
return;
}
});
this.propParentElement.addEventListener("input", (e) => {
const target = e.target as HTMLElement;
if (target === this.propInputElement) {
const previousValue = this.propOptions.value;
this.propOptions.value = this.propInputElement!.value;
if (this.propOptions.onInputChange) {
this.propOptions.onInputChange.call(this, e as InputChangeEvent, previousValue);
}
this._subscriber.trigger("onInputChange", e as InputChangeEvent, previousValue);
}
});
this.propParentElement.addEventListener("focusin", (e) => {
const target = e.target as HTMLElement;
if (target === this.propInputElement) {
if (this._skipNextFocusEvent) {
this._skipNextFocusEvent = false;
return;
}
if (this.propOptions.onFocus) {
this.propOptions.onFocus.call(this, e as FocusEvent);
}
this._subscriber.trigger("onFocus", e as FocusEvent);
}
});
this.propParentElement.addEventListener("keydown", (e) => {
const target = e.target as HTMLElement;
if (target === this.propInputElement) {
const isBackspaceOnEmpty = e.key === "Backspace" && this.propInputElement!.value === "";
const isEnter = e.key === "Enter";
if (isEnter || isBackspaceOnEmpty) {
const previousValue = this.propOptions.value;
if (this.propOptions.onInputChange) {
this.propOptions.onInputChange.call(this, e as InputChangeEvent, previousValue);
}
this._subscriber.trigger("onInputChange", e as InputChangeEvent, previousValue);
}
}
});
}
protected _triggerOnComponentChange(reason: string) {
if (this.propOptions.onComponentChange) {
this.propOptions.onComponentChange.call(this, this.propOptions, reason);
}
this._subscriber.trigger("onComponentChange", this.propOptions, reason);
}
protected _updateDeleteDisplay() {
if (this.propContainer) {
this.propContainer.classList.toggle("hide-delete", this.propOptions.showDelete === false);
}
}
protected _defaultRenderList(selected: T[]) {
return selected.map((item) => this.propOptions.renderItem!(item, this._defaultRenderItem.bind(this)));
}
protected _defaultRenderItem(item: T) {
const el = document.createElement("div");
el.className = "element";
el.dataset.id = String(item.id);
const label = document.createElement("label");
label.textContent = item.label;
const del = document.createElement("div");
del.dataset.remove = String(item.id);
el.appendChild(label);
el.appendChild(del);
return el;
}
setSelected(list: T[], triggerOnChange: boolean = true) {
this.propOptions.selected = list.map((s) => {
s.selected = true;
return s;
});
this.render();
if (triggerOnChange) {
if (this.propOptions.onChange) {
this.propOptions.onChange.call(this, this.getSelected());
}
this._subscriber.trigger("onChange", this.getSelected());
}
this._triggerOnComponentChange("setSelected");
}
setShowInput(show: boolean) {
this.propOptions.showInput = show = String(show) === "true" || show === true;
this.propInputElement!.style.display = show ? "" : "none";
this.propInputElement!.disabled = Boolean(this.propOptions.disabled);
this._triggerOnComponentChange("setShowInput");
}
setValue(value: string, triggerOnChange: boolean = true) {
const previousValue = this.propOptions.value;
this.propOptions.value = value;
this.propInputElement!.value = value;
if (triggerOnChange) {
const e = new Event("input") as InputChangeEvent;
Object.defineProperty(e, "target", { writable: false, value: this.propInputElement });
if (this.propOptions.onInputChange) {
this.propOptions.onInputChange.call(this, e, previousValue);
}
this._subscriber.trigger("onInputChange", e, previousValue);
}
this._triggerOnComponentChange("setValue");
}
public setFocus(triggerOnFocus: boolean = true) {
if (!triggerOnFocus) {
this._skipNextFocusEvent = true;
}
this.propInputElement!.focus();
}
clearSearch(triggerOnClear: boolean = true, triggerOnChange: boolean = true) {
this.setValue("", triggerOnChange);
if (triggerOnClear) {
if (this.propOptions.onClear) {
this.propOptions.onClear.call(this);
}
this._subscriber.trigger("onClear");
}
this._triggerOnComponentChange("onClear");
}
setLabel(label: string) {
this.propOptions.label = label;
if (label) {
if (!this.propLabelElement) {
this.propLabelElement = document.createElement("label");
this.propLabelElement.className = "floating-label";
}
if (this.propLabelElement.parentNode !== this.propContainer) {
this.propContainer.insertBefore(this.propLabelElement, this.propContainer.firstChild);
}
this.propLabelElement.textContent = label;
} else {
if (this.propLabelElement && this.propLabelElement.parentNode === this.propContainer) {
this.propContainer.removeChild(this.propLabelElement);
}
}
this._triggerOnComponentChange("setLabel");
}
setError(isError: boolean) {
this.propOptions.error = Boolean(isError);
this.propContainer.classList.toggle("error", isError);
this._triggerOnComponentChange("setError");
}
setDisabled(disabled: boolean) {
this.propOptions.disabled = Boolean(disabled);
this.propInputElement!.disabled = disabled;
this.propClearButton.disabled = disabled;
this.propContainer.classList.toggle("disabled", disabled);
this._triggerOnComponentChange("setDisabled");
}
/**
* show/hide delete icon
* @param show
*/
setShowDelete(show: boolean) {
this.propOptions.showDelete = Boolean(show);
this._updateDeleteDisplay();
this._triggerOnComponentChange("setShowDelete");
}
setLoading(loading: boolean) {
this.propOptions.loading = Boolean(loading);
if (loading) {
if (!this.propLoaderElement) {
this.propLoaderElement = document.createElement("div");
this.propLoaderElement.className = "loader";
}
if (this.propClearButton.parentNode) {
this.propButtonsContainer.replaceChild(this.propLoaderElement, this.propClearButton);
}
} else {
if (this.propLoaderElement && this.propLoaderElement.parentNode) {
this.propButtonsContainer.replaceChild(this.propClearButton, this.propLoaderElement);
}
}
this._triggerOnComponentChange("setLoading");
}
render() {
if (!this.propContainer) {
this.propContainer = document.createElement("div");
this.propContainer.className = "selected-section";
this.propFlexList = document.createElement("div");
this.propFlexList.className = "flex-list";
this.propButtonsContainer = document.createElement("div");
this.propButtonsContainer.className = "buttons-container";
this.propClearButton = document.createElement("button");
this.propClearButton.className = "clear-btn";
this.propClearButton.textContent = "✕";
this.propButtonsContainer.appendChild(this.propClearButton);
this.propContainer.appendChild(this.propFlexList);
this.propContainer.appendChild(this.propButtonsContainer);
this.propParentElement.appendChild(this.propContainer);
const input = document.createElement("input");
input.type = "text";
input.value = this.propOptions.value || "";
input.placeholder = " ";
input.size = 1;
this.propInputElement = input;
this.propFlexList.appendChild(this.propInputElement);
}
this.setLabel(this.propOptions.label || "");
this.setShowDelete(this.propOptions.showDelete !== false);
this.setError(Boolean(this.propOptions.error));
this.setDisabled(Boolean(this.propOptions.disabled));
this.setLoading(Boolean(this.propOptions.loading));
this.setShowInput(Boolean(this.propOptions.showInput));
const elements = this.propOptions.renderList!(this.getSelected(), this._defaultRenderList.bind(this));
if (!Array.isArray(elements)) {
throw new Error("renderList must return an array of HTMLElements");
}
// clear the list (except touching input)
const children = Array.from(this.propFlexList.childNodes);
for (const child of children) {
if (child instanceof HTMLElement && child.tagName === "INPUT") {
continue;
}
this.propFlexList.removeChild(child);
}
// rendering elements in order before input
for (const el of elements) {
if (!(el instanceof HTMLElement)) {
throw new Error("each element returned from renderList must be an HTMLElement");
}
if (this.propInputElement && this.propInputElement.parentNode === this.propFlexList) {
this.propFlexList.insertBefore(el, this.propInputElement);
} else {
this.propFlexList.appendChild(el);
}
}
}
public setRenderItem(renderItem?: (item: T, defaultRender: (item: T) => HTMLElement) => HTMLElement) {
this.propOptions.renderItem = renderItem || ((item, def) => def(item));
this.render();
this._triggerOnComponentChange("setRenderItem");
}
public setRenderList(renderList?: (selected: T[], defaultRender: (selected: T[]) => HTMLElement[]) => HTMLElement[]) {
this.propOptions.renderList = renderList || ((selected, def) => def(selected));
this.render();
this._triggerOnComponentChange("setRenderList");
}
public setRenderEmpty(renderEmpty?: (defaultRender: () => string | HTMLElement) => string | HTMLElement) {
this.propOptions.renderEmpty = renderEmpty || ((def) => def() as HTMLElement);
this.render();
this._triggerOnComponentChange("setRenderEmpty");
}
// getters
public getSelected() {
return this.propOptions.selected || [];
}
public getShowInput() {
return this.propOptions.showInput;
}
public getValue() {
return this.propOptions.value;
}
public getLabel() {
return this.propOptions.label;
}
public getDisabled() {
return this.propOptions.disabled;
}
public getError() {
return this.propOptions.error;
}
public getLoading() {
return this.propOptions.loading;
}
public getShowDelete() {
return this.propOptions.showDelete;
}
public destroy() {
this._subscriber.destroy();
}
}