mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
3.4 KiB
3.4 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Notification Service | v2.0.0 | Active | 2018-06-08 |
Notification Service
Shows a notification message with optional feedback.
Class members
Methods
- openSnackMessage(message:
string
, config:number|MatSnackBarConfig
=NotificationService
.DEFAULT_DURATION_MESSAGE
):MatSnackBarRef
<any>
Opens a SnackBar notification to show a message.- message:
string
- The message (or resource key) to show. - config:
number|MatSnackBarConfig
- Time before notification disappears after being shown or MatSnackBarConfig object - Returns
MatSnackBarRef
<any>
- Information/control object for the SnackBar
- message:
- openSnackMessageAction(message:
string
, action:string
, config:number|MatSnackBarConfig
=NotificationService
.DEFAULT_DURATION_MESSAGE
):MatSnackBarRef
<any>
Opens a SnackBar notification with a message and a response button.- message:
string
- The message (or resource key) to show. - action:
string
- Caption for the response button - config:
number|MatSnackBarConfig
- Time before notification disappears after being shown or MatSnackBarConfig object - Returns
MatSnackBarRef
<any>
- Information/control object for the SnackBar
- message:
- dismissSnackMessageAction()
dismiss the notification snackbar
Details
The Notification Service is implemented on top of the Angular Material Design snackbar. Use this service to show a notification message, and optionally get feedback from it.
import { NotificationService } from '@alfresco/adf-core';
export class MyComponent implements OnInit {
constructor(private notificationService: NotificationService) {
}
ngOnInit() {
this.notificationService
.openSnackMessage('test', 200000)
.afterDismissed()
.subscribe(() => {
console.log('The snack-bar was dismissed');
});
}
}
import { NotificationService } from '@alfresco/adf-core';
export class MyComponent implements OnInit {
constructor(private notificationService: NotificationService) {
}
ngOnInit() {
this.notificationService
.openSnackMessageAction('Do you want to report this issue?', 'send', 200000)
.afterDismissed()
.subscribe(() => {
console.log('The snack-bar was dismissed');
});
}
}
import { NotificationService } from '@alfresco/adf-core';
import { MatSnackBarConfig } from '@angular/material';
export class MyComponent implements OnInit {
snackBarConfig: MatSnackBarConfig = new MatSnackBarConfig();
constructor(private notificationService: NotificationService) {
}
ngOnInit() {
this.notificationService
.openSnackMessageAction('Do you want to report this issue?', 'send', snackBarConfig)
.afterDismissed()
.subscribe(() => {
console.log('The snack-bar was dismissed');
});
}
}