Skip to content

Commit 9f071e4

Browse files
committed
test: add DialogManager tests
1 parent 8d1c98a commit 9f071e4

File tree

3 files changed

+386
-21
lines changed

3 files changed

+386
-21
lines changed

src/components/Dialog/DialogsManager.ts

+37-19
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ type DialogId = string;
22

33
export type GetOrCreateParams = {
44
id: DialogId;
5-
isOpen?: boolean;
65
};
76

87
export type Dialog = {
@@ -15,7 +14,7 @@ export type Dialog = {
1514
toggleSingle: () => void;
1615
};
1716

18-
type DialogEvent = { type: 'close' | 'open' | 'openCountChange' };
17+
type DialogEvent = { type: 'close' | 'open' };
1918

2019
const dialogsManagerEvents = ['openCountChange'] as const;
2120
type DialogsManagerEvent = { type: typeof dialogsManagerEvents[number] };
@@ -46,15 +45,15 @@ export class DialogsManager {
4645
this.id = id ?? new Date().getTime().toString();
4746
}
4847

49-
getOrCreate({ id, isOpen = false }: GetOrCreateParams) {
48+
getOrCreate({ id }: GetOrCreateParams) {
5049
let dialog = this.dialogs[id];
5150
if (!dialog) {
5251
dialog = {
5352
close: () => {
5453
this.close(id);
5554
},
5655
id,
57-
isOpen,
56+
isOpen: false,
5857
open: () => {
5958
this.open({ id });
6059
},
@@ -88,10 +87,11 @@ export class DialogsManager {
8887
if (!id) return noop;
8988

9089
if (!this.dialogEventListeners[id]) {
91-
this.dialogEventListeners[id] = { close: [], open: [] };
90+
this.dialogEventListeners[id] = {};
9291
}
93-
this.dialogEventListeners[id][eventType] = [
94-
...(this.dialogEventListeners[id][eventType] ?? []),
92+
93+
this.dialogEventListeners[id][eventType as DialogEvent['type']] = [
94+
...(this.dialogEventListeners[id][eventType as DialogEvent['type']] ?? []),
9595
listener as DialogEventHandler,
9696
];
9797
return () => {
@@ -104,18 +104,33 @@ export class DialogsManager {
104104
{ id, listener }: { listener: DialogEventHandler | DialogsManagerEventHandler; id?: DialogId },
105105
) {
106106
if (dialogsManagerEvents.includes(eventType as DialogsManagerEvent['type'])) {
107-
const eventListeners = this.dialogsManagerEventListeners[
107+
if (!this.dialogsManagerEventListeners[eventType as DialogsManagerEvent['type']]?.length)
108+
return;
109+
110+
this.dialogsManagerEventListeners[
108111
eventType as DialogsManagerEvent['type']
109-
];
110-
eventListeners?.filter((l) => l !== listener);
112+
] = this.dialogsManagerEventListeners[eventType as DialogsManagerEvent['type']]?.filter(
113+
(l) => l !== listener,
114+
);
111115
return;
112116
}
113117

114118
if (!id) return;
115119

116-
const eventListeners = this.dialogEventListeners[id]?.[eventType];
120+
const eventListeners = this.dialogEventListeners[id]?.[eventType as DialogEvent['type']];
117121
if (!eventListeners) return;
118-
this.dialogEventListeners[id][eventType] = eventListeners.filter((l) => l !== listener);
122+
123+
this.dialogEventListeners[id][eventType as DialogEvent['type']] = eventListeners.filter(
124+
(l) => l !== listener,
125+
);
126+
127+
if (!this.dialogEventListeners[id][eventType as DialogEvent['type']]?.length) {
128+
delete this.dialogEventListeners[id][eventType as DialogEvent['type']];
129+
}
130+
131+
if (!Object.keys(this.dialogEventListeners[id]).length) {
132+
delete this.dialogEventListeners[id];
133+
}
119134
}
120135

121136
open(params: GetOrCreateParams, single?: boolean) {
@@ -127,15 +142,15 @@ export class DialogsManager {
127142
this.dialogs[params.id].isOpen = true;
128143
this.openDialogCount++;
129144
this.dialogsManagerEventListeners.openCountChange.forEach((listener) => listener(this));
130-
this.dialogEventListeners[params.id].open?.forEach((listener) => listener(dialog));
145+
this.dialogEventListeners[params.id]?.open?.forEach((listener) => listener(dialog));
131146
}
132147

133148
close(id: DialogId) {
134149
const dialog = this.dialogs[id];
135150
if (!dialog?.isOpen) return;
136151
dialog.isOpen = false;
137152
this.openDialogCount--;
138-
this.dialogEventListeners[id].close?.forEach((listener) => listener(dialog));
153+
this.dialogEventListeners[id]?.close?.forEach((listener) => listener(dialog));
139154
this.dialogsManagerEventListeners.openCountChange.forEach((listener) => listener(this));
140155
}
141156

@@ -144,24 +159,24 @@ export class DialogsManager {
144159
}
145160

146161
toggleOpen(params: GetOrCreateParams) {
147-
if (this.dialogs[params.id].isOpen) {
162+
if (this.dialogs[params.id]?.isOpen) {
148163
this.close(params.id);
149164
} else {
150165
this.open(params);
151166
}
152167
}
153168

154169
toggleOpenSingle(params: GetOrCreateParams) {
155-
if (this.dialogs[params.id].isOpen) {
170+
if (this.dialogs[params.id]?.isOpen) {
156171
this.close(params.id);
157172
} else {
158173
this.open(params, true);
159174
}
160175
}
161176

162177
remove(id: DialogId) {
163-
const dialogs = { ...this.dialogs };
164-
if (!dialogs[id]) return;
178+
const dialog = this.dialogs[id];
179+
if (!dialog) return;
165180

166181
const countListeners =
167182
!!this.dialogEventListeners[id] &&
@@ -172,7 +187,10 @@ export class DialogsManager {
172187

173188
if (!countListeners) {
174189
delete this.dialogEventListeners[id];
175-
delete dialogs[id];
190+
if (dialog.isOpen) {
191+
this.openDialogCount--;
192+
}
193+
delete this.dialogs[id];
176194
}
177195
}
178196
}

0 commit comments

Comments
 (0)