Skip to content
Snippets Groups Projects
Commit 25bb5fdd authored by Giuseppe's avatar Giuseppe
Browse files

Added notificationWithAnchor method to NotificationsService

parent 261b863d
No related branches found
No related tags found
No related merge requests found
......@@ -7,12 +7,14 @@ import { Store } from '@ngrx/store';
import { NewNotificationAction, RemoveAllNotificationsAction, RemoveNotificationAction } from './notifications.actions';
import { Observable } from 'rxjs/Observable';
import { GLOBAL_CONFIG, GlobalConfig } from '../../../config';
import { TranslateService } from '@ngx-translate/core';
@Injectable()
export class NotificationsService {
constructor(@Inject(GLOBAL_CONFIG) public config: GlobalConfig,
private store: Store<Notification>) {
private store: Store<Notification>,
private translate: TranslateService) {
}
private add(notification: Notification) {
......@@ -57,6 +59,41 @@ export class NotificationsService {
return notification;
}
notificationWithAnchor(notificationType: NotificationType,
options: NotificationOptions,
href: string,
hrefTranslateLabel: string,
messageTranslateLabel: string,
interpolateParam: string) {
this.translate.get(hrefTranslateLabel)
.take(1)
.subscribe((hrefMsg) => {
const anchor = `<a class="btn btn-link p-0 m-0" href="${href}" >
<strong>${hrefMsg}</strong>
</a>`;
const interpolateParams = Object.create({});
interpolateParams[interpolateParam] = anchor;
this.translate.get(messageTranslateLabel, interpolateParams)
.take(1)
.subscribe((m) => {
switch (notificationType) {
case NotificationType.Success:
this.success(null, m, options, true);
break;
case NotificationType.Error:
this.error(null, m, options, true);
break;
case NotificationType.Info:
this.info(null, m, options, true);
break;
case NotificationType.Warning:
this.warning(null, m, options, true);
break;
}
});
});
}
remove(notification: INotification) {
const actionRemove = new RemoveNotificationAction(notification.id);
this.store.dispatch(actionRemove);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment