Skip to main content
Version: 1.x

Interface: ILayoutService

molecule.ILayoutService

Hierarchy

Implemented by

Properties

container

Readonly container: null | HTMLElement

Get the container of the molecule

Defined in

services/workbench/layoutService.ts:16


state

Protected Abstract state: ILayout

Inherited from

Component.state

Defined in

react/component.ts:44

Methods

count

count(name): number

Count the service event

Parameters

NameTypeDescription
namestringEvent name

Returns

number

Inherited from

Component.count

Defined in

common/event/eventBus.ts:28


emit

emit(name, ...args): void

Emit the service event

Parameters

NameTypeDescription
namestringEvent name
...argsanyArguments

Returns

void

Inherited from

Component.emit

Defined in

common/event/eventBus.ts:20


forceUpdate

forceUpdate(): void

Force to update the Component

Returns

void

Inherited from

Component.forceUpdate

Defined in

react/component.ts:81


getMenuBarMode

getMenuBarMode(): "horizontal" | "vertical"

Get the mode of the MenuBar

Returns

"horizontal" | "vertical"

Defined in

services/workbench/layoutService.ts:71


getState

getState(): ILayout

Get the Component state

Returns

ILayout

Inherited from

Component.getState

Defined in

react/component.ts:85


onUpdateState

onUpdateState(listener): void

Listen to the Component state update event

Parameters

NameType
listener(prevState: ILayout, nextState: ILayout) => void

Returns

void

Inherited from

Component.onUpdateState

Defined in

react/component.ts:73


removeOnUpdateState

removeOnUpdateState(listener?): void

Remove the Component update event listening, default is remove all, also you can remove one by pass the listener

Parameters

NameType
listener?Function

Returns

void

Inherited from

Component.removeOnUpdateState

Defined in

react/component.ts:77


render

render(nextState?): void

Initiative notify the component to render the view by the state

Parameters

NameType
nextState?ILayout

Returns

void

Inherited from

Component.render

Defined in

react/component.ts:69


reset

reset(): void

Reset all layout data as default value

Returns

void

Defined in

services/workbench/layoutService.ts:89


setAuxiliaryBar

setAuxiliaryBar(hidden): boolean

Set the visibility of auxiliary bar

Returns the next state of hidden

Parameters

NameType
hiddenboolean | (preState: boolean) => boolean

Returns

boolean

Defined in

services/workbench/layoutService.ts:83


setEditorGroupDirection

setEditorGroupDirection(direction): void

Set the direction of editor group,default is vertical

Parameters

NameType
directionMenuBarMode | (prev: MenuBarMode) => MenuBarMode

Returns

void

Defined in

services/workbench/layoutService.ts:75


setGroupSplitSize

setGroupSplitSize(groupSplitPos): void

Set the sizes between editor groups

Parameters

NameType
groupSplitPos(string | number)[]

Returns

void

Defined in

services/workbench/layoutService.ts:61


setHorizontalPaneSize

setHorizontalPaneSize(horizontalSplitPanePos): void

Set the sizes between the editor and the panel

Parameters

NameType
horizontalSplitPanePos(string | number)[]

Returns

void

Defined in

services/workbench/layoutService.ts:50


setMenuBarMode

setMenuBarMode(mode): void

Set the mode of the MenuBar, default is vertical

unachieved

Parameters

NameType
mode"horizontal" | "vertical"

Returns

void

Defined in

services/workbench/layoutService.ts:67


setPaneSize

setPaneSize(splitPanePos): void

Set the sizes between the side bar and main content area

Parameters

NameType
splitPanePos(string | number)[]

Returns

void

Defined in

services/workbench/layoutService.ts:45


setSideBarPosition

setSideBarPosition(position): void

Set the position of the side bar, default is in left

unachieved

Parameters

NameType
position"right" | "left"

Returns

void

Defined in

services/workbench/layoutService.ts:56


setState

setState(values, callback?): void

Set the state values, and notify the view component to re render

Parameters

NameTypeDescription
valuesPartial<ILayout>update target state values
callback?(prevState: ILayout, nextState: ILayout) => void-

Returns

void

Inherited from

Component.setState

Defined in

react/component.ts:56


subscribe

subscribe(name, listener): void

Subscribe the service event

Parameters

NameTypeDescription
namestring | string[]Event name
listenerFunctionListener function

Returns

void

Inherited from

Component.subscribe

Defined in

common/event/eventBus.ts:11


toggleActivityBarVisibility

toggleActivityBarVisibility(): boolean

Toggle the visibility of the activity bar, returns the status of activity bar's hidden

Returns

boolean

Defined in

services/workbench/layoutService.ts:32


toggleMenuBarVisibility

toggleMenuBarVisibility(): boolean

Toggle the visibility of menu bar, returns the status of menu bar's hidden

Returns

boolean

Defined in

services/workbench/layoutService.ts:20


togglePanelMaximized

togglePanelMaximized(): boolean

Toggle the maximized status of the panel, returns the status of maximized panel

Returns

boolean

Defined in

services/workbench/layoutService.ts:40


togglePanelVisibility

togglePanelVisibility(): boolean

Toggle the visibility of the panel, returns the status of panel's hidden

Returns

boolean

Defined in

services/workbench/layoutService.ts:28


toggleSidebarVisibility

toggleSidebarVisibility(): boolean

Toggle the visibility of side bar, returns the status of side bar's hidden

Returns

boolean

Defined in

services/workbench/layoutService.ts:24


toggleStatusBarVisibility

toggleStatusBarVisibility(): boolean

Toggle the visibility of the status bar, returns the status of status bar's hidden

Returns

boolean

Defined in

services/workbench/layoutService.ts:36


unsubscribe

unsubscribe(name, listener?): void

Unsubscribe the specific event and the listener function

Parameters

NameTypeDescription
nameanyThe event name
listener?Functionoptional, it unsubscribes events via name if not pass the listener function

Returns

void

Inherited from

Component.unsubscribe

Defined in

common/event/eventBus.ts:37