mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
166 lines
5.8 KiB
JavaScript
166 lines
5.8 KiB
JavaScript
'use strict'
|
|
|
|
/* global HTMLElement */
|
|
|
|
const Panel = require('../src/panel')
|
|
const PanelContainer = require('../src/panel-container')
|
|
|
|
describe('PanelContainerElement', () => {
|
|
let jasmineContent, element, container
|
|
|
|
class TestPanelContainerItem {
|
|
}
|
|
|
|
class TestPanelContainerItemElement_ extends HTMLElement {
|
|
createdCallback () {
|
|
this.classList.add('test-root')
|
|
}
|
|
initialize (model) {
|
|
this.model = model
|
|
return this
|
|
}
|
|
}
|
|
|
|
const TestPanelContainerItemElement = document.registerElement(
|
|
'atom-test-container-item-element',
|
|
{prototype: TestPanelContainerItemElement_.prototype}
|
|
)
|
|
|
|
beforeEach(() => {
|
|
jasmineContent = document.body.querySelector('#jasmine-content')
|
|
|
|
atom.views.addViewProvider(
|
|
TestPanelContainerItem,
|
|
model => new TestPanelContainerItemElement().initialize(model)
|
|
)
|
|
|
|
container = new PanelContainer({viewRegistry: atom.views, location: 'left'})
|
|
element = container.getElement()
|
|
jasmineContent.appendChild(element)
|
|
})
|
|
|
|
it('has a location class with value from the model', () => {
|
|
expect(element).toHaveClass('left')
|
|
})
|
|
|
|
it('removes the element when the container is destroyed', () => {
|
|
expect(element.parentNode).toBe(jasmineContent)
|
|
container.destroy()
|
|
expect(element.parentNode).not.toBe(jasmineContent)
|
|
})
|
|
|
|
describe('adding and removing panels', () => {
|
|
it('allows panels to be inserted at any position', () => {
|
|
const panel1 = new Panel({item: new TestPanelContainerItem(), priority: 10}, atom.views)
|
|
const panel2 = new Panel({item: new TestPanelContainerItem(), priority: 5}, atom.views)
|
|
const panel3 = new Panel({item: new TestPanelContainerItem(), priority: 8}, atom.views)
|
|
|
|
container.addPanel(panel1)
|
|
container.addPanel(panel2)
|
|
container.addPanel(panel3)
|
|
|
|
expect(element.childNodes[2]).toBe(panel1.getElement())
|
|
expect(element.childNodes[1]).toBe(panel3.getElement())
|
|
expect(element.childNodes[0]).toBe(panel2.getElement())
|
|
})
|
|
|
|
describe('when the container is at the left location', () =>
|
|
it('adds atom-panel elements when a new panel is added to the container; removes them when the panels are destroyed', () => {
|
|
expect(element.childNodes.length).toBe(0)
|
|
|
|
const panel1 = new Panel({item: new TestPanelContainerItem()}, atom.views)
|
|
container.addPanel(panel1)
|
|
expect(element.childNodes.length).toBe(1)
|
|
expect(element.childNodes[0]).toHaveClass('left')
|
|
expect(element.childNodes[0]).toHaveClass('tool-panel') // legacy selector support
|
|
expect(element.childNodes[0]).toHaveClass('panel-left') // legacy selector support
|
|
|
|
expect(element.childNodes[0].tagName).toBe('ATOM-PANEL')
|
|
|
|
const panel2 = new Panel({item: new TestPanelContainerItem()}, atom.views)
|
|
container.addPanel(panel2)
|
|
expect(element.childNodes.length).toBe(2)
|
|
|
|
expect(panel1.getElement().style.display).not.toBe('none')
|
|
expect(panel2.getElement().style.display).not.toBe('none')
|
|
|
|
panel1.destroy()
|
|
expect(element.childNodes.length).toBe(1)
|
|
|
|
panel2.destroy()
|
|
expect(element.childNodes.length).toBe(0)
|
|
})
|
|
)
|
|
|
|
describe('when the container is at the bottom location', () => {
|
|
beforeEach(() => {
|
|
container = new PanelContainer({viewRegistry: atom.views, location: 'bottom'})
|
|
element = container.getElement()
|
|
jasmineContent.appendChild(element)
|
|
})
|
|
|
|
it('adds atom-panel elements when a new panel is added to the container; removes them when the panels are destroyed', () => {
|
|
expect(element.childNodes.length).toBe(0)
|
|
|
|
const panel1 = new Panel({item: new TestPanelContainerItem(), className: 'one'}, atom.views)
|
|
container.addPanel(panel1)
|
|
expect(element.childNodes.length).toBe(1)
|
|
expect(element.childNodes[0]).toHaveClass('bottom')
|
|
expect(element.childNodes[0]).toHaveClass('tool-panel') // legacy selector support
|
|
expect(element.childNodes[0]).toHaveClass('panel-bottom') // legacy selector support
|
|
expect(element.childNodes[0].tagName).toBe('ATOM-PANEL')
|
|
expect(panel1.getElement()).toHaveClass('one')
|
|
|
|
const panel2 = new Panel({item: new TestPanelContainerItem(), className: 'two'}, atom.views)
|
|
container.addPanel(panel2)
|
|
expect(element.childNodes.length).toBe(2)
|
|
expect(panel2.getElement()).toHaveClass('two')
|
|
|
|
panel1.destroy()
|
|
expect(element.childNodes.length).toBe(1)
|
|
|
|
panel2.destroy()
|
|
expect(element.childNodes.length).toBe(0)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('when the container is modal', () => {
|
|
beforeEach(() => {
|
|
container = new PanelContainer({viewRegistry: atom.views, location: 'modal'})
|
|
element = container.getElement()
|
|
jasmineContent.appendChild(element)
|
|
})
|
|
|
|
it('allows only one panel to be visible at a time', () => {
|
|
const panel1 = new Panel({item: new TestPanelContainerItem()}, atom.views)
|
|
container.addPanel(panel1)
|
|
|
|
expect(panel1.getElement().style.display).not.toBe('none')
|
|
|
|
const panel2 = new Panel({item: new TestPanelContainerItem()}, atom.views)
|
|
container.addPanel(panel2)
|
|
|
|
expect(panel1.getElement().style.display).toBe('none')
|
|
expect(panel2.getElement().style.display).not.toBe('none')
|
|
|
|
panel1.show()
|
|
|
|
expect(panel1.getElement().style.display).not.toBe('none')
|
|
expect(panel2.getElement().style.display).toBe('none')
|
|
})
|
|
|
|
it("adds the 'modal' class to panels", () => {
|
|
const panel1 = new Panel({item: new TestPanelContainerItem()}, atom.views)
|
|
container.addPanel(panel1)
|
|
|
|
expect(panel1.getElement()).toHaveClass('modal')
|
|
|
|
// legacy selector support
|
|
expect(panel1.getElement()).not.toHaveClass('tool-panel')
|
|
expect(panel1.getElement()).toHaveClass('overlay')
|
|
expect(panel1.getElement()).toHaveClass('from-top')
|
|
})
|
|
})
|
|
})
|