forked from gridstack/gridstack.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdd-base-impl.ts
48 lines (39 loc) · 1.25 KB
/
dd-base-impl.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
/**
* dd-base-impl.ts 11.5.0-dev
* Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license
*/
export type EventCallback = (event: Event) => boolean|void;
export abstract class DDBaseImplement {
/** returns the enable state, but you have to call enable()/disable() to change (as other things need to happen) */
public get disabled(): boolean { return this._disabled; }
/** @internal */
protected _disabled: boolean; // initial state to differentiate from false
/** @internal */
protected _eventRegister: {
[eventName: string]: EventCallback;
} = {};
public on(event: string, callback: EventCallback): void {
this._eventRegister[event] = callback;
}
public off(event: string): void {
delete this._eventRegister[event];
}
public enable(): void {
this._disabled = false;
}
public disable(): void {
this._disabled = true;
}
public destroy(): void {
delete this._eventRegister;
}
public triggerEvent(eventName: string, event: Event): boolean|void {
if (!this.disabled && this._eventRegister && this._eventRegister[eventName])
return this._eventRegister[eventName](event);
}
}
export interface HTMLElementExtendOpt<T> {
el: HTMLElement;
option: T;
updateOption(T): DDBaseImplement;
}