aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/services/toasts.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/services/toasts.service.ts')
-rw-r--r--ufund-ui/src/app/services/toasts.service.ts27
1 files changed, 27 insertions, 0 deletions
diff --git a/ufund-ui/src/app/services/toasts.service.ts b/ufund-ui/src/app/services/toasts.service.ts
new file mode 100644
index 0000000..4fd024e
--- /dev/null
+++ b/ufund-ui/src/app/services/toasts.service.ts
@@ -0,0 +1,27 @@
+import {Injectable, ViewContainerRef} from '@angular/core';
+import {ToastComponent} from '../components/toast/toast.component';
+
+export enum ToastType {
+ INFO,
+ WARNING,
+ ERROR
+}
+
+@Injectable({
+ providedIn: 'root'
+})
+export class ToastsService {
+
+ private vcr?: ViewContainerRef
+
+ sendToast(type: ToastType, message: string, action?: {label: string, onAction: () => void}) {
+ let compRef = this.vcr?.createComponent(ToastComponent)!
+ compRef.setInput("message", message)
+ compRef.setInput("type", type)
+ compRef.setInput("action", action)
+ }
+
+ setRootViewContainerRef(vcr: ViewContainerRef) {
+ this.vcr = vcr
+ }
+}