|
@@ -3,7 +3,7 @@ import { BrowserWindow, TouchBar } from 'electron'
|
|
|
import { closeWindow } from './window-helpers'
|
|
|
import { expect } from 'chai'
|
|
|
|
|
|
-const { TouchBarButton, TouchBarColorPicker, TouchBarGroup, TouchBarLabel, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer } = TouchBar
|
|
|
+const { TouchBarButton, TouchBarColorPicker, TouchBarGroup, TouchBarLabel, TouchBarOtherItemsProxy, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer } = TouchBar
|
|
|
|
|
|
describe('TouchBar module', () => {
|
|
|
it('throws an error when created without an options object', () => {
|
|
@@ -32,6 +32,13 @@ describe('TouchBar module', () => {
|
|
|
}).to.throw('Escape item must be an instance of TouchBarItem')
|
|
|
})
|
|
|
|
|
|
+ it('throws an error if multiple OtherItemProxy items are added', () => {
|
|
|
+ expect(() => {
|
|
|
+ const touchBar = new TouchBar({ items: [new TouchBarOtherItemsProxy(), new TouchBarOtherItemsProxy()] })
|
|
|
+ touchBar.toString()
|
|
|
+ }).to.throw('Must only have one OtherItemsProxy per TouchBar')
|
|
|
+ })
|
|
|
+
|
|
|
describe('BrowserWindow behavior', () => {
|
|
|
let window: BrowserWindow
|
|
|
|
|
@@ -47,32 +54,35 @@ describe('TouchBar module', () => {
|
|
|
|
|
|
it('can be added to and removed from a window', () => {
|
|
|
const label = new TouchBarLabel({ label: 'bar' })
|
|
|
- const touchBar = new TouchBar({ items: [
|
|
|
- new TouchBarButton({ label: 'foo', backgroundColor: '#F00', click: () => {} }),
|
|
|
- new TouchBarButton({
|
|
|
- icon: path.join(__dirname, 'fixtures', 'assets', 'logo.png'),
|
|
|
- iconPosition: 'right',
|
|
|
- click: () => {}
|
|
|
- }),
|
|
|
- new TouchBarColorPicker({ selectedColor: '#F00', change: () => {} }),
|
|
|
- new TouchBarGroup({ items: new TouchBar({ items: [new TouchBarLabel({ label: 'hello' })] }) }),
|
|
|
- label,
|
|
|
- new TouchBarPopover({ items: new TouchBar({ items: [new TouchBarButton({ label: 'pop' })] }) }),
|
|
|
- new TouchBarSlider({ label: 'slide', value: 5, minValue: 2, maxValue: 75, change: () => {} }),
|
|
|
- new TouchBarSpacer({ size: 'large' }),
|
|
|
- new TouchBarSegmentedControl({
|
|
|
- segmentStyle: 'capsule',
|
|
|
- segments: [{ label: 'baz', enabled: false }],
|
|
|
- selectedIndex: 5
|
|
|
- }),
|
|
|
- new TouchBarSegmentedControl({ segments: [] }),
|
|
|
- new TouchBarScrubber({
|
|
|
- items: [{ label: 'foo' }, { label: 'bar' }, { label: 'baz' }],
|
|
|
- selectedStyle: 'outline',
|
|
|
- mode: 'fixed',
|
|
|
- showArrowButtons: true
|
|
|
- })
|
|
|
- ] })
|
|
|
+ const touchBar = new TouchBar({
|
|
|
+ items: [
|
|
|
+ new TouchBarButton({ label: 'foo', backgroundColor: '#F00', click: () => { } }),
|
|
|
+ new TouchBarButton({
|
|
|
+ icon: path.join(__dirname, 'fixtures', 'assets', 'logo.png'),
|
|
|
+ iconPosition: 'right',
|
|
|
+ click: () => { }
|
|
|
+ }),
|
|
|
+ new TouchBarColorPicker({ selectedColor: '#F00', change: () => { } }),
|
|
|
+ new TouchBarGroup({ items: new TouchBar({ items: [new TouchBarLabel({ label: 'hello' })] }) }),
|
|
|
+ label,
|
|
|
+ new TouchBarOtherItemsProxy(),
|
|
|
+ new TouchBarPopover({ items: new TouchBar({ items: [new TouchBarButton({ label: 'pop' })] }) }),
|
|
|
+ new TouchBarSlider({ label: 'slide', value: 5, minValue: 2, maxValue: 75, change: () => { } }),
|
|
|
+ new TouchBarSpacer({ size: 'large' }),
|
|
|
+ new TouchBarSegmentedControl({
|
|
|
+ segmentStyle: 'capsule',
|
|
|
+ segments: [{ label: 'baz', enabled: false }],
|
|
|
+ selectedIndex: 5
|
|
|
+ }),
|
|
|
+ new TouchBarSegmentedControl({ segments: [] }),
|
|
|
+ new TouchBarScrubber({
|
|
|
+ items: [{ label: 'foo' }, { label: 'bar' }, { label: 'baz' }],
|
|
|
+ selectedStyle: 'outline',
|
|
|
+ mode: 'fixed',
|
|
|
+ showArrowButtons: true
|
|
|
+ })
|
|
|
+ ]
|
|
|
+ })
|
|
|
const escapeButton = new TouchBarButton({ label: 'foo' })
|
|
|
window.setTouchBar(touchBar)
|
|
|
touchBar.escapeItem = escapeButton
|