UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

1 lines 23.3 kB
{"version":3,"file":"ng-zorro-antd-notification.mjs","sources":["../../components/notification/notification.component.ts","../../components/notification/notification-container.component.ts","../../components/notification/notification.service.module.ts","../../components/notification/notification.module.ts","../../components/notification/notification.service.ts","../../components/notification/public-api.ts","../../components/notification/ng-zorro-antd-notification.ts"],"sourcesContent":["/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { ChangeDetectorRef, Component, EventEmitter, Input, OnDestroy, Output, ViewEncapsulation } from '@angular/core';\n\nimport { notificationMotion } from 'ng-zorro-antd/core/animation';\nimport { NzMNComponent } from 'ng-zorro-antd/message';\n\nimport { NzNotificationData } from './typings';\n\n@Component({\n encapsulation: ViewEncapsulation.None,\n selector: 'nz-notification',\n exportAs: 'nzNotification',\n preserveWhitespaces: false,\n animations: [notificationMotion],\n template: `\n <div\n class=\"ant-notification-notice ant-notification-notice-closable\"\n [ngStyle]=\"instance.options?.nzStyle || null\"\n [ngClass]=\"instance.options?.nzClass || ''\"\n [@notificationMotion]=\"state\"\n (@notificationMotion.done)=\"animationStateChanged.next($event)\"\n (click)=\"onClick($event)\"\n (mouseenter)=\"onEnter()\"\n (mouseleave)=\"onLeave()\"\n >\n <div *ngIf=\"!instance.template\" class=\"ant-notification-notice-content\">\n <div\n class=\"ant-notification-notice-content\"\n [ngClass]=\"{ 'ant-notification-notice-with-icon': instance.type !== 'blank' }\"\n >\n <div [class.ant-notification-notice-with-icon]=\"instance.type !== 'blank'\">\n <ng-container [ngSwitch]=\"instance.type\">\n <i\n *ngSwitchCase=\"'success'\"\n nz-icon\n nzType=\"check-circle\"\n class=\"ant-notification-notice-icon ant-notification-notice-icon-success\"\n ></i>\n <i\n *ngSwitchCase=\"'info'\"\n nz-icon\n nzType=\"info-circle\"\n class=\"ant-notification-notice-icon ant-notification-notice-icon-info\"\n ></i>\n <i\n *ngSwitchCase=\"'warning'\"\n nz-icon\n nzType=\"exclamation-circle\"\n class=\"ant-notification-notice-icon ant-notification-notice-icon-warning\"\n ></i>\n <i\n *ngSwitchCase=\"'error'\"\n nz-icon\n nzType=\"close-circle\"\n class=\"ant-notification-notice-icon ant-notification-notice-icon-error\"\n ></i>\n </ng-container>\n <div class=\"ant-notification-notice-message\" [innerHTML]=\"instance.title\"></div>\n <div class=\"ant-notification-notice-description\" [innerHTML]=\"instance.content\"></div>\n </div>\n </div>\n </div>\n <ng-template\n [ngIf]=\"instance.template\"\n [ngTemplateOutlet]=\"instance.template!\"\n [ngTemplateOutletContext]=\"{ $implicit: this, data: instance.options?.nzData }\"\n ></ng-template>\n <a tabindex=\"0\" class=\"ant-notification-notice-close\" (click)=\"close()\">\n <span class=\"ant-notification-notice-close-x\">\n <ng-container *ngIf=\"instance.options?.nzCloseIcon; else iconTpl\">\n <ng-container *nzStringTemplateOutlet=\"instance.options?.nzCloseIcon; let closeIcon\">\n <i nz-icon [nzType]=\"closeIcon\"></i>\n </ng-container>\n </ng-container>\n <ng-template #iconTpl>\n <i nz-icon nzType=\"close\" class=\"ant-notification-close-icon\"></i>\n </ng-template>\n </span>\n </a>\n </div>\n `\n})\nexport class NzNotificationComponent extends NzMNComponent implements OnDestroy {\n @Input() override instance!: Required<NzNotificationData>;\n @Input() override index!: number;\n @Input() placement?: string;\n\n @Output() override readonly destroyed = new EventEmitter<{ id: string; userAction: boolean }>();\n\n constructor(cdr: ChangeDetectorRef) {\n super(cdr);\n }\n\n override ngOnDestroy(): void {\n super.ngOnDestroy();\n this.instance.onClick.complete();\n }\n\n onClick(event: MouseEvent): void {\n this.instance.onClick.next(event);\n }\n\n close(): void {\n this.destroy(true);\n }\n\n get state(): string | undefined {\n if (this.instance.state === 'enter') {\n if (this.placement === 'topLeft' || this.placement === 'bottomLeft') {\n return 'enterLeft';\n } else {\n return 'enterRight';\n }\n } else {\n return this.instance.state;\n }\n }\n}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { Direction } from '@angular/cdk/bidi';\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ViewEncapsulation } from '@angular/core';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\nimport { NotificationConfig, NzConfigService } from 'ng-zorro-antd/core/config';\nimport { toCssPixel } from 'ng-zorro-antd/core/util';\nimport { NzMNContainerComponent } from 'ng-zorro-antd/message';\n\nimport { NzNotificationData, NzNotificationDataOptions } from './typings';\n\nconst NZ_CONFIG_MODULE_NAME = 'notification';\n\nconst NZ_NOTIFICATION_DEFAULT_CONFIG: Required<NotificationConfig> = {\n nzTop: '24px',\n nzBottom: '24px',\n nzPlacement: 'topRight',\n nzDuration: 4500,\n nzMaxStack: 7,\n nzPauseOnHover: true,\n nzAnimate: true,\n nzDirection: 'ltr'\n};\n\n@Component({\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n selector: 'nz-notification-container',\n exportAs: 'nzNotificationContainer',\n preserveWhitespaces: false,\n template: `\n <div\n class=\"ant-notification ant-notification-topLeft\"\n [class.ant-notification-rtl]=\"dir === 'rtl'\"\n [style.top]=\"top\"\n [style.left]=\"'0px'\"\n >\n <nz-notification\n *ngFor=\"let instance of topLeftInstances\"\n [instance]=\"instance\"\n [placement]=\"config.nzPlacement\"\n (destroyed)=\"remove($event.id, $event.userAction)\"\n ></nz-notification>\n </div>\n <div\n class=\"ant-notification ant-notification-topRight\"\n [class.ant-notification-rtl]=\"dir === 'rtl'\"\n [style.top]=\"top\"\n [style.right]=\"'0px'\"\n >\n <nz-notification\n *ngFor=\"let instance of topRightInstances\"\n [instance]=\"instance\"\n [placement]=\"config.nzPlacement\"\n (destroyed)=\"remove($event.id, $event.userAction)\"\n ></nz-notification>\n </div>\n <div\n class=\"ant-notification ant-notification-bottomLeft\"\n [class.ant-notification-rtl]=\"dir === 'rtl'\"\n [style.bottom]=\"bottom\"\n [style.left]=\"'0px'\"\n >\n <nz-notification\n *ngFor=\"let instance of bottomLeftInstances\"\n [instance]=\"instance\"\n [placement]=\"config.nzPlacement\"\n (destroyed)=\"remove($event.id, $event.userAction)\"\n ></nz-notification>\n </div>\n <div\n class=\"ant-notification ant-notification-bottomRight\"\n [class.ant-notification-rtl]=\"dir === 'rtl'\"\n [style.bottom]=\"bottom\"\n [style.right]=\"'0px'\"\n >\n <nz-notification\n *ngFor=\"let instance of bottomRightInstances\"\n [instance]=\"instance\"\n [placement]=\"config.nzPlacement\"\n (destroyed)=\"remove($event.id, $event.userAction)\"\n ></nz-notification>\n </div>\n `\n})\nexport class NzNotificationContainerComponent extends NzMNContainerComponent {\n dir: Direction = 'ltr';\n bottom?: string | null;\n top?: string | null;\n override config!: Required<NotificationConfig>; // initialized by parent class constructor\n override instances: Array<Required<NzNotificationData>> = [];\n topLeftInstances: Array<Required<NzNotificationData>> = [];\n topRightInstances: Array<Required<NzNotificationData>> = [];\n bottomLeftInstances: Array<Required<NzNotificationData>> = [];\n bottomRightInstances: Array<Required<NzNotificationData>> = [];\n\n constructor(cdr: ChangeDetectorRef, nzConfigService: NzConfigService) {\n super(cdr, nzConfigService);\n const config = this.nzConfigService.getConfigForComponent(NZ_CONFIG_MODULE_NAME);\n this.dir = config?.nzDirection || 'ltr';\n }\n\n override create(notification: NzNotificationData): Required<NzNotificationData> {\n const noti = this.onCreate(notification);\n const key = noti.options.nzKey;\n const notificationWithSameKey = this.instances.find(\n msg => msg.options.nzKey === (notification.options as Required<NzNotificationDataOptions>).nzKey\n );\n if (key && notificationWithSameKey) {\n this.replaceNotification(notificationWithSameKey, noti);\n } else {\n if (this.instances.length >= this.config.nzMaxStack) {\n this.instances = this.instances.slice(1);\n }\n this.instances = [...this.instances, noti];\n }\n\n this.readyInstances();\n\n return noti;\n }\n\n protected override onCreate(instance: NzNotificationData): Required<NzNotificationData> {\n instance.options = this.mergeOptions(instance.options);\n instance.onClose = new Subject<boolean>();\n instance.onClick = new Subject<MouseEvent>();\n return instance as Required<NzNotificationData>;\n }\n\n protected subscribeConfigChange(): void {\n this.nzConfigService\n .getConfigChangeEventForComponent(NZ_CONFIG_MODULE_NAME)\n .pipe(takeUntil(this.destroy$))\n .subscribe(() => {\n this.updateConfig();\n const config = this.nzConfigService.getConfigForComponent(NZ_CONFIG_MODULE_NAME);\n if (config) {\n const { nzDirection } = config;\n this.dir = nzDirection || this.dir;\n }\n });\n }\n\n protected updateConfig(): void {\n this.config = {\n ...NZ_NOTIFICATION_DEFAULT_CONFIG,\n ...this.config,\n ...this.nzConfigService.getConfigForComponent(NZ_CONFIG_MODULE_NAME)\n };\n\n this.top = toCssPixel(this.config.nzTop!);\n this.bottom = toCssPixel(this.config.nzBottom!);\n\n this.cdr.markForCheck();\n }\n\n private replaceNotification(old: NzNotificationData, _new: NzNotificationData): void {\n old.title = _new.title;\n old.content = _new.content;\n old.template = _new.template;\n old.type = _new.type;\n old.options = _new.options;\n }\n\n protected override readyInstances(): void {\n this.topLeftInstances = this.instances.filter(m => m.options.nzPlacement === 'topLeft');\n this.topRightInstances = this.instances.filter(m => m.options.nzPlacement === 'topRight' || !m.options.nzPlacement);\n this.bottomLeftInstances = this.instances.filter(m => m.options.nzPlacement === 'bottomLeft');\n this.bottomRightInstances = this.instances.filter(m => m.options.nzPlacement === 'bottomRight');\n\n this.cdr.detectChanges();\n }\n\n protected override mergeOptions(options?: NzNotificationDataOptions): NzNotificationDataOptions {\n const { nzDuration, nzAnimate, nzPauseOnHover, nzPlacement } = this.config;\n return { nzDuration, nzAnimate, nzPauseOnHover, nzPlacement, ...options };\n }\n}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { NgModule } from '@angular/core';\n\n@NgModule()\nexport class NzNotificationServiceModule {}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { BidiModule } from '@angular/cdk/bidi';\nimport { OverlayModule } from '@angular/cdk/overlay';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { NzOutletModule } from 'ng-zorro-antd/core/outlet';\nimport { NzIconModule } from 'ng-zorro-antd/icon';\n\nimport { NzNotificationContainerComponent } from './notification-container.component';\nimport { NzNotificationComponent } from './notification.component';\nimport { NzNotificationServiceModule } from './notification.service.module';\n\n@NgModule({\n imports: [BidiModule, CommonModule, OverlayModule, NzIconModule, NzOutletModule, NzNotificationServiceModule],\n declarations: [NzNotificationComponent, NzNotificationContainerComponent],\n entryComponents: [NzNotificationContainerComponent]\n})\nexport class NzNotificationModule {}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nimport { Overlay } from '@angular/cdk/overlay';\nimport { Injectable, Injector, TemplateRef } from '@angular/core';\n\nimport { NzSingletonService } from 'ng-zorro-antd/core/services';\nimport { NzMNService } from 'ng-zorro-antd/message';\n\nimport { NzNotificationContainerComponent } from './notification-container.component';\nimport { NzNotificationServiceModule } from './notification.service.module';\nimport { NzNotificationData, NzNotificationDataOptions, NzNotificationRef } from './typings';\n\nlet notificationId = 0;\n\n@Injectable({\n providedIn: NzNotificationServiceModule\n})\nexport class NzNotificationService extends NzMNService {\n protected override container!: NzNotificationContainerComponent;\n protected componentPrefix = 'notification-';\n\n constructor(nzSingletonService: NzSingletonService, overlay: Overlay, injector: Injector) {\n super(nzSingletonService, overlay, injector);\n }\n\n success(title: string, content: string, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ type: 'success', title, content }, options);\n }\n\n error(title: string, content: string, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ type: 'error', title, content }, options);\n }\n\n info(title: string, content: string, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ type: 'info', title, content }, options);\n }\n\n warning(title: string, content: string, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ type: 'warning', title, content }, options);\n }\n\n blank(title: string, content: string, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ type: 'blank', title, content }, options);\n }\n\n create(\n type: 'success' | 'info' | 'warning' | 'error' | 'blank' | string,\n title: string,\n content: string,\n options?: NzNotificationDataOptions\n ): NzNotificationRef {\n return this.createInstance({ type, title, content }, options);\n }\n\n template(template: TemplateRef<{}>, options?: NzNotificationDataOptions): NzNotificationRef {\n return this.createInstance({ template }, options);\n }\n\n protected generateMessageId(): string {\n return `${this.componentPrefix}-${notificationId++}`;\n }\n\n private createInstance(message: NzNotificationData, options?: NzNotificationDataOptions): NzNotificationRef {\n this.container = this.withContainer(NzNotificationContainerComponent);\n\n return this.container.create({\n ...message,\n ...{\n createdAt: new Date(),\n messageId: this.generateMessageId(),\n options\n }\n });\n }\n}\n","/**\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE\n */\n\nexport * from './notification.component';\nexport * from './notification.module';\nexport * from './typings';\nexport * from './notification.service';\nexport * from './notification.service.module';\nexport * from './notification-container.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}