Back to Vendure

NotificationService

docs/docs/reference/admin-ui-api/services/notification-service.mdx

3.6.43.1 KB
Original Source

NotificationService

<GenerationInfo sourceFile="packages/admin-ui/src/lib/core/src/providers/notification/notification.service.ts" sourceLine="54" packageName="@vendure/admin-ui" />

Provides toast notification functionality.

Example

ts
class MyComponent {
  constructor(private notificationService: NotificationService) {}

  save() {
    this.notificationService
        .success(_('asset.notify-create-assets-success'), {
          count: successCount,
        });
  }
}

```ts title="Signature"
class NotificationService {
    constructor(i18nService: I18nService, resolver: ComponentFactoryResolver, overlayHostService: OverlayHostService)
    success(message: string, translationVars?: { [key: string]: string | number }) => void;
    info(message: string, translationVars?: { [key: string]: string | number }) => void;
    warning(message: string, translationVars?: { [key: string]: string | number }) => void;
    error(message: string, translationVars?: { [key: string]: string | number }) => void;
    notify(config: ToastConfig) => void;
}
<div className="members-wrapper">

success

<MemberInfo kind="method" type={(message: string, translationVars?: { [key: string]: string | number }) => void} />

Display a success toast notification

info

<MemberInfo kind="method" type={(message: string, translationVars?: { [key: string]: string | number }) => void} />

Display an info toast notification

warning

<MemberInfo kind="method" type={(message: string, translationVars?: { [key: string]: string | number }) => void} />

Display a warning toast notification

error

<MemberInfo kind="method" type={(message: string, translationVars?: { [key: string]: string | number }) => void} />

Display an error toast notification

notify

<MemberInfo kind="method" type={(config: <a href='/reference/admin-ui-api/services/notification-service#toastconfig'>ToastConfig</a>) => void} />

Display a toast notification.

</div> ## NotificationType <GenerationInfo sourceFile="packages/admin-ui/src/lib/core/src/providers/notification/notification.service.ts" sourceLine="14" packageName="@vendure/admin-ui" />

The types of notification available.

ts
type NotificationType = 'info' | 'success' | 'error' | 'warning'

ToastConfig

<GenerationInfo sourceFile="packages/admin-ui/src/lib/core/src/providers/notification/notification.service.ts" sourceLine="23" packageName="@vendure/admin-ui" />

Configuration for a toast notification.

ts
interface ToastConfig {
    message: string;
    translationVars?: { [key: string]: string | number };
    type?: NotificationType;
    duration?: number;
}
<div className="members-wrapper">

message

<MemberInfo kind="property" type={string} />

translationVars

<MemberInfo kind="property" type={{ [key: string]: string | number }} />

type

<MemberInfo kind="property" type={<a href='/reference/admin-ui-api/services/notification-service#notificationtype'>NotificationType</a>} />

duration

<MemberInfo kind="property" type={number} />

</div>