{
"version": 3,
"sources": ["projects/insight/src/app/shared/ui-kit/dialog/dialog-container.ts", "projects/insight/src/app/shared/ui-kit/dialog/dialog-config.ts", "projects/insight/src/app/shared/confirmation-dialog/confirmation-dialog.service.ts"],
"sourcesContent": ["import { FocusMonitor, FocusTrapFactory, InteractivityChecker } from '@angular/cdk/a11y';\r\nimport { CdkDialogContainer } from '@angular/cdk/dialog';\r\nimport { OverlayRef } from '@angular/cdk/overlay';\r\nimport { DOCUMENT } from '@angular/common';\r\nimport { Component, ElementRef, Inject, NgZone, Optional } from '@angular/core';\r\nimport { UIKitDefaultDialogConfig } from './dialog-config';\r\n\r\n@Component({\r\n selector: 'uikit-dialog-container',\r\n styles: [`\r\n :host {\r\n display: block;\r\n background: #fff;\r\n border-radius: 4px;\r\n width: 100%;\r\n filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.16));\r\n z-index: 20000;\r\n overflow: hidden;\r\n &:has(.dialog-actions){ padding-bottom: 64px; }\r\n }\r\n `],\r\n template: `\r\n \r\n `\r\n})\r\nexport class UIKitDialogContainer extends CdkDialogContainer {\r\n\r\n constructor(\r\n elementRef: ElementRef,\r\n focusTrapFactory: FocusTrapFactory,\r\n @Optional() @Inject(DOCUMENT) _document: any,\r\n dialogConfig: UIKitDefaultDialogConfig,\r\n interactivityChecker: InteractivityChecker,\r\n ngZone: NgZone,\r\n overlayRef: OverlayRef,\r\n focusMonitor?: FocusMonitor,\r\n ) {\r\n super(\r\n elementRef,\r\n focusTrapFactory,\r\n _document,\r\n dialogConfig,\r\n interactivityChecker,\r\n ngZone,\r\n overlayRef,\r\n focusMonitor,\r\n );\r\n\r\n }\r\n}\r\n", "import { UIKitDialogContainer } from 'app/shared/ui-kit/dialog/dialog-container';\r\nimport { DialogConfig } from '@angular/cdk/dialog';\r\n\r\n\r\nexport interface UIKitDialogConfig extends DialogConfig {\r\n hasBackdrop?: boolean;\r\n disableClose?: boolean;\r\n width?: string;\r\n height?: string;\r\n container?: any;\r\n panelClass?: string | string[];\r\n data?: D;\r\n}\r\nexport class UIKitDefaultDialogConfig extends DialogConfig implements UIKitDialogConfig {\r\n width = '90vw';\r\n maxWidth = '1000px';\r\n maxHeight = '85vh';\r\n container = UIKitDialogContainer;\r\n}\r\n\r\n", "import { Dialog } from '@angular/cdk/dialog';\r\nimport { Injectable } from '@angular/core';\r\nimport { UIKitDialogContainer } from 'app/shared/ui-kit/dialog/dialog-container';\r\nimport { Observable } from 'rxjs';\r\nimport { ConfirmationDialogComponent } from './confirmation-dialog.component';\r\nimport { DialogType } from './dialog.type';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ConfirmationDialogService {\r\n DialogType = DialogType;\r\n constructor(private dialog: Dialog) { }\r\n\r\n openDialog(\r\n title: string | { key: string, value: string } = '',\r\n body: string = '',\r\n widthPx: number = 412,\r\n type: DialogType = DialogType.Warning,\r\n trueOption: string = 'INSIGHT.GLOBAL.YES',\r\n falseOption: string = 'INSIGHT.GLOBAL.NO',\r\n translate = true,\r\n label = '',\r\n value?: unknown,\r\n placeholder?: unknown,\r\n translationParameter: string = '',\r\n description: string = ''\r\n ): Observable {\r\n const dialogConfigData = {\r\n title: title,\r\n body: body,\r\n label: label,\r\n value: value,\r\n widthPx: widthPx || 440,\r\n placeholder: placeholder,\r\n trueOption: trueOption,\r\n falseOption: falseOption,\r\n type: type,\r\n translate: translate,\r\n translationParameter: translationParameter,\r\n description: description,\r\n };\r\n return this.dialog\r\n .open(\r\n ConfirmationDialogComponent,\r\n {\r\n container: UIKitDialogContainer,\r\n width: `${widthPx}px`,\r\n maxHeight: '100%',\r\n maxWidth: '770px',\r\n height: 'auto',\r\n autoFocus: type !== DialogType.Delete,\r\n disableClose: true,\r\n data: dialogConfigData,\r\n restoreFocus: false,\r\n }\r\n )\r\n .closed;\r\n }\r\n\r\n openRemoveDialog(\r\n title: string = 'INSIGHT.ADMIN.GENERAL.CONFIRM_DELETE_TITLE',\r\n body: string = 'INSIGHT.ADMIN.GENERAL.CONFIRM_DELETE_DESC',\r\n widthPx?: number,\r\n trueOption: string = 'INSIGHT.GLOBAL.REMOVE',\r\n falseOption: string = 'INSIGHT.GLOBAL.CANCEL'\r\n ): Observable {\r\n return this.openDialog(\r\n title,\r\n body,\r\n widthPx,\r\n DialogType.Delete,\r\n trueOption,\r\n falseOption\r\n );\r\n }\r\n\r\n openNavigationDialog(): Observable {\r\n return this.openDialog(\r\n 'INSIGHT.ADMIN.GENERAL.CONFIRM_TITLE',\r\n 'INSIGHT.ADMIN.GENERAL.CONFIRM_DESC', undefined, DialogType.Warning,\r\n 'INSIGHT.ADMIN.PRODUCTWIZARD.NAVIGATION_WARNING.CONTINUE',\r\n 'INSIGHT.ADMIN.PRODUCTWIZARD.NAVIGATION_WARNING.CANCEL'\r\n );\r\n }\r\n\r\n openInfoDialog(\r\n title: string | { key: string, value: string } = '',\r\n body = '',\r\n widthPx?: number,\r\n trueOption: string = 'INSIGHT.GLOBAL.OK',\r\n falseOption: string = null,\r\n translationParameter: string = ''\r\n ): Observable {\r\n return this.openDialog(\r\n title,\r\n body,\r\n widthPx,\r\n DialogType.Info,\r\n trueOption,\r\n falseOption,\r\n true,\r\n undefined,\r\n undefined,\r\n undefined,\r\n translationParameter\r\n );\r\n }\r\n\r\n openInputDialog(\r\n title: string | { key: string, value: string } = '',\r\n body = '',\r\n widthPx = 320,\r\n trueOption: string = 'INSIGHT.GLOBAL.SAVE',\r\n falseOption: string = 'INSIGHT.GLOBAL.CANCEL',\r\n label = '',\r\n value = '',\r\n placeholder = '',\r\n translationParameter = '',\r\n description = ''\r\n ): Observable {\r\n return this.openDialog(\r\n title,\r\n body,\r\n widthPx,\r\n DialogType.Input,\r\n trueOption,\r\n falseOption,\r\n true,\r\n label,\r\n value,\r\n placeholder,\r\n translationParameter,\r\n description\r\n );\r\n }\r\n}\r\n"],
"mappings": "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",
"names": ["UIKitDialogContainer", "CdkDialogContainer", "constructor", "elementRef", "focusTrapFactory", "_document", "dialogConfig", "interactivityChecker", "ngZone", "overlayRef", "focusMonitor", "\u0275\u0275directiveInject", "ElementRef", "FocusTrapFactory", "DOCUMENT", "UIKitDefaultDialogConfig", "InteractivityChecker", "NgZone", "OverlayRef", "FocusMonitor", "selectors", "features", "\u0275\u0275InheritDefinitionFeature", "decls", "vars", "consts", "template", "rf", "ctx", "\u0275\u0275template", "UIKitDialogContainer_ng_template_0_Template", "_UIKitDialogContainer", "UIKitDefaultDialogConfig", "DialogConfig", "constructor", "width", "maxWidth", "maxHeight", "container", "UIKitDialogContainer", "ConfirmationDialogService", "constructor", "dialog", "DialogType", "openDialog", "title", "body", "widthPx", "type", "Warning", "trueOption", "falseOption", "translate", "label", "value", "placeholder", "translationParameter", "description", "dialogConfigData", "open", "ConfirmationDialogComponent", "container", "UIKitDialogContainer", "width", "maxHeight", "maxWidth", "height", "autoFocus", "Delete", "disableClose", "data", "restoreFocus", "closed", "openRemoveDialog", "openNavigationDialog", "undefined", "openInfoDialog", "Info", "openInputDialog", "Input", "\u0275\u0275inject", "Dialog", "factory", "\u0275fac", "providedIn", "_ConfirmationDialogService"]
}