2017-04-05 21:56:50 +03:00
|
|
|
/** @babel */
|
|
|
|
|
|
|
|
import {it, fit, ffit, fffit, beforeEach, afterEach} from './async-spec-helpers'
|
|
|
|
|
2017-04-05 01:22:32 +03:00
|
|
|
describe('Dock', () => {
|
2017-04-06 00:35:31 +03:00
|
|
|
describe('when a dock is activated', () => {
|
|
|
|
it('opens the dock and activates its active pane', () => {
|
2017-04-06 01:15:21 +03:00
|
|
|
jasmine.attachToDOM(atom.workspace.getElement())
|
2017-04-06 00:35:31 +03:00
|
|
|
const dock = atom.workspace.getLeftDock()
|
|
|
|
|
2017-04-07 03:01:15 +03:00
|
|
|
expect(dock.isVisible()).toBe(false)
|
2017-04-06 02:50:04 +03:00
|
|
|
expect(document.activeElement).toBe(atom.workspace.getCenter().getActivePane().getElement())
|
2017-04-06 00:35:31 +03:00
|
|
|
dock.activate()
|
2017-04-07 03:01:15 +03:00
|
|
|
expect(dock.isVisible()).toBe(true)
|
2017-04-06 02:50:04 +03:00
|
|
|
expect(document.activeElement).toBe(dock.getActivePane().getElement())
|
2017-04-06 00:35:31 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-04-06 05:58:05 +03:00
|
|
|
describe('when a dock is hidden', () => {
|
|
|
|
it('transfers focus back to the active center pane', () => {
|
|
|
|
jasmine.attachToDOM(atom.workspace.getElement())
|
|
|
|
const dock = atom.workspace.getLeftDock()
|
|
|
|
dock.activate()
|
|
|
|
expect(document.activeElement).toBe(dock.getActivePane().getElement())
|
|
|
|
|
|
|
|
dock.hide()
|
|
|
|
expect(document.activeElement).toBe(atom.workspace.getCenter().getActivePane().getElement())
|
2017-04-12 18:46:18 +03:00
|
|
|
|
|
|
|
dock.activate()
|
|
|
|
expect(document.activeElement).toBe(dock.getActivePane().getElement())
|
|
|
|
|
|
|
|
dock.toggle()
|
|
|
|
expect(document.activeElement).toBe(atom.workspace.getCenter().getActivePane().getElement())
|
2017-04-06 05:58:05 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-04-05 01:22:32 +03:00
|
|
|
describe('when a pane in a dock is activated', () => {
|
2017-04-06 00:35:31 +03:00
|
|
|
it('opens the dock', async () => {
|
2017-04-05 01:22:32 +03:00
|
|
|
const item = {
|
2017-04-06 00:35:31 +03:00
|
|
|
element: document.createElement('div'),
|
2017-04-05 01:22:32 +03:00
|
|
|
getDefaultLocation() { return 'left' }
|
|
|
|
}
|
|
|
|
|
2017-04-06 00:35:31 +03:00
|
|
|
await atom.workspace.open(item, {activatePane: false})
|
2017-04-07 03:01:15 +03:00
|
|
|
expect(atom.workspace.getLeftDock().isVisible()).toBe(false)
|
2017-04-05 01:22:32 +03:00
|
|
|
|
|
|
|
atom.workspace.getLeftDock().getPanes()[0].activate()
|
2017-04-07 03:01:15 +03:00
|
|
|
expect(atom.workspace.getLeftDock().isVisible()).toBe(true)
|
2017-04-05 01:22:32 +03:00
|
|
|
})
|
|
|
|
})
|
2017-04-05 21:56:50 +03:00
|
|
|
|
|
|
|
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 () => {
|
2017-04-06 01:15:21 +03:00
|
|
|
jasmine.attachToDOM(atom.workspace.getElement())
|
2017-04-05 21:56:50 +03:00
|
|
|
|
|
|
|
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})
|
|
|
|
expect(dockElement.offsetWidth).toBe(300)
|
|
|
|
dockElement.querySelector('.atom-dock-resize-handle').dispatchEvent(new MouseEvent('mousedown', {detail: 2}))
|
|
|
|
|
|
|
|
expect(dockElement.offsetWidth).toBe(item.getPreferredWidth())
|
|
|
|
})
|
|
|
|
|
|
|
|
it('resizes a horizontally-oriented dock to the current item\'s preferred width', async () => {
|
2017-04-06 01:15:21 +03:00
|
|
|
jasmine.attachToDOM(atom.workspace.getElement())
|
2017-04-05 21:56:50 +03:00
|
|
|
|
|
|
|
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})
|
|
|
|
expect(dockElement.offsetHeight).toBe(300)
|
|
|
|
dockElement.querySelector('.atom-dock-resize-handle').dispatchEvent(new MouseEvent('mousedown', {detail: 2}))
|
|
|
|
|
|
|
|
expect(dockElement.offsetHeight).toBe(item.getPreferredHeight())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when the dock is closed', () => {
|
|
|
|
it('does nothing', async () => {
|
2017-04-06 01:15:21 +03:00
|
|
|
jasmine.attachToDOM(atom.workspace.getElement())
|
2017-04-05 21:56:50 +03:00
|
|
|
|
|
|
|
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)
|
2017-04-14 01:50:41 +03:00
|
|
|
|
|
|
|
// There should still be a hoverable, absolutely-positioned element so users can reveal the
|
|
|
|
// toggle affordance even when fullscreened.
|
|
|
|
expect(dockElement.querySelector('.atom-dock-inner').offsetHeight).toBe(1)
|
2017-04-14 01:53:37 +03:00
|
|
|
|
|
|
|
// The content should be masked away.
|
|
|
|
expect(dockElement.querySelector('.atom-dock-mask').offsetHeight).toBe(0)
|
2017-04-05 21:56:50 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|