Added | Status | Last reviewed |
---|---|---|
v2.0.0 |
Active |
2018-06-08 |
Shows a notification message with optional feedback.
- 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:
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');
});
}
}