Class: NotificationService
molecule.NotificationService
Hierarchy
↳
NotificationService
Implements
Constructors
constructor
• new NotificationService()
Overrides
Defined in
services/notificationService.ts:52
Properties
state
• Protected
state: INotification
<any
>
Implementation of
Overrides
Defined in
services/notificationService.ts:50
Methods
add
▸ add<T
>(items
): null
| INotificationItem
<T
>[]
Add new notification items
Type parameters
Name |
---|
T |
Parameters
Name | Type |
---|---|
items | INotificationItem <T >[] |
Returns
null
| INotificationItem
<T
>[]
Implementation of
Defined in
services/notificationService.ts:106
clear
▸ clear(): void
Clear the notifications
Returns
void
Implementation of
Defined in
services/notificationService.ts:125
count
▸ count(name
): number
Count the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | Event name |
Returns
number
Implementation of
Inherited from
Defined in
emit
▸ emit(name
, ...args
): void
Emit the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | Event name |
...args | any | Arguments |
Returns
void
Implementation of
Inherited from
Defined in
forceUpdate
▸ forceUpdate(): void
Force to update the Component
Returns
void
Implementation of
INotificationService.forceUpdate
Inherited from
Defined in
getState
▸ getState(): INotification
<any
>
Get the Component state
Returns
INotification
<any
>
Implementation of
Inherited from
Defined in
onUpdateState
▸ onUpdateState(listener
): void
Listen to the Component state update event
Parameters
Name | Type |
---|---|
listener | (prevState : INotification <any >, nextState : INotification <any >) => void |
Returns
void
Implementation of
INotificationService.onUpdateState
Inherited from
Defined in
remove
▸ remove(id
): void
Remove the specific notification item by id
Parameters
Name | Type |
---|---|
id | UniqueId |
Returns
void
Implementation of
Defined in
services/notificationService.ts:84
removeOnUpdateState
▸ removeOnUpdateState(listener?
): void
Remove the Component update event listening, default is remove all, also you can remove one by pass the listener
Parameters
Name | Type |
---|---|
listener? | Function |
Returns
void
Implementation of
INotificationService.removeOnUpdateState
Inherited from
Defined in
render
▸ render(nextState?
): void
Initiative notify the component to render the view by the state
Parameters
Name | Type |
---|---|
nextState? | INotification <any > |
Returns
void
Implementation of
Inherited from
Defined in
reset
▸ reset(): void
Reset notifications, this will clear the pending notifications
Returns
void
Implementation of
Defined in
services/notificationService.ts:131
setState
▸ setState(values
, callback?
): void
Set the state values, and notify the view component to re render
Parameters
Name | Type | Description |
---|---|---|
values | Partial <INotification <any >> | update target state values |
callback? | (prevState : INotification <any >, nextState : INotification <any >) => void | - |
Returns
void
Implementation of
Inherited from
Defined in
subscribe
▸ subscribe(name
, listener
): void
Subscribe the service event
Parameters
Name | Type | Description |
---|---|---|
name | string | string [] | Event name |
listener | Function | Listener function |
Returns
void
Implementation of
INotificationService.subscribe
Inherited from
Defined in
toggleNotification
▸ toggleNotification(): void
Toggle the Notification view between display or hidden
Returns
void
Implementation of
INotificationService.toggleNotification
Defined in
services/notificationService.ts:57
unsubscribe
▸ unsubscribe(name
, listener?
): void
Unsubscribe the specific event and the listener function
Parameters
Name | Type | Description |
---|---|---|
name | any | The event name |
listener? | Function | optional, it unsubscribes events via name if not pass the listener function |
Returns
void
Implementation of
INotificationService.unsubscribe
Inherited from
Defined in
update
▸ update<T
>(item
): null
| INotificationItem
<T
>
Update the specific notification item
Type parameters
Name |
---|
T |
Parameters
Name | Type |
---|---|
item | INotificationItem <T > |
Returns
null
| INotificationItem
<T
>