Skip to main content
Version: Next

Interface: INotificationService

molecule.INotificationService

Hierarchy

Implemented by

Properties

state

Protected Abstract state: INotification<any>

Inherited from

Component.state

Defined in

react/component.ts:44

Methods

add

add<T>(items): null | INotificationItem<T>[]

Add new notification items

Type parameters

Name
T

Parameters

NameType
itemsINotificationItem<T>[]

Returns

null | INotificationItem<T>[]

Defined in

services/notificationService.ts:20


clear

clear(): void

Clear the notifications

Returns

void

Defined in

services/notificationService.ts:38


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


getState

getState(): INotification<any>

Get the Component state

Returns

INotification<any>

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: INotification<any>, nextState: INotification<any>) => void

Returns

void

Inherited from

Component.onUpdateState

Defined in

react/component.ts:73


remove

remove(id): void

Remove the specific notification item by id

Parameters

NameType
idUniqueId

Returns

void

Defined in

services/notificationService.ts:25


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?INotification<any>

Returns

void

Inherited from

Component.render

Defined in

react/component.ts:69


reset

reset(): void

Reset notifications, this will clear the pending notifications

Returns

void

Defined in

services/notificationService.ts:42


setState

setState(values, callback?): void

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

Parameters

NameTypeDescription
valuesPartial<INotification<any>>update target state values
callback?(prevState: INotification<any>, nextState: INotification<any>) => 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


toggleNotification

toggleNotification(): void

Toggle the Notification view between display or hidden

Returns

void

Defined in

services/notificationService.ts:34


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


update

update<T>(item): null | INotificationItem<T>

Update the specific notification item

Type parameters

Name
T

Parameters

NameTypeDescription
itemINotificationItem<T>notification item, the id field is required

Returns

null | INotificationItem<T>

Defined in

services/notificationService.ts:30