-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdock-spec.js
428 lines (365 loc) · 13.4 KB
/
dock-spec.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
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
/** @babel */
import etch from 'etch';
const Grim = require('grim');
const getNextUpdatePromise = () => etch.getScheduler().nextUpdatePromise;
describe('Dock', () => {
describe('when a dock is activated', () => {
it('opens the dock and activates its active pane', () => {
jasmine.attachToDOM(atom.workspace.getElement());
const dock = atom.workspace.getLeftDock();
const didChangeVisibleSpy = jasmine.createSpy();
dock.onDidChangeVisible(didChangeVisibleSpy);
expect(dock.isVisible()).toBe(false);
expect(document.activeElement).toBe(
atom.workspace
.getCenter()
.getActivePane()
.getElement()
);
dock.activate();
expect(dock.isVisible()).toBe(true);
expect(document.activeElement).toBe(dock.getActivePane().getElement());
expect(didChangeVisibleSpy).toHaveBeenCalledWith(true);
});
});
describe('when a dock is hidden', () => {
it('transfers focus back to the active center pane if the dock had focus', () => {
jasmine.attachToDOM(atom.workspace.getElement());
const dock = atom.workspace.getLeftDock();
const didChangeVisibleSpy = jasmine.createSpy();
dock.onDidChangeVisible(didChangeVisibleSpy);
dock.activate();
expect(document.activeElement).toBe(dock.getActivePane().getElement());
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(true);
dock.hide();
expect(document.activeElement).toBe(
atom.workspace
.getCenter()
.getActivePane()
.getElement()
);
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(false);
dock.activate();
expect(document.activeElement).toBe(dock.getActivePane().getElement());
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(true);
dock.toggle();
expect(document.activeElement).toBe(
atom.workspace
.getCenter()
.getActivePane()
.getElement()
);
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(false);
// Don't change focus if the dock was not focused in the first place
const modalElement = document.createElement('div');
modalElement.setAttribute('tabindex', -1);
atom.workspace.addModalPanel({ item: modalElement });
modalElement.focus();
expect(document.activeElement).toBe(modalElement);
dock.show();
expect(document.activeElement).toBe(modalElement);
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(true);
dock.hide();
expect(document.activeElement).toBe(modalElement);
expect(didChangeVisibleSpy.mostRecentCall.args[0]).toBe(false);
});
});
describe('when a pane in a dock is activated', () => {
it('opens the dock', async () => {
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
}
};
await atom.workspace.open(item, { activatePane: false });
expect(atom.workspace.getLeftDock().isVisible()).toBe(false);
atom.workspace
.getLeftDock()
.getPanes()[0]
.activate();
expect(atom.workspace.getLeftDock().isVisible()).toBe(true);
});
});
describe('activating the next pane', () => {
describe('when the dock has more than one pane', () => {
it('activates the next pane', () => {
const dock = atom.workspace.getLeftDock();
const pane1 = dock.getPanes()[0];
const pane2 = pane1.splitRight();
const pane3 = pane2.splitRight();
pane2.activate();
expect(pane1.isActive()).toBe(false);
expect(pane2.isActive()).toBe(true);
expect(pane3.isActive()).toBe(false);
dock.activateNextPane();
expect(pane1.isActive()).toBe(false);
expect(pane2.isActive()).toBe(false);
expect(pane3.isActive()).toBe(true);
});
});
describe('when the dock has only one pane', () => {
it('leaves the current pane active', () => {
const dock = atom.workspace.getLeftDock();
expect(dock.getPanes().length).toBe(1);
const pane = dock.getPanes()[0];
expect(pane.isActive()).toBe(true);
dock.activateNextPane();
expect(pane.isActive()).toBe(true);
});
});
});
describe('activating the previous pane', () => {
describe('when the dock has more than one pane', () => {
it('activates the previous pane', () => {
const dock = atom.workspace.getLeftDock();
const pane1 = dock.getPanes()[0];
const pane2 = pane1.splitRight();
const pane3 = pane2.splitRight();
pane2.activate();
expect(pane1.isActive()).toBe(false);
expect(pane2.isActive()).toBe(true);
expect(pane3.isActive()).toBe(false);
dock.activatePreviousPane();
expect(pane1.isActive()).toBe(true);
expect(pane2.isActive()).toBe(false);
expect(pane3.isActive()).toBe(false);
});
});
describe('when the dock has only one pane', () => {
it('leaves the current pane active', () => {
const dock = atom.workspace.getLeftDock();
expect(dock.getPanes().length).toBe(1);
const pane = dock.getPanes()[0];
expect(pane.isActive()).toBe(true);
dock.activatePreviousPane();
expect(pane.isActive()).toBe(true);
});
});
});
describe('when the dock resize handle is double-clicked', () => {
describe('when the dock is open', () => {
it("resizes a vertically-oriented dock to the current item's preferred width", async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
},
getPreferredWidth() {
return 142;
},
getPreferredHeight() {
return 122;
}
};
await atom.workspace.open(item);
const dock = atom.workspace.getLeftDock();
const dockElement = dock.getElement();
dock.setState({ size: 300 });
await getNextUpdatePromise();
expect(dockElement.offsetWidth).toBe(300);
dockElement
.querySelector('.atom-dock-resize-handle')
.dispatchEvent(new MouseEvent('mousedown', { detail: 2 }));
await getNextUpdatePromise();
expect(dockElement.offsetWidth).toBe(item.getPreferredWidth());
});
it("resizes a horizontally-oriented dock to the current item's preferred width", async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'bottom';
},
getPreferredWidth() {
return 122;
},
getPreferredHeight() {
return 142;
}
};
await atom.workspace.open(item);
const dock = atom.workspace.getBottomDock();
const dockElement = dock.getElement();
dock.setState({ size: 300 });
await getNextUpdatePromise();
expect(dockElement.offsetHeight).toBe(300);
dockElement
.querySelector('.atom-dock-resize-handle')
.dispatchEvent(new MouseEvent('mousedown', { detail: 2 }));
await getNextUpdatePromise();
expect(dockElement.offsetHeight).toBe(item.getPreferredHeight());
});
});
describe('when the dock is closed', () => {
it('does nothing', async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'bottom';
},
getPreferredWidth() {
return 122;
},
getPreferredHeight() {
return 142;
}
};
await atom.workspace.open(item, { activatePane: false });
const dockElement = atom.workspace.getBottomDock().getElement();
dockElement
.querySelector('.atom-dock-resize-handle')
.dispatchEvent(new MouseEvent('mousedown', { detail: 2 }));
expect(dockElement.offsetHeight).toBe(0);
expect(dockElement.querySelector('.atom-dock-inner').offsetHeight).toBe(
0
);
// The content should be masked away.
expect(dockElement.querySelector('.atom-dock-mask').offsetHeight).toBe(
0
);
});
});
});
describe('when you add an item to an empty dock', () => {
describe('when the item has a preferred size', () => {
it('is takes the preferred size of the item', async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const createItem = preferredWidth => ({
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
},
getPreferredWidth() {
return preferredWidth;
}
});
const dock = atom.workspace.getLeftDock();
const dockElement = dock.getElement();
expect(dock.getPaneItems()).toHaveLength(0);
const item1 = createItem(111);
await atom.workspace.open(item1);
// It should update the width every time we go from 0 -> 1 items, not just the first.
expect(dock.isVisible()).toBe(true);
expect(dockElement.offsetWidth).toBe(111);
dock.destroyActivePane();
expect(dock.getPaneItems()).toHaveLength(0);
expect(dock.isVisible()).toBe(false);
const item2 = createItem(222);
await atom.workspace.open(item2);
expect(dock.isVisible()).toBe(true);
expect(dockElement.offsetWidth).toBe(222);
// Adding a second shouldn't change the size.
const item3 = createItem(333);
await atom.workspace.open(item3);
expect(dockElement.offsetWidth).toBe(222);
});
});
describe('when the item has no preferred size', () => {
it('is still has an explicit size', async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
}
};
const dock = atom.workspace.getLeftDock();
expect(dock.getPaneItems()).toHaveLength(0);
expect(dock.state.size).toBe(null);
await atom.workspace.open(item);
expect(dock.state.size).not.toBe(null);
});
});
});
describe('a deserialized dock', () => {
it('restores the serialized size', async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
},
getPreferredWidth() {
return 122;
},
serialize: () => ({ deserializer: 'DockTestItem' })
};
atom.deserializers.add({
name: 'DockTestItem',
deserialize: () => item
});
const dock = atom.workspace.getLeftDock();
const dockElement = dock.getElement();
await atom.workspace.open(item);
dock.setState({ size: 150 });
expect(dockElement.offsetWidth).toBe(150);
const serialized = dock.serialize();
dock.setState({ size: 122 });
expect(dockElement.offsetWidth).toBe(122);
dock.destroyActivePane();
dock.deserialize(serialized, atom.deserializers);
expect(dockElement.offsetWidth).toBe(150);
});
it("isn't visible if it has no items", async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const item = {
element: document.createElement('div'),
getDefaultLocation() {
return 'left';
},
getPreferredWidth() {
return 122;
}
};
const dock = atom.workspace.getLeftDock();
await atom.workspace.open(item);
expect(dock.isVisible()).toBe(true);
const serialized = dock.serialize();
dock.deserialize(serialized, atom.deserializers);
expect(dock.getPaneItems()).toHaveLength(0);
expect(dock.isVisible()).toBe(false);
});
});
describe('drag handling', () => {
it('expands docks to match the preferred size of the dragged item', async () => {
jasmine.attachToDOM(atom.workspace.getElement());
const element = document.createElement('div');
element.setAttribute('is', 'tabs-tab');
element.item = {
element,
getDefaultLocation() {
return 'left';
},
getPreferredWidth() {
return 144;
}
};
const dragEvent = new DragEvent('dragstart');
Object.defineProperty(dragEvent, 'target', { value: element });
atom.workspace.getElement().handleDragStart(dragEvent);
await getNextUpdatePromise();
expect(atom.workspace.getLeftDock().refs.wrapperElement.offsetWidth).toBe(
144
);
});
it('does nothing when text nodes are dragged', () => {
jasmine.attachToDOM(atom.workspace.getElement());
const textNode = document.createTextNode('hello');
const dragEvent = new DragEvent('dragstart');
Object.defineProperty(dragEvent, 'target', { value: textNode });
expect(() =>
atom.workspace.getElement().handleDragStart(dragEvent)
).not.toThrow();
});
});
describe('::getActiveTextEditor()', () => {
it('is deprecated', () => {
spyOn(Grim, 'deprecate');
atom.workspace.getLeftDock().getActiveTextEditor();
expect(Grim.deprecate.callCount).toBe(1);
});
});
});