Interface: IPanelController
molecule.IPanelController
Hierarchy
Partial
<Controller
>↳
IPanelController
Methods
count
▸ Optional
count(name
): number
Count the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | Event name |
Returns
number
Inherited from
Partial.count
Defined in
src/common/event/eventBus.ts:28
emit
▸ Optional
emit(name
, ...args
): void
Emit the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | Event name |
...args | any | Arguments |
Returns
void
Inherited from
Partial.emit
Defined in
src/common/event/eventBus.ts:20
initView
▸ Optional
Abstract
initView(): void
Returns
void
Inherited from
Partial.initView
Defined in
onClose
▸ Optional
onClose(key
): void
Parameters
Name | Type |
---|---|
key | UniqueId |
Returns
void
Defined in
onTabChange
▸ Optional
onTabChange(key
): void
Parameters
Name | Type |
---|---|
key | UniqueId |
Returns
void
Defined in
onToolbarClick
▸ Optional
onToolbarClick(e
, item
): void
Parameters
Name | Type |
---|---|
e | MouseEvent <Element , MouseEvent > |
item | IActionBarItemProps <any > |
Returns
void
Defined in
subscribe
▸ Optional
subscribe(name
, callback
): void
Subscribe the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | string [] | Event name |
callback | Function | Callback function |
Returns
void
Inherited from
Partial.subscribe
Defined in
src/common/event/eventBus.ts:11
unsubscribe
▸ Optional
unsubscribe(name
): void
Unsubscribe the specific event
Parameters
Name | Type | Description |
---|---|---|
name | any | The event name |
Returns
void
Inherited from
Partial.unsubscribe