@veloceapps/sdk 8.0.0-10 → 8.0.0-100
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -1
- package/cms/README.md +0 -20
- package/cms/cms.actions.d.ts +7 -1
- package/cms/components/preview/preview.component.d.ts +1 -2
- package/cms/index.d.ts +1 -0
- package/cms/modules/runtime/services/runtime.service.d.ts +1 -1
- package/cms/services/index.d.ts +0 -1
- package/cms/types/index.d.ts +0 -1
- package/cms/utils/element.utils.d.ts +1 -0
- package/cms/vendor-map.d.ts +21 -13
- package/core/README.md +20 -0
- package/core/modules/configuration/helpers.d.ts +2 -2
- package/core/modules/configuration/services/configuration-runtime.service.d.ts +1 -1
- package/core/modules/configuration/services/configuration.service.d.ts +6 -1
- package/core/pipes/action-code.pipe.d.ts +8 -0
- package/core/pipes/date.pipe.d.ts +2 -1
- package/core/pipes/index.d.ts +1 -0
- package/core/pipes/pipes.module.d.ts +2 -1
- package/core/services/context.service.d.ts +2 -0
- package/core/services/flow-info.service.d.ts +24 -0
- package/core/services/flow-state.service.d.ts +50 -0
- package/core/services/index.d.ts +3 -0
- package/core/services/quote-draft.service.d.ts +8 -1
- package/core/services/runtime-settings.service.d.ts +4 -1
- package/core/types/formatting-settings.types.d.ts +2 -0
- package/core/types/index.d.ts +2 -0
- package/{cms → core}/types/integration.types.d.ts +1 -0
- package/core/types/pipe.types.d.ts +1 -0
- package/esm2020/cms/cms.actions.mjs +15 -1
- package/esm2020/cms/components/element-children/element-children.component.mjs +3 -3
- package/esm2020/cms/components/element-children/element-children.module.mjs +4 -4
- package/esm2020/cms/components/element-drop-handle/element-drop-handle.component.mjs +3 -3
- package/esm2020/cms/components/element-drop-handle/element-drop-handle.module.mjs +4 -4
- package/esm2020/cms/components/element-renderer/element-renderer.component.mjs +3 -3
- package/esm2020/cms/components/element-renderer/element-renderer.module.mjs +4 -4
- package/esm2020/cms/components/element-tools-panel/element-tools-panel.component.mjs +5 -5
- package/esm2020/cms/components/plugin.component.mjs +3 -3
- package/esm2020/cms/components/preview/preview.component.mjs +9 -11
- package/esm2020/cms/components/preview/preview.module.mjs +6 -6
- package/esm2020/cms/directives/custom-template.directive.mjs +7 -7
- package/esm2020/cms/index.mjs +2 -1
- package/esm2020/cms/launcher.module.mjs +7 -7
- package/esm2020/cms/modules/federated/federated-host.directive.mjs +3 -3
- package/esm2020/cms/modules/federated/federated.component.mjs +3 -3
- package/esm2020/cms/modules/federated/federated.module.mjs +4 -4
- package/esm2020/cms/modules/migrations/migrations.module.mjs +4 -4
- package/esm2020/cms/modules/migrations/services/migrations.service.mjs +3 -3
- package/esm2020/cms/modules/runtime/runtime.module.mjs +4 -4
- package/esm2020/cms/modules/runtime/services/compilation.service.mjs +8 -4
- package/esm2020/cms/modules/runtime/services/runtime-editor.service.mjs +3 -3
- package/esm2020/cms/modules/runtime/services/runtime.service.mjs +7 -7
- package/esm2020/cms/plugins/configuration.plugin.mjs +3 -3
- package/esm2020/cms/plugins/element-hover.plugin.mjs +3 -3
- package/esm2020/cms/plugins/io.plugin.mjs +8 -7
- package/esm2020/cms/plugins/page.plugin.mjs +3 -3
- package/esm2020/cms/plugins/region.plugin.mjs +3 -3
- package/esm2020/cms/plugins/script.plugin.mjs +3 -3
- package/esm2020/cms/services/element-context.service.mjs +3 -3
- package/esm2020/cms/services/index.mjs +1 -2
- package/esm2020/cms/services/io-provider.service.mjs +3 -3
- package/esm2020/cms/services/resources.service.mjs +3 -3
- package/esm2020/cms/services/templates.service.mjs +3 -3
- package/esm2020/cms/types/index.mjs +1 -2
- package/esm2020/cms/utils/element.utils.mjs +10 -3
- package/esm2020/cms/utils/elements-resolver.mjs +2 -2
- package/esm2020/cms/vendor-map.mjs +13 -5
- package/esm2020/core/core.module.mjs +10 -17
- package/esm2020/core/directives/directives.module.mjs +4 -4
- package/esm2020/core/directives/primeng-calendar.directive.mjs +3 -3
- package/esm2020/core/modules/configuration/configuration.module.mjs +4 -4
- package/esm2020/core/modules/configuration/helpers.mjs +8 -3
- package/esm2020/core/modules/configuration/services/configuration-runtime.service.mjs +11 -14
- package/esm2020/core/modules/configuration/services/configuration.service.mjs +29 -10
- package/esm2020/core/modules/configuration/services/configuration.state.mjs +5 -5
- package/esm2020/core/modules/configuration/services/runtime-context.service.mjs +9 -9
- package/esm2020/core/modules/flow-configuration/flow-configuration.module.mjs +4 -4
- package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +3 -3
- package/esm2020/core/modules/flow-configuration/services/flow-update.service.mjs +3 -3
- package/esm2020/core/pipes/action-code.pipe.mjs +20 -0
- package/esm2020/core/pipes/date.pipe.mjs +13 -7
- package/esm2020/core/pipes/index.mjs +2 -1
- package/esm2020/core/pipes/number.pipe.mjs +3 -3
- package/esm2020/core/pipes/pipes.module.mjs +8 -7
- package/esm2020/core/pipes/price.pipe.mjs +3 -3
- package/esm2020/core/services/context.service.mjs +20 -5
- package/esm2020/core/services/flow-info.service.mjs +72 -0
- package/esm2020/core/services/flow-state.service.mjs +320 -0
- package/esm2020/core/services/index.mjs +4 -1
- package/esm2020/core/services/integration.state.mjs +37 -0
- package/esm2020/core/services/metric-calculation/metric-calculation.service.mjs +3 -3
- package/esm2020/core/services/product-images.service.mjs +3 -3
- package/esm2020/core/services/quote-draft.service.mjs +31 -6
- package/esm2020/core/services/runtime-settings.service.mjs +20 -5
- package/esm2020/core/types/formatting-settings.types.mjs +1 -1
- package/esm2020/core/types/index.mjs +3 -1
- package/esm2020/core/types/integration.types.mjs +2 -0
- package/esm2020/core/types/pipe.types.mjs +2 -0
- package/esm2020/src/components/dialog/dialog.component.mjs +3 -3
- package/esm2020/src/components/dialog/dialog.module.mjs +4 -4
- package/esm2020/src/components/doc-gen/doc-gen.component.mjs +48 -46
- package/esm2020/src/components/doc-gen/doc-gen.module.mjs +4 -4
- package/esm2020/src/components/flow-header/flow-header.component.mjs +118 -0
- package/esm2020/src/components/flow-header/flow-header.module.mjs +19 -0
- package/esm2020/src/components/flow-header/index.mjs +2 -0
- package/esm2020/src/components/guided-selling/guided-selling.component.mjs +45 -44
- package/esm2020/src/components/guided-selling/guided-selling.module.mjs +4 -4
- package/esm2020/src/configure-primeng.mjs +33 -0
- package/esm2020/src/flow-routing.module.mjs +66 -75
- package/esm2020/src/flow.component.mjs +17 -29
- package/esm2020/src/flow.module.mjs +11 -9
- package/esm2020/src/guards/context.guard.mjs +7 -12
- package/esm2020/src/guards/flow.guard.mjs +31 -0
- package/esm2020/src/guards/product-unload.guard.mjs +7 -4
- package/esm2020/src/guards/root.guard.mjs +17 -13
- package/esm2020/src/pages/assets/assets.component.mjs +18 -13
- package/esm2020/src/pages/assets/assets.module.mjs +4 -4
- package/esm2020/src/pages/catalog/catalog.component.mjs +17 -13
- package/esm2020/src/pages/catalog/catalog.module.mjs +4 -4
- package/esm2020/src/pages/debug/debug.component.mjs +12 -16
- package/esm2020/src/pages/debug/debug.module.mjs +4 -4
- package/esm2020/src/pages/empty-account/empty-account.component.mjs +3 -3
- package/esm2020/src/pages/empty-account/empty-account.module.mjs +4 -4
- package/esm2020/src/pages/product/product.component.mjs +7 -9
- package/esm2020/src/pages/product/product.module.mjs +4 -4
- package/esm2020/src/pages/record-not-found/record-not-found.component.mjs +3 -3
- package/esm2020/src/pages/record-not-found/record-not-found.module.mjs +4 -4
- package/esm2020/src/pages/remote/remote.component.mjs +13 -14
- package/esm2020/src/pages/remote/remote.module.mjs +4 -4
- package/esm2020/src/pages/shopping-cart/shopping-cart.component.mjs +17 -13
- package/esm2020/src/pages/shopping-cart/shopping-cart.module.mjs +4 -4
- package/esm2020/src/resolvers/flow.resolver.mjs +37 -51
- package/esm2020/src/resolvers/quote.resolver.mjs +40 -65
- package/esm2020/src/services/doc-gen.service.mjs +7 -6
- package/esm2020/src/services/flow-dialog.service.mjs +8 -4
- package/esm2020/src/services/flow-router.service.mjs +31 -10
- package/esm2020/src/services/flow.service.mjs +36 -11
- package/esm2020/src/services/guided-selling.service.mjs +7 -6
- package/esm2020/src/services/index.mjs +3 -1
- package/esm2020/src/types/flow-customization.types.mjs +1 -1
- package/esm2020/src/utils/flow.utils.mjs +6 -2
- package/fesm2015/veloceapps-sdk-cms.mjs +221 -220
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +1325 -841
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk.mjs +725 -1457
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +243 -242
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +1666 -1177
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +794 -1525
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +3 -11
- package/src/components/doc-gen/doc-gen.component.d.ts +6 -8
- package/src/components/flow-header/flow-header.component.d.ts +27 -0
- package/src/components/flow-header/flow-header.module.d.ts +9 -0
- package/src/components/flow-header/index.d.ts +1 -0
- package/src/components/guided-selling/guided-selling.component.d.ts +5 -7
- package/src/configure-primeng.d.ts +1 -0
- package/src/flow-routing.module.d.ts +6 -7
- package/src/flow.component.d.ts +4 -10
- package/src/flow.module.d.ts +2 -2
- package/src/guards/context.guard.d.ts +4 -5
- package/src/guards/flow.guard.d.ts +2 -0
- package/src/guards/product-unload.guard.d.ts +2 -2
- package/src/guards/root.guard.d.ts +0 -1
- package/src/pages/assets/assets.component.d.ts +3 -3
- package/src/pages/catalog/catalog.component.d.ts +3 -3
- package/src/pages/debug/debug.component.d.ts +5 -8
- package/src/pages/product/product.component.d.ts +2 -2
- package/src/pages/remote/remote.component.d.ts +1 -2
- package/src/pages/shopping-cart/shopping-cart.component.d.ts +3 -3
- package/src/resolvers/flow.resolver.d.ts +6 -7
- package/src/resolvers/quote.resolver.d.ts +6 -12
- package/src/services/doc-gen.service.d.ts +1 -1
- package/src/services/flow-dialog.service.d.ts +1 -0
- package/src/services/flow-router.service.d.ts +4 -2
- package/src/services/flow.service.d.ts +4 -2
- package/src/services/guided-selling.service.d.ts +1 -1
- package/src/services/index.d.ts +2 -0
- package/src/types/flow-customization.types.d.ts +1 -1
- package/esm2020/cms/services/integration.state.mjs +0 -37
- package/esm2020/cms/types/integration.types.mjs +0 -2
- package/esm2020/runtime/components/component-preview/component-preview.component.mjs +0 -125
- package/esm2020/runtime/components/index.mjs +0 -5
- package/esm2020/runtime/components/section-renderer/section-renderer.component.mjs +0 -67
- package/esm2020/runtime/components/ui-runtime/runtime.component.mjs +0 -440
- package/esm2020/runtime/components/ui-runtime-preview/runtime-preview.component.mjs +0 -108
- package/esm2020/runtime/execution/components/children-placeholder/children-placeholder.component.mjs +0 -60
- package/esm2020/runtime/execution/components/context-provider/context-provider.component.mjs +0 -39
- package/esm2020/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.mjs +0 -67
- package/esm2020/runtime/execution/components/federated/federated.component.mjs +0 -74
- package/esm2020/runtime/execution/components/velo-attribute/velo-attribute.component.mjs +0 -60
- package/esm2020/runtime/execution/components/velo-multiselect/velo-multiselect.component.mjs +0 -130
- package/esm2020/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.mjs +0 -72
- package/esm2020/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.mjs +0 -97
- package/esm2020/runtime/execution/components/velo-port-radio/velo-port-radio.component.mjs +0 -142
- package/esm2020/runtime/execution/components/velo-type/velo-type.component.mjs +0 -119
- package/esm2020/runtime/execution/directives/section-script.directive.mjs +0 -247
- package/esm2020/runtime/execution/directives/sf-query.directive.mjs +0 -35
- package/esm2020/runtime/execution/directives/velo-attribute.directive.mjs +0 -88
- package/esm2020/runtime/execution/directives/velo-port.directive.mjs +0 -376
- package/esm2020/runtime/execution/directives/vl-approval.directive.mjs +0 -23
- package/esm2020/runtime/execution/directives/vl-document-attachments.directive.mjs +0 -36
- package/esm2020/runtime/execution/directives/vl-document-templates.directive.mjs +0 -60
- package/esm2020/runtime/execution/directives/vl-quote.directive.mjs +0 -42
- package/esm2020/runtime/execution/directives/vl-ramp.directive.mjs +0 -55
- package/esm2020/runtime/execution/runtime-execution.module.mjs +0 -133
- package/esm2020/runtime/execution/utils/federated.util.mjs +0 -32
- package/esm2020/runtime/index.mjs +0 -5
- package/esm2020/runtime/runtime.module.mjs +0 -74
- package/esm2020/runtime/services/cart.service.mjs +0 -29
- package/esm2020/runtime/services/collapsible-state.service.mjs +0 -34
- package/esm2020/runtime/services/configuration.service.mjs +0 -119
- package/esm2020/runtime/services/current-state.service.mjs +0 -17
- package/esm2020/runtime/services/form-scope.service.mjs +0 -30
- package/esm2020/runtime/services/index.mjs +0 -4
- package/esm2020/runtime/services/product-model-cache.service.mjs +0 -31
- package/esm2020/runtime/services/runtime-context.service.mjs +0 -60
- package/esm2020/runtime/services/runtime-form.service.mjs +0 -219
- package/esm2020/runtime/services/runtime.service.mjs +0 -115
- package/esm2020/runtime/services/section-helper.service.mjs +0 -27
- package/esm2020/runtime/services/section-scope.service.mjs +0 -36
- package/esm2020/runtime/services/section-store.service.mjs +0 -22
- package/esm2020/runtime/services/section.service.mjs +0 -117
- package/esm2020/runtime/types/bound-data.types.mjs +0 -7
- package/esm2020/runtime/types/index.mjs +0 -3
- package/esm2020/runtime/types/quote-states.types.mjs +0 -2
- package/esm2020/runtime/types/runtime.types.mjs +0 -2
- package/esm2020/runtime/types/script-registry.types.mjs +0 -51
- package/esm2020/runtime/utils/line-item.util.mjs +0 -270
- package/esm2020/runtime/utils/section.utils.mjs +0 -26
- package/esm2020/runtime/utils/sections-binder.helper.mjs +0 -105
- package/esm2020/runtime/veloceapps-sdk-runtime.mjs +0 -5
- package/esm2020/src/components/header/cart-overlay/cart-preview.component.mjs +0 -119
- package/esm2020/src/components/header/cart-overlay/cart-preview.module.mjs +0 -47
- package/esm2020/src/components/header/header.component.mjs +0 -355
- package/esm2020/src/components/header/header.module.mjs +0 -52
- package/esm2020/src/components/header/header.types.mjs +0 -2
- package/esm2020/src/components/header/metrics/index.mjs +0 -2
- package/esm2020/src/components/header/metrics/metrics.component.mjs +0 -255
- package/esm2020/src/components/header/metrics/metrics.definitions.mjs +0 -2
- package/esm2020/src/components/header/metrics/metrics.module.mjs +0 -69
- package/esm2020/src/pages/legacy-product/legacy-product.component.mjs +0 -137
- package/esm2020/src/pages/legacy-product/legacy-product.module.mjs +0 -19
- package/fesm2015/veloceapps-sdk-runtime.mjs +0 -3770
- package/fesm2015/veloceapps-sdk-runtime.mjs.map +0 -1
- package/fesm2020/veloceapps-sdk-runtime.mjs +0 -3767
- package/fesm2020/veloceapps-sdk-runtime.mjs.map +0 -1
- package/runtime/README.md +0 -5
- package/runtime/components/component-preview/component-preview.component.d.ts +0 -27
- package/runtime/components/index.d.ts +0 -4
- package/runtime/components/section-renderer/section-renderer.component.d.ts +0 -25
- package/runtime/components/ui-runtime/runtime.component.d.ts +0 -53
- package/runtime/components/ui-runtime-preview/runtime-preview.component.d.ts +0 -27
- package/runtime/execution/components/children-placeholder/children-placeholder.component.d.ts +0 -30
- package/runtime/execution/components/context-provider/context-provider.component.d.ts +0 -14
- package/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.d.ts +0 -25
- package/runtime/execution/components/federated/federated.component.d.ts +0 -36
- package/runtime/execution/components/velo-attribute/velo-attribute.component.d.ts +0 -19
- package/runtime/execution/components/velo-multiselect/velo-multiselect.component.d.ts +0 -35
- package/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.d.ts +0 -22
- package/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.d.ts +0 -22
- package/runtime/execution/components/velo-port-radio/velo-port-radio.component.d.ts +0 -28
- package/runtime/execution/components/velo-type/velo-type.component.d.ts +0 -31
- package/runtime/execution/directives/section-script.directive.d.ts +0 -59
- package/runtime/execution/directives/sf-query.directive.d.ts +0 -15
- package/runtime/execution/directives/velo-attribute.directive.d.ts +0 -26
- package/runtime/execution/directives/velo-port.directive.d.ts +0 -74
- package/runtime/execution/directives/vl-approval.directive.d.ts +0 -10
- package/runtime/execution/directives/vl-document-attachments.directive.d.ts +0 -15
- package/runtime/execution/directives/vl-document-templates.directive.d.ts +0 -33
- package/runtime/execution/directives/vl-quote.directive.d.ts +0 -14
- package/runtime/execution/directives/vl-ramp.directive.d.ts +0 -15
- package/runtime/execution/runtime-execution.module.d.ts +0 -25
- package/runtime/execution/utils/federated.util.d.ts +0 -6
- package/runtime/index.d.ts +0 -4
- package/runtime/runtime.module.d.ts +0 -16
- package/runtime/services/cart.service.d.ts +0 -15
- package/runtime/services/collapsible-state.service.d.ts +0 -15
- package/runtime/services/configuration.service.d.ts +0 -20
- package/runtime/services/current-state.service.d.ts +0 -8
- package/runtime/services/form-scope.service.d.ts +0 -20
- package/runtime/services/index.d.ts +0 -3
- package/runtime/services/product-model-cache.service.d.ts +0 -14
- package/runtime/services/runtime-context.service.d.ts +0 -16
- package/runtime/services/runtime-form.service.d.ts +0 -24
- package/runtime/services/runtime.service.d.ts +0 -44
- package/runtime/services/section-helper.service.d.ts +0 -8
- package/runtime/services/section-scope.service.d.ts +0 -14
- package/runtime/services/section-store.service.d.ts +0 -11
- package/runtime/services/section.service.d.ts +0 -30
- package/runtime/types/bound-data.types.d.ts +0 -13
- package/runtime/types/index.d.ts +0 -2
- package/runtime/types/quote-states.types.d.ts +0 -6
- package/runtime/types/runtime.types.d.ts +0 -19
- package/runtime/types/script-registry.types.d.ts +0 -13
- package/runtime/utils/line-item.util.d.ts +0 -34
- package/runtime/utils/section.utils.d.ts +0 -2
- package/runtime/utils/sections-binder.helper.d.ts +0 -16
- package/src/components/header/cart-overlay/cart-preview.component.d.ts +0 -36
- package/src/components/header/cart-overlay/cart-preview.module.d.ts +0 -14
- package/src/components/header/header.component.d.ts +0 -70
- package/src/components/header/header.module.d.ts +0 -16
- package/src/components/header/header.types.d.ts +0 -20
- package/src/components/header/metrics/index.d.ts +0 -1
- package/src/components/header/metrics/metrics.component.d.ts +0 -67
- package/src/components/header/metrics/metrics.definitions.d.ts +0 -1
- package/src/components/header/metrics/metrics.module.d.ts +0 -18
- package/src/pages/legacy-product/legacy-product.component.d.ts +0 -37
- package/src/pages/legacy-product/legacy-product.module.d.ts +0 -9
- /package/{cms → core}/services/integration.state.d.ts +0 -0
@@ -1,51 +1,33 @@
|
|
1
1
|
import * as i4 from '@angular/common';
|
2
2
|
import { CommonModule } from '@angular/common';
|
3
3
|
import * as i0 from '@angular/core';
|
4
|
-
import { Component, ChangeDetectionStrategy, NgModule,
|
5
|
-
import * as
|
4
|
+
import { Component, ChangeDetectionStrategy, NgModule, InjectionToken, Optional, Inject, Injectable, inject } from '@angular/core';
|
5
|
+
import * as i1$1 from '@veloceapps/api';
|
6
6
|
import { ApiModule } from '@veloceapps/api';
|
7
|
-
import * as
|
8
|
-
import { ToastType,
|
7
|
+
import * as i2$1 from '@veloceapps/components';
|
8
|
+
import { ToastType, LoaderModule, EmptyStateModule, LetDirectiveModule } from '@veloceapps/components';
|
9
9
|
import * as i5 from '@veloceapps/sdk/cms';
|
10
|
-
import {
|
11
|
-
import * as
|
12
|
-
import {
|
10
|
+
import { extractElementMetadata, extendElementMetadata, PreviewModule, FlowAction, LauncherModule } from '@veloceapps/sdk/cms';
|
11
|
+
import * as i2 from '@veloceapps/sdk/core';
|
12
|
+
import { ContextService, FlowStateService, FlowInfoService, QuoteDraftService, ConfigurationService, IntegrationState, SdkCoreModule } from '@veloceapps/sdk/core';
|
13
13
|
import * as i3 from 'primeng/button';
|
14
14
|
import { ButtonModule } from 'primeng/button';
|
15
15
|
import * as i1 from 'primeng/dynamicdialog';
|
16
|
-
import {
|
17
|
-
import { Subject, BehaviorSubject, tap, takeUntil, first, catchError, of, map, switchMap, filter, shareReplay, startWith, distinctUntilChanged, combineLatest, finalize, noop, forkJoin, from, throwError } from 'rxjs';
|
18
|
-
import * as i7 from 'primeng/overlaypanel';
|
19
|
-
import { OverlayPanel, OverlayPanelModule } from 'primeng/overlaypanel';
|
20
|
-
import * as i13 from 'primeng/splitbutton';
|
21
|
-
import { SplitButtonModule } from 'primeng/splitbutton';
|
22
|
-
import * as i10$1 from 'primeng/tooltip';
|
23
|
-
import { TooltipModule } from 'primeng/tooltip';
|
24
|
-
import * as i5$1 from '@angular/forms';
|
25
|
-
import { FormGroup, FormControl, ReactiveFormsModule, Validators, FormsModule } from '@angular/forms';
|
26
|
-
import { InputNumberModule } from 'primeng/inputnumber';
|
27
|
-
import * as i9 from 'primeng/virtualscroller';
|
28
|
-
import { VirtualScrollerModule } from 'primeng/virtualscroller';
|
16
|
+
import { BehaviorSubject, Subject, filter, first, tap, takeUntil, catchError, of, map, switchMap, forkJoin, shareReplay, startWith, distinctUntilChanged, from, take, combineLatest, throwError } from 'rxjs';
|
29
17
|
import * as i1$2 from '@angular/router';
|
30
18
|
import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError, RouterModule } from '@angular/router';
|
31
|
-
import
|
32
|
-
import
|
33
|
-
import
|
34
|
-
import {
|
35
|
-
import { cloneDeep, uniq } from 'lodash';
|
36
|
-
import { withLatestFrom, tap as tap$1, takeUntil as takeUntil$1, first as first$1, take, map as map$1, switchMap as switchMap$1 } from 'rxjs/operators';
|
37
|
-
import * as i9$1 from 'primeng/sidebar';
|
38
|
-
import { SidebarModule } from 'primeng/sidebar';
|
39
|
-
import * as i10 from 'primeng/inputtext';
|
40
|
-
import { InputTextModule } from 'primeng/inputtext';
|
41
|
-
import * as i11 from 'primeng/checkbox';
|
42
|
-
import { CheckboxModule } from 'primeng/checkbox';
|
43
|
-
import { HttpErrorResponse } from '@angular/common/http';
|
19
|
+
import { SalesforceIdUtils, ConfigurationContextMode, UITemplateComponentType, UUID } from '@veloceapps/core';
|
20
|
+
import { HttpErrorResponse, HttpParams } from '@angular/common/http';
|
21
|
+
import * as i5$1 from '@angular/forms';
|
22
|
+
import { FormGroup, FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
44
23
|
import { DropdownModule } from 'primeng/dropdown';
|
24
|
+
import * as i8 from 'primeng/inputtext';
|
25
|
+
import { InputTextModule } from 'primeng/inputtext';
|
45
26
|
import * as i6 from 'primeng/radiobutton';
|
46
27
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
47
|
-
import * as
|
48
|
-
import {
|
28
|
+
import * as i2$2 from 'primeng/api';
|
29
|
+
import { catchError as catchError$1 } from 'rxjs/operators';
|
30
|
+
import { DomHandler } from 'primeng/dom';
|
49
31
|
|
50
32
|
const VELOCE_FLOW_ROOT_ROUTE = 'VELOCE_FLOW_ROOT_ROUTE';
|
51
33
|
|
@@ -72,19 +54,19 @@ class FlowDialogComponent {
|
|
72
54
|
}
|
73
55
|
}
|
74
56
|
}
|
75
|
-
FlowDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
76
|
-
FlowDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
77
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
57
|
+
FlowDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogComponent, deps: [{ token: i1.DynamicDialogConfig }, { token: i1.DynamicDialogRef }], target: i0.ɵɵFactoryTarget.Component });
|
58
|
+
FlowDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: FlowDialogComponent, selector: "vl-flow-dialog", ngImport: i0, template: "<div class=\"header\">\n <div class=\"title\">\n {{ config.title }}\n </div>\n\n <i class=\"vl-icon vl-cross\" (click)=\"cancelHandler()\"></i>\n</div>\n\n<div *ngIf=\"config.description\" class=\"description\">\n {{ config.description }}\n</div>\n\n<div class=\"form-actions\">\n <p-button\n *ngIf=\"config.secondaryButton\"\n styleClass=\"p-button-outlined button-text-bold\"\n [label]=\"config.secondaryButton!\"\n (onClick)=\"cancelHandler()\"\n ></p-button>\n <p-button\n styleClass=\"p-button p-button-filled\"\n [label]=\"config.primaryButton\"\n (onClick)=\"confirmHandler()\"\n ></p-button>\n</div>\n", styles: [":host{display:flex;flex-direction:column;width:100%}:host *{font-family:var(--cg-font-family)}:host .header{display:flex;justify-content:space-between;align-items:center;padding:16px 16px 8px}:host .header .title{color:var(--cg-black);font-size:16px;font-style:normal;font-weight:500;line-height:20px}:host .header .vl-icon{cursor:pointer}:host .description{flex:1;padding:0 16px 16px;color:var(--cg-black);font-size:12px;font-style:normal;font-weight:300;line-height:16px;letter-spacing:.3px}:host .form-actions{background:var(--cg-bg-color);padding:12px 16px;display:flex;justify-content:flex-end;width:100%;gap:16px}:host p-button ::ng-deep button{border-radius:24px;width:100%;font-size:12px;font-family:var(--cg-font-family);font-weight:300;line-height:16px;letter-spacing:.3px;white-space:nowrap}:host p-button ::ng-deep .p-button-outlined{background-color:var(--cg-white);color:var(--cg-primary-color)}:host p-button ::ng-deep .p-button-outlined:hover{background-color:var(--cg-primary-color);color:var(--cg-white)}:host p-button ::ng-deep .p-button-filled{background-color:var(--cg-primary-color);color:var(--cg-white);border:1px solid var(--cg-primary-color)}:host p-button ::ng-deep .p-button-filled:hover{background-color:var(--cg-primary-color-hover);border-color:var(--cg-primary-color-hover)}::ng-deep .p-dialog.flow-dialog{border-radius:8px;box-shadow:0 8px 32px #0000001a}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass"], outputs: ["onClick", "onFocus", "onBlur"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
59
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogComponent, decorators: [{
|
78
60
|
type: Component,
|
79
61
|
args: [{ selector: 'vl-flow-dialog', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"header\">\n <div class=\"title\">\n {{ config.title }}\n </div>\n\n <i class=\"vl-icon vl-cross\" (click)=\"cancelHandler()\"></i>\n</div>\n\n<div *ngIf=\"config.description\" class=\"description\">\n {{ config.description }}\n</div>\n\n<div class=\"form-actions\">\n <p-button\n *ngIf=\"config.secondaryButton\"\n styleClass=\"p-button-outlined button-text-bold\"\n [label]=\"config.secondaryButton!\"\n (onClick)=\"cancelHandler()\"\n ></p-button>\n <p-button\n styleClass=\"p-button p-button-filled\"\n [label]=\"config.primaryButton\"\n (onClick)=\"confirmHandler()\"\n ></p-button>\n</div>\n", styles: [":host{display:flex;flex-direction:column;width:100%}:host *{font-family:var(--cg-font-family)}:host .header{display:flex;justify-content:space-between;align-items:center;padding:16px 16px 8px}:host .header .title{color:var(--cg-black);font-size:16px;font-style:normal;font-weight:500;line-height:20px}:host .header .vl-icon{cursor:pointer}:host .description{flex:1;padding:0 16px 16px;color:var(--cg-black);font-size:12px;font-style:normal;font-weight:300;line-height:16px;letter-spacing:.3px}:host .form-actions{background:var(--cg-bg-color);padding:12px 16px;display:flex;justify-content:flex-end;width:100%;gap:16px}:host p-button ::ng-deep button{border-radius:24px;width:100%;font-size:12px;font-family:var(--cg-font-family);font-weight:300;line-height:16px;letter-spacing:.3px;white-space:nowrap}:host p-button ::ng-deep .p-button-outlined{background-color:var(--cg-white);color:var(--cg-primary-color)}:host p-button ::ng-deep .p-button-outlined:hover{background-color:var(--cg-primary-color);color:var(--cg-white)}:host p-button ::ng-deep .p-button-filled{background-color:var(--cg-primary-color);color:var(--cg-white);border:1px solid var(--cg-primary-color)}:host p-button ::ng-deep .p-button-filled:hover{background-color:var(--cg-primary-color-hover);border-color:var(--cg-primary-color-hover)}::ng-deep .p-dialog.flow-dialog{border-radius:8px;box-shadow:0 8px 32px #0000001a}\n"] }]
|
80
62
|
}], ctorParameters: function () { return [{ type: i1.DynamicDialogConfig }, { type: i1.DynamicDialogRef }]; } });
|
81
63
|
|
82
64
|
class FlowDialogModule {
|
83
65
|
}
|
84
|
-
FlowDialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
85
|
-
FlowDialogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
86
|
-
FlowDialogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
87
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
66
|
+
FlowDialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
67
|
+
FlowDialogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogModule, declarations: [FlowDialogComponent], imports: [CommonModule, ButtonModule], exports: [FlowDialogComponent] });
|
68
|
+
FlowDialogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogModule, imports: [CommonModule, ButtonModule] });
|
69
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogModule, decorators: [{
|
88
70
|
type: NgModule,
|
89
71
|
args: [{
|
90
72
|
declarations: [FlowDialogComponent],
|
@@ -93,51 +75,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
93
75
|
}]
|
94
76
|
}] });
|
95
77
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
this.cleanup$ = new Subject();
|
100
|
-
this.isVisibleSubj$ = new BehaviorSubject(false);
|
101
|
-
this.isVisible$ = this.isVisibleSubj$.asObservable();
|
102
|
-
this.initSubscriptions();
|
78
|
+
function btoaSafe(str) {
|
79
|
+
if (!str) {
|
80
|
+
return '';
|
103
81
|
}
|
104
|
-
|
105
|
-
|
82
|
+
try {
|
83
|
+
const encoder = new TextEncoder();
|
84
|
+
const charCodes = encoder.encode(str);
|
85
|
+
return window.btoa(String.fromCharCode(...charCodes)) || '';
|
106
86
|
}
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
87
|
+
catch (e) {
|
88
|
+
return '';
|
89
|
+
}
|
90
|
+
}
|
91
|
+
function atobSafe(str) {
|
92
|
+
if (!str) {
|
93
|
+
return '';
|
94
|
+
}
|
95
|
+
try {
|
96
|
+
const binary = window.atob(str);
|
97
|
+
const bytes = Uint8Array.from({ length: binary.length }, (_, index) => binary.charCodeAt(index));
|
98
|
+
const decoder = new TextDecoder('utf-8');
|
99
|
+
return decoder.decode(bytes);
|
100
|
+
}
|
101
|
+
catch (e) {
|
102
|
+
return '';
|
116
103
|
}
|
117
104
|
}
|
118
|
-
FlowDocGenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowDocGenService, deps: [{ token: i5.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
119
|
-
FlowDocGenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowDocGenService });
|
120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowDocGenService, decorators: [{
|
121
|
-
type: Injectable
|
122
|
-
}], ctorParameters: function () { return [{ type: i5.IntegrationState }]; } });
|
123
105
|
|
124
106
|
const FLOW_CUSTOMIZATION = new InjectionToken('FLOW_CUSTOMIZATION');
|
125
107
|
|
126
108
|
class DocGenComponent {
|
127
|
-
constructor(
|
128
|
-
this.quoteDraftService = quoteDraftService;
|
129
|
-
this.contextService = contextService;
|
109
|
+
constructor(templatesApi, contextService, flowStateService, flowInfo, toastService, customizationService) {
|
130
110
|
this.templatesApi = templatesApi;
|
131
|
-
this.
|
111
|
+
this.contextService = contextService;
|
112
|
+
this.flowStateService = flowStateService;
|
113
|
+
this.flowInfo = flowInfo;
|
132
114
|
this.toastService = toastService;
|
133
115
|
this.customizationService = customizationService;
|
134
116
|
this.uiDefinition$ = new BehaviorSubject(null);
|
135
117
|
this.templateApiName = '';
|
136
118
|
this.destroy$ = new Subject();
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
.pipe(first(), tap(() => this.initialize()), takeUntil(this.destroy$))
|
119
|
+
// wait until flow is initialized
|
120
|
+
this.flowStateService
|
121
|
+
.isInitialized$()
|
122
|
+
.pipe(filter(Boolean), first(), tap(() => this.initialize()), takeUntil(this.destroy$))
|
141
123
|
.subscribe();
|
142
124
|
}
|
143
125
|
ngOnDestroy() {
|
@@ -145,7 +127,7 @@ class DocGenComponent {
|
|
145
127
|
this.destroy$.complete();
|
146
128
|
}
|
147
129
|
initialize() {
|
148
|
-
this.templateApiName = this.
|
130
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.docGen ?? '';
|
149
131
|
this.generateUIDefinition$()
|
150
132
|
.pipe(tap(uiDef => {
|
151
133
|
if (!uiDef) {
|
@@ -160,41 +142,47 @@ class DocGenComponent {
|
|
160
142
|
.subscribe();
|
161
143
|
}
|
162
144
|
getTemplateRootComponent$(template) {
|
163
|
-
return this.templatesApi
|
164
|
-
.fetchComponents$(template.id)
|
165
|
-
.pipe(map(components => components.find(c => c.type === UITemplateComponentType.ROOT) ?? undefined));
|
145
|
+
return this.templatesApi.fetchComponents$(template.id);
|
166
146
|
}
|
167
147
|
getLocalTemplateComponentMeta$() {
|
168
148
|
if (!this.customizationService?.getTemplateComponent) {
|
169
149
|
return of(undefined);
|
170
150
|
}
|
171
|
-
return this.customizationService?.getTemplateComponent(this.templateApiName).pipe(map(
|
172
|
-
if (!
|
151
|
+
return this.customizationService?.getTemplateComponent(this.templateApiName).pipe(map(components => {
|
152
|
+
if (!components) {
|
173
153
|
return;
|
174
154
|
}
|
175
|
-
return {
|
155
|
+
return components.map(component => ({
|
176
156
|
html: component.html,
|
177
157
|
css: component.css,
|
178
158
|
js: component.js,
|
179
159
|
json: component.json,
|
180
|
-
};
|
160
|
+
}));
|
181
161
|
}));
|
182
162
|
}
|
183
163
|
getDocGenComponentMeta$() {
|
184
|
-
|
185
|
-
|
186
|
-
return
|
187
|
-
}
|
164
|
+
const template = this.flowInfo.templates.DOCGEN;
|
165
|
+
if (!template) {
|
166
|
+
return of(undefined);
|
167
|
+
}
|
168
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(components => components
|
169
|
+
? forkJoin([
|
170
|
+
...components.map(component => {
|
171
|
+
return this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component);
|
172
|
+
}),
|
173
|
+
])
|
174
|
+
: of(undefined)));
|
188
175
|
}
|
189
176
|
generateUIDefinition$() {
|
190
177
|
return of(undefined).pipe(tap(() => {
|
191
178
|
if (!this.templateApiName) {
|
192
179
|
throw new Error("Flow Query parameter 'docGenTemplateApiName' is missing.");
|
193
180
|
}
|
194
|
-
}), switchMap(() => this.getLocalTemplateComponentMeta$()), switchMap(
|
195
|
-
if (!
|
181
|
+
}), switchMap(() => this.getLocalTemplateComponentMeta$()), switchMap(children => (children ? of(children) : this.getDocGenComponentMeta$())), map(children => {
|
182
|
+
if (!children) {
|
196
183
|
return;
|
197
184
|
}
|
185
|
+
const meta = children?.[0] ?? children;
|
198
186
|
const headerId = this.contextService.resolve().properties.Id ?? null;
|
199
187
|
let script = meta.js;
|
200
188
|
if (script) {
|
@@ -212,25 +200,23 @@ class DocGenComponent {
|
|
212
200
|
primary: true,
|
213
201
|
type: 'DEFAULT',
|
214
202
|
version: 2,
|
215
|
-
children:
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
},
|
222
|
-
],
|
203
|
+
children: children.map(child => ({
|
204
|
+
children: [],
|
205
|
+
template: child.html && btoaSafe(child.html),
|
206
|
+
script: child.js && btoaSafe(child.js),
|
207
|
+
styles: child.css && btoaSafe(child.css),
|
208
|
+
})),
|
223
209
|
};
|
224
210
|
return uiDef;
|
225
211
|
}));
|
226
212
|
}
|
227
213
|
}
|
228
|
-
DocGenComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
229
|
-
DocGenComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
214
|
+
DocGenComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocGenComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i2.ContextService }, { token: i2.FlowStateService }, { token: i2.FlowInfoService }, { token: i2$1.ToastService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
215
|
+
DocGenComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: DocGenComponent, selector: "vl-flow-doc-gen", ngImport: i0, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocGenComponent, decorators: [{
|
231
217
|
type: Component,
|
232
|
-
args: [{ selector: 'vl-flow-doc-gen', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"
|
233
|
-
}], ctorParameters: function () { return [{ type: i1$1.
|
218
|
+
args: [{ selector: 'vl-flow-doc-gen', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"] }]
|
219
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i2.ContextService }, { type: i2.FlowStateService }, { type: i2.FlowInfoService }, { type: i2$1.ToastService }, { type: undefined, decorators: [{
|
234
220
|
type: Optional
|
235
221
|
}, {
|
236
222
|
type: Inject,
|
@@ -239,10 +225,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
239
225
|
|
240
226
|
class DocGenModule {
|
241
227
|
}
|
242
|
-
DocGenModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
243
|
-
DocGenModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
244
|
-
DocGenModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
228
|
+
DocGenModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocGenModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
229
|
+
DocGenModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: DocGenModule, declarations: [DocGenComponent], imports: [CommonModule, PreviewModule], exports: [DocGenComponent] });
|
230
|
+
DocGenModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocGenModule, imports: [CommonModule, PreviewModule] });
|
231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DocGenModule, decorators: [{
|
246
232
|
type: NgModule,
|
247
233
|
args: [{
|
248
234
|
declarations: [DocGenComponent],
|
@@ -251,48 +237,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
251
237
|
}]
|
252
238
|
}] });
|
253
239
|
|
254
|
-
class FlowGuidedSellingService {
|
255
|
-
constructor(integrationState) {
|
256
|
-
this.integrationState = integrationState;
|
257
|
-
this.cleanup$ = new Subject();
|
258
|
-
this.isVisibleSubj$ = new BehaviorSubject(true);
|
259
|
-
this.isVisible$ = this.isVisibleSubj$.asObservable();
|
260
|
-
this.initSubscriptions();
|
261
|
-
}
|
262
|
-
cleanup() {
|
263
|
-
this.cleanup$.next();
|
264
|
-
}
|
265
|
-
initSubscriptions() {
|
266
|
-
this.integrationState
|
267
|
-
.listen$(FlowAction.OPEN_GUIDED_SELLING)
|
268
|
-
.pipe(tap(() => this.isVisibleSubj$.next(true)), takeUntil(this.cleanup$))
|
269
|
-
.subscribe();
|
270
|
-
this.integrationState
|
271
|
-
.listen$(FlowAction.CLOSE_GUIDED_SELLING)
|
272
|
-
.pipe(tap(() => this.isVisibleSubj$.next(false)), takeUntil(this.cleanup$))
|
273
|
-
.subscribe();
|
274
|
-
}
|
275
|
-
}
|
276
|
-
FlowGuidedSellingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowGuidedSellingService, deps: [{ token: i5.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
277
|
-
FlowGuidedSellingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowGuidedSellingService });
|
278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowGuidedSellingService, decorators: [{
|
279
|
-
type: Injectable
|
280
|
-
}], ctorParameters: function () { return [{ type: i5.IntegrationState }]; } });
|
281
|
-
|
282
240
|
class GuidedSellingComponent {
|
283
|
-
constructor(
|
284
|
-
this.quoteDraftService = quoteDraftService;
|
285
|
-
this.contextService = contextService;
|
241
|
+
constructor(templatesApi, flowStateService, flowInfo, toastService, customizationService) {
|
286
242
|
this.templatesApi = templatesApi;
|
287
|
-
this.
|
243
|
+
this.flowStateService = flowStateService;
|
244
|
+
this.flowInfo = flowInfo;
|
288
245
|
this.toastService = toastService;
|
289
246
|
this.customizationService = customizationService;
|
290
247
|
this.uiDefinition$ = new BehaviorSubject(null);
|
291
248
|
this.templateApiName = '';
|
292
249
|
this.destroy$ = new Subject();
|
293
|
-
//
|
294
|
-
this.
|
295
|
-
.
|
250
|
+
// wait until flow is initialized
|
251
|
+
this.flowStateService
|
252
|
+
.isInitialized$()
|
253
|
+
.pipe(filter(Boolean), first(), tap(() => this.initialize()), takeUntil(this.destroy$))
|
296
254
|
.subscribe();
|
297
255
|
}
|
298
256
|
ngOnDestroy() {
|
@@ -300,7 +258,7 @@ class GuidedSellingComponent {
|
|
300
258
|
this.destroy$.complete();
|
301
259
|
}
|
302
260
|
initialize() {
|
303
|
-
this.templateApiName = this.
|
261
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.guidedSelling ?? '';
|
304
262
|
this.generateUIDefinition$()
|
305
263
|
.pipe(tap(uiDef => {
|
306
264
|
if (!uiDef) {
|
@@ -315,39 +273,44 @@ class GuidedSellingComponent {
|
|
315
273
|
.subscribe();
|
316
274
|
}
|
317
275
|
getTemplateRootComponent$(template) {
|
318
|
-
return this.templatesApi
|
319
|
-
.fetchComponents$(template.id)
|
320
|
-
.pipe(map(components => components.find(c => c.type === UITemplateComponentType.ROOT) ?? undefined));
|
276
|
+
return this.templatesApi.fetchComponents$(template.id);
|
321
277
|
}
|
322
278
|
getLocalTemplateComponentMeta$() {
|
323
279
|
if (!this.customizationService?.getTemplateComponent) {
|
324
280
|
return of(undefined);
|
325
281
|
}
|
326
|
-
return this.customizationService?.getTemplateComponent(this.templateApiName).pipe(map(
|
327
|
-
if (!
|
282
|
+
return this.customizationService?.getTemplateComponent(this.templateApiName).pipe(map(components => {
|
283
|
+
if (!components) {
|
328
284
|
return;
|
329
285
|
}
|
330
|
-
return {
|
286
|
+
return components.map(component => ({
|
331
287
|
html: component.html,
|
332
288
|
css: component.css,
|
333
289
|
js: component.js,
|
334
290
|
json: component.json,
|
335
|
-
};
|
291
|
+
}));
|
336
292
|
}));
|
337
293
|
}
|
338
294
|
getGuidedSellingComponentMeta$() {
|
339
|
-
|
340
|
-
|
341
|
-
return
|
342
|
-
}
|
295
|
+
const template = this.flowInfo.templates.GUIDED_SELLING;
|
296
|
+
if (!template) {
|
297
|
+
return of(undefined);
|
298
|
+
}
|
299
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(components => components
|
300
|
+
? forkJoin([
|
301
|
+
...components.map(component => {
|
302
|
+
return this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component);
|
303
|
+
}),
|
304
|
+
])
|
305
|
+
: of(undefined)));
|
343
306
|
}
|
344
307
|
generateUIDefinition$() {
|
345
308
|
return of(undefined).pipe(tap(() => {
|
346
309
|
if (!this.templateApiName) {
|
347
310
|
throw new Error("Flow Query parameter 'guidedSellingTemplateApiName' is missing.");
|
348
311
|
}
|
349
|
-
}), switchMap(() => this.getLocalTemplateComponentMeta$()), switchMap(
|
350
|
-
if (!
|
312
|
+
}), switchMap(() => this.getLocalTemplateComponentMeta$()), switchMap(children => (children ? of(children) : this.getGuidedSellingComponentMeta$())), map(children => {
|
313
|
+
if (!children) {
|
351
314
|
return;
|
352
315
|
}
|
353
316
|
const uiDef = {
|
@@ -356,25 +319,23 @@ class GuidedSellingComponent {
|
|
356
319
|
primary: true,
|
357
320
|
type: 'DEFAULT',
|
358
321
|
version: 2,
|
359
|
-
children:
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
},
|
366
|
-
],
|
322
|
+
children: children.map(child => ({
|
323
|
+
children: [],
|
324
|
+
template: child.html && btoaSafe(child.html),
|
325
|
+
script: child.js && btoaSafe(child.js),
|
326
|
+
styles: child.css && btoaSafe(child.css),
|
327
|
+
})),
|
367
328
|
};
|
368
329
|
return uiDef;
|
369
330
|
}));
|
370
331
|
}
|
371
332
|
}
|
372
|
-
GuidedSellingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
373
|
-
GuidedSellingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
333
|
+
GuidedSellingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i2.FlowStateService }, { token: i2.FlowInfoService }, { token: i2$1.ToastService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
334
|
+
GuidedSellingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: GuidedSellingComponent, selector: "vl-flow-guided-selling", ngImport: i0, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingComponent, decorators: [{
|
375
336
|
type: Component,
|
376
337
|
args: [{ selector: 'vl-flow-guided-selling', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"] }]
|
377
|
-
}], ctorParameters: function () { return [{ type: i1$1.
|
338
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i2.FlowStateService }, { type: i2.FlowInfoService }, { type: i2$1.ToastService }, { type: undefined, decorators: [{
|
378
339
|
type: Optional
|
379
340
|
}, {
|
380
341
|
type: Inject,
|
@@ -383,10 +344,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
383
344
|
|
384
345
|
class GuidedSellingModule {
|
385
346
|
}
|
386
|
-
GuidedSellingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
387
|
-
GuidedSellingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
388
|
-
GuidedSellingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
347
|
+
GuidedSellingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
348
|
+
GuidedSellingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingModule, declarations: [GuidedSellingComponent], imports: [CommonModule, PreviewModule], exports: [GuidedSellingComponent] });
|
349
|
+
GuidedSellingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingModule, imports: [CommonModule, PreviewModule] });
|
350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: GuidedSellingModule, decorators: [{
|
390
351
|
type: NgModule,
|
391
352
|
args: [{
|
392
353
|
declarations: [GuidedSellingComponent],
|
@@ -395,281 +356,122 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
395
356
|
}]
|
396
357
|
}] });
|
397
358
|
|
398
|
-
class
|
399
|
-
constructor(
|
400
|
-
this.
|
401
|
-
this.
|
402
|
-
this.
|
403
|
-
this.
|
404
|
-
this.
|
405
|
-
this.
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
};
|
414
|
-
this.getLastChildRouteSnapshot = (route) => {
|
415
|
-
return route.firstChild ? this.getLastChildRouteSnapshot(route.firstChild) : route;
|
416
|
-
};
|
417
|
-
this.watchLastChildRoute$ = (route) => {
|
418
|
-
return this.routeChange$.pipe(map(() => this.getLastChildRouteSnapshot(route.snapshot)));
|
419
|
-
};
|
420
|
-
this.getLastChildParams = (route) => {
|
421
|
-
return route.firstChild ? this.getLastChildParams(route.firstChild) : route.params;
|
422
|
-
};
|
423
|
-
this.watchLastChildParams$ = (route) => {
|
424
|
-
return this.routeChange$.pipe(map(() => this.getLastChildParams(route.snapshot)));
|
425
|
-
};
|
426
|
-
this.getFlowSubpath$ = () => {
|
427
|
-
return this.route$.pipe(map(route => {
|
428
|
-
const url = route.url.join('/');
|
429
|
-
const flowRootUrl = this.getFlowRootPath(route);
|
430
|
-
return url.replace(flowRootUrl, '');
|
431
|
-
}));
|
432
|
-
};
|
433
|
-
this.routeChange$ = this.router.events.pipe(filter(e => e instanceof NavigationEnd), shareReplay());
|
434
|
-
this.lastChildParams$ = this.watchLastChildParams$(this.route).pipe(startWith(this.getLastChildParams(this.route.snapshot)), shareReplay());
|
435
|
-
this.lastChildRoute$ = this.watchLastChildRoute$(this.route).pipe(startWith(this.getLastChildRouteSnapshot(this.route.snapshot)), shareReplay());
|
436
|
-
this.loading$ = this.router.events.pipe(filter(e => e instanceof NavigationStart ||
|
437
|
-
e instanceof NavigationCancel ||
|
438
|
-
e instanceof NavigationEnd ||
|
439
|
-
e instanceof NavigationError), map(e => e instanceof NavigationStart), startWith(false), distinctUntilChanged());
|
440
|
-
this.routeChange$.subscribe(() => {
|
441
|
-
this.urlHistory.push(this.router.url);
|
442
|
-
// Close Guided Selling when user navigates to another flow page
|
443
|
-
this.integrationState.dispatch(FlowAction.CloseGuidedSelling({ keepState: true }));
|
444
|
-
});
|
445
|
-
}
|
446
|
-
getFlowRootRoute(route) {
|
447
|
-
const path = [...route.pathFromRoot];
|
448
|
-
while (path.length) {
|
449
|
-
const parent = path.pop();
|
450
|
-
if (!parent) {
|
451
|
-
break;
|
452
|
-
}
|
453
|
-
if (parent.routeConfig?.id === VELOCE_FLOW_ROOT_ROUTE) {
|
454
|
-
return parent;
|
455
|
-
}
|
456
|
-
}
|
457
|
-
return;
|
458
|
-
}
|
459
|
-
getFlowRootPath(route) {
|
460
|
-
const rootRoute = this.getFlowRootRoute(route);
|
461
|
-
if (!rootRoute) {
|
462
|
-
return '';
|
463
|
-
}
|
464
|
-
const path = rootRoute.pathFromRoot
|
465
|
-
.map(r => r.routeConfig?.path)
|
466
|
-
.filter(Boolean)
|
467
|
-
.join('/');
|
468
|
-
return '/' + path;
|
469
|
-
}
|
470
|
-
get route$() {
|
471
|
-
return this.lastChildRoute$;
|
472
|
-
}
|
473
|
-
get params$() {
|
474
|
-
return this.lastChildParams$;
|
475
|
-
}
|
476
|
-
isConfigurationRoute$() {
|
477
|
-
return this.getFlowSubpath$().pipe(map(url => url.startsWith('product')));
|
359
|
+
class FlowHeaderComponent {
|
360
|
+
constructor(templatesApi, flowStateService, flowInfo, toastService, customizationService) {
|
361
|
+
this.templatesApi = templatesApi;
|
362
|
+
this.flowStateService = flowStateService;
|
363
|
+
this.flowInfo = flowInfo;
|
364
|
+
this.toastService = toastService;
|
365
|
+
this.customizationService = customizationService;
|
366
|
+
this.uiDefinition$ = new BehaviorSubject(null);
|
367
|
+
this.templateApiName = '';
|
368
|
+
this.destroy$ = new Subject();
|
369
|
+
// wait until flow is initialized
|
370
|
+
this.flowStateService
|
371
|
+
.isInitialized$()
|
372
|
+
.pipe(filter(Boolean), first(), tap(() => this.initialize()), takeUntil(this.destroy$))
|
373
|
+
.subscribe();
|
478
374
|
}
|
479
|
-
|
480
|
-
|
375
|
+
ngOnDestroy() {
|
376
|
+
this.destroy$.next();
|
377
|
+
this.destroy$.complete();
|
481
378
|
}
|
482
|
-
|
483
|
-
|
379
|
+
initialize() {
|
380
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.flowHeader ?? '';
|
381
|
+
this.generateUIDefinition$()
|
382
|
+
.pipe(tap(uiDef => {
|
383
|
+
if (!uiDef) {
|
384
|
+
throw new Error(`Component with name '${this.templateApiName}' not found.`);
|
385
|
+
}
|
386
|
+
this.uiDefinition$.next(uiDef);
|
387
|
+
}), catchError(err => {
|
388
|
+
const message = 'Failed to resolve Flow Header component. ' + (err.message ?? '');
|
389
|
+
this.toastService.add({ severity: ToastType.error, summary: message, sticky: true });
|
390
|
+
return of();
|
391
|
+
}), takeUntil(this.destroy$))
|
392
|
+
.subscribe();
|
484
393
|
}
|
485
|
-
|
486
|
-
return this.
|
394
|
+
getTemplateRootComponent$(template) {
|
395
|
+
return this.templatesApi.fetchComponents$(template.id);
|
487
396
|
}
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
this.router.navigateByUrl(prevUrl);
|
397
|
+
getLocalTemplateComponentMeta$() {
|
398
|
+
if (!this.customizationService?.getTemplateComponent) {
|
399
|
+
return of(undefined);
|
492
400
|
}
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
497
|
-
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
498
|
-
this.router.navigate([flowRouteUrl, 'product'], {
|
499
|
-
queryParams: { ...routeSnapshot.queryParams, productId },
|
500
|
-
});
|
501
|
-
}
|
502
|
-
navigateToShoppingCart() {
|
503
|
-
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
504
|
-
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
505
|
-
this.router.navigate([flowRouteUrl, 'cart'], { queryParams: routeSnapshot.queryParams });
|
506
|
-
}
|
507
|
-
navigateToCatalog() {
|
508
|
-
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
509
|
-
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
510
|
-
this.router.navigate([flowRouteUrl, 'catalog'], { queryParams: routeSnapshot.queryParams });
|
511
|
-
}
|
512
|
-
navigateToAssets() {
|
513
|
-
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
514
|
-
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
515
|
-
this.router.navigate([flowRouteUrl, 'assets'], { queryParams: routeSnapshot.queryParams });
|
516
|
-
}
|
517
|
-
switchObject(id) {
|
518
|
-
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
519
|
-
const route = this.getLastChildRoute(this.route);
|
520
|
-
const objName = SalesforceIdUtils.getSfObjectNameById(id);
|
521
|
-
const queryParams = {
|
522
|
-
quoteId: objName === 'Quote' ? id : undefined,
|
523
|
-
accountId: objName === 'Account' ? id : undefined,
|
524
|
-
orderId: objName === 'Order' ? id : undefined,
|
525
|
-
};
|
526
|
-
this.router.navigate([], { relativeTo: route, queryParams: { ...routeSnapshot.queryParams, ...queryParams } });
|
527
|
-
}
|
528
|
-
}
|
529
|
-
FlowRouterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowRouterService, deps: [{ token: i1$2.Router }, { token: i1$2.ActivatedRoute }, { token: i1$1.ContextService }, { token: i5.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
530
|
-
FlowRouterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowRouterService, providedIn: 'root' });
|
531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowRouterService, decorators: [{
|
532
|
-
type: Injectable,
|
533
|
-
args: [{ providedIn: 'root' }]
|
534
|
-
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: i1$2.ActivatedRoute }, { type: i1$1.ContextService }, { type: i5.IntegrationState }]; } });
|
535
|
-
|
536
|
-
class CartPreviewComponent {
|
537
|
-
constructor(flowConfiguration, routerService, productImagesService, quoteDraftService) {
|
538
|
-
this.flowConfiguration = flowConfiguration;
|
539
|
-
this.routerService = routerService;
|
540
|
-
this.productImagesService = productImagesService;
|
541
|
-
this.quoteDraftService = quoteDraftService;
|
542
|
-
this.productRowHeight = 65;
|
543
|
-
this.form = new FormGroup({});
|
544
|
-
this.hasTermInProducts = false;
|
545
|
-
this.scrollHeight = 0;
|
546
|
-
this.shouldUpdate$ = new BehaviorSubject(true);
|
547
|
-
this.destroyed$ = new Subject();
|
548
|
-
this.lockedProductId$ = combineLatest([this.routerService.route$, this.routerService.isConfigurationRoute$()]).pipe(map(([route, isConfigurationRoute]) => {
|
549
|
-
if (!isConfigurationRoute) {
|
550
|
-
return null;
|
401
|
+
return this.customizationService?.getTemplateComponent(this.templateApiName).pipe(map(components => {
|
402
|
+
if (!components) {
|
403
|
+
return;
|
551
404
|
}
|
552
|
-
return
|
405
|
+
return components.map(component => ({
|
406
|
+
html: component.html,
|
407
|
+
css: component.css,
|
408
|
+
js: component.js,
|
409
|
+
json: component.json,
|
410
|
+
}));
|
553
411
|
}));
|
554
|
-
this.isEditMode$ = this.quoteDraftService.isEditMode$();
|
555
412
|
}
|
556
|
-
|
557
|
-
const
|
558
|
-
if (
|
559
|
-
|
560
|
-
this.scrollHeight = Math.min(this.products.length * this.productRowHeight, 460);
|
413
|
+
getFlowHeaderComponentMeta$() {
|
414
|
+
const template = this.flowInfo.templates.FLOW_HEADER;
|
415
|
+
if (!template) {
|
416
|
+
return of(undefined);
|
561
417
|
}
|
418
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(components => components
|
419
|
+
? forkJoin([
|
420
|
+
...components.map(component => {
|
421
|
+
return this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component);
|
422
|
+
}),
|
423
|
+
])
|
424
|
+
: of(undefined)));
|
562
425
|
}
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
}
|
568
|
-
ngOnDestroy() {
|
569
|
-
this.destroyed$.next();
|
570
|
-
this.destroyed$.complete();
|
571
|
-
}
|
572
|
-
getImageUrl(productId) {
|
573
|
-
return this.productImagesService.getImageUrl$(productId);
|
574
|
-
}
|
575
|
-
navigateToProductConfiguration(productId, lineItemId) {
|
576
|
-
this.overlayPanel.hide();
|
577
|
-
this.routerService.navigateToProductConfiguration(productId, lineItemId);
|
578
|
-
}
|
579
|
-
controlBlurHandler(product) {
|
580
|
-
const control = this.form.get(product.id);
|
581
|
-
if (!control || control.invalid) {
|
582
|
-
return;
|
583
|
-
}
|
584
|
-
this.flowConfiguration.update([
|
585
|
-
{
|
586
|
-
dataType: 'LINEITEM',
|
587
|
-
attributeType: 'QTY',
|
588
|
-
id: product.id,
|
589
|
-
newValue: control.value,
|
590
|
-
},
|
591
|
-
]);
|
592
|
-
}
|
593
|
-
deleteHandler(product) {
|
594
|
-
this.flowConfiguration.delete([product.id]);
|
595
|
-
}
|
596
|
-
deleteAllHandler() {
|
597
|
-
const productIds = this.products.map(product => product.id);
|
598
|
-
this.flowConfiguration.delete(productIds);
|
599
|
-
}
|
600
|
-
updateControls(products, isEditMode, lockedProductId) {
|
601
|
-
const ids = [];
|
602
|
-
products.forEach(item => {
|
603
|
-
if (!item.id) {
|
604
|
-
return;
|
605
|
-
}
|
606
|
-
ids.push(item.id);
|
607
|
-
let control = this.form.get(item.id);
|
608
|
-
if (!control) {
|
609
|
-
control = new FormControl(item.qty, []);
|
610
|
-
this.form.addControl(item.id, control);
|
611
|
-
}
|
612
|
-
else {
|
613
|
-
control.setValue(item.qty);
|
614
|
-
}
|
615
|
-
if (!isEditMode || item.deleted || item.productId === lockedProductId) {
|
616
|
-
control.disable();
|
426
|
+
generateUIDefinition$() {
|
427
|
+
return of(undefined).pipe(tap(() => {
|
428
|
+
if (!this.templateApiName) {
|
429
|
+
throw new Error("Flow Query parameter 'flowHeaderTemplateApiName' is missing.");
|
617
430
|
}
|
618
|
-
|
619
|
-
|
431
|
+
}), switchMap(() => this.getLocalTemplateComponentMeta$()), switchMap(children => (children ? of(children) : this.getFlowHeaderComponentMeta$())), map(children => {
|
432
|
+
if (!children) {
|
433
|
+
return;
|
620
434
|
}
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
435
|
+
const uiDef = {
|
436
|
+
name: '',
|
437
|
+
createdTimestamp: 0,
|
438
|
+
primary: true,
|
439
|
+
type: 'DEFAULT',
|
440
|
+
version: 2,
|
441
|
+
children: children.map(child => ({
|
442
|
+
children: [],
|
443
|
+
template: child.html && btoaSafe(child.html),
|
444
|
+
script: child.js && btoaSafe(child.js),
|
445
|
+
styles: child.css && btoaSafe(child.css),
|
446
|
+
})),
|
447
|
+
};
|
448
|
+
return uiDef;
|
449
|
+
}));
|
625
450
|
}
|
626
451
|
}
|
627
|
-
|
628
|
-
|
629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
452
|
+
FlowHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowHeaderComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i2.FlowStateService }, { token: i2.FlowInfoService }, { token: i2$1.ToastService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
453
|
+
FlowHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: FlowHeaderComponent, selector: "vl-flow-new-header", ngImport: i0, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowHeaderComponent, decorators: [{
|
630
455
|
type: Component,
|
631
|
-
args: [{ selector: 'vl-
|
632
|
-
}], ctorParameters: function () { return [{ type: i1$1.
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
456
|
+
args: [{ selector: 'vl-flow-new-header', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"uiDefinition$ | async as uiDefinition\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n</ng-container>\n", styles: [":host,vl-cms-preview{display:contents}\n"] }]
|
457
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i2.FlowStateService }, { type: i2.FlowInfoService }, { type: i2$1.ToastService }, { type: undefined, decorators: [{
|
458
|
+
type: Optional
|
459
|
+
}, {
|
460
|
+
type: Inject,
|
461
|
+
args: [FLOW_CUSTOMIZATION]
|
462
|
+
}] }]; } });
|
638
463
|
|
639
|
-
class
|
464
|
+
class FlowNewHeaderModule {
|
640
465
|
}
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
OverlayPanelModule,
|
646
|
-
LetDirectiveModule,
|
647
|
-
InputNumberModule,
|
648
|
-
VirtualScrollerModule,
|
649
|
-
QuantityControlModule], exports: [CartPreviewComponent] });
|
650
|
-
CartPreviewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: CartPreviewModule, imports: [CommonModule,
|
651
|
-
ReactiveFormsModule,
|
652
|
-
ButtonModule,
|
653
|
-
OverlayPanelModule,
|
654
|
-
LetDirectiveModule,
|
655
|
-
InputNumberModule,
|
656
|
-
VirtualScrollerModule,
|
657
|
-
QuantityControlModule] });
|
658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: CartPreviewModule, decorators: [{
|
466
|
+
FlowNewHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowNewHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
467
|
+
FlowNewHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowNewHeaderModule, declarations: [FlowHeaderComponent], imports: [CommonModule, PreviewModule], exports: [FlowHeaderComponent] });
|
468
|
+
FlowNewHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowNewHeaderModule, imports: [CommonModule, PreviewModule] });
|
469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowNewHeaderModule, decorators: [{
|
659
470
|
type: NgModule,
|
660
471
|
args: [{
|
661
|
-
declarations: [
|
662
|
-
imports: [
|
663
|
-
|
664
|
-
ReactiveFormsModule,
|
665
|
-
ButtonModule,
|
666
|
-
OverlayPanelModule,
|
667
|
-
LetDirectiveModule,
|
668
|
-
InputNumberModule,
|
669
|
-
VirtualScrollerModule,
|
670
|
-
QuantityControlModule,
|
671
|
-
],
|
672
|
-
exports: [CartPreviewComponent],
|
472
|
+
declarations: [FlowHeaderComponent],
|
473
|
+
imports: [CommonModule, PreviewModule],
|
474
|
+
exports: [FlowHeaderComponent],
|
673
475
|
}]
|
674
476
|
}] });
|
675
477
|
|
@@ -785,682 +587,190 @@ class FlowDialogService {
|
|
785
587
|
secondaryButton: 'Cancel',
|
786
588
|
});
|
787
589
|
}
|
590
|
+
showDialog(dialog) {
|
591
|
+
const dialogFunction = this[dialog].bind(this);
|
592
|
+
return dialogFunction(dialog);
|
593
|
+
}
|
788
594
|
}
|
789
|
-
FlowDialogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
790
|
-
FlowDialogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
791
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
595
|
+
FlowDialogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogService, deps: [{ token: i1.DialogService }, { token: i2.ContextService }], target: i0.ɵɵFactoryTarget.Injectable });
|
596
|
+
FlowDialogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogService });
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDialogService, decorators: [{
|
792
598
|
type: Injectable
|
793
|
-
}], ctorParameters: function () { return [{ type: i1.DialogService }, { type:
|
794
|
-
|
795
|
-
const METRICS_STORAGE_KEY = 'vl-metrics';
|
599
|
+
}], ctorParameters: function () { return [{ type: i1.DialogService }, { type: i2.ContextService }]; } });
|
796
600
|
|
797
|
-
class
|
798
|
-
constructor(
|
601
|
+
class FlowRouterService {
|
602
|
+
constructor(router, route, contextService, integrationState) {
|
603
|
+
this.router = router;
|
604
|
+
this.route = route;
|
799
605
|
this.contextService = contextService;
|
800
|
-
this.
|
801
|
-
this.
|
802
|
-
this.
|
803
|
-
|
804
|
-
|
805
|
-
this.
|
806
|
-
|
807
|
-
|
808
|
-
{ name: 'E.MRR', value: 0 },
|
809
|
-
{ name: 'NRR', value: 0 },
|
810
|
-
{ name: 'E.NRR', value: 0 },
|
811
|
-
];
|
812
|
-
this.visibleSelectedMetrics = [];
|
813
|
-
this.restSelectedMetrics = [];
|
814
|
-
this.metrics = [];
|
815
|
-
this.filteredMetrics = [];
|
816
|
-
this.sidebarVisible = false;
|
817
|
-
this.searchControl = new FormControl('');
|
818
|
-
this.isFocused = false;
|
819
|
-
this.nameControl = new FormControl('', [
|
820
|
-
requiredValidator,
|
821
|
-
invalidCharactersValidator(standardCharSetWithSpaceRegExp),
|
822
|
-
reservedIdentifierValidator,
|
823
|
-
Validators.maxLength(80),
|
824
|
-
]);
|
825
|
-
this.activeMetricRules = [];
|
826
|
-
this.activeMetricRuleNames = [];
|
827
|
-
this.defaultMetricRuleNames = [];
|
828
|
-
this.metricKeys = [];
|
829
|
-
this.lastSavedMetrics = [];
|
830
|
-
this.destroyed$ = new Subject();
|
831
|
-
this.currencySymbol = this.runtimeSettings.getCurrencySettings().symbol;
|
832
|
-
}
|
833
|
-
ngOnInit() {
|
834
|
-
this.activeMetricRules = this.flowConfiguration.activeMetricsSnapshot.filter(metricRule => metricRule.metrics.some(metric => !!metric.totalName));
|
835
|
-
const activeMetricRuleNames = this.activeMetricRules.map(metricRule => metricRule.title);
|
836
|
-
this.shoppingCartSettingsApiService
|
837
|
-
.getSettingsMap()
|
838
|
-
.pipe(withLatestFrom(this.quoteDraftService.currentState$), tap$1(([settings, lineItems]) => {
|
839
|
-
this.defaultMetricRuleNames = (settings?.DEFAULT_HEADER_METRICS || []).filter(ruleName => activeMetricRuleNames.includes(ruleName));
|
840
|
-
this.metricKeys = this.collectMetricKeys(lineItems);
|
841
|
-
this.activeMetricRuleNames = this.getActiveMetricRuleNames();
|
842
|
-
}), takeUntil$1(this.destroyed$))
|
843
|
-
.subscribe(() => {
|
844
|
-
this.collectAvailableMetrics();
|
845
|
-
});
|
846
|
-
this.searchControl.valueChanges.pipe(takeUntil$1(this.destroyed$), startWith('')).subscribe(query => {
|
847
|
-
this.filteredMetrics = this.metrics.filter(({ name }) => {
|
848
|
-
return (name || '').toLowerCase().includes(query?.toLowerCase());
|
849
|
-
});
|
850
|
-
});
|
851
|
-
this.metricsCalculationService.onMetricsUpdate$
|
852
|
-
.pipe(takeUntil$1(this.destroyed$))
|
853
|
-
.subscribe(() => this.cdr.detectChanges());
|
854
|
-
}
|
855
|
-
ngOnDestroy() {
|
856
|
-
this.destroyed$.next();
|
857
|
-
this.destroyed$.complete();
|
858
|
-
}
|
859
|
-
toggleOverlay(event, overlay, target) {
|
860
|
-
event.stopPropagation();
|
861
|
-
if (this.restSelectedMetrics.length) {
|
862
|
-
if (!overlay.overlayVisible) {
|
863
|
-
document.dispatchEvent(new Event('click'));
|
606
|
+
this.integrationState = integrationState;
|
607
|
+
this.urlHistory = [];
|
608
|
+
this.getLastChildRoute = (route) => {
|
609
|
+
return route.firstChild ? this.getLastChildRoute(route.firstChild) : route;
|
610
|
+
};
|
611
|
+
this.getNthChildRoute = (route, index) => {
|
612
|
+
if (index <= 0) {
|
613
|
+
return route;
|
864
614
|
}
|
865
|
-
|
866
|
-
}
|
867
|
-
|
868
|
-
this.
|
869
|
-
}
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
this.
|
874
|
-
|
875
|
-
|
876
|
-
this.
|
877
|
-
|
878
|
-
|
879
|
-
this.
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
this.
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
changeMetricOrder(event) {
|
898
|
-
moveItemInArray(this.metrics, event.previousIndex, event.currentIndex);
|
899
|
-
this.filteredMetrics = this.metrics;
|
900
|
-
}
|
901
|
-
editMetric(metric) {
|
902
|
-
if (this.editingMetric && this.nameControl.invalid) {
|
903
|
-
return;
|
904
|
-
}
|
905
|
-
this.editingMetric = metric;
|
906
|
-
this.nameControl.setValue(metric.name);
|
907
|
-
}
|
908
|
-
saveMetric() {
|
909
|
-
if (this.nameControl.invalid) {
|
910
|
-
return;
|
911
|
-
}
|
912
|
-
if (this.editingMetric) {
|
913
|
-
this.editingMetric.name = this.nameControl.value?.trim();
|
914
|
-
}
|
915
|
-
this.editingMetric = undefined;
|
916
|
-
}
|
917
|
-
cancelMetric() {
|
918
|
-
this.editingMetric = undefined;
|
919
|
-
}
|
920
|
-
resetToDefault() {
|
921
|
-
this.collectAvailableMetrics(true);
|
922
|
-
}
|
923
|
-
onFocus() {
|
924
|
-
this.isFocused = true;
|
925
|
-
}
|
926
|
-
onBlur() {
|
927
|
-
this.isFocused = false;
|
928
|
-
}
|
929
|
-
clearSearch(event) {
|
930
|
-
event.stopPropagation();
|
931
|
-
this.searchControl.setValue('');
|
932
|
-
}
|
933
|
-
collectMetricKeys(lineItems) {
|
934
|
-
const keys = [];
|
935
|
-
lineItems.forEach(lineItem => {
|
936
|
-
keys.push(...Object.keys(lineItem.totalMetrics || {}));
|
937
|
-
keys.push(...this.collectMetricKeys(lineItem.lineItems));
|
615
|
+
return route.firstChild ? this.getNthChildRoute(route.firstChild, index - 1) : route;
|
616
|
+
};
|
617
|
+
this.getLastChildRouteSnapshot = (route) => {
|
618
|
+
return route.firstChild ? this.getLastChildRouteSnapshot(route.firstChild) : route;
|
619
|
+
};
|
620
|
+
this.watchLastChildRoute$ = (route) => {
|
621
|
+
return this.routeChange$.pipe(map(() => this.getLastChildRouteSnapshot(route.snapshot)));
|
622
|
+
};
|
623
|
+
this.getLastChildParams = (route) => {
|
624
|
+
return route.firstChild ? this.getLastChildParams(route.firstChild) : route.params;
|
625
|
+
};
|
626
|
+
this.watchLastChildParams$ = (route) => {
|
627
|
+
return this.routeChange$.pipe(map(() => this.getLastChildParams(route.snapshot)));
|
628
|
+
};
|
629
|
+
this.getFlowSubpath$ = () => {
|
630
|
+
return this.route$.pipe(map(route => {
|
631
|
+
const url = route.url.join('/');
|
632
|
+
const flowRootUrl = this.getFlowRootPath(route);
|
633
|
+
return url.replace(flowRootUrl, '');
|
634
|
+
}));
|
635
|
+
};
|
636
|
+
this.routeChange$ = this.router.events.pipe(filter(e => e instanceof NavigationEnd), shareReplay());
|
637
|
+
this.lastChildParams$ = this.watchLastChildParams$(this.route).pipe(startWith(this.getLastChildParams(this.route.snapshot)), shareReplay());
|
638
|
+
this.lastChildRoute$ = this.watchLastChildRoute$(this.route).pipe(startWith(this.getLastChildRouteSnapshot(this.route.snapshot)), shareReplay());
|
639
|
+
this.loading$ = this.router.events.pipe(filter(e => e instanceof NavigationStart ||
|
640
|
+
e instanceof NavigationCancel ||
|
641
|
+
e instanceof NavigationEnd ||
|
642
|
+
e instanceof NavigationError), map(e => e instanceof NavigationStart), startWith(false), distinctUntilChanged());
|
643
|
+
this.routeChange$.subscribe(() => {
|
644
|
+
this.urlHistory.push(this.router.url);
|
645
|
+
// Close Guided Selling when user navigates to another flow page
|
646
|
+
this.integrationState.dispatch(FlowAction.CloseGuidedSelling({ keepState: true }));
|
938
647
|
});
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
collectAvailableMetrics(resetToDefault = false) {
|
947
|
-
const storedMetrics = JSON.parse(localStorage.getItem(METRICS_STORAGE_KEY) || '[]');
|
948
|
-
const metricKeys = this.metricKeys.slice();
|
949
|
-
const isDefaultConfiguration = !storedMetrics.length || resetToDefault;
|
950
|
-
this.metrics = (isDefaultConfiguration ? this.activeMetricRuleNames : storedMetrics).reduce((result, metric) => {
|
951
|
-
const metricKeyIndex = metricKeys.findIndex(key => key === metric.key);
|
952
|
-
if (metricKeyIndex >= 0) {
|
953
|
-
metricKeys.splice(metricKeyIndex, 1);
|
648
|
+
}
|
649
|
+
getFlowRootRoute(route) {
|
650
|
+
const path = [...route.pathFromRoot];
|
651
|
+
while (path.length) {
|
652
|
+
const parent = path.pop();
|
653
|
+
if (!parent) {
|
654
|
+
break;
|
954
655
|
}
|
955
|
-
if (
|
956
|
-
|
656
|
+
if (parent.routeConfig?.id === VELOCE_FLOW_ROOT_ROUTE) {
|
657
|
+
return parent;
|
957
658
|
}
|
958
|
-
return [...result, metric];
|
959
|
-
}, []);
|
960
|
-
this.metrics = [
|
961
|
-
...this.metrics,
|
962
|
-
...metricKeys.map(metricKey => {
|
963
|
-
return { key: metricKey, name: this.getMetricName(metricKey), visible: false };
|
964
|
-
}),
|
965
|
-
];
|
966
|
-
// sort the metrics by the order of default metric rule names from the shopping cart settings
|
967
|
-
this.metrics = this.sortMetrics();
|
968
|
-
this.metrics = cloneDeep(this.metrics);
|
969
|
-
this.searchControl.setValue('');
|
970
|
-
if (!resetToDefault) {
|
971
|
-
this.lastSavedMetrics = cloneDeep(this.metrics);
|
972
|
-
this.setMetrics();
|
973
659
|
}
|
974
|
-
|
975
|
-
}
|
976
|
-
getMetricName(key) {
|
977
|
-
return (this.activeMetricRules.find(metricRule => metricRule.metrics.find(metric => metric.totalName === key))?.title ||
|
978
|
-
key);
|
979
|
-
}
|
980
|
-
toNumber(value) {
|
981
|
-
return +(value || 0);
|
982
|
-
}
|
983
|
-
getActiveMetricRuleNames() {
|
984
|
-
return this.activeMetricRules.reduce((result, metricRule) => {
|
985
|
-
const name = metricRule.title;
|
986
|
-
const visible = this.defaultMetricRuleNames.includes(name);
|
987
|
-
metricRule.metrics.forEach(metric => {
|
988
|
-
result.push({
|
989
|
-
key: metric.totalName || metric.name,
|
990
|
-
name,
|
991
|
-
visible,
|
992
|
-
});
|
993
|
-
});
|
994
|
-
return result;
|
995
|
-
}, []);
|
996
|
-
}
|
997
|
-
/**
|
998
|
-
* Sorts the Metrics array by the order of the default metric rule names from the shopping cart settings.
|
999
|
-
* If a metric is included in the list of default metrics, it raises the metric to the top of the metrics array.
|
1000
|
-
*/
|
1001
|
-
sortMetrics() {
|
1002
|
-
return this.metrics.slice().sort((a, b) => {
|
1003
|
-
const indexA = this.defaultMetricRuleNames.indexOf(a.name);
|
1004
|
-
const indexB = this.defaultMetricRuleNames.indexOf(b.name);
|
1005
|
-
if (indexA === -1 && indexB === -1) {
|
1006
|
-
return 0;
|
1007
|
-
}
|
1008
|
-
if (indexA === -1) {
|
1009
|
-
return 1;
|
1010
|
-
}
|
1011
|
-
if (indexB === -1) {
|
1012
|
-
return -1;
|
1013
|
-
}
|
1014
|
-
return indexA - indexB;
|
1015
|
-
});
|
1016
|
-
}
|
1017
|
-
}
|
1018
|
-
MetricsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: MetricsComponent, deps: [{ token: i1$1.ContextService }, { token: i1$1.QuoteDraftService }, { token: i0.ChangeDetectorRef }, { token: i1$1.MetricsCalculationService }, { token: i1$1.FlowConfigurationService }, { token: i2.ShoppingCartSettingsApiService }, { token: i1$1.RuntimeSettingsService }], target: i0.ɵɵFactoryTarget.Component });
|
1019
|
-
MetricsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: MetricsComponent, selector: "vl-metrics", viewQueries: [{ propertyName: "overlayPanel", first: true, predicate: OverlayPanel, descendants: true }], ngImport: i0, template: "<div class=\"header-metrics\" (click)=\"toggleOverlay($event, overlayPanel, metricsTarget)\">\n <div class=\"metrics\">\n <div *ngFor=\"let metric of visibleSelectedMetrics\" class=\"metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ getMetricValue(metric.key) | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ getMetricValue(metric.key) | vlPrice }}\n </span>\n </div>\n\n <ng-container *ngIf=\"!visibleSelectedMetrics.length\">\n <div *ngFor=\"let metric of emptyStateMetrics\" class=\"metric empty-state-metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ metric.value | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.value | vlPrice }}\n </span>\n </div>\n </ng-container>\n </div>\n\n <div #metricsTarget class=\"metrics-overlay-target\" [class.expanded]=\"overlayPanel?.overlayVisible\">\n <i class=\"vl-icon vl-arrow-down\"></i>\n </div>\n</div>\n\n<p-overlayPanel\n styleClass=\"catalog-overlay metrics-overlay-container right no-padding\"\n showTransitionOptions=\"0ms\"\n hideTransitionOptions=\"0ms\"\n>\n <ng-template pTemplate>\n <div class=\"overlay-metrics\">\n <div *ngFor=\"let metric of restSelectedMetrics\" class=\"metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ getMetricValue(metric.key) | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ getMetricValue(metric.key) | vlPrice }}\n </span>\n </div>\n </div>\n <button class=\"config\" (click)=\"openSidebar()\">\n Metrics Config\n <i class=\"vl-icon vl-arrow-right\"></i>\n </button>\n </ng-template>\n</p-overlayPanel>\n\n<p-sidebar\n [visible]=\"sidebarVisible\"\n (visibleChange)=\"closeSidebar()\"\n position=\"right\"\n [baseZIndex]=\"1000\"\n [style]=\"{ width: '300px' }\"\n>\n <div class=\"container\">\n <div class=\"header\">\n Quote Metrics Config\n <i class=\"vl-icon vl-cross\" (click)=\"closeSidebar()\"></i>\n </div>\n\n <label class=\"search-container\" [class.active]=\"searchControl.value || isFocused\">\n <i class=\"vl-icon vl-search\"></i>\n <input\n data-test-id=\"search\"\n [formControl]=\"searchControl\"\n pInputText\n placeholder=\"Search for metric\u2026\"\n class=\"w-full search-input\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n />\n <i *ngIf=\"searchControl.value\" class=\"vl-icon vl-cross\" (click)=\"clearSearch($event)\"></i>\n </label>\n\n <div class=\"content\">\n <div class=\"sidebar-metrics\" cdkDropList (cdkDropListDropped)=\"changeMetricOrder($event)\">\n <div\n *ngFor=\"let metric of filteredMetrics\"\n class=\"sidebar-metric\"\n [class.edit]=\"metric.key === editingMetric?.key\"\n cdkDrag\n [cdkDragDisabled]=\"!!searchControl.value\"\n >\n <div class=\"drag-icon\">\n <i class=\"vl-icon vl-drag\" cdkDragHandle></i>\n </div>\n <ng-container\n [ngTemplateOutlet]=\"metricTemplate\"\n [ngTemplateOutletContext]=\"{ metric: metric }\"\n ></ng-container>\n </div>\n </div>\n\n <div class=\"empty-state\" *ngIf=\"!filteredMetrics.length\">There are no items matching your search criteria</div>\n </div>\n <div class=\"footer\">\n <p-button\n label=\"Reset to Default\"\n styleClass=\"p-button-outlined p-button-sm\"\n (onClick)=\"resetToDefault()\"\n ></p-button>\n <p-button label=\"Save\" styleClass=\"p-button p-button-filled p-button-sm\" (onClick)=\"save()\"></p-button>\n </div>\n </div>\n</p-sidebar>\n\n<ng-template #metricTemplate let-metric=\"metric\">\n <div *ngIf=\"editingMetric?.key !== metric.key\" class=\"preview-state\">\n <p-checkbox\n [ngModel]=\"metric.visible\"\n (ngModelChange)=\"metric.visible = !metric.visible\"\n [binary]=\"true\"\n checkboxIcon=\"vl-icon vl-check\"\n ></p-checkbox>\n <div class=\"title\">{{ metric.name }}</div>\n </div>\n\n <div *ngIf=\"editingMetric?.key === metric.key\" class=\"edit-state\">\n <input data-test-id=\"name\" [formControl]=\"nameControl\" pInputText placeholder=\"Metric name\" class=\"w-full\" />\n <vl-error-tooltip [tooltip]=\"nameControl | error : 'name'\" [visible]=\"!!nameControl.errors\"></vl-error-tooltip>\n </div>\n <div class=\"actions\">\n <div *ngIf=\"editingMetric?.key !== metric.key\" (click)=\"editMetric(metric)\" class=\"action edit\">\n <i class=\"vl-icon vl-edit\"></i>\n </div>\n <div *ngIf=\"editingMetric?.key === metric.key\" (click)=\"cancelMetric()\" class=\"action cancel\">\n <i class=\"vl-icon vl-cross\"></i>\n </div>\n <div *ngIf=\"editingMetric?.key === metric.key\" (click)=\"saveMetric()\" class=\"action save\">\n <i class=\"vl-icon vl-check\"></i>\n </div>\n </div>\n</ng-template>\n", styles: [":host .header-metrics{display:flex;gap:8px;cursor:pointer}:host .header-metrics *{font-family:var(--cg-font-family)}:host .header-metrics .metrics{min-width:130px;max-width:260px;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:0 8px;height:32px;align-items:flex-start}:host .header-metrics .metric{flex:1;flex-basis:114px;max-width:122px;display:flex;justify-content:space-between;align-items:flex-end;font-size:12px;line-height:16px;letter-spacing:.3px}:host .header-metrics .metric .name{color:#ffffffb3;max-width:55px;flex-shrink:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}:host .header-metrics .metric .value{overflow:hidden;text-overflow:ellipsis}:host .header-metrics .metric.empty-state-metric{filter:blur(1.5px)}:host .metrics-overlay-target{display:flex;align-items:center;width:16px;border-radius:4px;background:rgba(255,255,255,.1)}:host .metrics-overlay-target .vl-icon{color:var(--cg-white)}:host .metrics-overlay-target.expanded .vl-icon:before{transform:rotate(180deg)}:host ::ng-deep .p-sidebar-header{display:none}:host ::ng-deep .p-sidebar-content{padding:0;height:100%}::ng-deep .p-overlaypanel.metrics-overlay-container{max-width:300px;min-width:152px}::ng-deep .p-overlaypanel.metrics-overlay-container *{font-family:var(--cg-font-family)}::ng-deep .p-overlaypanel.metrics-overlay-container .p-overlaypanel-content{padding:0;margin-top:0}::ng-deep .p-overlaypanel.metrics-overlay-container .overlay-metrics{padding:16px;max-height:112px;overflow:auto}::ng-deep .p-overlaypanel.metrics-overlay-container .metric{display:flex;font-size:12px;line-height:16px;letter-spacing:.3px;align-items:flex-end}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .name{color:var(--cg-text-color-secondary);max-width:50%;flex-shrink:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .value{overflow:hidden;text-overflow:ellipsis}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .filler:before{background-image:radial-gradient(circle at 1px 1px,var(--cg-text-color-secondary) 1px,transparent 0)}::ng-deep .p-overlaypanel.metrics-overlay-container .config{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 8px 8px 16px;cursor:pointer;background:var(--cg-white);outline:none;border:none;border-top:1px solid var(--cg-border-color);width:100%;height:32px;font-size:12px;line-height:16px;letter-spacing:.3px}::ng-deep .p-overlaypanel.metrics-overlay-container .config .vl-icon-chevron-down{color:var(--cg-primary-color)}.filler{flex:1;margin:0 4px 7px;min-width:7px}.filler:before{display:block;width:100%;height:2px;content:\"\";background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,.7) 1px,transparent 0);background-size:5px 2px}.container{display:flex;flex-direction:column;height:100%}.container .header{box-sizing:content-box;padding:24px 24px 0;margin-bottom:16px;height:32px;flex:0 0 auto;display:flex;align-items:center;justify-content:space-between;font-family:var(--vl-font-family);font-size:20px;font-style:normal;font-weight:500;line-height:24px;letter-spacing:-.6px;color:var(--vl-accent-color)}.container .header i{cursor:pointer}.container .search-container{cursor:pointer;display:flex;height:32px;margin:0 24px 8px;padding:8px;background:var(--cg-bg-color);border:1px solid transparent;border-radius:32px}.container .search-container:hover,.container .search-container.active{background:var(--cg-white);border-color:var(--cg-primary-color)}.container .search-container .vl-icon{flex:0 0 auto}.container .search-container .search-input{width:100%;height:16px;padding:0 8px;border:none;font-size:12px;line-height:16px;letter-spacing:.3px;color:var(--cg-black-color);background:none}.container .search-container .search-input::placeholder{font-weight:400;font-size:12px;line-height:16px;letter-spacing:.3px;color:var(--cg-text-color-secondary)}.container .content{padding:0 24px;display:flex;flex-direction:column;flex:1;overflow:hidden}.container .footer{flex:0 0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 24px;border-top:1px solid var(--cg-border-color)}.container .footer p-button{flex:1}.container .footer p-button ::ng-deep button{border-radius:24px;width:100%;font-size:12px;font-family:var(--cg-font-family);font-weight:300;line-height:16px;letter-spacing:.3px;white-space:nowrap}.container .footer p-button ::ng-deep .p-button-outlined{background-color:var(--cg-white);color:var(--cg-primary-color)}.container .footer p-button ::ng-deep .p-button-outlined:hover{background-color:var(--cg-primary-color);color:var(--cg-white)}.container .footer p-button ::ng-deep .p-button-filled{background-color:var(--cg-primary-color);color:var(--cg-white);border:1px solid var(--cg-primary-color)}.container .footer p-button ::ng-deep .p-button-filled:hover{background-color:var(--cg-primary-color-hover);border-color:var(--cg-primary-color-hover)}.container app-empty-state::ng-deep{margin-bottom:12px}.container app-empty-state::ng-deep .container{width:100%;padding-bottom:0}.sidebar-metrics{width:100%;overflow:auto;padding:1px 0}.empty-state{display:flex;align-items:center;justify-content:center;padding:16px;color:var(--cg-text-color-secondary);font-size:12px;font-weight:300;line-height:16px;letter-spacing:.3px}.sidebar-metric{display:flex;align-items:center;height:32px;position:relative;border-bottom:1px solid var(--cg-border-color)}.sidebar-metric.edit{border-bottom-color:var(--cg-primary-color)}.sidebar-metric.edit .drag-icon{display:none}.sidebar-metric:hover:not(.edit){background:var(--cg-bg-color)}.sidebar-metric:hover:not(.edit) .edit{visibility:visible}.sidebar-metric p-checkbox{margin-right:8px}.sidebar-metric .drag-icon{width:16px;height:16px;margin-right:8px}.sidebar-metric .drag-icon i{cursor:pointer;color:var(--cg-text-color-disabled)}.sidebar-metric.cdk-drag-disabled .drag-icon i{cursor:default}.sidebar-metric .title{font-weight:400;font-size:12px;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:text;user-select:text;cursor:text;color:var(--cg-black)}.sidebar-metric .preview-state,.sidebar-metric .edit-state{position:relative;margin-right:8px;min-width:0;display:flex;align-items:center;flex:1}.sidebar-metric .preview-state input,.sidebar-metric .edit-state input{padding-left:48px;border:none;background:transparent;width:100%}.sidebar-metric .actions{display:flex;gap:4px}.sidebar-metric .action{cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border:1px solid transparent;border-radius:4px}.sidebar-metric .action:hover{background:var(--cg-primary-color);color:var(--cg-white)}.sidebar-metric .edit{visibility:hidden}.sidebar-metric .save{border-color:var(--cg-primary-color);border-radius:4px}.sidebar-metric ::ng-deep .p-checkbox{width:16px;height:16px}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box{width:16px;height:16px;border-width:1px;border-color:var(--cg-border-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box:hover{border-color:var(--cg-primary-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box.p-highlight{background:var(--cg-primary-color);border-color:var(--cg-primary-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box .p-checkbox-icon{flex:0 0 auto;width:12px;height:12px}.cdk-drag-preview{z-index:10001!important;box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}::ng-deep .metric-tooltip .p-tooltip-text{font-size:11px;line-height:14px;letter-spacing:.3px;background:var(--vl-text-color-accent)}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i5$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i5$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5$2.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i5$2.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: i5$2.CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { kind: "component", type: i3.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "component", type: i7.OverlayPanel, selector: "p-overlayPanel", inputs: ["dismissable", "showCloseIcon", "style", "styleClass", "appendTo", "autoZIndex", "ariaCloseLabel", "baseZIndex", "focusOnShow", "showTransitionOptions", "hideTransitionOptions"], outputs: ["onShow", "onHide"] }, { kind: "directive", type: i8.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i9$1.Sidebar, selector: "p-sidebar", inputs: ["appendTo", "blockScroll", "style", "styleClass", "ariaCloseLabel", "autoZIndex", "baseZIndex", "modal", "dismissible", "showCloseIcon", "closeOnEscape", "transitionOptions", "visible", "position", "fullScreen"], outputs: ["onShow", "onHide", "visibleChange"] }, { kind: "directive", type: i10.InputText, selector: "[pInputText]" }, { kind: "component", type: i11.Checkbox, selector: "p-checkbox", inputs: ["value", "name", "disabled", "binary", "label", "ariaLabelledBy", "ariaLabel", "tabindex", "inputId", "style", "styleClass", "labelStyleClass", "formControl", "checkboxIcon", "readonly", "required", "trueValue", "falseValue"], outputs: ["onChange"] }, { kind: "component", type: i3$1.ErrorTooltipComponent, selector: "vl-error-tooltip", inputs: ["tooltip", "visible", "top"] }, { kind: "directive", type: i3$1.AppHiddenTextTooltipDirective, selector: "[vlHiddenTextTooltip]", inputs: ["vlHiddenTextTooltip"] }, { kind: "pipe", type: i3$1.ErrorPipe, name: "error" }, { kind: "pipe", type: i1$1.PricePipe, name: "vlPrice" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: MetricsComponent, decorators: [{
|
1021
|
-
type: Component,
|
1022
|
-
args: [{ selector: 'vl-metrics', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"header-metrics\" (click)=\"toggleOverlay($event, overlayPanel, metricsTarget)\">\n <div class=\"metrics\">\n <div *ngFor=\"let metric of visibleSelectedMetrics\" class=\"metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ getMetricValue(metric.key) | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ getMetricValue(metric.key) | vlPrice }}\n </span>\n </div>\n\n <ng-container *ngIf=\"!visibleSelectedMetrics.length\">\n <div *ngFor=\"let metric of emptyStateMetrics\" class=\"metric empty-state-metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ metric.value | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.value | vlPrice }}\n </span>\n </div>\n </ng-container>\n </div>\n\n <div #metricsTarget class=\"metrics-overlay-target\" [class.expanded]=\"overlayPanel?.overlayVisible\">\n <i class=\"vl-icon vl-arrow-down\"></i>\n </div>\n</div>\n\n<p-overlayPanel\n styleClass=\"catalog-overlay metrics-overlay-container right no-padding\"\n showTransitionOptions=\"0ms\"\n hideTransitionOptions=\"0ms\"\n>\n <ng-template pTemplate>\n <div class=\"overlay-metrics\">\n <div *ngFor=\"let metric of restSelectedMetrics\" class=\"metric\">\n <span\n class=\"name\"\n [vlHiddenTextTooltip]=\"metric.name\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ metric.name }}\n </span>\n <span class=\"filler\"></span>\n <span\n class=\"value\"\n vlHiddenTextTooltip=\"{{ getMetricValue(metric.key) | vlPrice }}\"\n tooltipStyleClass=\"metric-tooltip\"\n tooltipPosition=\"bottom\"\n >\n {{ getMetricValue(metric.key) | vlPrice }}\n </span>\n </div>\n </div>\n <button class=\"config\" (click)=\"openSidebar()\">\n Metrics Config\n <i class=\"vl-icon vl-arrow-right\"></i>\n </button>\n </ng-template>\n</p-overlayPanel>\n\n<p-sidebar\n [visible]=\"sidebarVisible\"\n (visibleChange)=\"closeSidebar()\"\n position=\"right\"\n [baseZIndex]=\"1000\"\n [style]=\"{ width: '300px' }\"\n>\n <div class=\"container\">\n <div class=\"header\">\n Quote Metrics Config\n <i class=\"vl-icon vl-cross\" (click)=\"closeSidebar()\"></i>\n </div>\n\n <label class=\"search-container\" [class.active]=\"searchControl.value || isFocused\">\n <i class=\"vl-icon vl-search\"></i>\n <input\n data-test-id=\"search\"\n [formControl]=\"searchControl\"\n pInputText\n placeholder=\"Search for metric\u2026\"\n class=\"w-full search-input\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n />\n <i *ngIf=\"searchControl.value\" class=\"vl-icon vl-cross\" (click)=\"clearSearch($event)\"></i>\n </label>\n\n <div class=\"content\">\n <div class=\"sidebar-metrics\" cdkDropList (cdkDropListDropped)=\"changeMetricOrder($event)\">\n <div\n *ngFor=\"let metric of filteredMetrics\"\n class=\"sidebar-metric\"\n [class.edit]=\"metric.key === editingMetric?.key\"\n cdkDrag\n [cdkDragDisabled]=\"!!searchControl.value\"\n >\n <div class=\"drag-icon\">\n <i class=\"vl-icon vl-drag\" cdkDragHandle></i>\n </div>\n <ng-container\n [ngTemplateOutlet]=\"metricTemplate\"\n [ngTemplateOutletContext]=\"{ metric: metric }\"\n ></ng-container>\n </div>\n </div>\n\n <div class=\"empty-state\" *ngIf=\"!filteredMetrics.length\">There are no items matching your search criteria</div>\n </div>\n <div class=\"footer\">\n <p-button\n label=\"Reset to Default\"\n styleClass=\"p-button-outlined p-button-sm\"\n (onClick)=\"resetToDefault()\"\n ></p-button>\n <p-button label=\"Save\" styleClass=\"p-button p-button-filled p-button-sm\" (onClick)=\"save()\"></p-button>\n </div>\n </div>\n</p-sidebar>\n\n<ng-template #metricTemplate let-metric=\"metric\">\n <div *ngIf=\"editingMetric?.key !== metric.key\" class=\"preview-state\">\n <p-checkbox\n [ngModel]=\"metric.visible\"\n (ngModelChange)=\"metric.visible = !metric.visible\"\n [binary]=\"true\"\n checkboxIcon=\"vl-icon vl-check\"\n ></p-checkbox>\n <div class=\"title\">{{ metric.name }}</div>\n </div>\n\n <div *ngIf=\"editingMetric?.key === metric.key\" class=\"edit-state\">\n <input data-test-id=\"name\" [formControl]=\"nameControl\" pInputText placeholder=\"Metric name\" class=\"w-full\" />\n <vl-error-tooltip [tooltip]=\"nameControl | error : 'name'\" [visible]=\"!!nameControl.errors\"></vl-error-tooltip>\n </div>\n <div class=\"actions\">\n <div *ngIf=\"editingMetric?.key !== metric.key\" (click)=\"editMetric(metric)\" class=\"action edit\">\n <i class=\"vl-icon vl-edit\"></i>\n </div>\n <div *ngIf=\"editingMetric?.key === metric.key\" (click)=\"cancelMetric()\" class=\"action cancel\">\n <i class=\"vl-icon vl-cross\"></i>\n </div>\n <div *ngIf=\"editingMetric?.key === metric.key\" (click)=\"saveMetric()\" class=\"action save\">\n <i class=\"vl-icon vl-check\"></i>\n </div>\n </div>\n</ng-template>\n", styles: [":host .header-metrics{display:flex;gap:8px;cursor:pointer}:host .header-metrics *{font-family:var(--cg-font-family)}:host .header-metrics .metrics{min-width:130px;max-width:260px;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:0 8px;height:32px;align-items:flex-start}:host .header-metrics .metric{flex:1;flex-basis:114px;max-width:122px;display:flex;justify-content:space-between;align-items:flex-end;font-size:12px;line-height:16px;letter-spacing:.3px}:host .header-metrics .metric .name{color:#ffffffb3;max-width:55px;flex-shrink:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}:host .header-metrics .metric .value{overflow:hidden;text-overflow:ellipsis}:host .header-metrics .metric.empty-state-metric{filter:blur(1.5px)}:host .metrics-overlay-target{display:flex;align-items:center;width:16px;border-radius:4px;background:rgba(255,255,255,.1)}:host .metrics-overlay-target .vl-icon{color:var(--cg-white)}:host .metrics-overlay-target.expanded .vl-icon:before{transform:rotate(180deg)}:host ::ng-deep .p-sidebar-header{display:none}:host ::ng-deep .p-sidebar-content{padding:0;height:100%}::ng-deep .p-overlaypanel.metrics-overlay-container{max-width:300px;min-width:152px}::ng-deep .p-overlaypanel.metrics-overlay-container *{font-family:var(--cg-font-family)}::ng-deep .p-overlaypanel.metrics-overlay-container .p-overlaypanel-content{padding:0;margin-top:0}::ng-deep .p-overlaypanel.metrics-overlay-container .overlay-metrics{padding:16px;max-height:112px;overflow:auto}::ng-deep .p-overlaypanel.metrics-overlay-container .metric{display:flex;font-size:12px;line-height:16px;letter-spacing:.3px;align-items:flex-end}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .name{color:var(--cg-text-color-secondary);max-width:50%;flex-shrink:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .value{overflow:hidden;text-overflow:ellipsis}::ng-deep .p-overlaypanel.metrics-overlay-container .metric .filler:before{background-image:radial-gradient(circle at 1px 1px,var(--cg-text-color-secondary) 1px,transparent 0)}::ng-deep .p-overlaypanel.metrics-overlay-container .config{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 8px 8px 16px;cursor:pointer;background:var(--cg-white);outline:none;border:none;border-top:1px solid var(--cg-border-color);width:100%;height:32px;font-size:12px;line-height:16px;letter-spacing:.3px}::ng-deep .p-overlaypanel.metrics-overlay-container .config .vl-icon-chevron-down{color:var(--cg-primary-color)}.filler{flex:1;margin:0 4px 7px;min-width:7px}.filler:before{display:block;width:100%;height:2px;content:\"\";background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,.7) 1px,transparent 0);background-size:5px 2px}.container{display:flex;flex-direction:column;height:100%}.container .header{box-sizing:content-box;padding:24px 24px 0;margin-bottom:16px;height:32px;flex:0 0 auto;display:flex;align-items:center;justify-content:space-between;font-family:var(--vl-font-family);font-size:20px;font-style:normal;font-weight:500;line-height:24px;letter-spacing:-.6px;color:var(--vl-accent-color)}.container .header i{cursor:pointer}.container .search-container{cursor:pointer;display:flex;height:32px;margin:0 24px 8px;padding:8px;background:var(--cg-bg-color);border:1px solid transparent;border-radius:32px}.container .search-container:hover,.container .search-container.active{background:var(--cg-white);border-color:var(--cg-primary-color)}.container .search-container .vl-icon{flex:0 0 auto}.container .search-container .search-input{width:100%;height:16px;padding:0 8px;border:none;font-size:12px;line-height:16px;letter-spacing:.3px;color:var(--cg-black-color);background:none}.container .search-container .search-input::placeholder{font-weight:400;font-size:12px;line-height:16px;letter-spacing:.3px;color:var(--cg-text-color-secondary)}.container .content{padding:0 24px;display:flex;flex-direction:column;flex:1;overflow:hidden}.container .footer{flex:0 0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 24px;border-top:1px solid var(--cg-border-color)}.container .footer p-button{flex:1}.container .footer p-button ::ng-deep button{border-radius:24px;width:100%;font-size:12px;font-family:var(--cg-font-family);font-weight:300;line-height:16px;letter-spacing:.3px;white-space:nowrap}.container .footer p-button ::ng-deep .p-button-outlined{background-color:var(--cg-white);color:var(--cg-primary-color)}.container .footer p-button ::ng-deep .p-button-outlined:hover{background-color:var(--cg-primary-color);color:var(--cg-white)}.container .footer p-button ::ng-deep .p-button-filled{background-color:var(--cg-primary-color);color:var(--cg-white);border:1px solid var(--cg-primary-color)}.container .footer p-button ::ng-deep .p-button-filled:hover{background-color:var(--cg-primary-color-hover);border-color:var(--cg-primary-color-hover)}.container app-empty-state::ng-deep{margin-bottom:12px}.container app-empty-state::ng-deep .container{width:100%;padding-bottom:0}.sidebar-metrics{width:100%;overflow:auto;padding:1px 0}.empty-state{display:flex;align-items:center;justify-content:center;padding:16px;color:var(--cg-text-color-secondary);font-size:12px;font-weight:300;line-height:16px;letter-spacing:.3px}.sidebar-metric{display:flex;align-items:center;height:32px;position:relative;border-bottom:1px solid var(--cg-border-color)}.sidebar-metric.edit{border-bottom-color:var(--cg-primary-color)}.sidebar-metric.edit .drag-icon{display:none}.sidebar-metric:hover:not(.edit){background:var(--cg-bg-color)}.sidebar-metric:hover:not(.edit) .edit{visibility:visible}.sidebar-metric p-checkbox{margin-right:8px}.sidebar-metric .drag-icon{width:16px;height:16px;margin-right:8px}.sidebar-metric .drag-icon i{cursor:pointer;color:var(--cg-text-color-disabled)}.sidebar-metric.cdk-drag-disabled .drag-icon i{cursor:default}.sidebar-metric .title{font-weight:400;font-size:12px;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:text;user-select:text;cursor:text;color:var(--cg-black)}.sidebar-metric .preview-state,.sidebar-metric .edit-state{position:relative;margin-right:8px;min-width:0;display:flex;align-items:center;flex:1}.sidebar-metric .preview-state input,.sidebar-metric .edit-state input{padding-left:48px;border:none;background:transparent;width:100%}.sidebar-metric .actions{display:flex;gap:4px}.sidebar-metric .action{cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border:1px solid transparent;border-radius:4px}.sidebar-metric .action:hover{background:var(--cg-primary-color);color:var(--cg-white)}.sidebar-metric .edit{visibility:hidden}.sidebar-metric .save{border-color:var(--cg-primary-color);border-radius:4px}.sidebar-metric ::ng-deep .p-checkbox{width:16px;height:16px}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box{width:16px;height:16px;border-width:1px;border-color:var(--cg-border-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box:hover{border-color:var(--cg-primary-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box.p-highlight{background:var(--cg-primary-color);border-color:var(--cg-primary-color)}.sidebar-metric ::ng-deep .p-checkbox .p-checkbox-box .p-checkbox-icon{flex:0 0 auto;width:12px;height:12px}.cdk-drag-preview{z-index:10001!important;box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}::ng-deep .metric-tooltip .p-tooltip-text{font-size:11px;line-height:14px;letter-spacing:.3px;background:var(--vl-text-color-accent)}\n"] }]
|
1023
|
-
}], ctorParameters: function () { return [{ type: i1$1.ContextService }, { type: i1$1.QuoteDraftService }, { type: i0.ChangeDetectorRef }, { type: i1$1.MetricsCalculationService }, { type: i1$1.FlowConfigurationService }, { type: i2.ShoppingCartSettingsApiService }, { type: i1$1.RuntimeSettingsService }]; }, propDecorators: { overlayPanel: [{
|
1024
|
-
type: ViewChild,
|
1025
|
-
args: [OverlayPanel]
|
1026
|
-
}] } });
|
1027
|
-
|
1028
|
-
class FlowHeaderComponent {
|
1029
|
-
constructor(contextService, quoteDraftService, quoteApiService, sfApiService, flowConfiguration, routerService, dialogService, integrationState) {
|
1030
|
-
this.contextService = contextService;
|
1031
|
-
this.quoteDraftService = quoteDraftService;
|
1032
|
-
this.quoteApiService = quoteApiService;
|
1033
|
-
this.sfApiService = sfApiService;
|
1034
|
-
this.flowConfiguration = flowConfiguration;
|
1035
|
-
this.routerService = routerService;
|
1036
|
-
this.dialogService = dialogService;
|
1037
|
-
this.integrationState = integrationState;
|
1038
|
-
this.isSaveInProgress$ = new BehaviorSubject(false);
|
1039
|
-
this.isSubmitInProgress$ = new BehaviorSubject(false);
|
1040
|
-
this.dateFormat = 'MM.dd.yyyy';
|
1041
|
-
this.assetPriceLists$ = new BehaviorSubject([]);
|
1042
|
-
this.mode$ = new BehaviorSubject(ConfigurationContextMode.TEST);
|
1043
|
-
this.destroyed$ = new Subject();
|
1044
|
-
this.contextProperties$ = this.contextService.resolve$().pipe(map(ctx => ctx.properties));
|
1045
|
-
this.objectName$ = this.mode$.pipe(map(mode => mode?.toLocaleLowerCase() ?? ''));
|
1046
|
-
this.activePriceList$ = this.quoteDraftService.activePriceList$;
|
1047
|
-
this.isReadonlyMode$ = this.quoteDraftService.hasProducts$.pipe(map(() => this.isReadonlyMode()));
|
1048
|
-
this.status$ = this.contextService.resolve$().pipe(map(context => context.properties.Status ?? ''));
|
1049
|
-
this.isEditMode$ = this.quoteDraftService.isEditMode$();
|
1050
|
-
this.assetsCount$ = this.getAssets$().pipe(map(lineItems => lineItems.length));
|
1051
|
-
this.products$ = this.getDraftItems$().pipe(map(lineItems => this.generateProducts(lineItems)));
|
1052
|
-
this.isConfigurationRoute$ = this.routerService.isConfigurationRoute$();
|
1053
|
-
this.isCartRoute$ = this.routerService.isCartRoute$();
|
1054
|
-
this.isCatalogRoute$ = this.routerService.isCatalogRoute$();
|
1055
|
-
this.isAssetsRoute$ = this.routerService.isAssetsRoute$();
|
1056
|
-
this.objectDetails$ = this.getObjectDetails$();
|
1057
|
-
}
|
1058
|
-
ngOnInit() {
|
1059
|
-
this.contextService
|
1060
|
-
.resolve$()
|
1061
|
-
.pipe(takeUntil(this.destroyed$))
|
1062
|
-
.subscribe(ctx => this.mode$.next(ctx.mode));
|
1063
|
-
// update assetPriceLists on quoteDraft change in ACCOUNT mode
|
1064
|
-
this.quoteDraftService.quoteDraft$
|
1065
|
-
.pipe(takeUntil(this.destroyed$), filter(() => this.isAccountMode))
|
1066
|
-
.subscribe(() => this.assetPriceLists$.next(this.quoteDraftService.assetPriceLists));
|
1067
|
-
}
|
1068
|
-
ngOnDestroy() {
|
1069
|
-
this.destroyed$.next();
|
1070
|
-
this.destroyed$.complete();
|
1071
|
-
}
|
1072
|
-
get isAccountMode() {
|
1073
|
-
return this.mode$.value === ConfigurationContextMode.ACCOUNT;
|
1074
|
-
}
|
1075
|
-
get isQuoteMode() {
|
1076
|
-
return this.mode$.value === ConfigurationContextMode.QUOTE;
|
1077
|
-
}
|
1078
|
-
get isAccountMode$() {
|
1079
|
-
return this.mode$.pipe(map(mode => mode === ConfigurationContextMode.ACCOUNT));
|
660
|
+
return;
|
1080
661
|
}
|
1081
|
-
|
1082
|
-
|
662
|
+
getFlowRootPath(route) {
|
663
|
+
const rootRoute = this.getFlowRootRoute(route);
|
664
|
+
if (!rootRoute) {
|
665
|
+
return '';
|
666
|
+
}
|
667
|
+
const path = rootRoute.pathFromRoot
|
668
|
+
.map(r => r.url[0])
|
669
|
+
.filter(Boolean)
|
670
|
+
.join('/');
|
671
|
+
return '/' + path;
|
1083
672
|
}
|
1084
|
-
|
1085
|
-
return
|
1086
|
-
{
|
1087
|
-
label: 'Save to Quote',
|
1088
|
-
command: () => {
|
1089
|
-
this.saveButtonClickHandler(isCartRoute);
|
1090
|
-
},
|
1091
|
-
},
|
1092
|
-
{
|
1093
|
-
label: 'Quick Save',
|
1094
|
-
command: () => {
|
1095
|
-
this.saveButtonClickHandler(isCartRoute, true);
|
1096
|
-
},
|
1097
|
-
},
|
1098
|
-
{
|
1099
|
-
label: 'Generate Document',
|
1100
|
-
command: () => {
|
1101
|
-
this.docGenButtonClickHandler(isCartRoute);
|
1102
|
-
},
|
1103
|
-
},
|
1104
|
-
{
|
1105
|
-
label: 'Submit For Approval',
|
1106
|
-
command: () => {
|
1107
|
-
this.submitButtonClickHandler(isCartRoute);
|
1108
|
-
},
|
1109
|
-
},
|
1110
|
-
];
|
673
|
+
get route$() {
|
674
|
+
return this.lastChildRoute$;
|
1111
675
|
}
|
1112
|
-
|
1113
|
-
|
1114
|
-
if (targetId) {
|
1115
|
-
window.VELO_BACK_FN.apply(null, [targetId]);
|
1116
|
-
}
|
676
|
+
get params$() {
|
677
|
+
return this.lastChildParams$;
|
1117
678
|
}
|
1118
|
-
|
1119
|
-
|
1120
|
-
return '';
|
1121
|
-
}
|
1122
|
-
return `${window.location.origin}/${objectId}`;
|
679
|
+
get params() {
|
680
|
+
return this.getLastChildParams(this.route.snapshot);
|
1123
681
|
}
|
1124
|
-
|
1125
|
-
|
1126
|
-
this.routerService.navigateToShoppingCart();
|
1127
|
-
}
|
682
|
+
isConfigurationRoute$() {
|
683
|
+
return this.getFlowSubpath$().pipe(map(url => url.startsWith('product')));
|
1128
684
|
}
|
1129
|
-
|
1130
|
-
|
1131
|
-
this.routerService.navigateToCatalog();
|
1132
|
-
}
|
685
|
+
isCartRoute$() {
|
686
|
+
return this.getFlowSubpath$().pipe(map(url => url.startsWith('cart')));
|
1133
687
|
}
|
1134
|
-
|
1135
|
-
|
1136
|
-
this.routerService.navigateToAssets();
|
1137
|
-
}
|
688
|
+
isCatalogRoute$() {
|
689
|
+
return this.getFlowSubpath$().pipe(map(url => url.startsWith('catalog')));
|
1138
690
|
}
|
1139
|
-
|
1140
|
-
|
1141
|
-
if (!this.quoteDraftService.hasUnsavedChanges) {
|
1142
|
-
this.dialogService.showAccountNoChangesDialog().subscribe();
|
1143
|
-
}
|
1144
|
-
else {
|
1145
|
-
this.dialogService.showDocgenAccountUnsavedChangesDialog().subscribe();
|
1146
|
-
}
|
1147
|
-
return;
|
1148
|
-
}
|
1149
|
-
if (!this.quoteDraftService.isEditMode()) {
|
1150
|
-
this.dialogService.showDocgenReadonlyDialog().subscribe();
|
1151
|
-
return;
|
1152
|
-
}
|
1153
|
-
if (!isCartRoute) {
|
1154
|
-
this.dialogService.showDocgenOutsideShoppingCartDialog().subscribe();
|
1155
|
-
return;
|
1156
|
-
}
|
1157
|
-
let shouldOpen$ = of(true);
|
1158
|
-
if (this.quoteDraftService.hasUnsavedChanges) {
|
1159
|
-
shouldOpen$ = this.dialogService.showDocgenUnsavedChangesDialog().pipe(switchMap(confirmed => {
|
1160
|
-
if (!confirmed) {
|
1161
|
-
return of(false);
|
1162
|
-
}
|
1163
|
-
return this.saveQuote$(true).pipe(map(() => true));
|
1164
|
-
}));
|
1165
|
-
}
|
1166
|
-
shouldOpen$
|
1167
|
-
.pipe(first(), tap(shouldOpen => shouldOpen && this.integrationState.dispatch(FlowAction.OpenDocGenAction())))
|
1168
|
-
.subscribe();
|
691
|
+
isAssetsRoute$() {
|
692
|
+
return this.getFlowSubpath$().pipe(map(url => url.startsWith('assets')));
|
1169
693
|
}
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
}
|
1175
|
-
else {
|
1176
|
-
this.dialogService.showReadonlyModeDialog().subscribe();
|
1177
|
-
}
|
1178
|
-
return;
|
1179
|
-
}
|
1180
|
-
if (this.isUpsellQuoteWithoutChanges()) {
|
1181
|
-
this.dialogService.showAccountNoChangesDialog().subscribe();
|
1182
|
-
return;
|
1183
|
-
}
|
1184
|
-
if (this.isAccountMode && !this.quoteDraftService.hasUnsavedChanges) {
|
1185
|
-
this.dialogService.showAccountNoChangesDialog().subscribe();
|
1186
|
-
return;
|
1187
|
-
}
|
1188
|
-
if (!isCartRoute) {
|
1189
|
-
this.dialogService.showQuoteOutsideShoppingCartDialog().subscribe();
|
1190
|
-
return;
|
1191
|
-
}
|
1192
|
-
const lineItems = this.flowConfiguration.getSnapshot();
|
1193
|
-
if (!lineItems.length) {
|
1194
|
-
this.dialogService.showEmptyCartDialog().subscribe();
|
1195
|
-
return;
|
694
|
+
navigateBack() {
|
695
|
+
const prevUrl = this.urlHistory[this.urlHistory.length - 2];
|
696
|
+
if (prevUrl) {
|
697
|
+
this.router.navigateByUrl(prevUrl);
|
1196
698
|
}
|
1197
|
-
this.saveQuote$(stayOnPage).subscribe();
|
1198
699
|
}
|
1199
|
-
|
1200
|
-
if (
|
1201
|
-
this.
|
1202
|
-
return;
|
1203
|
-
}
|
1204
|
-
if (this.isUpsellQuoteWithoutChanges()) {
|
1205
|
-
this.dialogService.showAccountNoChangesDialog().subscribe();
|
1206
|
-
return;
|
1207
|
-
}
|
1208
|
-
if (this.isAccountMode) {
|
1209
|
-
this.dialogService.showAccountSubmitFailureDialog();
|
1210
|
-
return;
|
700
|
+
navigateTo(path, productId, lineItemId) {
|
701
|
+
if (path === 'shopping-cart') {
|
702
|
+
this.navigateToShoppingCart();
|
1211
703
|
}
|
1212
|
-
if (
|
1213
|
-
this.
|
1214
|
-
return;
|
704
|
+
else if (path === 'catalog') {
|
705
|
+
this.navigateToCatalog();
|
1215
706
|
}
|
1216
|
-
|
1217
|
-
|
1218
|
-
return;
|
1219
|
-
}
|
1220
|
-
this.isSubmitInProgress$.next(true);
|
1221
|
-
this.quoteApiService
|
1222
|
-
.submitQuote(quoteDraft)
|
1223
|
-
.pipe(tap(({ quoteId }) => {
|
1224
|
-
this.quoteDraftService.hasUnsavedChanges = false;
|
1225
|
-
this.back(quoteId);
|
1226
|
-
}), finalize(() => this.isSubmitInProgress$.next(false)), takeUntil(this.destroyed$))
|
1227
|
-
.subscribe();
|
1228
|
-
}
|
1229
|
-
selectPriceList(priceListId) {
|
1230
|
-
this.quoteDraftService.updateActivePriceList(priceListId);
|
1231
|
-
}
|
1232
|
-
toggleCartOverlay(cart, event) {
|
1233
|
-
event.stopPropagation();
|
1234
|
-
if (!this.isReadonlyMode()) {
|
1235
|
-
if (!cart.overlayPanel.overlayVisible) {
|
1236
|
-
document.dispatchEvent(new Event('click'));
|
1237
|
-
}
|
1238
|
-
cart?.overlayPanel.toggle(event);
|
707
|
+
else if (path === 'assets') {
|
708
|
+
this.navigateToAssets();
|
1239
709
|
}
|
1240
|
-
|
1241
|
-
|
1242
|
-
const quoteDraft = this.quoteDraftService.quoteDraftForActivePriceList;
|
1243
|
-
if (!quoteDraft) {
|
1244
|
-
return of(undefined);
|
710
|
+
else if (path === 'product' && productId) {
|
711
|
+
this.navigateToProductConfiguration(productId, lineItemId);
|
1245
712
|
}
|
1246
|
-
this.isSaveInProgress$.next(true);
|
1247
|
-
return this.quoteApiService.upsertQuote(quoteDraft).pipe(tap(({ quoteId }) => {
|
1248
|
-
this.quoteDraftService.hasUnsavedChanges = false;
|
1249
|
-
if (!stayOnPage) {
|
1250
|
-
this.back(quoteId);
|
1251
|
-
}
|
1252
|
-
}), finalize(() => this.isSaveInProgress$.next(false)), map(noop), takeUntil(this.destroyed$));
|
1253
713
|
}
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
fields: ['Name'],
|
1262
|
-
};
|
1263
|
-
return this.sfApiService.query(searchRequest, objectName).pipe(map(result => result[0]?.Name ?? ''), takeUntil(this.destroyed$));
|
714
|
+
navigateToProductConfiguration(productId, lineItemId) {
|
715
|
+
this.contextService.update({ properties: { productId, lineItemId } });
|
716
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
717
|
+
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
718
|
+
this.router.navigate([flowRouteUrl, 'product'], {
|
719
|
+
queryParams: { ...routeSnapshot.queryParams, productId },
|
720
|
+
});
|
1264
721
|
}
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
return {
|
1270
|
-
accountId: isAccountMode ? ctx.properties.Id : ctx.properties.AccountId,
|
1271
|
-
opportunityId: ctx.properties.OpportunityId,
|
1272
|
-
quoteId: isQuoteMode ? ctx.properties.Id : undefined,
|
1273
|
-
quoteName: isQuoteMode ? ctx.properties.Name : undefined,
|
1274
|
-
quoteNumber: isQuoteMode ? ctx.properties.QuoteNumber : undefined,
|
1275
|
-
};
|
1276
|
-
}), switchMap(details => combineLatest([
|
1277
|
-
of(details),
|
1278
|
-
this.queryName$('Account', details.accountId),
|
1279
|
-
this.queryName$('Opportunity', details.opportunityId),
|
1280
|
-
])), map(([details, accountName, opportunityName]) => ({ ...details, accountName, opportunityName })));
|
1281
|
-
}
|
1282
|
-
formatMetric(value) {
|
1283
|
-
return (value ? Number(value) : 0).toFixed(2);
|
1284
|
-
}
|
1285
|
-
getDraftItems$() {
|
1286
|
-
return combineLatest([
|
1287
|
-
this.flowConfiguration.get(),
|
1288
|
-
this.integrationState.state$.pipe(map(state => state.modifiedAssets), distinctUntilChanged()),
|
1289
|
-
]).pipe(map(([lineItems, modifiedAssets]) => {
|
1290
|
-
const currentTerms = lineItems.reduce((acc, li) => {
|
1291
|
-
const assetId = li.assetId || li.openOrderLineItemId;
|
1292
|
-
const isModified = isLineItemModified(li);
|
1293
|
-
const currentTerm = getOriginParent(lineItems, li) ?? li;
|
1294
|
-
if (isModified || (assetId && modifiedAssets?.[assetId])) {
|
1295
|
-
acc.push(currentTerm);
|
1296
|
-
}
|
1297
|
-
return acc;
|
1298
|
-
}, []);
|
1299
|
-
const uniqCurrentTerms = currentTerms.filter((value, index, array) => array.indexOf(value) === index);
|
1300
|
-
return uniqCurrentTerms;
|
1301
|
-
}));
|
722
|
+
navigateToShoppingCart() {
|
723
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
724
|
+
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
725
|
+
this.router.navigate([flowRouteUrl, 'cart'], { queryParams: routeSnapshot.queryParams });
|
1302
726
|
}
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
}
|
1308
|
-
generateProducts(lineItems) {
|
1309
|
-
const date = new Date();
|
1310
|
-
date.setHours(0, 0, 0, 0);
|
1311
|
-
const now = date.getTime();
|
1312
|
-
const termParentIds = lineItems.map(li => li.rampInstanceId).filter(Boolean);
|
1313
|
-
const lineItemsRampInstanceIdMap = lineItems.reduce((acc, li) => {
|
1314
|
-
acc[li.rampInstanceId ?? ''] = li;
|
1315
|
-
return acc;
|
1316
|
-
}, {});
|
1317
|
-
return lineItems.reduce((result, li) => {
|
1318
|
-
// find main term line item
|
1319
|
-
if (li.rampInstanceId) {
|
1320
|
-
return result;
|
1321
|
-
}
|
1322
|
-
// find current term line item
|
1323
|
-
let target = li;
|
1324
|
-
while (target && target.endDate && new Date(target.endDate).getTime() <= now) {
|
1325
|
-
target = lineItemsRampInstanceIdMap[li.id];
|
1326
|
-
}
|
1327
|
-
if (target && target.productId) {
|
1328
|
-
result.push({
|
1329
|
-
id: target.id,
|
1330
|
-
productId: target.productId,
|
1331
|
-
name: target.name,
|
1332
|
-
configurable: target.properties['#configurable'] === 'true',
|
1333
|
-
deleted: target.actionCode === 'DELETE',
|
1334
|
-
hasTerm: termParentIds.includes(target.id),
|
1335
|
-
qty: target.qty,
|
1336
|
-
mrr: this.formatMetric(target.properties.VDM_Total_MRR),
|
1337
|
-
nrr: this.formatMetric(target.properties.VDM_Total_NRR),
|
1338
|
-
});
|
1339
|
-
}
|
1340
|
-
return result;
|
1341
|
-
}, []);
|
727
|
+
navigateToCatalog() {
|
728
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
729
|
+
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
730
|
+
this.router.navigate([flowRouteUrl, 'catalog'], { queryParams: routeSnapshot.queryParams });
|
1342
731
|
}
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
732
|
+
navigateToAssets() {
|
733
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
734
|
+
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
735
|
+
this.router.navigate([flowRouteUrl, 'assets'], { queryParams: routeSnapshot.queryParams });
|
1346
736
|
}
|
1347
|
-
|
1348
|
-
const
|
1349
|
-
const
|
1350
|
-
return
|
737
|
+
showErrorPage$(message) {
|
738
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
739
|
+
const flowRouteUrl = this.getFlowRootPath(routeSnapshot);
|
740
|
+
return from(this.router.navigate([flowRouteUrl, '404'], { state: { message }, replaceUrl: true })).pipe(map(() => false));
|
1351
741
|
}
|
1352
|
-
|
1353
|
-
|
1354
|
-
FlowHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: FlowHeaderComponent, selector: "vl-flow-header", ngImport: i0, template: "<ng-container *ngIf=\"contextProperties$ | async as contextProperties\">\n <ng-container *ngIf=\"objectDetails$ | async as details\">\n <div class=\"flow-info\">\n <nav class=\"nav-item nav-back\" (click)=\"back()\">\n <i class=\"nav-icon vl-icon vl-icon-back\"></i>\n </nav>\n\n <ng-container *ngIf=\"isAccountMode$ | async\">\n <nav\n class=\"account-name nav-item\"\n [pTooltip]=\"contextProperties.Name ?? ''\"\n tooltipPosition=\"bottom\"\n [showDelay]=\"1000\"\n >\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(contextProperties.Id)\">{{ contextProperties.Name }}</a>\n </nav>\n </ng-container>\n\n <ng-container *ngIf=\"isQuoteMode$ | async\">\n <span class=\"nav-item\">Quote #{{ details.quoteNumber }}</span>\n\n <span class=\"dot-separator\"></span>\n\n <nav class=\"nav-item\" (click)=\"quoteDetails.toggle($event)\">\n <span>{{ status$ | async }}</span>\n\n <i *ngIf=\"!quoteDetails.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"quoteDetails.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n\n <p-overlayPanel styleClass=\"catalog-overlay quote-info-overlay\" #quoteDetails>\n <ng-template pTemplate>\n <div class=\"quote-info\">\n <div class=\"title\">\n <span>Quote Information</span>\n <span class=\"close-action\" (click)=\"quoteDetails.hide()\">\n <i class=\"vl-icon vl-cross\"></i>\n </span>\n </div>\n\n <div class=\"details\">\n <div class=\"details-row\">\n <div class=\"label\">Account Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.accountId)\">\n {{ details.accountName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Opportunity Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.opportunityId)\">\n {{ details.opportunityName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Quote Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.quoteId)\">\n {{ details.quoteName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Quote Number</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.quoteId)\">\n {{ details.quoteNumber }}\n </a>\n </div>\n </div>\n </div>\n </div>\n </ng-template>\n </p-overlayPanel>\n </ng-container>\n </div>\n\n <div class=\"flow-navigation\">\n <ng-container *vlLet=\"isReadonlyMode$ | async as isReadonlyMode\">\n <nav\n class=\"nav-item\"\n *vlLet=\"assetsCount$ | async as assetsCount\"\n [ngClass]=\"{ active: (isAssetsRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToAssets()\"\n >\n Assets\n <div *ngIf=\"assetsCount\" class=\"counter\">{{ assetsCount }}</div>\n </nav>\n <nav\n class=\"nav-item\"\n [ngClass]=\"{ active: (isCatalogRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToCatalog()\"\n >\n Catalog\n </nav>\n <nav\n *vlLet=\"isConfigurationRoute$ | async as isConfigurationRoute\"\n class=\"nav-item\"\n [ngClass]=\"{ active: isConfigurationRoute, disabled: !isConfigurationRoute }\"\n >\n Configurator\n </nav>\n <ng-container *vlLet=\"products$ | async as products\">\n <nav\n class=\"nav-item\"\n [ngClass]=\"{ active: (isCartRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToShoppingCart()\"\n >\n Shopping Cart\n <div *ngIf=\"products?.length\" class=\"counter\">{{ products?.length }}</div>\n\n <nav\n class=\"nav-popover-toggle\"\n [ngClass]=\"{ active: (isCartRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"toggleCartOverlay(cart, $event)\"\n >\n <i *ngIf=\"!cart?.overlayPanel?.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"cart?.overlayPanel?.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n </nav>\n\n <vl-cart-preview #cart [products]=\"products ?? []\"></vl-cart-preview>\n </ng-container>\n </ng-container>\n </div>\n\n <div class=\"flow-controls\">\n <ng-container *ngIf=\"(isReadonlyMode$ | async) === false\">\n <ng-container *vlLet=\"activePriceList$ | async as priceList\">\n <div class=\"price-plan\">\n <ng-container *vlLet=\"assetPriceLists$ | async as assetPriceLists\">\n <ng-container\n *ngIf=\"(isAccountMode$ | async) && assetPriceLists && assetPriceLists.length > 1; else singlePriceList\"\n >\n <nav class=\"nav-item\" (click)=\"priceListsOverlay?.toggle($event)\">\n <span>{{ priceList?.name }}</span>\n <i *ngIf=\"!priceListsOverlay?.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"priceListsOverlay?.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n\n <p-overlayPanel styleClass=\"price-list-overlay\" #priceListsOverlay>\n <ng-template pTemplate>\n <span\n *ngFor=\"let option of assetPriceLists\"\n class=\"price-list-option\"\n [class.active]=\"priceList?.id === option.id\"\n (click)=\"selectPriceList(option.id); priceListsOverlay.hide()\"\n >\n {{ option.name }}\n </span>\n </ng-template>\n </p-overlayPanel>\n </ng-container>\n </ng-container>\n\n <ng-template #singlePriceList>\n <div>{{ priceList?.name }}</div>\n </ng-template>\n\n <div *ngIf=\"contextProperties.StartDate\">{{ contextProperties.StartDate | date : dateFormat }}</div>\n </div>\n </ng-container>\n </ng-container>\n\n <vl-metrics></vl-metrics>\n\n <ng-container *vlLet=\"isCartRoute$ | async as isCartRoute\">\n <ng-container *vlLet=\"isReadonlyMode$ | async as isReadonlyMode\">\n <ng-container *vlLet=\"isSaveInProgress$ | async as isSaveInProgress\">\n <ng-container *vlLet=\"isSubmitInProgress$ | async as isSubmitInProgress\">\n <p-splitButton\n *ngIf=\"!isSaveInProgress && !isSubmitInProgress\"\n #splitButton\n label=\"Save to Quote\"\n (onClick)=\"saveButtonClickHandler(isCartRoute === true)\"\n [model]=\"getSplitButtonActions(isCartRoute === true)\"\n [disabled]=\"isReadonlyMode === true\"\n styleClass=\"catalog-split-button p-button-outlined\"\n [class.opened]=\"splitButton?.menu?.visible\"\n icon=\"vl-icon vl-arrow-down\"\n [menuStyle]=\"{ width: '144px' }\"\n >\n </p-splitButton>\n\n <p-button\n *ngIf=\"isSaveInProgress\"\n class=\"save-button\"\n styleClass=\"p-button\"\n label=\"Saving\"\n [loading]=\"true\"\n ></p-button>\n\n <p-button\n *ngIf=\"isSubmitInProgress\"\n class=\"submit-button\"\n styleClass=\"p-button\"\n label=\"Submitting\"\n [loading]=\"true\"\n ></p-button>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n</ng-container>\n", styles: [":host{font-family:var(--cg-font-family);display:flex;align-items:center;height:48px;width:100%;background-color:var(--cg-primary-color);color:#fff;padding:0 16px;flex-shrink:0}:host *{font-family:var(--cg-font-family)}::ng-deep .p-overlaypanel.quote-info-overlay{margin-left:-16px}.quote-info{width:348px}.quote-info .title{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;font-size:16px;font-style:normal;font-weight:500;line-height:20px}.quote-info .title .close-action{padding:4px}.quote-info .title .vl-icon{cursor:pointer}.quote-info .details .details-row{display:flex;align-items:center}.quote-info .details .details-row .label,.quote-info .details .details-row .value{flex:1;padding:8px;color:var(--cg-black)}.quote-info .details .details-row .label{font-size:12px;font-weight:500;line-height:16px;letter-spacing:.2px}.quote-info .details .details-row .value{text-align:right}.quote-info .details .details-row a{color:var(--cg-black);text-decoration:none;font-size:12px;line-height:18px;letter-spacing:.3px;border-bottom:1px solid var(--cg-black)}:host ::ng-deep .catalog-split-button .p-splitbutton-defaultbutton{padding:8px 0 8px 16px;border-top-left-radius:24px;border-bottom-left-radius:24px;color:var(--cg-white);background:var(--cg-primary-color);border-color:var(--cg-white)}:host ::ng-deep .catalog-split-button .p-splitbutton-defaultbutton .p-button-icon{display:none}:host ::ng-deep .catalog-split-button .p-splitbutton-menubutton{width:16px;box-sizing:content-box;padding:8px;border-top-right-radius:24px;border-bottom-right-radius:24px;border-left:none;color:var(--cg-white);background:var(--cg-primary-color);border-color:var(--cg-white)}:host ::ng-deep .catalog-split-button .p-splitbutton-menubutton:hover:enabled{border-left:none}:host ::ng-deep .catalog-split-button .p-button{line-height:16px}:host ::ng-deep .catalog-split-button .p-button-label{font-size:12px;font-weight:300}:host ::ng-deep .catalog-split-button:hover .p-splitbutton-defaultbutton,:host ::ng-deep .catalog-split-button:hover .p-splitbutton-menubutton{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button:hover .p-splitbutton-defaultbutton:hover,:host ::ng-deep .catalog-split-button:hover .p-splitbutton-menubutton:hover{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay{overflow:hidden;margin-top:4px;padding:0;border-radius:8px;box-shadow:0 8px 32px #0000001a}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem:not(:last-child){border-bottom:1px solid var(--cg-border-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link{padding:8px;color:var(--cg-primary-color);white-space:nowrap;font-size:12px;font-weight:300;line-height:16px;letter-spacing:.3px}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link .p-menuitem-text{color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link:hover{background:var(--cg-bg-color)}:host ::ng-deep p-splitButton.opened .p-button-icon{transform:rotate(180deg)}:host ::ng-deep p-splitButton.opened .p-splitbutton-defaultbutton,:host ::ng-deep p-splitButton.opened .p-splitbutton-menubutton{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .save-button,:host ::ng-deep .submit-button{height:32px;width:136px;display:flex}:host ::ng-deep .save-button .p-button,:host ::ng-deep .submit-button .p-button{border-radius:24px;width:100%;height:100%;background:rgba(255,255,255,.3);opacity:1;border:none}:host ::ng-deep .save-button .p-button .p-button-label,:host ::ng-deep .submit-button .p-button .p-button-label{font-size:12px;line-height:16px;letter-spacing:.3px;white-space:nowrap}.vl-icon{display:inline-block}.flow-info{flex-shrink:0;display:flex;gap:8px;align-items:center}.flow-info .nav-item{font-weight:400;font-size:12px;line-height:16px;letter-spacing:.3px}.flow-info .nav-popover-toggle{margin-left:-8px}.flow-info .nav-item:not(.disabled):hover,.flow-info .nav-popover-toggle:not(.disabled):hover{opacity:.6}nav{display:flex;align-items:center;cursor:pointer;height:32px}nav.disabled{opacity:.6;cursor:default}nav .icon-with-margin{margin:0 4px}nav a{color:#fff}nav.account-name{margin-left:4px;display:block;max-width:200px;overflow:hidden;text-overflow:ellipsis}nav.nav-popover-toggle{width:16px;display:flex;justify-content:center}nav.nav-popover-toggle i{pointer-events:none;margin:0}nav i{pointer-events:none}.metrics__row{display:flex;justify-content:space-between;gap:2px}.dot-separator:after{content:\"\";display:block;width:2px;height:2px;border-radius:50%;background:#fff}.slash-separator:after{content:\"\";display:block;background:#fff;width:1px;height:16px}.flow-navigation{margin-left:16px;margin-right:auto;display:flex;gap:8px;justify-content:center}.flow-navigation .nav-item{padding:8px 16px;border-radius:32px;color:#ffffff80;font-size:12px;line-height:16px;letter-spacing:.3px;white-space:nowrap}.flow-navigation .nav-item:not(.disabled):hover:not(.active){color:var(--cg-white);background:rgba(255,255,255,.1)}.flow-navigation .nav-item:not(.disabled).active{color:var(--cg-white)}.flow-navigation .cart-nav-container{display:flex}.flow-navigation .nav-popover-toggle{margin-left:8px}.price-list-option{padding:8px;color:var(--vl-primary-color);cursor:pointer}.price-list-option.active,.price-list-option:hover{background:var(--vl-secondary-nav-bg)}.flow-controls{flex-shrink:0;display:flex;align-items:center;gap:8px;font-size:12px;line-height:16px}.flow-controls .price-plan{color:#ffffffb3}.counter{margin-left:8px;height:16px;min-width:16px;text-align:center;background:rgba(255,255,255,.2);border-radius:16px;padding:0 4px}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i7.OverlayPanel, selector: "p-overlayPanel", inputs: ["dismissable", "showCloseIcon", "style", "styleClass", "appendTo", "autoZIndex", "ariaCloseLabel", "baseZIndex", "focusOnShow", "showTransitionOptions", "hideTransitionOptions"], outputs: ["onShow", "onHide"] }, { kind: "directive", type: i8.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: i3$1.LetDirective, selector: "[vlLet]", inputs: ["vlLet"] }, { kind: "directive", type: i10$1.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "component", type: i3.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "component", type: CartPreviewComponent, selector: "vl-cart-preview", inputs: ["products"] }, { kind: "component", type: i13.SplitButton, selector: "p-splitButton", inputs: ["model", "icon", "iconPos", "label", "style", "styleClass", "menuStyle", "menuStyleClass", "disabled", "tabindex", "appendTo", "dir", "expandAriaLabel", "showTransitionOptions", "hideTransitionOptions"], outputs: ["onClick", "onDropdownClick"] }, { kind: "component", type: MetricsComponent, selector: "vl-metrics" }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.DatePipe, name: "date" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1355
|
-
|
1356
|
-
|
1357
|
-
args: [{ selector: 'vl-flow-header', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"contextProperties$ | async as contextProperties\">\n <ng-container *ngIf=\"objectDetails$ | async as details\">\n <div class=\"flow-info\">\n <nav class=\"nav-item nav-back\" (click)=\"back()\">\n <i class=\"nav-icon vl-icon vl-icon-back\"></i>\n </nav>\n\n <ng-container *ngIf=\"isAccountMode$ | async\">\n <nav\n class=\"account-name nav-item\"\n [pTooltip]=\"contextProperties.Name ?? ''\"\n tooltipPosition=\"bottom\"\n [showDelay]=\"1000\"\n >\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(contextProperties.Id)\">{{ contextProperties.Name }}</a>\n </nav>\n </ng-container>\n\n <ng-container *ngIf=\"isQuoteMode$ | async\">\n <span class=\"nav-item\">Quote #{{ details.quoteNumber }}</span>\n\n <span class=\"dot-separator\"></span>\n\n <nav class=\"nav-item\" (click)=\"quoteDetails.toggle($event)\">\n <span>{{ status$ | async }}</span>\n\n <i *ngIf=\"!quoteDetails.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"quoteDetails.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n\n <p-overlayPanel styleClass=\"catalog-overlay quote-info-overlay\" #quoteDetails>\n <ng-template pTemplate>\n <div class=\"quote-info\">\n <div class=\"title\">\n <span>Quote Information</span>\n <span class=\"close-action\" (click)=\"quoteDetails.hide()\">\n <i class=\"vl-icon vl-cross\"></i>\n </span>\n </div>\n\n <div class=\"details\">\n <div class=\"details-row\">\n <div class=\"label\">Account Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.accountId)\">\n {{ details.accountName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Opportunity Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.opportunityId)\">\n {{ details.opportunityName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Quote Name</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.quoteId)\">\n {{ details.quoteName }}\n </a>\n </div>\n </div>\n <div class=\"details-row\">\n <div class=\"label\">Quote Number</div>\n <div class=\"value\">\n <a target=\"_blank\" [href]=\"getSalesforceObjectLink(details.quoteId)\">\n {{ details.quoteNumber }}\n </a>\n </div>\n </div>\n </div>\n </div>\n </ng-template>\n </p-overlayPanel>\n </ng-container>\n </div>\n\n <div class=\"flow-navigation\">\n <ng-container *vlLet=\"isReadonlyMode$ | async as isReadonlyMode\">\n <nav\n class=\"nav-item\"\n *vlLet=\"assetsCount$ | async as assetsCount\"\n [ngClass]=\"{ active: (isAssetsRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToAssets()\"\n >\n Assets\n <div *ngIf=\"assetsCount\" class=\"counter\">{{ assetsCount }}</div>\n </nav>\n <nav\n class=\"nav-item\"\n [ngClass]=\"{ active: (isCatalogRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToCatalog()\"\n >\n Catalog\n </nav>\n <nav\n *vlLet=\"isConfigurationRoute$ | async as isConfigurationRoute\"\n class=\"nav-item\"\n [ngClass]=\"{ active: isConfigurationRoute, disabled: !isConfigurationRoute }\"\n >\n Configurator\n </nav>\n <ng-container *vlLet=\"products$ | async as products\">\n <nav\n class=\"nav-item\"\n [ngClass]=\"{ active: (isCartRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"navigateToShoppingCart()\"\n >\n Shopping Cart\n <div *ngIf=\"products?.length\" class=\"counter\">{{ products?.length }}</div>\n\n <nav\n class=\"nav-popover-toggle\"\n [ngClass]=\"{ active: (isCartRoute$ | async), disabled: isReadonlyMode }\"\n (click)=\"toggleCartOverlay(cart, $event)\"\n >\n <i *ngIf=\"!cart?.overlayPanel?.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"cart?.overlayPanel?.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n </nav>\n\n <vl-cart-preview #cart [products]=\"products ?? []\"></vl-cart-preview>\n </ng-container>\n </ng-container>\n </div>\n\n <div class=\"flow-controls\">\n <ng-container *ngIf=\"(isReadonlyMode$ | async) === false\">\n <ng-container *vlLet=\"activePriceList$ | async as priceList\">\n <div class=\"price-plan\">\n <ng-container *vlLet=\"assetPriceLists$ | async as assetPriceLists\">\n <ng-container\n *ngIf=\"(isAccountMode$ | async) && assetPriceLists && assetPriceLists.length > 1; else singlePriceList\"\n >\n <nav class=\"nav-item\" (click)=\"priceListsOverlay?.toggle($event)\">\n <span>{{ priceList?.name }}</span>\n <i *ngIf=\"!priceListsOverlay?.overlayVisible\" class=\"vl-icon vl-arrow-down icon-with-margin\"></i>\n <i *ngIf=\"priceListsOverlay?.overlayVisible\" class=\"vl-icon vl-arrow-up icon-with-margin\"></i>\n </nav>\n\n <p-overlayPanel styleClass=\"price-list-overlay\" #priceListsOverlay>\n <ng-template pTemplate>\n <span\n *ngFor=\"let option of assetPriceLists\"\n class=\"price-list-option\"\n [class.active]=\"priceList?.id === option.id\"\n (click)=\"selectPriceList(option.id); priceListsOverlay.hide()\"\n >\n {{ option.name }}\n </span>\n </ng-template>\n </p-overlayPanel>\n </ng-container>\n </ng-container>\n\n <ng-template #singlePriceList>\n <div>{{ priceList?.name }}</div>\n </ng-template>\n\n <div *ngIf=\"contextProperties.StartDate\">{{ contextProperties.StartDate | date : dateFormat }}</div>\n </div>\n </ng-container>\n </ng-container>\n\n <vl-metrics></vl-metrics>\n\n <ng-container *vlLet=\"isCartRoute$ | async as isCartRoute\">\n <ng-container *vlLet=\"isReadonlyMode$ | async as isReadonlyMode\">\n <ng-container *vlLet=\"isSaveInProgress$ | async as isSaveInProgress\">\n <ng-container *vlLet=\"isSubmitInProgress$ | async as isSubmitInProgress\">\n <p-splitButton\n *ngIf=\"!isSaveInProgress && !isSubmitInProgress\"\n #splitButton\n label=\"Save to Quote\"\n (onClick)=\"saveButtonClickHandler(isCartRoute === true)\"\n [model]=\"getSplitButtonActions(isCartRoute === true)\"\n [disabled]=\"isReadonlyMode === true\"\n styleClass=\"catalog-split-button p-button-outlined\"\n [class.opened]=\"splitButton?.menu?.visible\"\n icon=\"vl-icon vl-arrow-down\"\n [menuStyle]=\"{ width: '144px' }\"\n >\n </p-splitButton>\n\n <p-button\n *ngIf=\"isSaveInProgress\"\n class=\"save-button\"\n styleClass=\"p-button\"\n label=\"Saving\"\n [loading]=\"true\"\n ></p-button>\n\n <p-button\n *ngIf=\"isSubmitInProgress\"\n class=\"submit-button\"\n styleClass=\"p-button\"\n label=\"Submitting\"\n [loading]=\"true\"\n ></p-button>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n</ng-container>\n", styles: [":host{font-family:var(--cg-font-family);display:flex;align-items:center;height:48px;width:100%;background-color:var(--cg-primary-color);color:#fff;padding:0 16px;flex-shrink:0}:host *{font-family:var(--cg-font-family)}::ng-deep .p-overlaypanel.quote-info-overlay{margin-left:-16px}.quote-info{width:348px}.quote-info .title{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;font-size:16px;font-style:normal;font-weight:500;line-height:20px}.quote-info .title .close-action{padding:4px}.quote-info .title .vl-icon{cursor:pointer}.quote-info .details .details-row{display:flex;align-items:center}.quote-info .details .details-row .label,.quote-info .details .details-row .value{flex:1;padding:8px;color:var(--cg-black)}.quote-info .details .details-row .label{font-size:12px;font-weight:500;line-height:16px;letter-spacing:.2px}.quote-info .details .details-row .value{text-align:right}.quote-info .details .details-row a{color:var(--cg-black);text-decoration:none;font-size:12px;line-height:18px;letter-spacing:.3px;border-bottom:1px solid var(--cg-black)}:host ::ng-deep .catalog-split-button .p-splitbutton-defaultbutton{padding:8px 0 8px 16px;border-top-left-radius:24px;border-bottom-left-radius:24px;color:var(--cg-white);background:var(--cg-primary-color);border-color:var(--cg-white)}:host ::ng-deep .catalog-split-button .p-splitbutton-defaultbutton .p-button-icon{display:none}:host ::ng-deep .catalog-split-button .p-splitbutton-menubutton{width:16px;box-sizing:content-box;padding:8px;border-top-right-radius:24px;border-bottom-right-radius:24px;border-left:none;color:var(--cg-white);background:var(--cg-primary-color);border-color:var(--cg-white)}:host ::ng-deep .catalog-split-button .p-splitbutton-menubutton:hover:enabled{border-left:none}:host ::ng-deep .catalog-split-button .p-button{line-height:16px}:host ::ng-deep .catalog-split-button .p-button-label{font-size:12px;font-weight:300}:host ::ng-deep .catalog-split-button:hover .p-splitbutton-defaultbutton,:host ::ng-deep .catalog-split-button:hover .p-splitbutton-menubutton{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button:hover .p-splitbutton-defaultbutton:hover,:host ::ng-deep .catalog-split-button:hover .p-splitbutton-menubutton:hover{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay{overflow:hidden;margin-top:4px;padding:0;border-radius:8px;box-shadow:0 8px 32px #0000001a}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem:not(:last-child){border-bottom:1px solid var(--cg-border-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link{padding:8px;color:var(--cg-primary-color);white-space:nowrap;font-size:12px;font-weight:300;line-height:16px;letter-spacing:.3px}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link .p-menuitem-text{color:var(--cg-primary-color)}:host ::ng-deep .catalog-split-button .p-menu-overlay .p-menuitem-link:hover{background:var(--cg-bg-color)}:host ::ng-deep p-splitButton.opened .p-button-icon{transform:rotate(180deg)}:host ::ng-deep p-splitButton.opened .p-splitbutton-defaultbutton,:host ::ng-deep p-splitButton.opened .p-splitbutton-menubutton{color:var(--cg-primary-color);background:var(--cg-white);border-color:var(--cg-primary-color)}:host ::ng-deep .save-button,:host ::ng-deep .submit-button{height:32px;width:136px;display:flex}:host ::ng-deep .save-button .p-button,:host ::ng-deep .submit-button .p-button{border-radius:24px;width:100%;height:100%;background:rgba(255,255,255,.3);opacity:1;border:none}:host ::ng-deep .save-button .p-button .p-button-label,:host ::ng-deep .submit-button .p-button .p-button-label{font-size:12px;line-height:16px;letter-spacing:.3px;white-space:nowrap}.vl-icon{display:inline-block}.flow-info{flex-shrink:0;display:flex;gap:8px;align-items:center}.flow-info .nav-item{font-weight:400;font-size:12px;line-height:16px;letter-spacing:.3px}.flow-info .nav-popover-toggle{margin-left:-8px}.flow-info .nav-item:not(.disabled):hover,.flow-info .nav-popover-toggle:not(.disabled):hover{opacity:.6}nav{display:flex;align-items:center;cursor:pointer;height:32px}nav.disabled{opacity:.6;cursor:default}nav .icon-with-margin{margin:0 4px}nav a{color:#fff}nav.account-name{margin-left:4px;display:block;max-width:200px;overflow:hidden;text-overflow:ellipsis}nav.nav-popover-toggle{width:16px;display:flex;justify-content:center}nav.nav-popover-toggle i{pointer-events:none;margin:0}nav i{pointer-events:none}.metrics__row{display:flex;justify-content:space-between;gap:2px}.dot-separator:after{content:\"\";display:block;width:2px;height:2px;border-radius:50%;background:#fff}.slash-separator:after{content:\"\";display:block;background:#fff;width:1px;height:16px}.flow-navigation{margin-left:16px;margin-right:auto;display:flex;gap:8px;justify-content:center}.flow-navigation .nav-item{padding:8px 16px;border-radius:32px;color:#ffffff80;font-size:12px;line-height:16px;letter-spacing:.3px;white-space:nowrap}.flow-navigation .nav-item:not(.disabled):hover:not(.active){color:var(--cg-white);background:rgba(255,255,255,.1)}.flow-navigation .nav-item:not(.disabled).active{color:var(--cg-white)}.flow-navigation .cart-nav-container{display:flex}.flow-navigation .nav-popover-toggle{margin-left:8px}.price-list-option{padding:8px;color:var(--vl-primary-color);cursor:pointer}.price-list-option.active,.price-list-option:hover{background:var(--vl-secondary-nav-bg)}.flow-controls{flex-shrink:0;display:flex;align-items:center;gap:8px;font-size:12px;line-height:16px}.flow-controls .price-plan{color:#ffffffb3}.counter{margin-left:8px;height:16px;min-width:16px;text-align:center;background:rgba(255,255,255,.2);border-radius:16px;padding:0 4px}\n"] }]
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
}
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
InputTextModule,
|
1371
|
-
CheckboxModule,
|
1372
|
-
LetDirectiveModule,
|
1373
|
-
VirtualScrollerModule,
|
1374
|
-
ErrorTooltipModule,
|
1375
|
-
HiddenTextTooltipModule,
|
1376
|
-
SdkPipesModule], exports: [MetricsComponent] });
|
1377
|
-
MetricsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: MetricsModule, imports: [CommonModule,
|
1378
|
-
FormsModule,
|
1379
|
-
ReactiveFormsModule,
|
1380
|
-
DragDropModule,
|
1381
|
-
ButtonModule,
|
1382
|
-
OverlayPanelModule,
|
1383
|
-
SidebarModule,
|
1384
|
-
InputTextModule,
|
1385
|
-
CheckboxModule,
|
1386
|
-
LetDirectiveModule,
|
1387
|
-
VirtualScrollerModule,
|
1388
|
-
ErrorTooltipModule,
|
1389
|
-
HiddenTextTooltipModule,
|
1390
|
-
SdkPipesModule] });
|
1391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: MetricsModule, decorators: [{
|
1392
|
-
type: NgModule,
|
1393
|
-
args: [{
|
1394
|
-
declarations: [MetricsComponent],
|
1395
|
-
imports: [
|
1396
|
-
CommonModule,
|
1397
|
-
FormsModule,
|
1398
|
-
ReactiveFormsModule,
|
1399
|
-
DragDropModule,
|
1400
|
-
ButtonModule,
|
1401
|
-
OverlayPanelModule,
|
1402
|
-
SidebarModule,
|
1403
|
-
InputTextModule,
|
1404
|
-
CheckboxModule,
|
1405
|
-
LetDirectiveModule,
|
1406
|
-
VirtualScrollerModule,
|
1407
|
-
ErrorTooltipModule,
|
1408
|
-
HiddenTextTooltipModule,
|
1409
|
-
SdkPipesModule,
|
1410
|
-
],
|
1411
|
-
exports: [MetricsComponent],
|
1412
|
-
}]
|
1413
|
-
}] });
|
1414
|
-
|
1415
|
-
class FlowHeaderModule {
|
1416
|
-
}
|
1417
|
-
FlowHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1418
|
-
FlowHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.8", ngImport: i0, type: FlowHeaderModule, declarations: [FlowHeaderComponent], imports: [CommonModule,
|
1419
|
-
OverlayPanelModule,
|
1420
|
-
LetDirectiveModule,
|
1421
|
-
TooltipModule,
|
1422
|
-
ButtonModule,
|
1423
|
-
CartPreviewModule,
|
1424
|
-
SplitButtonModule,
|
1425
|
-
MetricsModule,
|
1426
|
-
SdkPipesModule], exports: [FlowHeaderComponent] });
|
1427
|
-
FlowHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowHeaderModule, imports: [CommonModule,
|
1428
|
-
OverlayPanelModule,
|
1429
|
-
LetDirectiveModule,
|
1430
|
-
TooltipModule,
|
1431
|
-
ButtonModule,
|
1432
|
-
CartPreviewModule,
|
1433
|
-
SplitButtonModule,
|
1434
|
-
MetricsModule,
|
1435
|
-
SdkPipesModule] });
|
1436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: FlowHeaderModule, decorators: [{
|
1437
|
-
type: NgModule,
|
1438
|
-
args: [{
|
1439
|
-
declarations: [FlowHeaderComponent],
|
1440
|
-
imports: [
|
1441
|
-
CommonModule,
|
1442
|
-
OverlayPanelModule,
|
1443
|
-
LetDirectiveModule,
|
1444
|
-
TooltipModule,
|
1445
|
-
ButtonModule,
|
1446
|
-
CartPreviewModule,
|
1447
|
-
SplitButtonModule,
|
1448
|
-
MetricsModule,
|
1449
|
-
SdkPipesModule,
|
1450
|
-
],
|
1451
|
-
exports: [FlowHeaderComponent],
|
1452
|
-
}]
|
1453
|
-
}] });
|
742
|
+
switchObject(id) {
|
743
|
+
const routeSnapshot = this.getLastChildRouteSnapshot(this.route.snapshot);
|
744
|
+
const route = this.getLastChildRoute(this.route);
|
745
|
+
const objName = SalesforceIdUtils.getSfObjectNameById(id);
|
746
|
+
const queryParams = {
|
747
|
+
quoteId: objName === 'Quote' ? id : undefined,
|
748
|
+
accountId: objName === 'Account' ? id : undefined,
|
749
|
+
orderId: objName === 'Order' ? id : undefined,
|
750
|
+
};
|
751
|
+
this.router.navigate([], { relativeTo: route, queryParams: { ...routeSnapshot.queryParams, ...queryParams } });
|
752
|
+
}
|
753
|
+
}
|
754
|
+
FlowRouterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRouterService, deps: [{ token: i1$2.Router }, { token: i1$2.ActivatedRoute }, { token: i2.ContextService }, { token: i2.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
755
|
+
FlowRouterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRouterService, providedIn: 'root' });
|
756
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRouterService, decorators: [{
|
757
|
+
type: Injectable,
|
758
|
+
args: [{ providedIn: 'root' }]
|
759
|
+
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: i1$2.ActivatedRoute }, { type: i2.ContextService }, { type: i2.IntegrationState }]; } });
|
1454
760
|
|
1455
761
|
class FlowService {
|
1456
|
-
constructor(integrationState, flowRouterService, quoteDraftService, configurationService, flowConfigurationService) {
|
762
|
+
constructor(integrationState, flowRouterService, quoteDraftService, configurationService, flowConfigurationService, flowDialogService) {
|
1457
763
|
this.integrationState = integrationState;
|
1458
764
|
this.flowRouterService = flowRouterService;
|
1459
765
|
this.quoteDraftService = quoteDraftService;
|
1460
766
|
this.configurationService = configurationService;
|
1461
767
|
this.flowConfigurationService = flowConfigurationService;
|
768
|
+
this.flowDialogService = flowDialogService;
|
1462
769
|
this.cleanup$ = new Subject();
|
1463
770
|
}
|
771
|
+
cleanup() {
|
772
|
+
this.cleanup$.next();
|
773
|
+
}
|
1464
774
|
initSubscriptions() {
|
1465
775
|
this.integrationState
|
1466
776
|
.listen$(FlowAction.FLOW_CONFIGURE_PRODUCT)
|
@@ -1485,10 +795,24 @@ class FlowService {
|
|
1485
795
|
.listen$(FlowAction.FLOW_NAVIGATE_BACK)
|
1486
796
|
.pipe(tap(() => this.flowRouterService.navigateBack()), takeUntil(this.cleanup$))
|
1487
797
|
.subscribe();
|
798
|
+
this.integrationState
|
799
|
+
.listen$(FlowAction.FLOW_NAVIGATE_TO)
|
800
|
+
.pipe(tap(payload => this.flowRouterService.navigateTo(payload.path, payload.productId, payload.lineItemId)), takeUntil(this.cleanup$))
|
801
|
+
.subscribe();
|
802
|
+
this.integrationState
|
803
|
+
.listen$(FlowAction.OPEN_DIALOG)
|
804
|
+
.pipe(switchMap(payload => this.flowDialogService.showDialog(payload.dialog).pipe(take(1))), takeUntil(this.cleanup$))
|
805
|
+
.subscribe(dialogResult => {
|
806
|
+
this.integrationState.patchState({ dialogResult });
|
807
|
+
});
|
1488
808
|
this.integrationState
|
1489
809
|
.listen$(FlowAction.FLOW_NAVIGATE_TO_CATALOG)
|
1490
810
|
.pipe(tap(() => this.flowRouterService.navigateToCatalog()), takeUntil(this.cleanup$))
|
1491
811
|
.subscribe();
|
812
|
+
this.integrationState
|
813
|
+
.listen$(FlowAction.FLOW_NAVIGATE_TO_SHOPPING_CART)
|
814
|
+
.pipe(tap(() => this.flowRouterService.navigateToShoppingCart()), takeUntil(this.cleanup$))
|
815
|
+
.subscribe();
|
1492
816
|
this.integrationState
|
1493
817
|
.listen$(FlowAction.FLOW_APPLY_PRODUCT_CONFIGURATION)
|
1494
818
|
.pipe(switchMap(() => {
|
@@ -1498,6 +822,7 @@ class FlowService {
|
|
1498
822
|
return of(undefined);
|
1499
823
|
}
|
1500
824
|
const isNewLineItem = quoteDraft.currentState.every(li => li.id !== lineItem.id);
|
825
|
+
const assetId = lineItem.assetId || lineItem.openOrderLineItemId;
|
1501
826
|
let updatedState;
|
1502
827
|
if (isNewLineItem) {
|
1503
828
|
updatedState = [...quoteDraft.currentState, lineItem];
|
@@ -1505,7 +830,14 @@ class FlowService {
|
|
1505
830
|
else {
|
1506
831
|
updatedState = quoteDraft.currentState.map(li => (li.id === lineItem.id ? lineItem : li));
|
1507
832
|
}
|
1508
|
-
return this.flowConfigurationService.calculate$({ ...quoteDraft, currentState: updatedState })
|
833
|
+
return this.flowConfigurationService.calculate$({ ...quoteDraft, currentState: updatedState }).pipe(tap(() => {
|
834
|
+
if (assetId) {
|
835
|
+
const modifiedAssets = this.integrationState.state.modifiedAssets ?? {};
|
836
|
+
this.integrationState.patchState({
|
837
|
+
modifiedAssets: { ...modifiedAssets, [assetId]: true },
|
838
|
+
});
|
839
|
+
}
|
840
|
+
}));
|
1509
841
|
}), tap(() => {
|
1510
842
|
this.configurationService.hasUnsavedChanges = false;
|
1511
843
|
this.flowRouterService.navigateToShoppingCart();
|
@@ -1513,9 +845,6 @@ class FlowService {
|
|
1513
845
|
.subscribe();
|
1514
846
|
this.updateFlowPath();
|
1515
847
|
}
|
1516
|
-
cleanup() {
|
1517
|
-
this.cleanup$.next();
|
1518
|
-
}
|
1519
848
|
updateFlowPath() {
|
1520
849
|
this.flowRouterService
|
1521
850
|
.getFlowSubpath$()
|
@@ -1523,38 +852,30 @@ class FlowService {
|
|
1523
852
|
.subscribe(flowPath => this.integrationState.patchState({ flowPath }));
|
1524
853
|
}
|
1525
854
|
}
|
1526
|
-
FlowService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1527
|
-
FlowService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
1528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
855
|
+
FlowService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowService, deps: [{ token: i5.IntegrationState }, { token: FlowRouterService }, { token: i2.QuoteDraftService }, { token: i2.ConfigurationService }, { token: i2.FlowConfigurationService }, { token: FlowDialogService }], target: i0.ɵɵFactoryTarget.Injectable });
|
856
|
+
FlowService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowService });
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowService, decorators: [{
|
1529
858
|
type: Injectable
|
1530
|
-
}], ctorParameters: function () { return [{ type: i5.IntegrationState }, { type: FlowRouterService }, { type:
|
859
|
+
}], ctorParameters: function () { return [{ type: i5.IntegrationState }, { type: FlowRouterService }, { type: i2.QuoteDraftService }, { type: i2.ConfigurationService }, { type: i2.FlowConfigurationService }, { type: FlowDialogService }]; } });
|
1531
860
|
|
1532
861
|
class FlowComponent {
|
1533
|
-
constructor(routerService, quoteDraftService, flowService,
|
862
|
+
constructor(routerService, quoteDraftService, flowService, flowInfo) {
|
1534
863
|
this.routerService = routerService;
|
1535
864
|
this.quoteDraftService = quoteDraftService;
|
1536
865
|
this.flowService = flowService;
|
1537
|
-
this.
|
1538
|
-
this.integrationState = integrationState;
|
866
|
+
this.flowInfo = flowInfo;
|
1539
867
|
this.isLoading$ = this.routerService.loading$;
|
1540
|
-
this.showHeader$ = this.routerService.route
|
868
|
+
this.showHeader$ = combineLatest([this.routerService.route$, this.flowInfo.flow$]).pipe(map(([route, flow]) => route.data['showHeader'] && !flow?.properties.standalone));
|
1541
869
|
this.isStandalone$ = this.quoteDraftService.isStandalone$;
|
1542
870
|
this.flowService.initSubscriptions();
|
1543
871
|
}
|
1544
|
-
ngOnInit() {
|
1545
|
-
this.integrationState.clear();
|
1546
|
-
}
|
1547
|
-
ngOnDestroy() {
|
1548
|
-
this.flowService.cleanup();
|
1549
|
-
this.docGenService.cleanup();
|
1550
|
-
}
|
1551
872
|
}
|
1552
|
-
FlowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1553
|
-
FlowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
1554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
873
|
+
FlowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowComponent, deps: [{ token: FlowRouterService }, { token: i2.QuoteDraftService }, { token: FlowService }, { token: i2.FlowInfoService }], target: i0.ɵɵFactoryTarget.Component });
|
874
|
+
FlowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: FlowComponent, selector: "vl-flow", ngImport: i0, template: "<vl-flow-new-header *ngIf=\"showHeader$ | async\"></vl-flow-new-header>\n\n<div class=\"flow-content\">\n <div class=\"loading-overlay\" *ngIf=\"isLoading$ | async\">\n <vl-loader label=\"LOADING\"></vl-loader>\n </div>\n\n <router-outlet></router-outlet>\n\n <vl-flow-guided-selling *ngIf=\"(isStandalone$ | async) !== true\"></vl-flow-guided-selling>\n</div>\n\n<ng-container *ngIf=\"(isStandalone$ | async) !== true\">\n <vl-flow-doc-gen></vl-flow-doc-gen>\n</ng-container>\n", styles: [":host{display:flex;flex-direction:column;width:100%;height:100%}.flow-content{flex-grow:1;position:relative;overflow:hidden}.loading-overlay{position:absolute;height:100%;width:100%;inset:0;background-color:#fff;z-index:999}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: i2$1.LoaderComponent, selector: "vl-loader", inputs: ["label", "overlayVisible"] }, { kind: "component", type: FlowHeaderComponent, selector: "vl-flow-new-header" }, { kind: "component", type: DocGenComponent, selector: "vl-flow-doc-gen" }, { kind: "component", type: GuidedSellingComponent, selector: "vl-flow-guided-selling" }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowComponent, decorators: [{
|
1555
876
|
type: Component,
|
1556
|
-
args: [{ selector: 'vl-flow', changeDetection: ChangeDetectionStrategy.OnPush, template: "<vl-flow-header *ngIf=\"showHeader$ | async\"></vl-flow-header>\n\n<div class=\"flow-content\">\n <div class=\"loading-overlay\" *ngIf=\"isLoading$ | async\">\n <vl-loader label=\"LOADING\"></vl-loader>\n </div>\n\n <router-outlet></router-outlet>\n\n <vl-flow-guided-selling *ngIf=\"(isStandalone$ | async) !== true\"></vl-flow-guided-selling>\n</div>\n\n<ng-container *ngIf=\"(isStandalone$ | async) !== true\">\n <vl-flow-doc-gen></vl-flow-doc-gen>\n</ng-container>\n", styles: [":host{display:flex;flex-direction:column;height:100%}.flow-content{flex-grow:1;position:relative;overflow:hidden}.loading-overlay{position:absolute;height:100%;width:100%;inset:0;background-color:#
|
1557
|
-
}], ctorParameters: function () { return [{ type: FlowRouterService }, { type:
|
877
|
+
args: [{ selector: 'vl-flow', changeDetection: ChangeDetectionStrategy.OnPush, template: "<vl-flow-new-header *ngIf=\"showHeader$ | async\"></vl-flow-new-header>\n\n<div class=\"flow-content\">\n <div class=\"loading-overlay\" *ngIf=\"isLoading$ | async\">\n <vl-loader label=\"LOADING\"></vl-loader>\n </div>\n\n <router-outlet></router-outlet>\n\n <vl-flow-guided-selling *ngIf=\"(isStandalone$ | async) !== true\"></vl-flow-guided-selling>\n</div>\n\n<ng-container *ngIf=\"(isStandalone$ | async) !== true\">\n <vl-flow-doc-gen></vl-flow-doc-gen>\n</ng-container>\n", styles: [":host{display:flex;flex-direction:column;width:100%;height:100%}.flow-content{flex-grow:1;position:relative;overflow:hidden}.loading-overlay{position:absolute;height:100%;width:100%;inset:0;background-color:#fff;z-index:999}\n"] }]
|
878
|
+
}], ctorParameters: function () { return [{ type: FlowRouterService }, { type: i2.QuoteDraftService }, { type: FlowService }, { type: i2.FlowInfoService }]; } });
|
1558
879
|
|
1559
880
|
const getFlowObjectIdPropertyName = (id) => {
|
1560
881
|
const objectName = SalesforceIdUtils.getSfObjectNameById(id);
|
@@ -1570,8 +891,12 @@ const getFlowObjectIdPropertyName = (id) => {
|
|
1570
891
|
};
|
1571
892
|
const getDefaultProperties = (params) => {
|
1572
893
|
const properties = {};
|
894
|
+
let standalone = params.flowParams?.standalone;
|
1573
895
|
if (params.flowParams?.entryPath.includes('/product') || params.mode === ConfigurationContextMode.REMOTE) {
|
1574
|
-
|
896
|
+
standalone = standalone ?? true;
|
897
|
+
}
|
898
|
+
if (standalone != null) {
|
899
|
+
properties.standalone = standalone ? 'true' : 'false';
|
1575
900
|
}
|
1576
901
|
return properties;
|
1577
902
|
};
|
@@ -1590,7 +915,7 @@ class ContextGuard {
|
|
1590
915
|
const mode = this.getConfigurationContextMode(accountId, quoteId, orderId, rpcMessage);
|
1591
916
|
// Restrict if mode is not defined
|
1592
917
|
if (mode == null) {
|
1593
|
-
return this.
|
918
|
+
return this.routerService.showErrorPage$('Mode is undefined');
|
1594
919
|
}
|
1595
920
|
const headerId = accountId || quoteId || orderId || this.rpcMessageId || 'empty-for-test-mode';
|
1596
921
|
// Allow if context is already initialized with the same headerId
|
@@ -1615,7 +940,7 @@ class ContextGuard {
|
|
1615
940
|
this.runtimeSettingsService.initCurrency(context.properties['CurrencyIsoCode']);
|
1616
941
|
}), map(() => true), catchError(e => {
|
1617
942
|
const message = e instanceof HttpErrorResponse ? e.error.message : e;
|
1618
|
-
return this.
|
943
|
+
return this.routerService.showErrorPage$(message);
|
1619
944
|
}));
|
1620
945
|
}
|
1621
946
|
canActivate(route) {
|
@@ -1648,17 +973,39 @@ class ContextGuard {
|
|
1648
973
|
}
|
1649
974
|
return;
|
1650
975
|
}
|
1651
|
-
handleError(route, message) {
|
1652
|
-
this.contextService.delete();
|
1653
|
-
const parentUrl = this.routerService.getFlowRootPath(route);
|
1654
|
-
return from(this.router.navigate([parentUrl, '404'], { state: { message } })).pipe(map(() => false));
|
1655
|
-
}
|
1656
976
|
}
|
1657
|
-
ContextGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1658
|
-
ContextGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
1659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
977
|
+
ContextGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextGuard, deps: [{ token: i1$2.Router }, { token: FlowRouterService }, { token: i2.ContextService }, { token: i2.RuntimeSettingsService }], target: i0.ɵɵFactoryTarget.Injectable });
|
978
|
+
ContextGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextGuard });
|
979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextGuard, decorators: [{
|
1660
980
|
type: Injectable
|
1661
|
-
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: FlowRouterService }, { type:
|
981
|
+
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: FlowRouterService }, { type: i2.ContextService }, { type: i2.RuntimeSettingsService }]; } });
|
982
|
+
|
983
|
+
const keepFlowInitialized = (route) => {
|
984
|
+
const contextService = inject(ContextService);
|
985
|
+
const flowState = inject(FlowStateService);
|
986
|
+
const flowInfoService = inject(FlowInfoService);
|
987
|
+
const routerService = inject(FlowRouterService);
|
988
|
+
const quoteDraft = inject(QuoteDraftService);
|
989
|
+
const configurationService = inject(ConfigurationService);
|
990
|
+
const integrationState = inject(IntegrationState);
|
991
|
+
const { flowId } = route.queryParams;
|
992
|
+
const flow = flowInfoService.flow;
|
993
|
+
if (flow && flow?.id === flowId) {
|
994
|
+
return true;
|
995
|
+
}
|
996
|
+
// Cleanup
|
997
|
+
flowState.cleanup();
|
998
|
+
quoteDraft.reset();
|
999
|
+
configurationService.reset();
|
1000
|
+
integrationState.clear();
|
1001
|
+
flowInfoService.cleanup();
|
1002
|
+
contextService.delete();
|
1003
|
+
if (!flowId) {
|
1004
|
+
return true;
|
1005
|
+
}
|
1006
|
+
const params = { ...route.queryParams, ...flow?.properties.queryParams };
|
1007
|
+
return flowInfoService.init$(flowId, params).pipe(map(() => true), catchError(e => routerService.showErrorPage$(e)));
|
1008
|
+
};
|
1662
1009
|
|
1663
1010
|
class ProductUnloadGuard {
|
1664
1011
|
constructor(router, contextService, quoteDraftService, configurationService, flowDialogService) {
|
@@ -1682,6 +1029,9 @@ class ProductUnloadGuard {
|
|
1682
1029
|
}
|
1683
1030
|
// clear obsolete queryParams
|
1684
1031
|
const urlTree = this.router.parseUrl(nextState.url);
|
1032
|
+
if (!urlTree.queryParams['productId']) {
|
1033
|
+
return true;
|
1034
|
+
}
|
1685
1035
|
delete urlTree.queryParams['productId'];
|
1686
1036
|
// replace url after deactivation has finished
|
1687
1037
|
setTimeout(() => this.router.navigateByUrl(urlTree.toString(), { replaceUrl: true }));
|
@@ -1691,32 +1041,36 @@ class ProductUnloadGuard {
|
|
1691
1041
|
}));
|
1692
1042
|
}
|
1693
1043
|
}
|
1694
|
-
ProductUnloadGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1695
|
-
ProductUnloadGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
1696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1044
|
+
ProductUnloadGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductUnloadGuard, deps: [{ token: i1$2.Router }, { token: i2.ContextService }, { token: i2.QuoteDraftService }, { token: i2.ConfigurationService }, { token: FlowDialogService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1045
|
+
ProductUnloadGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductUnloadGuard });
|
1046
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductUnloadGuard, decorators: [{
|
1697
1047
|
type: Injectable
|
1698
|
-
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type:
|
1048
|
+
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: i2.ContextService }, { type: i2.QuoteDraftService }, { type: i2.ConfigurationService }, { type: FlowDialogService }]; } });
|
1699
1049
|
|
1700
1050
|
class RootGuard {
|
1701
1051
|
constructor(router, routerService) {
|
1702
1052
|
this.router = router;
|
1703
1053
|
this.routerService = routerService;
|
1704
1054
|
this.initialized = false;
|
1705
|
-
this.navToRestore = null;
|
1706
1055
|
}
|
1707
1056
|
canActivate(route) {
|
1708
1057
|
// We always need to initialize root component first, and only then start checking guards/resolvers
|
1709
1058
|
if (!this.initialized) {
|
1710
1059
|
this.initialized = true;
|
1711
|
-
|
1060
|
+
const navToRestore = this.router.getCurrentNavigation();
|
1712
1061
|
const rootUrl = this.routerService.getFlowRootPath(route);
|
1713
|
-
this.router
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1062
|
+
this.router
|
1063
|
+
.navigate([rootUrl], {
|
1064
|
+
replaceUrl: !navToRestore?.previousNavigation,
|
1065
|
+
skipLocationChange: true,
|
1066
|
+
})
|
1067
|
+
.then(success => {
|
1068
|
+
if (!success || !navToRestore) {
|
1069
|
+
return;
|
1070
|
+
}
|
1071
|
+
setTimeout(() => {
|
1072
|
+
this.router.navigateByUrl(navToRestore.extractedUrl, navToRestore.extras);
|
1073
|
+
});
|
1720
1074
|
});
|
1721
1075
|
}
|
1722
1076
|
return true;
|
@@ -1726,25 +1080,25 @@ class RootGuard {
|
|
1726
1080
|
return true;
|
1727
1081
|
}
|
1728
1082
|
}
|
1729
|
-
RootGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1730
|
-
RootGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
1731
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1083
|
+
RootGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RootGuard, deps: [{ token: i1$2.Router }, { token: FlowRouterService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1084
|
+
RootGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RootGuard, providedIn: 'root' });
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RootGuard, decorators: [{
|
1732
1086
|
type: Injectable,
|
1733
1087
|
args: [{ providedIn: 'root' }]
|
1734
1088
|
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: FlowRouterService }]; } });
|
1735
1089
|
|
1736
1090
|
class AssetsComponent {
|
1737
|
-
constructor(templatesApi,
|
1091
|
+
constructor(templatesApi, cdr, toastService, flowInfo, customizationService) {
|
1738
1092
|
this.templatesApi = templatesApi;
|
1739
|
-
this.contextService = contextService;
|
1740
1093
|
this.cdr = cdr;
|
1741
1094
|
this.toastService = toastService;
|
1095
|
+
this.flowInfo = flowInfo;
|
1742
1096
|
this.customizationService = customizationService;
|
1743
1097
|
this.uiDefinition = undefined;
|
1744
1098
|
this.state$ = new BehaviorSubject({ loading: true, failure: false });
|
1745
1099
|
this.templateApiName = '';
|
1746
1100
|
this.destroyed$ = new Subject();
|
1747
|
-
this.templateApiName = this.
|
1101
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.assets ?? '';
|
1748
1102
|
}
|
1749
1103
|
ngOnInit() {
|
1750
1104
|
this.generateUIDefinition$()
|
@@ -1789,7 +1143,12 @@ class AssetsComponent {
|
|
1789
1143
|
}));
|
1790
1144
|
}
|
1791
1145
|
getAssetsComponentMeta$() {
|
1792
|
-
|
1146
|
+
// No Assets template at the moment
|
1147
|
+
const template = this.flowInfo.templates.SHOPPING_CART;
|
1148
|
+
if (!template) {
|
1149
|
+
return of(undefined);
|
1150
|
+
}
|
1151
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(component => component ? this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component) : of(undefined)));
|
1793
1152
|
}
|
1794
1153
|
generateUIDefinition$() {
|
1795
1154
|
return of(undefined).pipe(tap(() => {
|
@@ -1819,12 +1178,12 @@ class AssetsComponent {
|
|
1819
1178
|
}));
|
1820
1179
|
}
|
1821
1180
|
}
|
1822
|
-
AssetsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1823
|
-
AssetsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
1824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1181
|
+
AssetsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AssetsComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i0.ChangeDetectorRef }, { token: i2$1.ToastService }, { token: i2.FlowInfoService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
1182
|
+
AssetsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AssetsComponent, selector: "vl-flow-assets", ngImport: i0, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "component", type: i2$1.LoaderComponent, selector: "vl-loader", inputs: ["label", "overlayVisible"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AssetsComponent, decorators: [{
|
1825
1184
|
type: Component,
|
1826
1185
|
args: [{ selector: 'vl-flow-assets', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n" }]
|
1827
|
-
}], ctorParameters: function () { return [{ type:
|
1186
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i0.ChangeDetectorRef }, { type: i2$1.ToastService }, { type: i2.FlowInfoService }, { type: undefined, decorators: [{
|
1828
1187
|
type: Optional
|
1829
1188
|
}, {
|
1830
1189
|
type: Inject,
|
@@ -1833,10 +1192,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
1833
1192
|
|
1834
1193
|
class AssetsModule {
|
1835
1194
|
}
|
1836
|
-
AssetsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1837
|
-
AssetsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
1838
|
-
AssetsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
1839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1195
|
+
AssetsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AssetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1196
|
+
AssetsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: AssetsModule, declarations: [AssetsComponent], imports: [CommonModule, PreviewModule, LoaderModule], exports: [AssetsComponent] });
|
1197
|
+
AssetsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AssetsModule, imports: [CommonModule, PreviewModule, LoaderModule] });
|
1198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AssetsModule, decorators: [{
|
1840
1199
|
type: NgModule,
|
1841
1200
|
args: [{
|
1842
1201
|
declarations: [AssetsComponent],
|
@@ -1846,17 +1205,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
1846
1205
|
}] });
|
1847
1206
|
|
1848
1207
|
class CatalogComponent {
|
1849
|
-
constructor(templatesApi,
|
1208
|
+
constructor(templatesApi, cdr, toastService, flowInfo, customizationService) {
|
1850
1209
|
this.templatesApi = templatesApi;
|
1851
|
-
this.contextService = contextService;
|
1852
1210
|
this.cdr = cdr;
|
1853
1211
|
this.toastService = toastService;
|
1212
|
+
this.flowInfo = flowInfo;
|
1854
1213
|
this.customizationService = customizationService;
|
1855
1214
|
this.uiDefinition = undefined;
|
1856
1215
|
this.state$ = new BehaviorSubject({ loading: true, failure: false });
|
1857
1216
|
this.templateApiName = '';
|
1858
1217
|
this.destroyed$ = new Subject();
|
1859
|
-
this.templateApiName = this.
|
1218
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.catalog ?? '';
|
1860
1219
|
}
|
1861
1220
|
ngOnInit() {
|
1862
1221
|
this.generateUIDefinition$()
|
@@ -1901,7 +1260,11 @@ class CatalogComponent {
|
|
1901
1260
|
}));
|
1902
1261
|
}
|
1903
1262
|
getCatalogComponentMeta$() {
|
1904
|
-
|
1263
|
+
const template = this.flowInfo.templates.CATALOG;
|
1264
|
+
if (!template) {
|
1265
|
+
return of(undefined);
|
1266
|
+
}
|
1267
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(component => component ? this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component) : of(undefined)));
|
1905
1268
|
}
|
1906
1269
|
generateUIDefinition$() {
|
1907
1270
|
return of(undefined).pipe(tap(() => {
|
@@ -1931,12 +1294,12 @@ class CatalogComponent {
|
|
1931
1294
|
}));
|
1932
1295
|
}
|
1933
1296
|
}
|
1934
|
-
CatalogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1935
|
-
CatalogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
1936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1297
|
+
CatalogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i0.ChangeDetectorRef }, { token: i2$1.ToastService }, { token: i2.FlowInfoService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
1298
|
+
CatalogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: CatalogComponent, selector: "vl-flow-catalog", ngImport: i0, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "component", type: i2$1.LoaderComponent, selector: "vl-loader", inputs: ["label", "overlayVisible"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogComponent, decorators: [{
|
1937
1300
|
type: Component,
|
1938
1301
|
args: [{ selector: 'vl-flow-catalog', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n" }]
|
1939
|
-
}], ctorParameters: function () { return [{ type:
|
1302
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i0.ChangeDetectorRef }, { type: i2$1.ToastService }, { type: i2.FlowInfoService }, { type: undefined, decorators: [{
|
1940
1303
|
type: Optional
|
1941
1304
|
}, {
|
1942
1305
|
type: Inject,
|
@@ -1945,10 +1308,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
1945
1308
|
|
1946
1309
|
class CatalogModule {
|
1947
1310
|
}
|
1948
|
-
CatalogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
1949
|
-
CatalogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
1950
|
-
CatalogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
1951
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1311
|
+
CatalogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1312
|
+
CatalogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: CatalogModule, declarations: [CatalogComponent], imports: [CommonModule, PreviewModule, LoaderModule], exports: [CatalogComponent] });
|
1313
|
+
CatalogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogModule, imports: [CommonModule, PreviewModule, LoaderModule] });
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CatalogModule, decorators: [{
|
1952
1315
|
type: NgModule,
|
1953
1316
|
args: [{
|
1954
1317
|
declarations: [CatalogComponent],
|
@@ -1967,15 +1330,7 @@ class DebugComponent {
|
|
1967
1330
|
this.form = new FormGroup({
|
1968
1331
|
id: new FormControl(''),
|
1969
1332
|
});
|
1970
|
-
this.flows$ = this.flowsApiService.fetchFlows().pipe(
|
1971
|
-
const queryParams = flow?.properties?.queryParams ?? {};
|
1972
|
-
return {
|
1973
|
-
id: flow.id,
|
1974
|
-
entryPath: flow?.properties?.entryPath,
|
1975
|
-
queryParams,
|
1976
|
-
queryParamsStr: JSON.stringify(queryParams),
|
1977
|
-
};
|
1978
|
-
})), shareReplay());
|
1333
|
+
this.flows$ = this.flowsApiService.fetchFlows().pipe(shareReplay());
|
1979
1334
|
}
|
1980
1335
|
runFlow() {
|
1981
1336
|
const { id } = this.form.value;
|
@@ -1990,30 +1345,33 @@ class DebugComponent {
|
|
1990
1345
|
queryParams: {
|
1991
1346
|
flowId: this.selectedFlow.id,
|
1992
1347
|
[objectPropertyName]: id,
|
1993
|
-
...this.selectedFlow.queryParams,
|
1348
|
+
...this.selectedFlow.properties.queryParams,
|
1994
1349
|
},
|
1995
1350
|
relativeTo: this.activatedRoute,
|
1996
1351
|
});
|
1997
1352
|
}
|
1353
|
+
getQueryParamsString(params) {
|
1354
|
+
return new HttpParams({ fromObject: params }).toString();
|
1355
|
+
}
|
1998
1356
|
}
|
1999
|
-
DebugComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2000
|
-
DebugComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
2001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1357
|
+
DebugComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DebugComponent, deps: [{ token: i1$1.FlowsApiService }, { token: i1$2.Router }, { token: i1$2.ActivatedRoute }, { token: i2.ContextService }, { token: i2.QuoteDraftService }], target: i0.ɵɵFactoryTarget.Component });
|
1358
|
+
DebugComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: DebugComponent, selector: "vl-flow-debug", ngImport: i0, template: "<form [formGroup]=\"form\">\n <div class=\"fields-container\">\n <div class=\"field\">\n <label>SF Object ID</label>\n <input formControlName=\"id\" pInputText type=\"text\" />\n </div>\n </div>\n\n <p-button\n styleClass=\"p-button-primary\"\n label=\"Run Flow\"\n [disabled]=\"!form.value.id || !selectedFlow\"\n (onClick)=\"runFlow()\"\n ></p-button>\n</form>\n\n<table>\n <thead>\n <tr>\n <th [width]=\"30\"></th>\n <th [width]=\"160\">ID</th>\n <th [width]=\"160\">Entry Path</th>\n <th>QueryParams</th>\n <th [width]=\"100\">Standalone</th>\n <th [width]=\"100\">Stateful</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let flow of flows$ | async\" (click)=\"selectedFlow = flow\">\n <td><p-radioButton [inputId]=\"flow.id\" name=\"flow\" [value]=\"flow\" [(ngModel)]=\"selectedFlow\"></p-radioButton></td>\n <td>{{ flow.id }}</td>\n <td>{{ flow.properties.entryPath }}</td>\n <td class=\"cell-query-params\">{{ getQueryParamsString(flow.properties.queryParams) }}</td>\n <td>{{ flow.properties.standalone }}</td>\n <td>{{ flow.properties.stateful }}</td>\n </tr>\n </tbody>\n</table>\n", styles: [":host{display:block;padding:24px 54px}form{display:flex;align-items:center;justify-content:space-between}.fields-container{display:flex;gap:24px}.field{display:flex;flex-direction:column;width:200px;flex-shrink:0}:host ::ng-deep .p-dropdown{width:100%}table{width:100%;border-collapse:collapse;table-layout:fixed}tbody>tr{cursor:pointer}tbody>tr:hover{background-color:#f0f5fa}th{text-align:left;font-weight:600}th,td{padding:0 10px;height:30px;border-bottom:1px solid var(--vl-border-color);margin-right:16px;line-height:18px}.cell-query-params{word-break:break-all}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i5$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i5$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i6.RadioButton, selector: "p-radioButton", inputs: ["value", "formControlName", "name", "disabled", "label", "tabindex", "inputId", "ariaLabelledBy", "ariaLabel", "style", "styleClass", "labelStyleClass"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "component", type: i3.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "directive", type: i8.InputText, selector: "[pInputText]" }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DebugComponent, decorators: [{
|
2002
1360
|
type: Component,
|
2003
|
-
args: [{ selector: 'vl-flow-debug', changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"form\">\n <div class=\"fields-container\">\n <div class=\"field\">\n <label>SF Object ID</label>\n <input formControlName=\"id\" pInputText type=\"text\" />\n </div>\n </div>\n\n <p-button\n styleClass=\"p-button-primary\"\n label=\"Run Flow\"\n [disabled]=\"!form.value.id || !selectedFlow\"\n (onClick)=\"runFlow()\"\n ></p-button>\n</form>\n\n<table>\n <thead>\n <tr>\n <th [width]=\"30\"></th>\n <th [width]=\"160\">ID</th>\n <th [width]=\"160\">Entry Path</th>\n <th>QueryParams</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let flow of flows$ | async\" (click)=\"selectedFlow = flow\">\n <td><p-radioButton [inputId]=\"flow.id\" name=\"flow\" [value]=\"flow\" [(ngModel)]=\"selectedFlow\"></p-radioButton></td>\n <td>{{ flow.id }}</td>\n <td>{{ flow.entryPath }}</td>\n <td>{{ flow.
|
2004
|
-
}], ctorParameters: function () { return [{ type:
|
1361
|
+
args: [{ selector: 'vl-flow-debug', changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"form\">\n <div class=\"fields-container\">\n <div class=\"field\">\n <label>SF Object ID</label>\n <input formControlName=\"id\" pInputText type=\"text\" />\n </div>\n </div>\n\n <p-button\n styleClass=\"p-button-primary\"\n label=\"Run Flow\"\n [disabled]=\"!form.value.id || !selectedFlow\"\n (onClick)=\"runFlow()\"\n ></p-button>\n</form>\n\n<table>\n <thead>\n <tr>\n <th [width]=\"30\"></th>\n <th [width]=\"160\">ID</th>\n <th [width]=\"160\">Entry Path</th>\n <th>QueryParams</th>\n <th [width]=\"100\">Standalone</th>\n <th [width]=\"100\">Stateful</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let flow of flows$ | async\" (click)=\"selectedFlow = flow\">\n <td><p-radioButton [inputId]=\"flow.id\" name=\"flow\" [value]=\"flow\" [(ngModel)]=\"selectedFlow\"></p-radioButton></td>\n <td>{{ flow.id }}</td>\n <td>{{ flow.properties.entryPath }}</td>\n <td class=\"cell-query-params\">{{ getQueryParamsString(flow.properties.queryParams) }}</td>\n <td>{{ flow.properties.standalone }}</td>\n <td>{{ flow.properties.stateful }}</td>\n </tr>\n </tbody>\n</table>\n", styles: [":host{display:block;padding:24px 54px}form{display:flex;align-items:center;justify-content:space-between}.fields-container{display:flex;gap:24px}.field{display:flex;flex-direction:column;width:200px;flex-shrink:0}:host ::ng-deep .p-dropdown{width:100%}table{width:100%;border-collapse:collapse;table-layout:fixed}tbody>tr{cursor:pointer}tbody>tr:hover{background-color:#f0f5fa}th{text-align:left;font-weight:600}th,td{padding:0 10px;height:30px;border-bottom:1px solid var(--vl-border-color);margin-right:16px;line-height:18px}.cell-query-params{word-break:break-all}\n"] }]
|
1362
|
+
}], ctorParameters: function () { return [{ type: i1$1.FlowsApiService }, { type: i1$2.Router }, { type: i1$2.ActivatedRoute }, { type: i2.ContextService }, { type: i2.QuoteDraftService }]; } });
|
2005
1363
|
|
2006
1364
|
const routes$1 = [{ path: '', component: DebugComponent }];
|
2007
1365
|
class DebugModule {
|
2008
1366
|
}
|
2009
|
-
DebugModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2010
|
-
DebugModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
1367
|
+
DebugModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DebugModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1368
|
+
DebugModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: DebugModule, declarations: [DebugComponent], imports: [CommonModule,
|
2011
1369
|
FormsModule,
|
2012
1370
|
ReactiveFormsModule, i1$2.RouterModule, RadioButtonModule,
|
2013
1371
|
ButtonModule,
|
2014
1372
|
InputTextModule,
|
2015
1373
|
DropdownModule] });
|
2016
|
-
DebugModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
1374
|
+
DebugModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DebugModule, imports: [CommonModule,
|
2017
1375
|
FormsModule,
|
2018
1376
|
ReactiveFormsModule,
|
2019
1377
|
RouterModule.forChild(routes$1),
|
@@ -2021,7 +1379,7 @@ DebugModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
|
|
2021
1379
|
ButtonModule,
|
2022
1380
|
InputTextModule,
|
2023
1381
|
DropdownModule] });
|
2024
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DebugModule, decorators: [{
|
2025
1383
|
type: NgModule,
|
2026
1384
|
args: [{
|
2027
1385
|
declarations: [DebugComponent],
|
@@ -2040,19 +1398,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2040
1398
|
|
2041
1399
|
class EmptyAccountComponent {
|
2042
1400
|
}
|
2043
|
-
EmptyAccountComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2044
|
-
EmptyAccountComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: EmptyAccountComponent, selector: "vl-empty-account", ngImport: i0, template: "<vl-empty-state\n primaryText=\"No Orders in your Account\"\n secondaryText=\"To proceed, go to the Shopping Cart from a Quote.\"\n>\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"400\" height=\"281\" viewBox=\"0 0 400 281\" fill=\"none\">\n <path d=\"M264.214 26.9277H70.8805V128.186H264.214V26.9277Z\" fill=\"#0466C8\" />\n <path\n d=\"M143 56.5H136.217C128.166 64.4791 120.051 72.5209 112 80.5H118.783C126.834 72.5209 134.949 64.5419 143 56.5Z\"\n fill=\"white\"\n />\n <path\n d=\"M242.932 57.5681V79.4319H128.575L133.724 74.2801L150.429 57.5681H242.932ZM244 56.5H149.989C142.014 64.4791 133.976 72.5209 126 80.5H244V56.5Z\"\n fill=\"white\"\n />\n <path d=\"M129 56.5H81V80.5H104.969C112.958 72.5209 120.948 64.5419 129 56.5Z\" fill=\"white\" />\n <path\n d=\"M82.3 23.2016C82.2366 23.2016 82.1732 23.2644 82.1098 23.2644C81.3494 23.5785 80.5889 23.5785 79.8918 23.2644C79.765 23.2016 79.6383 23.1387 79.4482 23.0759C78.9412 22.7618 78.561 22.322 78.3075 21.7565C77.6104 20.2487 78.1173 18.6151 79.6383 17.8612C81.1592 17.1073 82.9971 17.547 83.6942 19.0549C84.3913 20.6256 83.8843 22.3848 82.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M92.2716 23.2016C92.2086 23.2016 92.1457 23.2644 92.0827 23.2644C91.3273 23.5785 90.5718 23.5785 89.8793 23.2644C89.7534 23.2016 89.6275 23.1387 89.4386 23.0759C88.935 22.7618 88.5573 22.322 88.3054 21.7565C87.6129 20.2487 88.1166 18.6151 89.6275 17.8612C91.1384 17.1073 92.9641 17.547 93.6566 19.0549C94.412 20.6256 93.9084 22.3848 92.2716 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M102.3 23.2016C102.237 23.2016 102.173 23.2644 102.11 23.2644C101.349 23.5785 100.589 23.5785 99.8918 23.2644C99.765 23.2016 99.6383 23.1387 99.4482 23.0759C98.9412 22.7618 98.561 22.322 98.3075 21.7565C97.6104 20.2487 98.1174 18.6151 99.6383 17.8612C101.159 17.1073 102.997 17.547 103.694 19.0549C104.391 20.6256 103.884 22.3848 102.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M210.126 91.0156H130.44C129.748 91.0156 129.748 92.0848 130.44 92.0848H210.126C210.818 92.0848 210.818 91.0156 210.126 91.0156Z\"\n fill=\"white\"\n />\n <path\n d=\"M197.484 97.5566H142.013C141.321 97.5566 141.321 98.6258 142.013 98.6258H197.484C198.176 98.6258 198.176 97.5566 197.484 97.5566Z\"\n fill=\"white\"\n />\n <path\n d=\"M229.436 35.5H61.5553C60.8149 35.5 60.8149 36.5 61.5553 36.5H229.503C230.176 36.5 230.176 35.5 229.436 35.5Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M270.44 35.3555H256.226C256.163 35.3555 256.163 36.4246 256.226 36.4246H270.44C270.503 36.4246 270.503 35.3555 270.44 35.3555Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.704 212.022C332.642 212.022 332.579 212.022 332.516 211.959L280.566 191.582C280.377 191.519 280.252 191.33 280.252 191.141C280.252 190.953 280.314 190.764 280.44 190.638C292.83 181.33 333.333 150.953 335.346 150.953C335.472 150.953 335.66 151.016 335.723 151.141C335.849 151.267 335.849 151.393 335.849 151.519L333.208 211.456C333.208 211.644 333.082 211.77 332.956 211.896C332.893 211.959 332.767 212.022 332.704 212.022ZM281.824 190.953L332.138 210.701L334.717 152.336C329.811 155.166 301.321 176.299 281.824 190.953Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M366.289 231.015C366.226 231.015 366.226 231.015 366.164 231.015L349.371 227.053C349.182 226.99 349.057 226.927 348.994 226.739C348.931 226.613 348.931 226.424 348.994 226.236L357.736 211.141C357.862 210.953 358.05 210.89 358.239 210.89C358.428 210.89 358.616 211.015 358.679 211.204C366.918 229.758 366.792 230.324 366.792 230.512C366.792 230.638 366.667 230.764 366.541 230.89C366.478 230.953 366.415 231.015 366.289 231.015ZM350.314 226.173L365.472 229.758C364.465 227.116 360.755 218.626 358.113 212.651L350.314 226.173Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M199.686 248.751C192.516 229.38 177.799 213.909 159.497 205.67V205.607C159.748 193.343 154.528 181.141 144.654 173.657C133.396 165.104 118.365 162.902 104.591 164.034C78.1132 166.236 53.0189 181.456 38.805 203.846C36.9811 206.739 35.3459 209.758 33.8365 212.839C33.522 213.468 34.4654 214.034 34.7799 213.405C45.4088 191.015 66.1635 174.16 90 167.682C113.711 161.267 146.981 164.726 156.226 191.519C157.736 195.921 158.491 200.575 158.428 205.229C150.943 201.959 142.893 199.946 134.465 199.254C121.447 198.248 103.522 199.506 95.283 211.204C91.761 216.236 90.8805 222.525 93.5849 228.122C96.2893 233.72 101.761 237.745 107.421 239.946C118.868 244.475 132.39 242.462 142.642 235.858C152.642 229.38 158.679 218.688 159.371 206.865C177.17 215.041 191.572 230.072 198.616 249.066C198.931 249.695 199.937 249.443 199.686 248.751ZM152.075 225.481C145.094 235.355 133.019 241.141 121.006 241.267C109.434 241.393 92.7044 234.6 93.0189 220.701C93.2076 213.217 98.9937 207.305 105.346 204.286C112.013 201.141 119.748 200.198 127.044 200.072C137.987 199.883 148.616 202.148 158.302 206.361C158.113 213.154 156.038 219.883 152.075 225.481Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M341.447 271.204H322.767C322.075 271.204 322.075 272.273 322.767 272.273H341.447C342.138 272.336 342.138 271.204 341.447 271.204Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M233.522 75.4814C230.881 89.3179 229.245 103.154 224.025 110.576C213.962 124.915 185.975 137.117 178.428 143.972C170.881 150.764 171.95 151.142 173.019 152.588C173.648 153.469 177.862 151.771 181.132 150.261C177.421 152.211 172.579 155.23 173.711 157.242C174.654 159.003 178.679 157.808 182.201 156.362C178.994 158.123 175.786 160.387 176.981 161.959C178.365 163.783 183.585 161.897 187.107 160.387C184.088 162.022 180.314 164.475 181.635 166.299C183.774 169.192 235.849 149.758 245.157 120.702C248.805 109.318 250.881 94.6009 252.013 80.8274C245.786 79.3808 239.623 77.494 233.522 75.4814Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M182.327 148.437C179.497 150.576 176.226 151.645 172.704 151.582C172.013 151.582 172.013 152.651 172.704 152.651C176.415 152.714 179.937 151.582 182.893 149.318C183.396 148.941 182.893 147.997 182.327 148.437Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M184.906 154.852C183.27 155.607 181.635 156.173 179.937 156.676C178.302 157.117 175.723 158.06 174.151 157.117C173.522 156.802 173.019 157.683 173.585 158.06C175.157 158.94 176.918 158.5 178.553 158.123C180.943 157.62 183.145 156.802 185.346 155.796C186.101 155.481 185.535 154.538 184.906 154.852Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M186.163 158.185C184.277 159.946 180.189 163.217 177.421 161.833C176.792 161.519 176.226 162.462 176.855 162.777C180.252 164.412 184.528 161.141 186.855 158.94C187.421 158.437 186.667 157.682 186.163 158.185Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M253.522 46.0474C253.522 47.1166 253.522 48.3115 253.522 49.6323C253.459 57.3052 253.145 69.1291 252.013 81.6449C251.95 82.148 251.95 82.6512 251.887 83.1543C245.472 82.148 236.981 79.2549 230.629 78.1857C232.893 65.7958 237.736 54.2864 244.151 45.4185C245.157 44.0348 246.226 42.7769 247.421 41.6449L253.522 40.5757C253.522 40.5757 253.522 41.3933 253.585 42.8398C253.522 43.6574 253.522 44.7266 253.522 46.0474Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M184.687 136.932C179.875 137.121 175.253 138.637 170.631 139.837C165.565 141.101 160.5 142.174 155.371 143.122C134.602 146.975 113.264 148.238 92.1786 146.849C74.7659 145.712 55.3904 142.238 43.2332 128.531C32.469 116.403 28.9865 98.1477 34.9384 82.9879C40.7638 68.0807 55.3271 57.6583 70.9668 55.5738V54.5C58.6197 56.0792 46.969 62.7748 39.4341 72.755C29.9996 85.325 28.6066 102.317 34.6218 116.719C41.0804 132.257 55.2004 141.227 71.1568 145.017C80.2747 147.165 89.6458 147.923 98.9537 148.302C109.718 148.744 120.545 148.428 131.246 147.544C143.087 146.533 154.801 144.638 166.388 142.048C172.403 140.658 178.545 138.321 184.687 138.132C190.576 137.942 197.604 140.974 197.921 147.607C197.984 148.302 199.061 148.302 198.997 147.607C198.617 140.216 191.209 136.679 184.687 136.932Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M190 164.091V172.909C190 173.697 191 173.697 191 172.909V164.091C191 163.303 190 163.303 190 164.091Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M199 164.037V172.963C199 173.679 200 173.679 200 172.963V164.037C200 163.321 199 163.321 199 164.037Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M182 166.5V155.275C182 148.205 187.792 142.5 194.969 142.5C202.145 142.5 207.937 148.205 207.937 155.275L208 166.5H182Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M209.483 165.5H180.517C179.828 165.5 179.828 166.5 180.517 166.5H209.483C210.172 166.5 210.172 165.5 209.483 165.5Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M203.711 151.519V161.582C203.711 162.274 204.78 162.274 204.78 161.582V151.519C204.843 150.827 203.711 150.827 203.711 151.519Z\"\n fill=\"white\"\n />\n <path\n d=\"M196.73 134.601C187.421 142.148 183.648 152.274 187.233 153.343C190.818 154.412 203.208 135.67 203.208 135.67L196.73 134.601Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M199.748 139.632C196.855 144.098 193.396 148.374 189.182 151.708L188.239 152.399C187.358 152.84 186.352 152.148 186.478 150.953C186.541 150.45 187.233 149.066 187.421 148.689C187.925 147.557 188.491 146.425 189.057 145.292C190.377 142.777 191.824 140.387 193.459 138.06C193.836 137.494 192.893 136.928 192.516 137.494C191.195 139.443 181.824 152.399 186.855 153.594C189.245 154.16 191.824 150.827 193.27 149.381C196.038 146.55 198.491 143.469 200.692 140.135C201.069 139.569 200.126 139.066 199.748 139.632Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M211.132 135.984C207.736 139.003 203.648 140.89 199.057 141.33C198.365 141.393 198.365 142.462 199.057 142.399C203.899 141.896 208.239 139.947 211.887 136.739C212.39 136.299 211.635 135.544 211.132 135.984Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M238.176 254.224C250.692 253.783 263.208 255.607 275.723 255.796C275.157 254.475 274.654 253.217 274.088 251.897C273.774 251.205 273.459 250.513 273.145 249.821C270.377 243.658 267.484 237.809 264.717 232.274C254.906 235.859 245.031 239.129 234.843 241.331C237.547 246.928 239.12 251.393 238.176 254.224Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M273.899 253.595C276.101 253.783 278.365 253.783 280.566 253.72C284.717 253.658 288.805 253.72 292.956 253.72C299.12 253.783 305.283 253.532 311.384 253.091C307.17 244.161 302.767 235.796 298.553 228.06C289.057 230.639 279.56 232.966 269.937 235.104C273.145 242.525 275.031 249.003 273.899 253.595Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M274.214 250.828C273.836 255.104 271.069 257.997 267.107 259.57C256.352 263.909 259.937 272.84 259.937 272.84H319.874C316.918 265.167 313.648 257.809 310.314 250.765H274.214V250.828Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M307.296 229.758C293.459 203.783 276.289 186.299 281.447 173.72C297.233 135.419 300.818 107.997 291.887 84.3494L267.484 80.0098C267.484 80.0098 269.623 91.5192 268.553 112.337C267.484 133.154 252.201 152.022 250.252 182.337C249.182 199.129 259.937 225.985 266.415 241.582C275.912 238.437 297.547 232.085 307.296 229.758Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M265.786 234.475C252.516 207.934 240.063 187.683 246.415 172.714C263.145 133.406 281.069 109.884 272.075 86.1733C272.075 86.1733 254.843 72.5255 253.774 93.3431C252.704 114.161 218.05 153.846 214.088 183.972C211.321 204.915 223.962 230.513 230.252 245.356C240.252 242.337 256.352 238.815 265.786 234.475Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M282.201 272.84H222.264C222.264 272.84 222.264 260.45 234.654 257.243C237.17 256.614 238.302 255.104 238.491 252.966H274.591C277.296 259.255 279.874 265.922 282.201 272.84Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M274.088 251.896C274.025 252.274 273.962 252.588 273.836 252.966C273.082 255.67 271.195 258.123 268.428 259.444C264.151 261.519 259.119 261.456 256.289 265.922C254.969 268.06 254.402 270.45 254.34 272.84H253.333C253.522 268.311 254.906 264.098 259.182 261.708C262.704 259.758 267.233 259.821 270.252 256.991C271.447 255.922 272.264 254.475 272.704 252.966C273.019 251.959 273.145 250.89 273.082 249.884C273.459 250.513 273.774 251.205 274.088 251.896Z\"\n fill=\"white\"\n />\n <path\n d=\"M281.195 256.739C279.497 255.67 277.799 254.601 276.101 253.532C275.535 253.154 274.969 254.098 275.535 254.475C277.233 255.544 278.931 256.614 280.629 257.683C281.258 258.06 281.761 257.117 281.195 256.739Z\"\n fill=\"white\"\n />\n <path\n d=\"M244.717 257.809C242.893 257.242 241.132 256.739 239.308 256.173C238.616 255.985 238.365 256.991 238.994 257.243C240.818 257.809 242.579 258.312 244.403 258.878C245.094 259.066 245.346 258.06 244.717 257.809Z\"\n fill=\"white\"\n />\n <path\n d=\"M262.516 231.267C261.069 227.682 259.623 224.098 258.239 220.513C257.987 219.884 256.918 220.135 257.17 220.827C258.616 224.412 260.063 227.997 261.447 231.582C261.698 232.211 262.767 231.959 262.516 231.267Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.394C265.786 121.645 263.208 131.897 260.692 142.148C260.503 142.84 259.497 142.526 259.623 141.834C262.264 131.331 264.843 120.765 267.484 110.262C267.61 109.821 267.736 109.381 267.799 108.878C268.05 109.318 268.365 109.696 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.393C268.05 111.016 267.736 110.639 267.484 110.261C266.478 108.878 265.409 107.494 264.402 106.11C263.962 105.544 264.906 105.041 265.346 105.544C266.163 106.676 266.981 107.808 267.862 108.878C268.05 109.318 268.365 109.695 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M251.698 43.0913C238.994 45.7328 251.509 69.5693 253.836 93.3429L291.887 84.3492C291.887 84.3492 276.415 37.997 251.698 43.0913Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M251.384 79.8839C249.308 73.6574 247.296 67.4939 245.22 61.2675C245.031 60.6386 243.962 60.8901 244.151 61.582C246.226 67.8084 248.239 73.9719 250.314 80.1983C250.566 80.8273 251.572 80.5128 251.384 79.8839Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.075 57.431C322.39 48.3744 311.447 43.5945 299.811 41.2046C297.673 46.9908 295.723 52.9027 293.962 58.8147C295.66 59.3807 297.359 60.0096 298.994 60.6386C323.396 69.6323 326.667 87.1794 330.566 97.6197C334.528 108.06 322.642 122.777 326.604 124.538C330.566 126.362 336.289 113.028 336.289 113.028C336.289 113.028 334.843 135.481 337.736 136.173C340.377 136.865 341.698 131.016 342.264 126.488C342.076 130.764 342.327 136.047 344.906 135.859C347.17 135.67 347.862 131.456 347.987 127.494C348.365 130.764 349.245 133.909 351.384 134.098C354.088 134.349 353.962 128.626 353.522 124.349C354.277 128.123 355.66 132.777 358.05 131.896C362.075 130.513 353.962 77.8713 332.075 57.431Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M302.453 41.7707C300.314 47.7455 296.667 58.8147 295.157 64.9782C287.61 60.6386 279.245 57.1795 273.082 53.6575C265.723 49.5065 258.742 47.5569 254.717 46.3619C254.277 46.2361 253.836 46.1103 253.459 46.0474C251.572 45.5443 250.566 45.2298 250.566 45.2298L251.95 43.0286L253.459 40.5757C254.717 40.4499 255.912 40.3871 257.17 40.2613C272.704 38.9405 288.176 38.3745 302.453 41.7707Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M341.761 123.846C341.384 127.117 341.887 134.853 337.673 135.67C336.981 135.796 337.296 136.865 337.987 136.739C339.874 136.362 341.069 134.915 341.572 133.154C342.453 130.261 342.453 126.928 342.83 123.909C342.956 123.154 341.824 123.154 341.761 123.846Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M346.981 122.966C346.918 124.852 346.855 126.739 346.73 128.626C346.667 129.884 347.107 135.544 344.78 135.041C344.088 134.915 343.837 135.922 344.466 136.11C346.352 136.488 347.296 135.104 347.61 133.406C348.176 130.073 347.925 126.362 348.05 122.966C348.113 122.274 347.044 122.274 346.981 122.966Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M353.648 122.022C353.648 121.33 352.579 121.33 352.579 122.022C352.642 124.035 353.774 132.337 351.132 133.029C350.44 133.217 350.755 134.224 351.447 134.098C353.019 133.657 353.648 132.525 353.774 130.953C354.088 128.06 353.711 124.978 353.648 122.022Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M358.868 119.129C358.805 118.437 357.736 118.5 357.799 119.192C357.987 120.953 360.126 130.639 357.547 131.142C356.855 131.267 357.17 132.274 357.862 132.148C359.56 131.834 360 130.387 360 128.815C359.937 125.67 359.245 122.337 358.868 119.129Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M275.346 54.3493C274.088 53.8462 272.83 53.4059 271.635 52.9028C271.006 52.6512 270.692 53.7204 271.321 53.972C272.579 54.4751 273.836 54.9154 275.031 55.4185C275.723 55.6701 276.038 54.6009 275.346 54.3493Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M256.164 41.9592C254.277 37.4938 251.509 31.2045 251.132 31.1416L241.006 33.28C241.006 33.28 245.849 42.9655 248.113 47.5567C250.629 45.4812 253.333 43.6573 256.164 41.9592Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M252.704 28.4372C252.704 28.7517 252.642 29.0661 252.579 29.3806C252.516 29.6951 252.453 30.0095 252.39 30.2611C252.39 30.324 252.327 30.3869 252.327 30.4498C252.264 30.7013 252.201 30.9529 252.138 31.2045C250.943 35.041 247.862 38.0598 243.082 38.1856C233.899 38.3743 230.252 30.7013 231.384 24.412C232.138 20.1982 235.094 16.5504 239.937 16.173C240.126 16.173 240.377 16.1102 240.566 16.1102C245.031 16.0473 248.176 17.6825 250.189 20.0724C250.503 20.5127 250.818 20.9529 251.132 21.3932C251.321 21.7076 251.447 22.0221 251.635 22.3366C251.887 22.8397 252.075 23.3429 252.201 23.846C252.641 25.3554 252.83 26.9278 252.704 28.4372Z\"\n fill=\"#D4E8F7\"\n />\n <path d=\"M236.478 29.3179L238.679 34.9782L234.528 35.2298L236.478 29.3179Z\" fill=\"#002957\" />\n <path\n d=\"M239.182 28.0601L239.434 28.8148C239.686 29.4438 238.616 29.6953 238.365 29.0664L238.113 28.3117C237.924 27.6827 238.994 27.4312 239.182 28.0601Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M233.27 28.9406L233.522 29.6954C233.774 30.3243 232.704 30.5759 232.453 29.9469L232.201 29.1922C232.013 28.5004 233.082 28.2488 233.27 28.9406Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M247.044 27.1166C246.918 27.6827 246.855 28.3116 246.73 28.8776C246.604 29.5695 247.673 29.8839 247.736 29.1921C247.862 28.6261 247.924 27.9971 248.05 27.4311C248.176 26.7393 247.17 26.4877 247.044 27.1166Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M252.201 23.8461C252.013 23.343 251.824 22.8399 251.635 22.3367C251.509 22.0222 251.321 21.7078 251.132 21.3933C250.88 20.9531 250.566 20.5128 250.189 20.0726C248.176 17.6197 245.031 15.9845 240.566 16.1103C240.377 16.1103 240.126 16.1103 239.937 16.1732C238.491 16.299 234.465 16.9279 232.956 18.8147C228.616 20.1355 225.157 23.909 229.308 25.4814C232.453 26.8021 238.176 25.7958 240.88 24.4751C241.132 25.6072 242.83 28.7518 244.151 28.626C245.723 28.4373 245.472 26.6763 244.969 25.6072C244.906 25.4814 244.843 25.3556 244.78 25.2298C245.094 25.0411 245.409 24.8524 245.786 24.7267C247.925 23.7204 250.818 24.6638 251.509 27.1166C251.824 28.3744 251.698 29.7581 250.943 30.7015C250.88 30.8273 251.824 31.2046 252.138 31.2675C252.201 31.016 252.264 30.7644 252.327 30.5128C252.327 30.4499 252.327 30.387 252.39 30.3241C252.453 30.0097 252.516 29.7581 252.579 29.4436C252.642 29.1292 252.641 28.8147 252.704 28.5002C252.767 26.9279 252.641 25.3556 252.201 23.8461Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M257.17 40.2612L256.226 42.7141L254.78 46.3619L253.522 49.5694L251.635 54.4122L246.478 48.1858L244.151 45.4185C245.157 44.0348 246.226 42.777 247.421 41.6449L253.522 40.5757C254.717 40.4499 255.912 40.3241 257.17 40.2612Z\"\n fill=\"#D4E8F7\"\n />\n </svg>\n</vl-empty-state>\n", styles: [":host{display:flex;height:100%}\n"], dependencies: [{ kind: "component", type: i3$1.EmptyStateComponent, selector: "vl-empty-state", inputs: ["primaryText", "secondaryText", "buttonLabel", "icon", "disabled"], outputs: ["buttonClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1401
|
+
EmptyAccountComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
1402
|
+
EmptyAccountComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: EmptyAccountComponent, selector: "vl-empty-account", ngImport: i0, template: "<vl-empty-state\n primaryText=\"No Orders in your Account\"\n secondaryText=\"To proceed, go to the Shopping Cart from a Quote.\"\n>\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"400\" height=\"281\" viewBox=\"0 0 400 281\" fill=\"none\">\n <path d=\"M264.214 26.9277H70.8805V128.186H264.214V26.9277Z\" fill=\"#0466C8\" />\n <path\n d=\"M143 56.5H136.217C128.166 64.4791 120.051 72.5209 112 80.5H118.783C126.834 72.5209 134.949 64.5419 143 56.5Z\"\n fill=\"white\"\n />\n <path\n d=\"M242.932 57.5681V79.4319H128.575L133.724 74.2801L150.429 57.5681H242.932ZM244 56.5H149.989C142.014 64.4791 133.976 72.5209 126 80.5H244V56.5Z\"\n fill=\"white\"\n />\n <path d=\"M129 56.5H81V80.5H104.969C112.958 72.5209 120.948 64.5419 129 56.5Z\" fill=\"white\" />\n <path\n d=\"M82.3 23.2016C82.2366 23.2016 82.1732 23.2644 82.1098 23.2644C81.3494 23.5785 80.5889 23.5785 79.8918 23.2644C79.765 23.2016 79.6383 23.1387 79.4482 23.0759C78.9412 22.7618 78.561 22.322 78.3075 21.7565C77.6104 20.2487 78.1173 18.6151 79.6383 17.8612C81.1592 17.1073 82.9971 17.547 83.6942 19.0549C84.3913 20.6256 83.8843 22.3848 82.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M92.2716 23.2016C92.2086 23.2016 92.1457 23.2644 92.0827 23.2644C91.3273 23.5785 90.5718 23.5785 89.8793 23.2644C89.7534 23.2016 89.6275 23.1387 89.4386 23.0759C88.935 22.7618 88.5573 22.322 88.3054 21.7565C87.6129 20.2487 88.1166 18.6151 89.6275 17.8612C91.1384 17.1073 92.9641 17.547 93.6566 19.0549C94.412 20.6256 93.9084 22.3848 92.2716 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M102.3 23.2016C102.237 23.2016 102.173 23.2644 102.11 23.2644C101.349 23.5785 100.589 23.5785 99.8918 23.2644C99.765 23.2016 99.6383 23.1387 99.4482 23.0759C98.9412 22.7618 98.561 22.322 98.3075 21.7565C97.6104 20.2487 98.1174 18.6151 99.6383 17.8612C101.159 17.1073 102.997 17.547 103.694 19.0549C104.391 20.6256 103.884 22.3848 102.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M210.126 91.0156H130.44C129.748 91.0156 129.748 92.0848 130.44 92.0848H210.126C210.818 92.0848 210.818 91.0156 210.126 91.0156Z\"\n fill=\"white\"\n />\n <path\n d=\"M197.484 97.5566H142.013C141.321 97.5566 141.321 98.6258 142.013 98.6258H197.484C198.176 98.6258 198.176 97.5566 197.484 97.5566Z\"\n fill=\"white\"\n />\n <path\n d=\"M229.436 35.5H61.5553C60.8149 35.5 60.8149 36.5 61.5553 36.5H229.503C230.176 36.5 230.176 35.5 229.436 35.5Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M270.44 35.3555H256.226C256.163 35.3555 256.163 36.4246 256.226 36.4246H270.44C270.503 36.4246 270.503 35.3555 270.44 35.3555Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.704 212.022C332.642 212.022 332.579 212.022 332.516 211.959L280.566 191.582C280.377 191.519 280.252 191.33 280.252 191.141C280.252 190.953 280.314 190.764 280.44 190.638C292.83 181.33 333.333 150.953 335.346 150.953C335.472 150.953 335.66 151.016 335.723 151.141C335.849 151.267 335.849 151.393 335.849 151.519L333.208 211.456C333.208 211.644 333.082 211.77 332.956 211.896C332.893 211.959 332.767 212.022 332.704 212.022ZM281.824 190.953L332.138 210.701L334.717 152.336C329.811 155.166 301.321 176.299 281.824 190.953Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M366.289 231.015C366.226 231.015 366.226 231.015 366.164 231.015L349.371 227.053C349.182 226.99 349.057 226.927 348.994 226.739C348.931 226.613 348.931 226.424 348.994 226.236L357.736 211.141C357.862 210.953 358.05 210.89 358.239 210.89C358.428 210.89 358.616 211.015 358.679 211.204C366.918 229.758 366.792 230.324 366.792 230.512C366.792 230.638 366.667 230.764 366.541 230.89C366.478 230.953 366.415 231.015 366.289 231.015ZM350.314 226.173L365.472 229.758C364.465 227.116 360.755 218.626 358.113 212.651L350.314 226.173Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M199.686 248.751C192.516 229.38 177.799 213.909 159.497 205.67V205.607C159.748 193.343 154.528 181.141 144.654 173.657C133.396 165.104 118.365 162.902 104.591 164.034C78.1132 166.236 53.0189 181.456 38.805 203.846C36.9811 206.739 35.3459 209.758 33.8365 212.839C33.522 213.468 34.4654 214.034 34.7799 213.405C45.4088 191.015 66.1635 174.16 90 167.682C113.711 161.267 146.981 164.726 156.226 191.519C157.736 195.921 158.491 200.575 158.428 205.229C150.943 201.959 142.893 199.946 134.465 199.254C121.447 198.248 103.522 199.506 95.283 211.204C91.761 216.236 90.8805 222.525 93.5849 228.122C96.2893 233.72 101.761 237.745 107.421 239.946C118.868 244.475 132.39 242.462 142.642 235.858C152.642 229.38 158.679 218.688 159.371 206.865C177.17 215.041 191.572 230.072 198.616 249.066C198.931 249.695 199.937 249.443 199.686 248.751ZM152.075 225.481C145.094 235.355 133.019 241.141 121.006 241.267C109.434 241.393 92.7044 234.6 93.0189 220.701C93.2076 213.217 98.9937 207.305 105.346 204.286C112.013 201.141 119.748 200.198 127.044 200.072C137.987 199.883 148.616 202.148 158.302 206.361C158.113 213.154 156.038 219.883 152.075 225.481Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M341.447 271.204H322.767C322.075 271.204 322.075 272.273 322.767 272.273H341.447C342.138 272.336 342.138 271.204 341.447 271.204Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M233.522 75.4814C230.881 89.3179 229.245 103.154 224.025 110.576C213.962 124.915 185.975 137.117 178.428 143.972C170.881 150.764 171.95 151.142 173.019 152.588C173.648 153.469 177.862 151.771 181.132 150.261C177.421 152.211 172.579 155.23 173.711 157.242C174.654 159.003 178.679 157.808 182.201 156.362C178.994 158.123 175.786 160.387 176.981 161.959C178.365 163.783 183.585 161.897 187.107 160.387C184.088 162.022 180.314 164.475 181.635 166.299C183.774 169.192 235.849 149.758 245.157 120.702C248.805 109.318 250.881 94.6009 252.013 80.8274C245.786 79.3808 239.623 77.494 233.522 75.4814Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M182.327 148.437C179.497 150.576 176.226 151.645 172.704 151.582C172.013 151.582 172.013 152.651 172.704 152.651C176.415 152.714 179.937 151.582 182.893 149.318C183.396 148.941 182.893 147.997 182.327 148.437Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M184.906 154.852C183.27 155.607 181.635 156.173 179.937 156.676C178.302 157.117 175.723 158.06 174.151 157.117C173.522 156.802 173.019 157.683 173.585 158.06C175.157 158.94 176.918 158.5 178.553 158.123C180.943 157.62 183.145 156.802 185.346 155.796C186.101 155.481 185.535 154.538 184.906 154.852Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M186.163 158.185C184.277 159.946 180.189 163.217 177.421 161.833C176.792 161.519 176.226 162.462 176.855 162.777C180.252 164.412 184.528 161.141 186.855 158.94C187.421 158.437 186.667 157.682 186.163 158.185Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M253.522 46.0474C253.522 47.1166 253.522 48.3115 253.522 49.6323C253.459 57.3052 253.145 69.1291 252.013 81.6449C251.95 82.148 251.95 82.6512 251.887 83.1543C245.472 82.148 236.981 79.2549 230.629 78.1857C232.893 65.7958 237.736 54.2864 244.151 45.4185C245.157 44.0348 246.226 42.7769 247.421 41.6449L253.522 40.5757C253.522 40.5757 253.522 41.3933 253.585 42.8398C253.522 43.6574 253.522 44.7266 253.522 46.0474Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M184.687 136.932C179.875 137.121 175.253 138.637 170.631 139.837C165.565 141.101 160.5 142.174 155.371 143.122C134.602 146.975 113.264 148.238 92.1786 146.849C74.7659 145.712 55.3904 142.238 43.2332 128.531C32.469 116.403 28.9865 98.1477 34.9384 82.9879C40.7638 68.0807 55.3271 57.6583 70.9668 55.5738V54.5C58.6197 56.0792 46.969 62.7748 39.4341 72.755C29.9996 85.325 28.6066 102.317 34.6218 116.719C41.0804 132.257 55.2004 141.227 71.1568 145.017C80.2747 147.165 89.6458 147.923 98.9537 148.302C109.718 148.744 120.545 148.428 131.246 147.544C143.087 146.533 154.801 144.638 166.388 142.048C172.403 140.658 178.545 138.321 184.687 138.132C190.576 137.942 197.604 140.974 197.921 147.607C197.984 148.302 199.061 148.302 198.997 147.607C198.617 140.216 191.209 136.679 184.687 136.932Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M190 164.091V172.909C190 173.697 191 173.697 191 172.909V164.091C191 163.303 190 163.303 190 164.091Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M199 164.037V172.963C199 173.679 200 173.679 200 172.963V164.037C200 163.321 199 163.321 199 164.037Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M182 166.5V155.275C182 148.205 187.792 142.5 194.969 142.5C202.145 142.5 207.937 148.205 207.937 155.275L208 166.5H182Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M209.483 165.5H180.517C179.828 165.5 179.828 166.5 180.517 166.5H209.483C210.172 166.5 210.172 165.5 209.483 165.5Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M203.711 151.519V161.582C203.711 162.274 204.78 162.274 204.78 161.582V151.519C204.843 150.827 203.711 150.827 203.711 151.519Z\"\n fill=\"white\"\n />\n <path\n d=\"M196.73 134.601C187.421 142.148 183.648 152.274 187.233 153.343C190.818 154.412 203.208 135.67 203.208 135.67L196.73 134.601Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M199.748 139.632C196.855 144.098 193.396 148.374 189.182 151.708L188.239 152.399C187.358 152.84 186.352 152.148 186.478 150.953C186.541 150.45 187.233 149.066 187.421 148.689C187.925 147.557 188.491 146.425 189.057 145.292C190.377 142.777 191.824 140.387 193.459 138.06C193.836 137.494 192.893 136.928 192.516 137.494C191.195 139.443 181.824 152.399 186.855 153.594C189.245 154.16 191.824 150.827 193.27 149.381C196.038 146.55 198.491 143.469 200.692 140.135C201.069 139.569 200.126 139.066 199.748 139.632Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M211.132 135.984C207.736 139.003 203.648 140.89 199.057 141.33C198.365 141.393 198.365 142.462 199.057 142.399C203.899 141.896 208.239 139.947 211.887 136.739C212.39 136.299 211.635 135.544 211.132 135.984Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M238.176 254.224C250.692 253.783 263.208 255.607 275.723 255.796C275.157 254.475 274.654 253.217 274.088 251.897C273.774 251.205 273.459 250.513 273.145 249.821C270.377 243.658 267.484 237.809 264.717 232.274C254.906 235.859 245.031 239.129 234.843 241.331C237.547 246.928 239.12 251.393 238.176 254.224Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M273.899 253.595C276.101 253.783 278.365 253.783 280.566 253.72C284.717 253.658 288.805 253.72 292.956 253.72C299.12 253.783 305.283 253.532 311.384 253.091C307.17 244.161 302.767 235.796 298.553 228.06C289.057 230.639 279.56 232.966 269.937 235.104C273.145 242.525 275.031 249.003 273.899 253.595Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M274.214 250.828C273.836 255.104 271.069 257.997 267.107 259.57C256.352 263.909 259.937 272.84 259.937 272.84H319.874C316.918 265.167 313.648 257.809 310.314 250.765H274.214V250.828Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M307.296 229.758C293.459 203.783 276.289 186.299 281.447 173.72C297.233 135.419 300.818 107.997 291.887 84.3494L267.484 80.0098C267.484 80.0098 269.623 91.5192 268.553 112.337C267.484 133.154 252.201 152.022 250.252 182.337C249.182 199.129 259.937 225.985 266.415 241.582C275.912 238.437 297.547 232.085 307.296 229.758Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M265.786 234.475C252.516 207.934 240.063 187.683 246.415 172.714C263.145 133.406 281.069 109.884 272.075 86.1733C272.075 86.1733 254.843 72.5255 253.774 93.3431C252.704 114.161 218.05 153.846 214.088 183.972C211.321 204.915 223.962 230.513 230.252 245.356C240.252 242.337 256.352 238.815 265.786 234.475Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M282.201 272.84H222.264C222.264 272.84 222.264 260.45 234.654 257.243C237.17 256.614 238.302 255.104 238.491 252.966H274.591C277.296 259.255 279.874 265.922 282.201 272.84Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M274.088 251.896C274.025 252.274 273.962 252.588 273.836 252.966C273.082 255.67 271.195 258.123 268.428 259.444C264.151 261.519 259.119 261.456 256.289 265.922C254.969 268.06 254.402 270.45 254.34 272.84H253.333C253.522 268.311 254.906 264.098 259.182 261.708C262.704 259.758 267.233 259.821 270.252 256.991C271.447 255.922 272.264 254.475 272.704 252.966C273.019 251.959 273.145 250.89 273.082 249.884C273.459 250.513 273.774 251.205 274.088 251.896Z\"\n fill=\"white\"\n />\n <path\n d=\"M281.195 256.739C279.497 255.67 277.799 254.601 276.101 253.532C275.535 253.154 274.969 254.098 275.535 254.475C277.233 255.544 278.931 256.614 280.629 257.683C281.258 258.06 281.761 257.117 281.195 256.739Z\"\n fill=\"white\"\n />\n <path\n d=\"M244.717 257.809C242.893 257.242 241.132 256.739 239.308 256.173C238.616 255.985 238.365 256.991 238.994 257.243C240.818 257.809 242.579 258.312 244.403 258.878C245.094 259.066 245.346 258.06 244.717 257.809Z\"\n fill=\"white\"\n />\n <path\n d=\"M262.516 231.267C261.069 227.682 259.623 224.098 258.239 220.513C257.987 219.884 256.918 220.135 257.17 220.827C258.616 224.412 260.063 227.997 261.447 231.582C261.698 232.211 262.767 231.959 262.516 231.267Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.394C265.786 121.645 263.208 131.897 260.692 142.148C260.503 142.84 259.497 142.526 259.623 141.834C262.264 131.331 264.843 120.765 267.484 110.262C267.61 109.821 267.736 109.381 267.799 108.878C268.05 109.318 268.365 109.696 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.393C268.05 111.016 267.736 110.639 267.484 110.261C266.478 108.878 265.409 107.494 264.402 106.11C263.962 105.544 264.906 105.041 265.346 105.544C266.163 106.676 266.981 107.808 267.862 108.878C268.05 109.318 268.365 109.695 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M251.698 43.0913C238.994 45.7328 251.509 69.5693 253.836 93.3429L291.887 84.3492C291.887 84.3492 276.415 37.997 251.698 43.0913Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M251.384 79.8839C249.308 73.6574 247.296 67.4939 245.22 61.2675C245.031 60.6386 243.962 60.8901 244.151 61.582C246.226 67.8084 248.239 73.9719 250.314 80.1983C250.566 80.8273 251.572 80.5128 251.384 79.8839Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.075 57.431C322.39 48.3744 311.447 43.5945 299.811 41.2046C297.673 46.9908 295.723 52.9027 293.962 58.8147C295.66 59.3807 297.359 60.0096 298.994 60.6386C323.396 69.6323 326.667 87.1794 330.566 97.6197C334.528 108.06 322.642 122.777 326.604 124.538C330.566 126.362 336.289 113.028 336.289 113.028C336.289 113.028 334.843 135.481 337.736 136.173C340.377 136.865 341.698 131.016 342.264 126.488C342.076 130.764 342.327 136.047 344.906 135.859C347.17 135.67 347.862 131.456 347.987 127.494C348.365 130.764 349.245 133.909 351.384 134.098C354.088 134.349 353.962 128.626 353.522 124.349C354.277 128.123 355.66 132.777 358.05 131.896C362.075 130.513 353.962 77.8713 332.075 57.431Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M302.453 41.7707C300.314 47.7455 296.667 58.8147 295.157 64.9782C287.61 60.6386 279.245 57.1795 273.082 53.6575C265.723 49.5065 258.742 47.5569 254.717 46.3619C254.277 46.2361 253.836 46.1103 253.459 46.0474C251.572 45.5443 250.566 45.2298 250.566 45.2298L251.95 43.0286L253.459 40.5757C254.717 40.4499 255.912 40.3871 257.17 40.2613C272.704 38.9405 288.176 38.3745 302.453 41.7707Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M341.761 123.846C341.384 127.117 341.887 134.853 337.673 135.67C336.981 135.796 337.296 136.865 337.987 136.739C339.874 136.362 341.069 134.915 341.572 133.154C342.453 130.261 342.453 126.928 342.83 123.909C342.956 123.154 341.824 123.154 341.761 123.846Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M346.981 122.966C346.918 124.852 346.855 126.739 346.73 128.626C346.667 129.884 347.107 135.544 344.78 135.041C344.088 134.915 343.837 135.922 344.466 136.11C346.352 136.488 347.296 135.104 347.61 133.406C348.176 130.073 347.925 126.362 348.05 122.966C348.113 122.274 347.044 122.274 346.981 122.966Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M353.648 122.022C353.648 121.33 352.579 121.33 352.579 122.022C352.642 124.035 353.774 132.337 351.132 133.029C350.44 133.217 350.755 134.224 351.447 134.098C353.019 133.657 353.648 132.525 353.774 130.953C354.088 128.06 353.711 124.978 353.648 122.022Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M358.868 119.129C358.805 118.437 357.736 118.5 357.799 119.192C357.987 120.953 360.126 130.639 357.547 131.142C356.855 131.267 357.17 132.274 357.862 132.148C359.56 131.834 360 130.387 360 128.815C359.937 125.67 359.245 122.337 358.868 119.129Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M275.346 54.3493C274.088 53.8462 272.83 53.4059 271.635 52.9028C271.006 52.6512 270.692 53.7204 271.321 53.972C272.579 54.4751 273.836 54.9154 275.031 55.4185C275.723 55.6701 276.038 54.6009 275.346 54.3493Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M256.164 41.9592C254.277 37.4938 251.509 31.2045 251.132 31.1416L241.006 33.28C241.006 33.28 245.849 42.9655 248.113 47.5567C250.629 45.4812 253.333 43.6573 256.164 41.9592Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M252.704 28.4372C252.704 28.7517 252.642 29.0661 252.579 29.3806C252.516 29.6951 252.453 30.0095 252.39 30.2611C252.39 30.324 252.327 30.3869 252.327 30.4498C252.264 30.7013 252.201 30.9529 252.138 31.2045C250.943 35.041 247.862 38.0598 243.082 38.1856C233.899 38.3743 230.252 30.7013 231.384 24.412C232.138 20.1982 235.094 16.5504 239.937 16.173C240.126 16.173 240.377 16.1102 240.566 16.1102C245.031 16.0473 248.176 17.6825 250.189 20.0724C250.503 20.5127 250.818 20.9529 251.132 21.3932C251.321 21.7076 251.447 22.0221 251.635 22.3366C251.887 22.8397 252.075 23.3429 252.201 23.846C252.641 25.3554 252.83 26.9278 252.704 28.4372Z\"\n fill=\"#D4E8F7\"\n />\n <path d=\"M236.478 29.3179L238.679 34.9782L234.528 35.2298L236.478 29.3179Z\" fill=\"#002957\" />\n <path\n d=\"M239.182 28.0601L239.434 28.8148C239.686 29.4438 238.616 29.6953 238.365 29.0664L238.113 28.3117C237.924 27.6827 238.994 27.4312 239.182 28.0601Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M233.27 28.9406L233.522 29.6954C233.774 30.3243 232.704 30.5759 232.453 29.9469L232.201 29.1922C232.013 28.5004 233.082 28.2488 233.27 28.9406Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M247.044 27.1166C246.918 27.6827 246.855 28.3116 246.73 28.8776C246.604 29.5695 247.673 29.8839 247.736 29.1921C247.862 28.6261 247.924 27.9971 248.05 27.4311C248.176 26.7393 247.17 26.4877 247.044 27.1166Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M252.201 23.8461C252.013 23.343 251.824 22.8399 251.635 22.3367C251.509 22.0222 251.321 21.7078 251.132 21.3933C250.88 20.9531 250.566 20.5128 250.189 20.0726C248.176 17.6197 245.031 15.9845 240.566 16.1103C240.377 16.1103 240.126 16.1103 239.937 16.1732C238.491 16.299 234.465 16.9279 232.956 18.8147C228.616 20.1355 225.157 23.909 229.308 25.4814C232.453 26.8021 238.176 25.7958 240.88 24.4751C241.132 25.6072 242.83 28.7518 244.151 28.626C245.723 28.4373 245.472 26.6763 244.969 25.6072C244.906 25.4814 244.843 25.3556 244.78 25.2298C245.094 25.0411 245.409 24.8524 245.786 24.7267C247.925 23.7204 250.818 24.6638 251.509 27.1166C251.824 28.3744 251.698 29.7581 250.943 30.7015C250.88 30.8273 251.824 31.2046 252.138 31.2675C252.201 31.016 252.264 30.7644 252.327 30.5128C252.327 30.4499 252.327 30.387 252.39 30.3241C252.453 30.0097 252.516 29.7581 252.579 29.4436C252.642 29.1292 252.641 28.8147 252.704 28.5002C252.767 26.9279 252.641 25.3556 252.201 23.8461Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M257.17 40.2612L256.226 42.7141L254.78 46.3619L253.522 49.5694L251.635 54.4122L246.478 48.1858L244.151 45.4185C245.157 44.0348 246.226 42.777 247.421 41.6449L253.522 40.5757C254.717 40.4499 255.912 40.3241 257.17 40.2612Z\"\n fill=\"#D4E8F7\"\n />\n </svg>\n</vl-empty-state>\n", styles: [":host{display:flex;height:100%}\n"], dependencies: [{ kind: "component", type: i2$1.EmptyStateComponent, selector: "vl-empty-state", inputs: ["primaryText", "secondaryText", "buttonLabel", "icon", "disabled"], outputs: ["buttonClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountComponent, decorators: [{
|
2046
1404
|
type: Component,
|
2047
1405
|
args: [{ selector: 'vl-empty-account', changeDetection: ChangeDetectionStrategy.OnPush, template: "<vl-empty-state\n primaryText=\"No Orders in your Account\"\n secondaryText=\"To proceed, go to the Shopping Cart from a Quote.\"\n>\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"400\" height=\"281\" viewBox=\"0 0 400 281\" fill=\"none\">\n <path d=\"M264.214 26.9277H70.8805V128.186H264.214V26.9277Z\" fill=\"#0466C8\" />\n <path\n d=\"M143 56.5H136.217C128.166 64.4791 120.051 72.5209 112 80.5H118.783C126.834 72.5209 134.949 64.5419 143 56.5Z\"\n fill=\"white\"\n />\n <path\n d=\"M242.932 57.5681V79.4319H128.575L133.724 74.2801L150.429 57.5681H242.932ZM244 56.5H149.989C142.014 64.4791 133.976 72.5209 126 80.5H244V56.5Z\"\n fill=\"white\"\n />\n <path d=\"M129 56.5H81V80.5H104.969C112.958 72.5209 120.948 64.5419 129 56.5Z\" fill=\"white\" />\n <path\n d=\"M82.3 23.2016C82.2366 23.2016 82.1732 23.2644 82.1098 23.2644C81.3494 23.5785 80.5889 23.5785 79.8918 23.2644C79.765 23.2016 79.6383 23.1387 79.4482 23.0759C78.9412 22.7618 78.561 22.322 78.3075 21.7565C77.6104 20.2487 78.1173 18.6151 79.6383 17.8612C81.1592 17.1073 82.9971 17.547 83.6942 19.0549C84.3913 20.6256 83.8843 22.3848 82.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M92.2716 23.2016C92.2086 23.2016 92.1457 23.2644 92.0827 23.2644C91.3273 23.5785 90.5718 23.5785 89.8793 23.2644C89.7534 23.2016 89.6275 23.1387 89.4386 23.0759C88.935 22.7618 88.5573 22.322 88.3054 21.7565C87.6129 20.2487 88.1166 18.6151 89.6275 17.8612C91.1384 17.1073 92.9641 17.547 93.6566 19.0549C94.412 20.6256 93.9084 22.3848 92.2716 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M102.3 23.2016C102.237 23.2016 102.173 23.2644 102.11 23.2644C101.349 23.5785 100.589 23.5785 99.8918 23.2644C99.765 23.2016 99.6383 23.1387 99.4482 23.0759C98.9412 22.7618 98.561 22.322 98.3075 21.7565C97.6104 20.2487 98.1174 18.6151 99.6383 17.8612C101.159 17.1073 102.997 17.547 103.694 19.0549C104.391 20.6256 103.884 22.3848 102.3 23.2016Z\"\n fill=\"#B4D1EF\"\n />\n <path\n d=\"M210.126 91.0156H130.44C129.748 91.0156 129.748 92.0848 130.44 92.0848H210.126C210.818 92.0848 210.818 91.0156 210.126 91.0156Z\"\n fill=\"white\"\n />\n <path\n d=\"M197.484 97.5566H142.013C141.321 97.5566 141.321 98.6258 142.013 98.6258H197.484C198.176 98.6258 198.176 97.5566 197.484 97.5566Z\"\n fill=\"white\"\n />\n <path\n d=\"M229.436 35.5H61.5553C60.8149 35.5 60.8149 36.5 61.5553 36.5H229.503C230.176 36.5 230.176 35.5 229.436 35.5Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M270.44 35.3555H256.226C256.163 35.3555 256.163 36.4246 256.226 36.4246H270.44C270.503 36.4246 270.503 35.3555 270.44 35.3555Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.704 212.022C332.642 212.022 332.579 212.022 332.516 211.959L280.566 191.582C280.377 191.519 280.252 191.33 280.252 191.141C280.252 190.953 280.314 190.764 280.44 190.638C292.83 181.33 333.333 150.953 335.346 150.953C335.472 150.953 335.66 151.016 335.723 151.141C335.849 151.267 335.849 151.393 335.849 151.519L333.208 211.456C333.208 211.644 333.082 211.77 332.956 211.896C332.893 211.959 332.767 212.022 332.704 212.022ZM281.824 190.953L332.138 210.701L334.717 152.336C329.811 155.166 301.321 176.299 281.824 190.953Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M366.289 231.015C366.226 231.015 366.226 231.015 366.164 231.015L349.371 227.053C349.182 226.99 349.057 226.927 348.994 226.739C348.931 226.613 348.931 226.424 348.994 226.236L357.736 211.141C357.862 210.953 358.05 210.89 358.239 210.89C358.428 210.89 358.616 211.015 358.679 211.204C366.918 229.758 366.792 230.324 366.792 230.512C366.792 230.638 366.667 230.764 366.541 230.89C366.478 230.953 366.415 231.015 366.289 231.015ZM350.314 226.173L365.472 229.758C364.465 227.116 360.755 218.626 358.113 212.651L350.314 226.173Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M199.686 248.751C192.516 229.38 177.799 213.909 159.497 205.67V205.607C159.748 193.343 154.528 181.141 144.654 173.657C133.396 165.104 118.365 162.902 104.591 164.034C78.1132 166.236 53.0189 181.456 38.805 203.846C36.9811 206.739 35.3459 209.758 33.8365 212.839C33.522 213.468 34.4654 214.034 34.7799 213.405C45.4088 191.015 66.1635 174.16 90 167.682C113.711 161.267 146.981 164.726 156.226 191.519C157.736 195.921 158.491 200.575 158.428 205.229C150.943 201.959 142.893 199.946 134.465 199.254C121.447 198.248 103.522 199.506 95.283 211.204C91.761 216.236 90.8805 222.525 93.5849 228.122C96.2893 233.72 101.761 237.745 107.421 239.946C118.868 244.475 132.39 242.462 142.642 235.858C152.642 229.38 158.679 218.688 159.371 206.865C177.17 215.041 191.572 230.072 198.616 249.066C198.931 249.695 199.937 249.443 199.686 248.751ZM152.075 225.481C145.094 235.355 133.019 241.141 121.006 241.267C109.434 241.393 92.7044 234.6 93.0189 220.701C93.2076 213.217 98.9937 207.305 105.346 204.286C112.013 201.141 119.748 200.198 127.044 200.072C137.987 199.883 148.616 202.148 158.302 206.361C158.113 213.154 156.038 219.883 152.075 225.481Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M341.447 271.204H322.767C322.075 271.204 322.075 272.273 322.767 272.273H341.447C342.138 272.336 342.138 271.204 341.447 271.204Z\"\n fill=\"#E5ECF4\"\n />\n <path\n d=\"M233.522 75.4814C230.881 89.3179 229.245 103.154 224.025 110.576C213.962 124.915 185.975 137.117 178.428 143.972C170.881 150.764 171.95 151.142 173.019 152.588C173.648 153.469 177.862 151.771 181.132 150.261C177.421 152.211 172.579 155.23 173.711 157.242C174.654 159.003 178.679 157.808 182.201 156.362C178.994 158.123 175.786 160.387 176.981 161.959C178.365 163.783 183.585 161.897 187.107 160.387C184.088 162.022 180.314 164.475 181.635 166.299C183.774 169.192 235.849 149.758 245.157 120.702C248.805 109.318 250.881 94.6009 252.013 80.8274C245.786 79.3808 239.623 77.494 233.522 75.4814Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M182.327 148.437C179.497 150.576 176.226 151.645 172.704 151.582C172.013 151.582 172.013 152.651 172.704 152.651C176.415 152.714 179.937 151.582 182.893 149.318C183.396 148.941 182.893 147.997 182.327 148.437Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M184.906 154.852C183.27 155.607 181.635 156.173 179.937 156.676C178.302 157.117 175.723 158.06 174.151 157.117C173.522 156.802 173.019 157.683 173.585 158.06C175.157 158.94 176.918 158.5 178.553 158.123C180.943 157.62 183.145 156.802 185.346 155.796C186.101 155.481 185.535 154.538 184.906 154.852Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M186.163 158.185C184.277 159.946 180.189 163.217 177.421 161.833C176.792 161.519 176.226 162.462 176.855 162.777C180.252 164.412 184.528 161.141 186.855 158.94C187.421 158.437 186.667 157.682 186.163 158.185Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M253.522 46.0474C253.522 47.1166 253.522 48.3115 253.522 49.6323C253.459 57.3052 253.145 69.1291 252.013 81.6449C251.95 82.148 251.95 82.6512 251.887 83.1543C245.472 82.148 236.981 79.2549 230.629 78.1857C232.893 65.7958 237.736 54.2864 244.151 45.4185C245.157 44.0348 246.226 42.7769 247.421 41.6449L253.522 40.5757C253.522 40.5757 253.522 41.3933 253.585 42.8398C253.522 43.6574 253.522 44.7266 253.522 46.0474Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M184.687 136.932C179.875 137.121 175.253 138.637 170.631 139.837C165.565 141.101 160.5 142.174 155.371 143.122C134.602 146.975 113.264 148.238 92.1786 146.849C74.7659 145.712 55.3904 142.238 43.2332 128.531C32.469 116.403 28.9865 98.1477 34.9384 82.9879C40.7638 68.0807 55.3271 57.6583 70.9668 55.5738V54.5C58.6197 56.0792 46.969 62.7748 39.4341 72.755C29.9996 85.325 28.6066 102.317 34.6218 116.719C41.0804 132.257 55.2004 141.227 71.1568 145.017C80.2747 147.165 89.6458 147.923 98.9537 148.302C109.718 148.744 120.545 148.428 131.246 147.544C143.087 146.533 154.801 144.638 166.388 142.048C172.403 140.658 178.545 138.321 184.687 138.132C190.576 137.942 197.604 140.974 197.921 147.607C197.984 148.302 199.061 148.302 198.997 147.607C198.617 140.216 191.209 136.679 184.687 136.932Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M190 164.091V172.909C190 173.697 191 173.697 191 172.909V164.091C191 163.303 190 163.303 190 164.091Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M199 164.037V172.963C199 173.679 200 173.679 200 172.963V164.037C200 163.321 199 163.321 199 164.037Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M182 166.5V155.275C182 148.205 187.792 142.5 194.969 142.5C202.145 142.5 207.937 148.205 207.937 155.275L208 166.5H182Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M209.483 165.5H180.517C179.828 165.5 179.828 166.5 180.517 166.5H209.483C210.172 166.5 210.172 165.5 209.483 165.5Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M203.711 151.519V161.582C203.711 162.274 204.78 162.274 204.78 161.582V151.519C204.843 150.827 203.711 150.827 203.711 151.519Z\"\n fill=\"white\"\n />\n <path\n d=\"M196.73 134.601C187.421 142.148 183.648 152.274 187.233 153.343C190.818 154.412 203.208 135.67 203.208 135.67L196.73 134.601Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M199.748 139.632C196.855 144.098 193.396 148.374 189.182 151.708L188.239 152.399C187.358 152.84 186.352 152.148 186.478 150.953C186.541 150.45 187.233 149.066 187.421 148.689C187.925 147.557 188.491 146.425 189.057 145.292C190.377 142.777 191.824 140.387 193.459 138.06C193.836 137.494 192.893 136.928 192.516 137.494C191.195 139.443 181.824 152.399 186.855 153.594C189.245 154.16 191.824 150.827 193.27 149.381C196.038 146.55 198.491 143.469 200.692 140.135C201.069 139.569 200.126 139.066 199.748 139.632Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M211.132 135.984C207.736 139.003 203.648 140.89 199.057 141.33C198.365 141.393 198.365 142.462 199.057 142.399C203.899 141.896 208.239 139.947 211.887 136.739C212.39 136.299 211.635 135.544 211.132 135.984Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M238.176 254.224C250.692 253.783 263.208 255.607 275.723 255.796C275.157 254.475 274.654 253.217 274.088 251.897C273.774 251.205 273.459 250.513 273.145 249.821C270.377 243.658 267.484 237.809 264.717 232.274C254.906 235.859 245.031 239.129 234.843 241.331C237.547 246.928 239.12 251.393 238.176 254.224Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M273.899 253.595C276.101 253.783 278.365 253.783 280.566 253.72C284.717 253.658 288.805 253.72 292.956 253.72C299.12 253.783 305.283 253.532 311.384 253.091C307.17 244.161 302.767 235.796 298.553 228.06C289.057 230.639 279.56 232.966 269.937 235.104C273.145 242.525 275.031 249.003 273.899 253.595Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M274.214 250.828C273.836 255.104 271.069 257.997 267.107 259.57C256.352 263.909 259.937 272.84 259.937 272.84H319.874C316.918 265.167 313.648 257.809 310.314 250.765H274.214V250.828Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M307.296 229.758C293.459 203.783 276.289 186.299 281.447 173.72C297.233 135.419 300.818 107.997 291.887 84.3494L267.484 80.0098C267.484 80.0098 269.623 91.5192 268.553 112.337C267.484 133.154 252.201 152.022 250.252 182.337C249.182 199.129 259.937 225.985 266.415 241.582C275.912 238.437 297.547 232.085 307.296 229.758Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M265.786 234.475C252.516 207.934 240.063 187.683 246.415 172.714C263.145 133.406 281.069 109.884 272.075 86.1733C272.075 86.1733 254.843 72.5255 253.774 93.3431C252.704 114.161 218.05 153.846 214.088 183.972C211.321 204.915 223.962 230.513 230.252 245.356C240.252 242.337 256.352 238.815 265.786 234.475Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M282.201 272.84H222.264C222.264 272.84 222.264 260.45 234.654 257.243C237.17 256.614 238.302 255.104 238.491 252.966H274.591C277.296 259.255 279.874 265.922 282.201 272.84Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M274.088 251.896C274.025 252.274 273.962 252.588 273.836 252.966C273.082 255.67 271.195 258.123 268.428 259.444C264.151 261.519 259.119 261.456 256.289 265.922C254.969 268.06 254.402 270.45 254.34 272.84H253.333C253.522 268.311 254.906 264.098 259.182 261.708C262.704 259.758 267.233 259.821 270.252 256.991C271.447 255.922 272.264 254.475 272.704 252.966C273.019 251.959 273.145 250.89 273.082 249.884C273.459 250.513 273.774 251.205 274.088 251.896Z\"\n fill=\"white\"\n />\n <path\n d=\"M281.195 256.739C279.497 255.67 277.799 254.601 276.101 253.532C275.535 253.154 274.969 254.098 275.535 254.475C277.233 255.544 278.931 256.614 280.629 257.683C281.258 258.06 281.761 257.117 281.195 256.739Z\"\n fill=\"white\"\n />\n <path\n d=\"M244.717 257.809C242.893 257.242 241.132 256.739 239.308 256.173C238.616 255.985 238.365 256.991 238.994 257.243C240.818 257.809 242.579 258.312 244.403 258.878C245.094 259.066 245.346 258.06 244.717 257.809Z\"\n fill=\"white\"\n />\n <path\n d=\"M262.516 231.267C261.069 227.682 259.623 224.098 258.239 220.513C257.987 219.884 256.918 220.135 257.17 220.827C258.616 224.412 260.063 227.997 261.447 231.582C261.698 232.211 262.767 231.959 262.516 231.267Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.394C265.786 121.645 263.208 131.897 260.692 142.148C260.503 142.84 259.497 142.526 259.623 141.834C262.264 131.331 264.843 120.765 267.484 110.262C267.61 109.821 267.736 109.381 267.799 108.878C268.05 109.318 268.365 109.696 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M268.616 110.073C268.491 110.513 268.365 110.953 268.302 111.393C268.05 111.016 267.736 110.639 267.484 110.261C266.478 108.878 265.409 107.494 264.402 106.11C263.962 105.544 264.906 105.041 265.346 105.544C266.163 106.676 266.981 107.808 267.862 108.878C268.05 109.318 268.365 109.695 268.616 110.073Z\"\n fill=\"white\"\n />\n <path\n d=\"M251.698 43.0913C238.994 45.7328 251.509 69.5693 253.836 93.3429L291.887 84.3492C291.887 84.3492 276.415 37.997 251.698 43.0913Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M251.384 79.8839C249.308 73.6574 247.296 67.4939 245.22 61.2675C245.031 60.6386 243.962 60.8901 244.151 61.582C246.226 67.8084 248.239 73.9719 250.314 80.1983C250.566 80.8273 251.572 80.5128 251.384 79.8839Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M332.075 57.431C322.39 48.3744 311.447 43.5945 299.811 41.2046C297.673 46.9908 295.723 52.9027 293.962 58.8147C295.66 59.3807 297.359 60.0096 298.994 60.6386C323.396 69.6323 326.667 87.1794 330.566 97.6197C334.528 108.06 322.642 122.777 326.604 124.538C330.566 126.362 336.289 113.028 336.289 113.028C336.289 113.028 334.843 135.481 337.736 136.173C340.377 136.865 341.698 131.016 342.264 126.488C342.076 130.764 342.327 136.047 344.906 135.859C347.17 135.67 347.862 131.456 347.987 127.494C348.365 130.764 349.245 133.909 351.384 134.098C354.088 134.349 353.962 128.626 353.522 124.349C354.277 128.123 355.66 132.777 358.05 131.896C362.075 130.513 353.962 77.8713 332.075 57.431Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M302.453 41.7707C300.314 47.7455 296.667 58.8147 295.157 64.9782C287.61 60.6386 279.245 57.1795 273.082 53.6575C265.723 49.5065 258.742 47.5569 254.717 46.3619C254.277 46.2361 253.836 46.1103 253.459 46.0474C251.572 45.5443 250.566 45.2298 250.566 45.2298L251.95 43.0286L253.459 40.5757C254.717 40.4499 255.912 40.3871 257.17 40.2613C272.704 38.9405 288.176 38.3745 302.453 41.7707Z\"\n fill=\"#F2F7FC\"\n />\n <path\n d=\"M341.761 123.846C341.384 127.117 341.887 134.853 337.673 135.67C336.981 135.796 337.296 136.865 337.987 136.739C339.874 136.362 341.069 134.915 341.572 133.154C342.453 130.261 342.453 126.928 342.83 123.909C342.956 123.154 341.824 123.154 341.761 123.846Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M346.981 122.966C346.918 124.852 346.855 126.739 346.73 128.626C346.667 129.884 347.107 135.544 344.78 135.041C344.088 134.915 343.837 135.922 344.466 136.11C346.352 136.488 347.296 135.104 347.61 133.406C348.176 130.073 347.925 126.362 348.05 122.966C348.113 122.274 347.044 122.274 346.981 122.966Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M353.648 122.022C353.648 121.33 352.579 121.33 352.579 122.022C352.642 124.035 353.774 132.337 351.132 133.029C350.44 133.217 350.755 134.224 351.447 134.098C353.019 133.657 353.648 132.525 353.774 130.953C354.088 128.06 353.711 124.978 353.648 122.022Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M358.868 119.129C358.805 118.437 357.736 118.5 357.799 119.192C357.987 120.953 360.126 130.639 357.547 131.142C356.855 131.267 357.17 132.274 357.862 132.148C359.56 131.834 360 130.387 360 128.815C359.937 125.67 359.245 122.337 358.868 119.129Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M275.346 54.3493C274.088 53.8462 272.83 53.4059 271.635 52.9028C271.006 52.6512 270.692 53.7204 271.321 53.972C272.579 54.4751 273.836 54.9154 275.031 55.4185C275.723 55.6701 276.038 54.6009 275.346 54.3493Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M256.164 41.9592C254.277 37.4938 251.509 31.2045 251.132 31.1416L241.006 33.28C241.006 33.28 245.849 42.9655 248.113 47.5567C250.629 45.4812 253.333 43.6573 256.164 41.9592Z\"\n fill=\"#D4E8F7\"\n />\n <path\n d=\"M252.704 28.4372C252.704 28.7517 252.642 29.0661 252.579 29.3806C252.516 29.6951 252.453 30.0095 252.39 30.2611C252.39 30.324 252.327 30.3869 252.327 30.4498C252.264 30.7013 252.201 30.9529 252.138 31.2045C250.943 35.041 247.862 38.0598 243.082 38.1856C233.899 38.3743 230.252 30.7013 231.384 24.412C232.138 20.1982 235.094 16.5504 239.937 16.173C240.126 16.173 240.377 16.1102 240.566 16.1102C245.031 16.0473 248.176 17.6825 250.189 20.0724C250.503 20.5127 250.818 20.9529 251.132 21.3932C251.321 21.7076 251.447 22.0221 251.635 22.3366C251.887 22.8397 252.075 23.3429 252.201 23.846C252.641 25.3554 252.83 26.9278 252.704 28.4372Z\"\n fill=\"#D4E8F7\"\n />\n <path d=\"M236.478 29.3179L238.679 34.9782L234.528 35.2298L236.478 29.3179Z\" fill=\"#002957\" />\n <path\n d=\"M239.182 28.0601L239.434 28.8148C239.686 29.4438 238.616 29.6953 238.365 29.0664L238.113 28.3117C237.924 27.6827 238.994 27.4312 239.182 28.0601Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M233.27 28.9406L233.522 29.6954C233.774 30.3243 232.704 30.5759 232.453 29.9469L232.201 29.1922C232.013 28.5004 233.082 28.2488 233.27 28.9406Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M247.044 27.1166C246.918 27.6827 246.855 28.3116 246.73 28.8776C246.604 29.5695 247.673 29.8839 247.736 29.1921C247.862 28.6261 247.924 27.9971 248.05 27.4311C248.176 26.7393 247.17 26.4877 247.044 27.1166Z\"\n fill=\"#0466C8\"\n />\n <path\n d=\"M252.201 23.8461C252.013 23.343 251.824 22.8399 251.635 22.3367C251.509 22.0222 251.321 21.7078 251.132 21.3933C250.88 20.9531 250.566 20.5128 250.189 20.0726C248.176 17.6197 245.031 15.9845 240.566 16.1103C240.377 16.1103 240.126 16.1103 239.937 16.1732C238.491 16.299 234.465 16.9279 232.956 18.8147C228.616 20.1355 225.157 23.909 229.308 25.4814C232.453 26.8021 238.176 25.7958 240.88 24.4751C241.132 25.6072 242.83 28.7518 244.151 28.626C245.723 28.4373 245.472 26.6763 244.969 25.6072C244.906 25.4814 244.843 25.3556 244.78 25.2298C245.094 25.0411 245.409 24.8524 245.786 24.7267C247.925 23.7204 250.818 24.6638 251.509 27.1166C251.824 28.3744 251.698 29.7581 250.943 30.7015C250.88 30.8273 251.824 31.2046 252.138 31.2675C252.201 31.016 252.264 30.7644 252.327 30.5128C252.327 30.4499 252.327 30.387 252.39 30.3241C252.453 30.0097 252.516 29.7581 252.579 29.4436C252.642 29.1292 252.641 28.8147 252.704 28.5002C252.767 26.9279 252.641 25.3556 252.201 23.8461Z\"\n fill=\"#002957\"\n />\n <path\n d=\"M257.17 40.2612L256.226 42.7141L254.78 46.3619L253.522 49.5694L251.635 54.4122L246.478 48.1858L244.151 45.4185C245.157 44.0348 246.226 42.777 247.421 41.6449L253.522 40.5757C254.717 40.4499 255.912 40.3241 257.17 40.2612Z\"\n fill=\"#D4E8F7\"\n />\n </svg>\n</vl-empty-state>\n", styles: [":host{display:flex;height:100%}\n"] }]
|
2048
1406
|
}] });
|
2049
1407
|
|
2050
1408
|
class EmptyAccountModule {
|
2051
1409
|
}
|
2052
|
-
EmptyAccountModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2053
|
-
EmptyAccountModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2054
|
-
EmptyAccountModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2055
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1410
|
+
EmptyAccountModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1411
|
+
EmptyAccountModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountModule, declarations: [EmptyAccountComponent], imports: [CommonModule, PreviewModule, LoaderModule, EmptyStateModule], exports: [EmptyAccountComponent] });
|
1412
|
+
EmptyAccountModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountModule, imports: [CommonModule, PreviewModule, LoaderModule, EmptyStateModule] });
|
1413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EmptyAccountModule, decorators: [{
|
2056
1414
|
type: NgModule,
|
2057
1415
|
args: [{
|
2058
1416
|
declarations: [EmptyAccountComponent],
|
@@ -2061,143 +1419,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2061
1419
|
}]
|
2062
1420
|
}] });
|
2063
1421
|
|
2064
|
-
class LegacyProductComponent {
|
2065
|
-
constructor(route, quoteDraftService, quoteApiService, contextService, runtimeContextService, runtimeService, currentStateService, customizationService) {
|
2066
|
-
this.route = route;
|
2067
|
-
this.quoteDraftService = quoteDraftService;
|
2068
|
-
this.quoteApiService = quoteApiService;
|
2069
|
-
this.contextService = contextService;
|
2070
|
-
this.runtimeContextService = runtimeContextService;
|
2071
|
-
this.runtimeService = runtimeService;
|
2072
|
-
this.currentStateService = currentStateService;
|
2073
|
-
this.customizationService = customizationService;
|
2074
|
-
this.destroyed$ = new Subject();
|
2075
|
-
}
|
2076
|
-
ngOnInit() {
|
2077
|
-
this.quoteDraftService.quoteDraft$
|
2078
|
-
.pipe(first$1(), takeUntil$1(this.destroyed$))
|
2079
|
-
.subscribe(quote => this.init(quote, this.route.snapshot.queryParams));
|
2080
|
-
this.runtimeService.onSolutionStopEvent.pipe(take(1)).subscribe(lineItem => this.onSolutionStop(lineItem));
|
2081
|
-
this.runtimeService.onSolutionReadyEvent.pipe(take(1)).subscribe(event => this.onSolutionReady(event));
|
2082
|
-
this.runtimeService.onSolutionCancelEvent.pipe(take(1)).subscribe(() => this.onSolutionCancel());
|
2083
|
-
}
|
2084
|
-
ngOnDestroy() {
|
2085
|
-
this.destroyed$.next();
|
2086
|
-
this.destroyed$.complete();
|
2087
|
-
}
|
2088
|
-
onSolutionReady(lineItem) {
|
2089
|
-
lineItem.actionCode = lineItem.actionCode ?? 'ADD';
|
2090
|
-
}
|
2091
|
-
onSolutionCancel() {
|
2092
|
-
this.quoteDraftService.quoteDraft$.pipe(first$1(), takeUntil$1(this.destroyed$)).subscribe(quote => {
|
2093
|
-
window['VELO_BACK_FN'].apply(null, [quote.quoteId]);
|
2094
|
-
});
|
2095
|
-
}
|
2096
|
-
onSolutionUpdated(lineItem) {
|
2097
|
-
const states = {
|
2098
|
-
configurableRamp: lineItem,
|
2099
|
-
currentState: this.currentStateService.currentState,
|
2100
|
-
asset: this.getAsset(lineItem),
|
2101
|
-
};
|
2102
|
-
this.runtimeService.updateRuntime(states);
|
2103
|
-
}
|
2104
|
-
onSolutionStop(lineItem) {
|
2105
|
-
this.quoteDraftService.quoteDraft$.pipe(first$1(), takeUntil$1(this.destroyed$)).subscribe(quote => {
|
2106
|
-
const quoteToUpsert = {
|
2107
|
-
...quote,
|
2108
|
-
context: this.contextService.resolve(),
|
2109
|
-
currentState: [...(this.currentStateService.currentState || []).filter(li => li.id !== lineItem.id), lineItem],
|
2110
|
-
};
|
2111
|
-
this.quoteApiService
|
2112
|
-
.upsertQuote(quoteToUpsert)
|
2113
|
-
.pipe(take(1))
|
2114
|
-
.subscribe(quote => {
|
2115
|
-
window['VELO_BACK_FN'].apply(null, [quote.quoteId]);
|
2116
|
-
});
|
2117
|
-
});
|
2118
|
-
}
|
2119
|
-
init(quote, queryParams) {
|
2120
|
-
const productId = queryParams['productId'];
|
2121
|
-
const lineItemId = this.getLineItemId(quote, queryParams);
|
2122
|
-
this.assets = quote.initialState;
|
2123
|
-
lineItemId && quote.currentState ? this.reConfigure(lineItemId, quote.currentState) : this.configure(productId);
|
2124
|
-
}
|
2125
|
-
getLineItemId(quote, queryParams) {
|
2126
|
-
if (EntityUtil.isPresent(queryParams['lineItemId'])) {
|
2127
|
-
return queryParams['lineItemId'];
|
2128
|
-
}
|
2129
|
-
return quote.currentState
|
2130
|
-
.filter(lineItem => lineItem.productId === queryParams['productId'])
|
2131
|
-
.map(lineItem => lineItem.id)
|
2132
|
-
.find(id => id);
|
2133
|
-
}
|
2134
|
-
configure(productId) {
|
2135
|
-
const runtimeContext = this.getRuntimeContext(productId, '', RuntimeOperation.INIT);
|
2136
|
-
this.startRuntime({}, runtimeContext);
|
2137
|
-
}
|
2138
|
-
reConfigure(lineItemId, currentState) {
|
2139
|
-
const currentStateItem = EntityUtil.findById(lineItemId, currentState);
|
2140
|
-
const runtimeContext = this.getRuntimeContext(currentStateItem.productId, currentStateItem.offeringId, RuntimeOperation.UPDATE);
|
2141
|
-
const states = {
|
2142
|
-
configurableRamp: currentStateItem,
|
2143
|
-
currentState,
|
2144
|
-
asset: this.getAsset(currentStateItem),
|
2145
|
-
};
|
2146
|
-
this.currentStateService.update(currentState);
|
2147
|
-
this.startRuntime(states, runtimeContext);
|
2148
|
-
}
|
2149
|
-
getAsset(lineItem) {
|
2150
|
-
return this.assets && this.assets.find(a => a.id === lineItem.openOrderLineItemId || a.id === lineItem.assetId);
|
2151
|
-
}
|
2152
|
-
startRuntime(states, runtimeContext$) {
|
2153
|
-
runtimeContext$
|
2154
|
-
.pipe(take(1), map$1(runtimeContext => {
|
2155
|
-
this.runtimeService.startRuntime(runtimeContext, states);
|
2156
|
-
}))
|
2157
|
-
.subscribe();
|
2158
|
-
}
|
2159
|
-
customizeContext(productId, context) {
|
2160
|
-
if (!this.customizationService?.getLegacyUiDefinition) {
|
2161
|
-
return of(context);
|
2162
|
-
}
|
2163
|
-
return this.customizationService.getLegacyUiDefinition(productId).pipe(map$1(uiDefinitionContainer => ({
|
2164
|
-
...context,
|
2165
|
-
uiDefinitionContainer: uiDefinitionContainer ?? undefined,
|
2166
|
-
})));
|
2167
|
-
}
|
2168
|
-
getRuntimeContext(productId, offeringId, runtimeOperation) {
|
2169
|
-
return this.runtimeContextService.getRuntimeContext(productId, offeringId).pipe(map$1(runtimeContext => {
|
2170
|
-
runtimeContext.invocationContext = { runtimeOperation: RuntimeOperation[runtimeOperation] };
|
2171
|
-
return runtimeContext;
|
2172
|
-
}), switchMap$1(runtimeContext => this.customizeContext(productId, runtimeContext)));
|
2173
|
-
}
|
2174
|
-
}
|
2175
|
-
LegacyProductComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductComponent, deps: [{ token: i1$2.ActivatedRoute }, { token: i1$1.QuoteDraftService }, { token: i2.QuoteApiService }, { token: i1$1.ContextService }, { token: i4$1.RuntimeContextService }, { token: i4$1.RuntimeService }, { token: i4$1.CurrentStateService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
2176
|
-
LegacyProductComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: LegacyProductComponent, selector: "ng-component", ngImport: i0, template: "<vl-runtime #runtimeView (solutionUpdated)=\"onSolutionUpdated($event)\"></vl-runtime>\n", styles: [":host{display:block;height:100%}\n"], dependencies: [{ kind: "component", type: i4$1.RuntimeComponent, selector: "vl-runtime", outputs: ["solutionUpdated"] }] });
|
2177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductComponent, decorators: [{
|
2178
|
-
type: Component,
|
2179
|
-
args: [{ template: "<vl-runtime #runtimeView (solutionUpdated)=\"onSolutionUpdated($event)\"></vl-runtime>\n", styles: [":host{display:block;height:100%}\n"] }]
|
2180
|
-
}], ctorParameters: function () { return [{ type: i1$2.ActivatedRoute }, { type: i1$1.QuoteDraftService }, { type: i2.QuoteApiService }, { type: i1$1.ContextService }, { type: i4$1.RuntimeContextService }, { type: i4$1.RuntimeService }, { type: i4$1.CurrentStateService }, { type: undefined, decorators: [{
|
2181
|
-
type: Optional
|
2182
|
-
}, {
|
2183
|
-
type: Inject,
|
2184
|
-
args: [FLOW_CUSTOMIZATION]
|
2185
|
-
}] }]; } });
|
2186
|
-
|
2187
|
-
class LegacyProductModule {
|
2188
|
-
}
|
2189
|
-
LegacyProductModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2190
|
-
LegacyProductModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductModule, declarations: [LegacyProductComponent], imports: [CommonModule, RuntimeModule], exports: [LegacyProductComponent] });
|
2191
|
-
LegacyProductModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductModule, imports: [CommonModule, RuntimeModule] });
|
2192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: LegacyProductModule, decorators: [{
|
2193
|
-
type: NgModule,
|
2194
|
-
args: [{
|
2195
|
-
declarations: [LegacyProductComponent],
|
2196
|
-
imports: [CommonModule, RuntimeModule],
|
2197
|
-
exports: [LegacyProductComponent],
|
2198
|
-
}]
|
2199
|
-
}] });
|
2200
|
-
|
2201
1422
|
class ProductComponent {
|
2202
1423
|
constructor(contextService, configurationRuntimeService, configurationService, configurationState, quoteDraftService, integrationState, customizationService) {
|
2203
1424
|
this.contextService = contextService;
|
@@ -2239,7 +1460,7 @@ class ProductComponent {
|
|
2239
1460
|
return this.configurationRuntimeService.init({ productId, offeringId });
|
2240
1461
|
}), switchMap(() => this.customizeUI$()), tap(() => {
|
2241
1462
|
const uiDefinition = this.configurationRuntimeService.runtimeContext?.uiDefinitionContainer?.source;
|
2242
|
-
if (uiDefinition
|
1463
|
+
if (uiDefinition) {
|
2243
1464
|
this.uiDefinition$.next(uiDefinition);
|
2244
1465
|
}
|
2245
1466
|
else {
|
@@ -2261,12 +1482,12 @@ class ProductComponent {
|
|
2261
1482
|
return id;
|
2262
1483
|
}
|
2263
1484
|
}
|
2264
|
-
ProductComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2265
|
-
ProductComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
2266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1485
|
+
ProductComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductComponent, deps: [{ token: i2.ContextService }, { token: i2.ConfigurationRuntimeService }, { token: i2.ConfigurationService }, { token: i2.ConfigurationState }, { token: i2.QuoteDraftService }, { token: i2.IntegrationState }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
1486
|
+
ProductComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ProductComponent, selector: "vl-flow-product", ngImport: i0, template: "<vl-cms-preview [uiDefinition]=\"$any(uiDefinition$ | async)\" [config]=\"config\"></vl-cms-preview>\n", styles: [""], dependencies: [{ kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductComponent, decorators: [{
|
2267
1488
|
type: Component,
|
2268
1489
|
args: [{ selector: 'vl-flow-product', changeDetection: ChangeDetectionStrategy.OnPush, template: "<vl-cms-preview [uiDefinition]=\"$any(uiDefinition$ | async)\" [config]=\"config\"></vl-cms-preview>\n" }]
|
2269
|
-
}], ctorParameters: function () { return [{ type:
|
1490
|
+
}], ctorParameters: function () { return [{ type: i2.ContextService }, { type: i2.ConfigurationRuntimeService }, { type: i2.ConfigurationService }, { type: i2.ConfigurationState }, { type: i2.QuoteDraftService }, { type: i2.IntegrationState }, { type: undefined, decorators: [{
|
2270
1491
|
type: Optional
|
2271
1492
|
}, {
|
2272
1493
|
type: Inject,
|
@@ -2275,10 +1496,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2275
1496
|
|
2276
1497
|
class ProductModule {
|
2277
1498
|
}
|
2278
|
-
ProductModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2279
|
-
ProductModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2280
|
-
ProductModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1499
|
+
ProductModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1500
|
+
ProductModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ProductModule, declarations: [ProductComponent], imports: [CommonModule, PreviewModule, LoaderModule], exports: [ProductComponent] });
|
1501
|
+
ProductModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductModule, imports: [CommonModule, PreviewModule, LoaderModule] });
|
1502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductModule, decorators: [{
|
2282
1503
|
type: NgModule,
|
2283
1504
|
args: [{
|
2284
1505
|
declarations: [ProductComponent],
|
@@ -2300,9 +1521,9 @@ class RecordNotFoundComponent {
|
|
2300
1521
|
}
|
2301
1522
|
}
|
2302
1523
|
}
|
2303
|
-
RecordNotFoundComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2304
|
-
RecordNotFoundComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
2305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1524
|
+
RecordNotFoundComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundComponent, deps: [{ token: i1$2.Router }, { token: i1$2.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
1525
|
+
RecordNotFoundComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: RecordNotFoundComponent, selector: "vl-flow-record-not-found", ngImport: i0, template: "<div class=\"row\">\n <div class=\"col-md-12\">\n <div class=\"message-wrapper\">\n <div class=\"msg\">\n <div *ngIf=\"message; else defaultMessage\" class=\"message-title\">\n <p>{{ message }}</p>\n\n <p *ngIf=\"subMessage\" class=\"message-title\">{{ subMessage }}</p>\n </div>\n\n <ng-template #defaultMessage>Record not found</ng-template>\n </div>\n </div>\n </div>\n</div>\n", styles: [":host{display:block;padding:24px 54px}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundComponent, decorators: [{
|
2306
1527
|
type: Component,
|
2307
1528
|
args: [{ selector: 'vl-flow-record-not-found', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"row\">\n <div class=\"col-md-12\">\n <div class=\"message-wrapper\">\n <div class=\"msg\">\n <div *ngIf=\"message; else defaultMessage\" class=\"message-title\">\n <p>{{ message }}</p>\n\n <p *ngIf=\"subMessage\" class=\"message-title\">{{ subMessage }}</p>\n </div>\n\n <ng-template #defaultMessage>Record not found</ng-template>\n </div>\n </div>\n </div>\n</div>\n", styles: [":host{display:block;padding:24px 54px}\n"] }]
|
2308
1529
|
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: i1$2.ActivatedRoute }]; } });
|
@@ -2310,10 +1531,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2310
1531
|
const routes = [{ path: '', component: RecordNotFoundComponent }];
|
2311
1532
|
class RecordNotFoundModule {
|
2312
1533
|
}
|
2313
|
-
RecordNotFoundModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2314
|
-
RecordNotFoundModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2315
|
-
RecordNotFoundModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1534
|
+
RecordNotFoundModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1535
|
+
RecordNotFoundModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundModule, declarations: [RecordNotFoundComponent], imports: [CommonModule, i1$2.RouterModule] });
|
1536
|
+
RecordNotFoundModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundModule, imports: [CommonModule, RouterModule.forChild(routes)] });
|
1537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RecordNotFoundModule, decorators: [{
|
2317
1538
|
type: NgModule,
|
2318
1539
|
args: [{
|
2319
1540
|
declarations: [RecordNotFoundComponent],
|
@@ -2366,9 +1587,8 @@ class RemoteComponent {
|
|
2366
1587
|
this.runtimeService
|
2367
1588
|
.init({ productId })
|
2368
1589
|
.pipe(first(), tap(context => {
|
2369
|
-
const uiDefinitionProperties =
|
2370
|
-
|
2371
|
-
this.uiDefinition = uiDefinition && !isLegacyUIDefinition(uiDefinition) ? uiDefinition : undefined;
|
1590
|
+
const uiDefinitionProperties = context.uiDefinitionContainer?.source.properties ?? {};
|
1591
|
+
this.uiDefinition = context.uiDefinitionContainer?.source;
|
2372
1592
|
const pricingEnabled = uiDefinitionProperties.pricingEnabled ? 'true' : 'false';
|
2373
1593
|
const priceListId = uiDefinitionProperties.priceList;
|
2374
1594
|
const runtimeContextProperties = this.runtimeService.runtimeContext?.properties;
|
@@ -2643,19 +1863,19 @@ class RemoteComponent {
|
|
2643
1863
|
return optionConfigurations;
|
2644
1864
|
}
|
2645
1865
|
}
|
2646
|
-
RemoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2647
|
-
RemoteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
2648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1866
|
+
RemoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RemoteComponent, deps: [{ token: i2.ContextService }, { token: i2.QuoteDraftService }, { token: i2.ConfigurationRuntimeService }, { token: i2.ConfigurationService }, { token: i2.ConfigurationState }, { token: i2$2.MessageService }, { token: i2.IntegrationState }, { token: i4.Location }], target: i0.ɵɵFactoryTarget.Component });
|
1867
|
+
RemoteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: RemoteComponent, selector: "vl-flow-remote", ngImport: i0, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "component", type: i2$1.LoaderComponent, selector: "vl-loader", inputs: ["label", "overlayVisible"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RemoteComponent, decorators: [{
|
2649
1869
|
type: Component,
|
2650
1870
|
args: [{ selector: 'vl-flow-remote', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n" }]
|
2651
|
-
}], ctorParameters: function () { return [{ type:
|
1871
|
+
}], ctorParameters: function () { return [{ type: i2.ContextService }, { type: i2.QuoteDraftService }, { type: i2.ConfigurationRuntimeService }, { type: i2.ConfigurationService }, { type: i2.ConfigurationState }, { type: i2$2.MessageService }, { type: i2.IntegrationState }, { type: i4.Location }]; } });
|
2652
1872
|
|
2653
1873
|
class RemoteModule {
|
2654
1874
|
}
|
2655
|
-
RemoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2656
|
-
RemoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2657
|
-
RemoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1875
|
+
RemoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RemoteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1876
|
+
RemoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: RemoteModule, declarations: [RemoteComponent], imports: [CommonModule, PreviewModule, LoaderModule], exports: [RemoteComponent] });
|
1877
|
+
RemoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RemoteModule, imports: [CommonModule, PreviewModule, LoaderModule] });
|
1878
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RemoteModule, decorators: [{
|
2659
1879
|
type: NgModule,
|
2660
1880
|
args: [{
|
2661
1881
|
declarations: [RemoteComponent],
|
@@ -2665,17 +1885,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2665
1885
|
}] });
|
2666
1886
|
|
2667
1887
|
class ShoppingCartComponent {
|
2668
|
-
constructor(templatesApi,
|
1888
|
+
constructor(templatesApi, cdr, toastService, flowInfo, customizationService) {
|
2669
1889
|
this.templatesApi = templatesApi;
|
2670
|
-
this.contextService = contextService;
|
2671
1890
|
this.cdr = cdr;
|
2672
1891
|
this.toastService = toastService;
|
1892
|
+
this.flowInfo = flowInfo;
|
2673
1893
|
this.customizationService = customizationService;
|
2674
1894
|
this.uiDefinition = undefined;
|
2675
1895
|
this.state$ = new BehaviorSubject({ loading: true, failure: false });
|
2676
1896
|
this.templateApiName = '';
|
2677
1897
|
this.destroyed$ = new Subject();
|
2678
|
-
this.templateApiName = this.
|
1898
|
+
this.templateApiName = this.flowInfo.flow?.properties.templates.shoppingCart ?? '';
|
2679
1899
|
}
|
2680
1900
|
ngOnInit() {
|
2681
1901
|
this.generateUIDefinition$()
|
@@ -2720,7 +1940,11 @@ class ShoppingCartComponent {
|
|
2720
1940
|
}));
|
2721
1941
|
}
|
2722
1942
|
getShoppingCartComponentMeta$() {
|
2723
|
-
|
1943
|
+
const template = this.flowInfo.templates.SHOPPING_CART;
|
1944
|
+
if (!template) {
|
1945
|
+
return of(undefined);
|
1946
|
+
}
|
1947
|
+
return this.getTemplateRootComponent$(template).pipe(switchMap(component => component ? this.templatesApi.fetchComponentAttachments$(component.uiTemplateId, component) : of(undefined)));
|
2724
1948
|
}
|
2725
1949
|
generateUIDefinition$() {
|
2726
1950
|
return of(undefined).pipe(tap(() => {
|
@@ -2750,12 +1974,12 @@ class ShoppingCartComponent {
|
|
2750
1974
|
}));
|
2751
1975
|
}
|
2752
1976
|
}
|
2753
|
-
ShoppingCartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2754
|
-
ShoppingCartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
2755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1977
|
+
ShoppingCartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartComponent, deps: [{ token: i1$1.UITemplatesApiService }, { token: i0.ChangeDetectorRef }, { token: i2$1.ToastService }, { token: i2.FlowInfoService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
1978
|
+
ShoppingCartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ShoppingCartComponent, selector: "vl-flow-shopping-cart", ngImport: i0, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PreviewComponent, selector: "vl-cms-preview", inputs: ["uiDefinition", "config"] }, { kind: "component", type: i2$1.LoaderComponent, selector: "vl-loader", inputs: ["label", "overlayVisible"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartComponent, decorators: [{
|
2756
1980
|
type: Component,
|
2757
1981
|
args: [{ selector: 'vl-flow-shopping-cart', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"state$ | async as state\">\n <vl-loader *ngIf=\"state.loading; else content\" [label]=\"'Loading UI'\"></vl-loader>\n\n <ng-template #content>\n <ng-container *ngIf=\"!state.failure\">\n <vl-cms-preview [uiDefinition]=\"uiDefinition\"></vl-cms-preview>\n </ng-container>\n </ng-template>\n</ng-container>\n" }]
|
2758
|
-
}], ctorParameters: function () { return [{ type:
|
1982
|
+
}], ctorParameters: function () { return [{ type: i1$1.UITemplatesApiService }, { type: i0.ChangeDetectorRef }, { type: i2$1.ToastService }, { type: i2.FlowInfoService }, { type: undefined, decorators: [{
|
2759
1983
|
type: Optional
|
2760
1984
|
}, {
|
2761
1985
|
type: Inject,
|
@@ -2764,10 +1988,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2764
1988
|
|
2765
1989
|
class ShoppingCartModule {
|
2766
1990
|
}
|
2767
|
-
ShoppingCartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2768
|
-
ShoppingCartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2769
|
-
ShoppingCartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
1991
|
+
ShoppingCartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1992
|
+
ShoppingCartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartModule, declarations: [ShoppingCartComponent], imports: [CommonModule, PreviewModule, LoaderModule], exports: [ShoppingCartComponent] });
|
1993
|
+
ShoppingCartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartModule, imports: [CommonModule, PreviewModule, LoaderModule] });
|
1994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ShoppingCartModule, decorators: [{
|
2771
1995
|
type: NgModule,
|
2772
1996
|
args: [{
|
2773
1997
|
declarations: [ShoppingCartComponent],
|
@@ -2777,138 +2001,102 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
2777
2001
|
}] });
|
2778
2002
|
|
2779
2003
|
class FlowResolver {
|
2780
|
-
constructor(router,
|
2004
|
+
constructor(router, routerService, contextService, flowInfo) {
|
2781
2005
|
this.router = router;
|
2782
|
-
this.flowsApiService = flowsApiService;
|
2783
2006
|
this.routerService = routerService;
|
2784
2007
|
this.contextService = contextService;
|
2785
|
-
|
2786
|
-
handleError(route, message, queryParams) {
|
2787
|
-
const parentUrl = this.routerService.getFlowRootPath(route);
|
2788
|
-
return this.router.navigate([parentUrl, '404'], {
|
2789
|
-
queryParams,
|
2790
|
-
state: {
|
2791
|
-
message: message,
|
2792
|
-
},
|
2793
|
-
});
|
2008
|
+
this.flowInfo = flowInfo;
|
2794
2009
|
}
|
2795
2010
|
resolve(route) {
|
2796
2011
|
const { queryParams } = route;
|
2797
|
-
const
|
2798
|
-
if (!
|
2799
|
-
return
|
2800
|
-
}
|
2801
|
-
|
2802
|
-
|
2803
|
-
|
2804
|
-
|
2805
|
-
|
2806
|
-
|
2807
|
-
|
2808
|
-
|
2809
|
-
|
2810
|
-
|
2811
|
-
|
2812
|
-
|
2813
|
-
|
2814
|
-
|
2815
|
-
|
2816
|
-
|
2817
|
-
|
2818
|
-
|
2819
|
-
|
2820
|
-
|
2821
|
-
|
2822
|
-
|
2823
|
-
.catch(e => {
|
2824
|
-
const message = e instanceof HttpErrorResponse ? e.error.message : e;
|
2825
|
-
return this.handleError(route, message, mergedParams);
|
2826
|
-
});
|
2012
|
+
const flow = this.flowInfo.flow;
|
2013
|
+
if (!flow) {
|
2014
|
+
return of(false);
|
2015
|
+
}
|
2016
|
+
const { properties } = flow;
|
2017
|
+
const { queryParams: flowQueryParams, entryPath } = properties;
|
2018
|
+
const mergedQueryParams = {
|
2019
|
+
...queryParams,
|
2020
|
+
...flowQueryParams,
|
2021
|
+
};
|
2022
|
+
const contextProperties = Object.entries({
|
2023
|
+
...mergedQueryParams,
|
2024
|
+
...getDefaultProperties({ flowParams: properties }),
|
2025
|
+
}).reduce((trunk, [key, value]) => ({ ...trunk, [key]: String(value) }), {});
|
2026
|
+
this.contextService.update({ properties: contextProperties });
|
2027
|
+
this.flowInfo.flow = flow;
|
2028
|
+
const parentUrl = this.routerService.getFlowRootPath(route);
|
2029
|
+
const entryUrl = String(entryPath ?? '')
|
2030
|
+
.split('/')
|
2031
|
+
.filter(Boolean);
|
2032
|
+
return from(this.router.navigate([parentUrl, ...entryUrl], {
|
2033
|
+
queryParams: mergedQueryParams,
|
2034
|
+
replaceUrl: true,
|
2035
|
+
})).pipe(catchError$1(e => {
|
2036
|
+
const message = e instanceof HttpErrorResponse ? e.error.message : e;
|
2037
|
+
return this.routerService.showErrorPage$(message);
|
2827
2038
|
}));
|
2828
2039
|
}
|
2829
2040
|
}
|
2830
|
-
FlowResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2831
|
-
FlowResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2041
|
+
FlowResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowResolver, deps: [{ token: i1$2.Router }, { token: FlowRouterService }, { token: i2.ContextService }, { token: i2.FlowInfoService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2042
|
+
FlowResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowResolver });
|
2043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowResolver, decorators: [{
|
2833
2044
|
type: Injectable
|
2834
|
-
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type:
|
2045
|
+
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: FlowRouterService }, { type: i2.ContextService }, { type: i2.FlowInfoService }]; } });
|
2835
2046
|
|
2836
2047
|
class QuoteResolver {
|
2837
|
-
constructor(router, quoteDraftService, routerService, contextService,
|
2048
|
+
constructor(router, quoteDraftService, routerService, contextService, flowInfo, flowStateService) {
|
2838
2049
|
this.router = router;
|
2839
2050
|
this.quoteDraftService = quoteDraftService;
|
2840
2051
|
this.routerService = routerService;
|
2841
2052
|
this.contextService = contextService;
|
2842
|
-
this.
|
2843
|
-
this.
|
2844
|
-
}
|
2845
|
-
handleError(route, message) {
|
2846
|
-
const parentUrl = this.routerService.getFlowRootPath(route);
|
2847
|
-
return from(this.router.navigate([parentUrl, '404'], { state: { message } }));
|
2848
|
-
}
|
2849
|
-
calculate$() {
|
2850
|
-
const quoteDraft = this.quoteDraftService.quoteDraft;
|
2851
|
-
if (!this.quoteDraftService.isStandalone && quoteDraft && !this.accountHasNotAssets()) {
|
2852
|
-
return this.flowConfiguration.calculate$(quoteDraft);
|
2853
|
-
}
|
2854
|
-
return of(undefined);
|
2053
|
+
this.flowInfo = flowInfo;
|
2054
|
+
this.flowStateService = flowStateService;
|
2855
2055
|
}
|
2856
2056
|
resolve(route) {
|
2857
|
-
const
|
2858
|
-
|
2859
|
-
|
2057
|
+
const flow = this.flowInfo.flow;
|
2058
|
+
if (!flow) {
|
2059
|
+
return of(false);
|
2060
|
+
}
|
2061
|
+
if (this.flowStateService.isInitialized()) {
|
2860
2062
|
return of(true);
|
2861
2063
|
}
|
2862
|
-
|
2863
|
-
return this.quoteDraftService.init(headerId, queryParams).pipe(switchMap(() => this.calculate$()), tap(() => {
|
2864
|
-
if (!this.quoteDraftService.isStandalone && queryParams.suppressInitialNavigation !== 'true') {
|
2865
|
-
if (this.shouldNavigateToAssets()) {
|
2866
|
-
this.changeNavigation('/assets', route);
|
2867
|
-
}
|
2868
|
-
else if (!this.quoteDraftService.isInitialized && this.quoteDraftService.hasProducts) {
|
2869
|
-
this.changeNavigation('/cart', route);
|
2870
|
-
}
|
2871
|
-
}
|
2872
|
-
this.initializeModifiedAssetsMap();
|
2873
|
-
this.quoteDraftService.isInitialized = true;
|
2874
|
-
this.quoteDraftService.hasUnsavedChanges = false;
|
2875
|
-
}), catchError(e => {
|
2064
|
+
return this.flowStateService.init$().pipe(switchMap(() => this.checkDynamicNavigation$(route)), catchError(e => {
|
2876
2065
|
const message = e instanceof HttpErrorResponse ? e.error.message : e;
|
2877
|
-
return this.
|
2066
|
+
return this.routerService.showErrorPage$(message);
|
2878
2067
|
}));
|
2879
2068
|
}
|
2880
|
-
|
2881
|
-
const
|
2882
|
-
|
2883
|
-
|
2884
|
-
queryParams: route.queryParams,
|
2885
|
-
replaceUrl: true,
|
2886
|
-
})
|
2887
|
-
.catch(e => {
|
2888
|
-
const message = e instanceof HttpErrorResponse ? e.error.message : e;
|
2889
|
-
return this.handleError(route, message);
|
2890
|
-
});
|
2891
|
-
}
|
2892
|
-
shouldNavigateToAssets() {
|
2893
|
-
if (this.contextService.mode === ConfigurationContextMode.ACCOUNT) {
|
2894
|
-
return true;
|
2069
|
+
checkDynamicNavigation$(route) {
|
2070
|
+
const flow = this.flowInfo.flow;
|
2071
|
+
if (!flow) {
|
2072
|
+
return of(true);
|
2895
2073
|
}
|
2896
|
-
|
2897
|
-
|
2898
|
-
|
2899
|
-
|
2900
|
-
|
2901
|
-
|
2902
|
-
|
2903
|
-
|
2904
|
-
|
2074
|
+
if (flow.properties.suppressInitialNavigation || flow.properties.standalone) {
|
2075
|
+
return of(true);
|
2076
|
+
}
|
2077
|
+
let navigateTo;
|
2078
|
+
const isAccountMode = this.contextService.mode === ConfigurationContextMode.ACCOUNT;
|
2079
|
+
if (isAccountMode && this.quoteDraftService.hasAssets) {
|
2080
|
+
navigateTo = '/assets';
|
2081
|
+
}
|
2082
|
+
else if (this.quoteDraftService.hasProducts) {
|
2083
|
+
navigateTo = '/cart';
|
2084
|
+
}
|
2085
|
+
if (navigateTo) {
|
2086
|
+
const parentUrl = this.routerService.getFlowRootPath(route);
|
2087
|
+
return from(this.router.navigate([parentUrl + navigateTo], {
|
2088
|
+
queryParams: route.queryParams,
|
2089
|
+
replaceUrl: true,
|
2090
|
+
}));
|
2091
|
+
}
|
2092
|
+
return of(true);
|
2905
2093
|
}
|
2906
2094
|
}
|
2907
|
-
QuoteResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2908
|
-
QuoteResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2095
|
+
QuoteResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteResolver, deps: [{ token: i1$2.Router }, { token: i2.QuoteDraftService }, { token: FlowRouterService }, { token: i2.ContextService }, { token: i2.FlowInfoService }, { token: i2.FlowStateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2096
|
+
QuoteResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteResolver });
|
2097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteResolver, decorators: [{
|
2910
2098
|
type: Injectable
|
2911
|
-
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type:
|
2099
|
+
}], ctorParameters: function () { return [{ type: i1$2.Router }, { type: i2.QuoteDraftService }, { type: FlowRouterService }, { type: i2.ContextService }, { type: i2.FlowInfoService }, { type: i2.FlowStateService }]; } });
|
2912
2100
|
|
2913
2101
|
const rootRoute = {
|
2914
2102
|
id: VELOCE_FLOW_ROOT_ROUTE,
|
@@ -2918,107 +2106,99 @@ const rootRoute = {
|
|
2918
2106
|
canDeactivate: [RootGuard],
|
2919
2107
|
children: [
|
2920
2108
|
{
|
2921
|
-
path: '
|
2922
|
-
|
2923
|
-
|
2924
|
-
canActivate: [ContextGuard],
|
2925
|
-
children: [],
|
2926
|
-
},
|
2927
|
-
{
|
2928
|
-
path: 'legacy',
|
2109
|
+
path: '',
|
2110
|
+
canActivate: [keepFlowInitialized],
|
2111
|
+
runGuardsAndResolvers: 'always',
|
2929
2112
|
children: [
|
2113
|
+
{
|
2114
|
+
path: 'flows',
|
2115
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2116
|
+
resolve: { flow: FlowResolver },
|
2117
|
+
canActivate: [ContextGuard],
|
2118
|
+
children: [],
|
2119
|
+
},
|
2930
2120
|
{
|
2931
2121
|
path: 'product',
|
2932
|
-
component:
|
2122
|
+
component: ProductComponent,
|
2123
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2124
|
+
resolve: { quote: QuoteResolver },
|
2125
|
+
canActivate: [ContextGuard],
|
2126
|
+
canDeactivate: [ProductUnloadGuard],
|
2127
|
+
data: { showHeader: true },
|
2128
|
+
},
|
2129
|
+
{
|
2130
|
+
path: 'cart',
|
2131
|
+
component: ShoppingCartComponent,
|
2132
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2133
|
+
resolve: { quote: QuoteResolver },
|
2134
|
+
canActivate: [ContextGuard],
|
2135
|
+
data: { showHeader: true },
|
2136
|
+
},
|
2137
|
+
{
|
2138
|
+
path: 'catalog',
|
2139
|
+
component: CatalogComponent,
|
2140
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2141
|
+
resolve: { quote: QuoteResolver },
|
2142
|
+
canActivate: [ContextGuard],
|
2143
|
+
data: { showHeader: true },
|
2144
|
+
},
|
2145
|
+
{
|
2146
|
+
path: 'assets',
|
2147
|
+
component: AssetsComponent,
|
2148
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2149
|
+
resolve: { quote: QuoteResolver },
|
2150
|
+
canActivate: [ContextGuard],
|
2151
|
+
data: { showHeader: true },
|
2152
|
+
},
|
2153
|
+
{
|
2154
|
+
path: 'empty',
|
2155
|
+
component: EmptyAccountComponent,
|
2156
|
+
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2157
|
+
resolve: { quote: QuoteResolver },
|
2158
|
+
canActivate: [ContextGuard],
|
2159
|
+
data: { showHeader: true },
|
2160
|
+
},
|
2161
|
+
{
|
2162
|
+
path: 'remote',
|
2163
|
+
component: RemoteComponent,
|
2933
2164
|
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2934
2165
|
resolve: { quote: QuoteResolver },
|
2935
2166
|
canActivate: [ContextGuard],
|
2936
2167
|
},
|
2168
|
+
{
|
2169
|
+
path: 'debug',
|
2170
|
+
loadChildren: () => DebugModule,
|
2171
|
+
},
|
2172
|
+
{
|
2173
|
+
path: '404',
|
2174
|
+
loadChildren: () => RecordNotFoundModule,
|
2175
|
+
},
|
2937
2176
|
],
|
2938
2177
|
},
|
2939
|
-
{
|
2940
|
-
path: 'product',
|
2941
|
-
component: ProductComponent,
|
2942
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2943
|
-
resolve: { quote: QuoteResolver },
|
2944
|
-
canActivate: [ContextGuard],
|
2945
|
-
canDeactivate: [ProductUnloadGuard],
|
2946
|
-
data: { showHeader: true },
|
2947
|
-
},
|
2948
|
-
{
|
2949
|
-
path: 'cart',
|
2950
|
-
component: ShoppingCartComponent,
|
2951
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2952
|
-
resolve: { quote: QuoteResolver },
|
2953
|
-
canActivate: [ContextGuard],
|
2954
|
-
data: { showHeader: true },
|
2955
|
-
},
|
2956
|
-
{
|
2957
|
-
path: 'catalog',
|
2958
|
-
component: CatalogComponent,
|
2959
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2960
|
-
resolve: { quote: QuoteResolver },
|
2961
|
-
canActivate: [ContextGuard],
|
2962
|
-
data: { showHeader: true },
|
2963
|
-
},
|
2964
|
-
{
|
2965
|
-
path: 'assets',
|
2966
|
-
component: AssetsComponent,
|
2967
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2968
|
-
resolve: { quote: QuoteResolver },
|
2969
|
-
canActivate: [ContextGuard],
|
2970
|
-
data: { showHeader: true },
|
2971
|
-
},
|
2972
|
-
{
|
2973
|
-
path: 'empty',
|
2974
|
-
component: EmptyAccountComponent,
|
2975
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2976
|
-
resolve: { quote: QuoteResolver },
|
2977
|
-
canActivate: [ContextGuard],
|
2978
|
-
data: { showHeader: true },
|
2979
|
-
},
|
2980
|
-
{
|
2981
|
-
path: 'remote',
|
2982
|
-
component: RemoteComponent,
|
2983
|
-
runGuardsAndResolvers: 'paramsOrQueryParamsChange',
|
2984
|
-
resolve: { quote: QuoteResolver },
|
2985
|
-
canActivate: [ContextGuard],
|
2986
|
-
},
|
2987
|
-
{
|
2988
|
-
path: 'debug',
|
2989
|
-
loadChildren: () => DebugModule,
|
2990
|
-
},
|
2991
|
-
{
|
2992
|
-
path: '404',
|
2993
|
-
loadChildren: () => RecordNotFoundModule,
|
2994
|
-
},
|
2995
2178
|
],
|
2996
2179
|
};
|
2997
2180
|
class FlowRoutingModule {
|
2998
2181
|
}
|
2999
|
-
FlowRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
3000
|
-
FlowRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
3001
|
-
LegacyProductModule,
|
2182
|
+
FlowRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2183
|
+
FlowRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowRoutingModule, imports: [i1$2.RouterModule, ProductModule,
|
3002
2184
|
ShoppingCartModule,
|
3003
2185
|
CatalogModule,
|
3004
2186
|
AssetsModule,
|
3005
2187
|
RemoteModule,
|
3006
2188
|
EmptyAccountModule], exports: [RouterModule] });
|
3007
|
-
FlowRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2189
|
+
FlowRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRoutingModule, providers: [FlowRouterService, RootGuard, ContextGuard, ProductUnloadGuard, FlowResolver, QuoteResolver], imports: [RouterModule.forChild([rootRoute]),
|
3008
2190
|
ProductModule,
|
3009
|
-
LegacyProductModule,
|
3010
2191
|
ShoppingCartModule,
|
3011
2192
|
CatalogModule,
|
3012
2193
|
AssetsModule,
|
3013
2194
|
RemoteModule,
|
3014
2195
|
EmptyAccountModule, RouterModule] });
|
3015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowRoutingModule, decorators: [{
|
3016
2197
|
type: NgModule,
|
3017
2198
|
args: [{
|
3018
2199
|
imports: [
|
3019
2200
|
RouterModule.forChild([rootRoute]),
|
3020
2201
|
ProductModule,
|
3021
|
-
LegacyProductModule,
|
3022
2202
|
ShoppingCartModule,
|
3023
2203
|
CatalogModule,
|
3024
2204
|
AssetsModule,
|
@@ -3030,32 +2210,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
3030
2210
|
}]
|
3031
2211
|
}] });
|
3032
2212
|
|
2213
|
+
class FlowDocGenService {
|
2214
|
+
constructor(integrationState) {
|
2215
|
+
this.integrationState = integrationState;
|
2216
|
+
this.cleanup$ = new Subject();
|
2217
|
+
this.isVisibleSubj$ = new BehaviorSubject(false);
|
2218
|
+
this.isVisible$ = this.isVisibleSubj$.asObservable();
|
2219
|
+
this.initSubscriptions();
|
2220
|
+
}
|
2221
|
+
cleanup() {
|
2222
|
+
this.cleanup$.next();
|
2223
|
+
}
|
2224
|
+
initSubscriptions() {
|
2225
|
+
this.integrationState
|
2226
|
+
.listen$(FlowAction.FLOW_OPEN_DOC_GEN)
|
2227
|
+
.pipe(tap(() => this.isVisibleSubj$.next(true)), takeUntil(this.cleanup$))
|
2228
|
+
.subscribe();
|
2229
|
+
this.integrationState
|
2230
|
+
.listen$(FlowAction.FLOW_CLOSE_DOC_GEN)
|
2231
|
+
.pipe(tap(() => this.isVisibleSubj$.next(false)), takeUntil(this.cleanup$))
|
2232
|
+
.subscribe();
|
2233
|
+
}
|
2234
|
+
}
|
2235
|
+
FlowDocGenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDocGenService, deps: [{ token: i2.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
2236
|
+
FlowDocGenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDocGenService });
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowDocGenService, decorators: [{
|
2238
|
+
type: Injectable
|
2239
|
+
}], ctorParameters: function () { return [{ type: i2.IntegrationState }]; } });
|
2240
|
+
|
2241
|
+
class FlowGuidedSellingService {
|
2242
|
+
constructor(integrationState) {
|
2243
|
+
this.integrationState = integrationState;
|
2244
|
+
this.cleanup$ = new Subject();
|
2245
|
+
this.isVisibleSubj$ = new BehaviorSubject(true);
|
2246
|
+
this.isVisible$ = this.isVisibleSubj$.asObservable();
|
2247
|
+
this.initSubscriptions();
|
2248
|
+
}
|
2249
|
+
cleanup() {
|
2250
|
+
this.cleanup$.next();
|
2251
|
+
}
|
2252
|
+
initSubscriptions() {
|
2253
|
+
this.integrationState
|
2254
|
+
.listen$(FlowAction.OPEN_GUIDED_SELLING)
|
2255
|
+
.pipe(tap(() => this.isVisibleSubj$.next(true)), takeUntil(this.cleanup$))
|
2256
|
+
.subscribe();
|
2257
|
+
this.integrationState
|
2258
|
+
.listen$(FlowAction.CLOSE_GUIDED_SELLING)
|
2259
|
+
.pipe(tap(() => this.isVisibleSubj$.next(false)), takeUntil(this.cleanup$))
|
2260
|
+
.subscribe();
|
2261
|
+
}
|
2262
|
+
}
|
2263
|
+
FlowGuidedSellingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowGuidedSellingService, deps: [{ token: i2.IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
2264
|
+
FlowGuidedSellingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowGuidedSellingService });
|
2265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowGuidedSellingService, decorators: [{
|
2266
|
+
type: Injectable
|
2267
|
+
}], ctorParameters: function () { return [{ type: i2.IntegrationState }]; } });
|
2268
|
+
|
2269
|
+
const configurePrimengShadowDOM = () => {
|
2270
|
+
DomHandler.getScrollableParents = (element) => {
|
2271
|
+
const scrollableParents = [];
|
2272
|
+
if (element) {
|
2273
|
+
const parents = DomHandler.getParents(element).filter((item) => !(item instanceof ShadowRoot));
|
2274
|
+
const overflowRegex = /(auto|scroll)/;
|
2275
|
+
const overflowCheck = (node) => {
|
2276
|
+
const styleDeclaration = window['getComputedStyle'](node, null);
|
2277
|
+
return (overflowRegex.test(styleDeclaration.getPropertyValue('overflow')) ||
|
2278
|
+
overflowRegex.test(styleDeclaration.getPropertyValue('overflowX')) ||
|
2279
|
+
overflowRegex.test(styleDeclaration.getPropertyValue('overflowY')));
|
2280
|
+
};
|
2281
|
+
for (const parent of parents) {
|
2282
|
+
const scrollSelectors = parent.nodeType === 1 && parent.dataset['scrollselectors'];
|
2283
|
+
if (scrollSelectors) {
|
2284
|
+
const selectors = scrollSelectors.split(',');
|
2285
|
+
for (const selector of selectors) {
|
2286
|
+
const el = DomHandler.findSingle(parent, selector);
|
2287
|
+
if (el && overflowCheck(el)) {
|
2288
|
+
scrollableParents.push(el);
|
2289
|
+
}
|
2290
|
+
}
|
2291
|
+
}
|
2292
|
+
if (parent.nodeType !== 9 && overflowCheck(parent)) {
|
2293
|
+
scrollableParents.push(parent);
|
2294
|
+
}
|
2295
|
+
}
|
2296
|
+
}
|
2297
|
+
return scrollableParents;
|
2298
|
+
};
|
2299
|
+
};
|
2300
|
+
|
2301
|
+
configurePrimengShadowDOM();
|
3033
2302
|
class FlowModule {
|
3034
2303
|
}
|
3035
|
-
FlowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
3036
|
-
FlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
2304
|
+
FlowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2305
|
+
FlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowModule, declarations: [FlowComponent], imports: [CommonModule,
|
3037
2306
|
LetDirectiveModule,
|
3038
2307
|
FlowRoutingModule,
|
3039
2308
|
ApiModule,
|
3040
2309
|
LauncherModule,
|
3041
2310
|
LoaderModule,
|
3042
|
-
|
2311
|
+
FlowNewHeaderModule,
|
3043
2312
|
FlowDialogModule,
|
3044
2313
|
SdkCoreModule,
|
3045
2314
|
DocGenModule,
|
3046
2315
|
GuidedSellingModule] });
|
3047
|
-
FlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
2316
|
+
FlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowModule, providers: [FlowService, FlowDialogService, FlowDocGenService, FlowGuidedSellingService], imports: [CommonModule,
|
3048
2317
|
LetDirectiveModule,
|
3049
2318
|
FlowRoutingModule,
|
3050
2319
|
ApiModule,
|
3051
2320
|
LauncherModule,
|
3052
2321
|
LoaderModule,
|
3053
|
-
|
2322
|
+
FlowNewHeaderModule,
|
3054
2323
|
FlowDialogModule,
|
3055
2324
|
SdkCoreModule,
|
3056
2325
|
DocGenModule,
|
3057
2326
|
GuidedSellingModule] });
|
3058
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowModule, decorators: [{
|
3059
2328
|
type: NgModule,
|
3060
2329
|
args: [{
|
3061
2330
|
declarations: [FlowComponent],
|
@@ -3066,7 +2335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
3066
2335
|
ApiModule,
|
3067
2336
|
LauncherModule,
|
3068
2337
|
LoaderModule,
|
3069
|
-
|
2338
|
+
FlowNewHeaderModule,
|
3070
2339
|
FlowDialogModule,
|
3071
2340
|
SdkCoreModule,
|
3072
2341
|
DocGenModule,
|
@@ -3080,5 +2349,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
3080
2349
|
* Generated bundle index. Do not edit.
|
3081
2350
|
*/
|
3082
2351
|
|
3083
|
-
export { ContextGuard, FLOW_CUSTOMIZATION, FlowModule, FlowService, VELOCE_FLOW_ROOT_ROUTE, getDefaultProperties, getFlowObjectIdPropertyName };
|
2352
|
+
export { ContextGuard, FLOW_CUSTOMIZATION, FlowDialogService, FlowModule, FlowRouterService, FlowService, VELOCE_FLOW_ROOT_ROUTE, getDefaultProperties, getFlowObjectIdPropertyName };
|
3084
2353
|
//# sourceMappingURL=veloceapps-sdk.mjs.map
|