Dojo's SplitPane
component divides a container into two resizable panes that can oriented horizontally or vertically. It expects two child nodes.
- Can be nested to create more than two panes
- Panes can be in a horizontal or vertical orientation
- Will collapse to a stacked layout at a set width
The following CSS classes are used to style the SplitPane
widget and should be provided by custom themes:
collapsed
: Applied to the root node when the width is belowcollapseWidth
column
: Applied to the root node ifdirection
is set toDirection.column
divider
: Applied to the divider nodeleading
: Applied to the first pane in the DOMroot
: Applied to the top-level noderow
: Applied to the root node ifdirection
is set toDirection.row
trailing
: Applied to the last pane in the DOM
Basic Row Example
import SplitPane, { Direction } from '@dojo/widgets/split-pane';
import { w } from '@dojo/framework/widget-core/d';
w(SplitPane, {
key: 'splitpane1',
direction: Direction.row,
onResize: (size: number) => {
this.setState({ rowSize: size });
},
size: this.state.rowSize
}, [
v('div', [ 'top' ]),
v('div', [ 'bottom' ])
]);
Column example that collapses at 600px
import SplitPane, { Direction } from '@dojo/widgets/split-pane';
import { w } from '@dojo/framework/widget-core/d';
w(SplitPane, {
key: 'splitpane2',
collapseWidth: 600,
direction: Direction.column,
onResize: (size: number) => {
this.setState({ columnSize: size });
},
size: this.state.columnSize
}, [
v('div', [ 'left' ]),
v('div', [ 'right' ])
]);
Nested SplitPanes
import SplitPane, { Direction } from '@dojo/widgets/split-pane';
import { w } from '@dojo/framework/widget-core/d';
w(SplitPane, {
key: 'nested',
direction: Direction.column,
onResize: (size: number) => {
this.setState({ nestedSizeA: size });
},
size: this.state.nestedSizeA
}, [
v('div'),
w(SplitPane, {
key: 'inner',
direction: Direction.row,
onResize: (size: number) => {
this.setState({ nestedSizeB: size });
},
size: this.state.nestedSizeB
})
])
SplitPane with size applied to the trailing pane
import SplitPane, { Direction } from '@dojo/widgets/split-pane';
import { w } from '@dojo/framework/widget-core/d';
w(SplitPane, {
key: 'sizeTrailing',
direction: Direction.column,
onResize: (size: number) => {
this.setState({ size: size });
},
size: this.state.size
}, [
v('div', ['left: main content']),
v('div', ['right: sidebar'])
])