@retailrocketgroup/retailrocket-create.next-best-offer-2-vue-email-template-render 3.0.377566 → 5.0.384530
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +25 -0
- package/dist/assets/index.css +1 -0
- package/dist/assets/index.js +379 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/createNextBestOffer2EmailTemplateApp.d.ts +0 -0
- package/dist/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2ComponentSectionItemFactory.d.ts +4 -0
- package/dist/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2EmailComponentFactory.d.ts +4 -0
- package/dist/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CustomComponentLibrary/nextBestOffer2ComponentLibraryFactory.d.ts +4 -0
- package/dist/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CustomComponentLibrary/nextBestOffer2SectionFactory.d.ts +4 -0
- package/dist/implementation/DataSources/ListDataExpressionSource/nextBestOffer2EvaluateListExpressionDataSourceFactory.d.ts +8 -0
- package/dist/implementation/DataSources/NumberExpressionDataSource/nextBestOffer2EvaluateNumberExpressionDataSourceFactory.d.ts +2 -0
- package/dist/implementation/DataSources/StringExpressionDataSource/nextBestOffer2EvaluateStringExpressionDataSource.d.ts +9 -0
- package/dist/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/NextBestOffer2ProductShelfDataSourceExpressionBuilderModal/ShelfBuilders/nextBestOfferRecommendationsShelfBuilderDepsFactory.d.ts +8 -0
- package/dist/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/NextBestOffer2ProductShelfDataSourceExpressionBuilderModal/nextBestOffer2ProductShelfDataSourceExpressionBuilderModalDepsFactory.d.ts +11 -0
- package/dist/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/nextBestOffer2ProductShelfDataSourceExpressionBuilderDepsFactory.d.ts +11 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.html +36 -0
- package/env.d.ts +1 -0
- package/index.html +1 -2
- package/package.json +1 -1
- package/src/createNextBestOffer2EmailTemplateApp.ts +295 -0
- package/src/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2ComponentSectionItemFactory.ts +30 -0
- package/src/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2EmailComponentFactory.ts +26 -0
- package/src/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CustomComponentLibrary/nextBestOffer2ComponentLibraryFactory.ts +29 -0
- package/src/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CustomComponentLibrary/nextBestOffer2SectionFactory.ts +32 -0
- package/src/implementation/DataSources/ListDataExpressionSource/nextBestOffer2EvaluateListExpressionDataSourceFactory.ts +116 -0
- package/src/implementation/DataSources/NumberExpressionDataSource/nextBestOffer2EvaluateNumberExpressionDataSourceFactory.ts +10 -0
- package/src/implementation/DataSources/StringExpressionDataSource/nextBestOffer2EvaluateStringExpressionDataSource.ts +56 -0
- package/src/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/NextBestOffer2ProductShelfDataSourceExpressionBuilderModal/ShelfBuilders/nextBestOfferRecommendationsShelfBuilderDepsFactory.ts +33 -0
- package/src/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/NextBestOffer2ProductShelfDataSourceExpressionBuilderModal/nextBestOffer2ProductShelfDataSourceExpressionBuilderModalDepsFactory.ts +135 -0
- package/src/implementation/EmailComponentSettingsModifierPlugin/ProductShelfDataSourceExpressionBuilder/nextBestOffer2ProductShelfDataSourceExpressionBuilderDepsFactory.ts +35 -0
- package/src/index.ts +0 -0
- package/tsconfig.app.json +19 -0
- package/tsconfig.json +14 -0
- package/tsconfig.node.json +11 -0
- package/tsconfig.test.json +11 -0
- package/vite.config.ts +36 -0
- package/assets/main.css +0 -1
- package/assets/main.js +0 -179
- package/favicon.ico +0 -0
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ComponentLibrarySectionItem } from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
2
|
+
import { CustomComponentSectionItemType } from '@easy-wizzy/core';
|
|
3
|
+
import { NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2ComponentSectionItemFactory: (componentLibrarySectionItem: ComponentLibrarySectionItem) => CustomComponentSectionItemType<NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { EmailComponentType } from '@easy-wizzy/core';
|
|
2
|
+
import { Component } from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.addcomponentlibrarysectionitemmodalwindow/main';
|
|
3
|
+
import { NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2EmailComponentFactory: (component: Component) => EmailComponentType<NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ComponentLibrarySection } from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
2
|
+
import { CustomComponentLibraryType } from '@easy-wizzy/core';
|
|
3
|
+
import { NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2ComponentLibraryFactory: (componentLibrary: Array<ComponentLibrarySection>) => CustomComponentLibraryType<NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ComponentLibrarySection } from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
2
|
+
import { CustomComponentSectionType } from '@easy-wizzy/core';
|
|
3
|
+
import { NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2SectionFactory: (section: ComponentLibrarySection) => CustomComponentSectionType<NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ListExpressionDataSourceBffClient } from '@easy-wizzy/common-app';
|
|
2
|
+
import { ListExpressionDataSourceEvaluatorDelegate } from '@easy-wizzy/core';
|
|
3
|
+
import { NextBestOffer2ListExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2EvaluateListExpressionDataSourceFactory: (arg: {
|
|
5
|
+
partnerId: string;
|
|
6
|
+
listExpressionDataSourceBffClient: ListExpressionDataSourceBffClient;
|
|
7
|
+
customerStockId: string | undefined;
|
|
8
|
+
}) => ListExpressionDataSourceEvaluatorDelegate<NextBestOffer2ListExpressionDataSource>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { StringExpressionDataSourceEvaluatorDelegate } from '@easy-wizzy/core';
|
|
2
|
+
import { ContactCustomData, NextCouponFromBatchType } from '@easy-wizzy/retailrocket-common';
|
|
3
|
+
import { ProductImageUrlBuilderExpressionEvaluatorDelegate } from '@easy-wizzy/common-app';
|
|
4
|
+
import { NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource, NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
5
|
+
export declare const nextBestOffer2StringExpressionDataSourceEvaluatorFactory: (arg: {
|
|
6
|
+
productImageUrlBuilderExpressionEvaluator: ProductImageUrlBuilderExpressionEvaluatorDelegate<NextBestOffer2ListExpressionDataSource, NextBestOffer2NumberExpressionDataSource>;
|
|
7
|
+
contactCustomData: ContactCustomData;
|
|
8
|
+
nextCouponFromBatch: NextCouponFromBatchType;
|
|
9
|
+
}) => StringExpressionDataSourceEvaluatorDelegate<NextBestOffer2StringExpressionDataSource>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LocaleKey } from '@easy-wizzy/core';
|
|
2
|
+
import { ProductShelfBuilderModalWindowBffClient } from '@easy-wizzy/common-app';
|
|
3
|
+
import { NextBestOfferRecommendationsShelfBuilderDeps } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOfferRecommendationsShelfBuilderDepsFactory: (arg: {
|
|
5
|
+
localeKey: LocaleKey;
|
|
6
|
+
partnerId: string;
|
|
7
|
+
getAllStockIdsHttpClient: ProductShelfBuilderModalWindowBffClient["postGetAllStockIds"];
|
|
8
|
+
}) => NextBestOfferRecommendationsShelfBuilderDeps;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { LocaleKey } from '@easy-wizzy/core';
|
|
2
|
+
import { ProductShelfBuilderModalWindowBffClient, ProductPickerModalWindowBffClient, ProductCategoryPickerModalWindowBffClient } from '@easy-wizzy/common-app';
|
|
3
|
+
import { NextBestOffer2ProductShelfDataSourceExpressionBuilderModalDeps } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2ProductShelfDataSourceExpressionBuilderModalDepsFactory: (arg: {
|
|
5
|
+
localeKey: LocaleKey;
|
|
6
|
+
partnerId: string;
|
|
7
|
+
customerStockId: string | undefined;
|
|
8
|
+
productShelfBuilderModalWindowBffClient: ProductShelfBuilderModalWindowBffClient;
|
|
9
|
+
productCategoryPickerModalWindowBffClient: ProductCategoryPickerModalWindowBffClient;
|
|
10
|
+
productPickerModalWindowBffClient: ProductPickerModalWindowBffClient;
|
|
11
|
+
}) => NextBestOffer2ProductShelfDataSourceExpressionBuilderModalDeps;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { LocaleKey } from '@easy-wizzy/core';
|
|
2
|
+
import { ProductShelfBuilderModalWindowBffClient, ProductPickerModalWindowBffClient, ProductCategoryPickerModalWindowBffClient } from '@easy-wizzy/common-app';
|
|
3
|
+
import { NextBestOffer2ProductShelfDataSourceExpressionBuilderDeps } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
4
|
+
export declare const nextBestOffer2ProductShelfDataSourceExpressionBuilderDepsFactory: (arg: {
|
|
5
|
+
localeKey: LocaleKey;
|
|
6
|
+
partnerId: string;
|
|
7
|
+
customerStockId: string | undefined;
|
|
8
|
+
productShelfBuilderModalWindowBffClient: ProductShelfBuilderModalWindowBffClient;
|
|
9
|
+
productCategoryPickerModalWindowBffClient: ProductCategoryPickerModalWindowBffClient;
|
|
10
|
+
productPickerModalWindowBffClient: ProductPickerModalWindowBffClient;
|
|
11
|
+
}) => NextBestOffer2ProductShelfDataSourceExpressionBuilderDeps;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<link rel="icon" href="/favicon.ico">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
9
|
+
<link
|
|
10
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
|
|
11
|
+
rel="stylesheet"
|
|
12
|
+
/>
|
|
13
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lato:wght@100;300;400;700;900&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
14
|
+
<title>Vite App</title>
|
|
15
|
+
<script type="module" crossorigin src="/assets/index.js"></script>
|
|
16
|
+
<link rel="stylesheet" crossorigin href="/assets/index.css">
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<div
|
|
20
|
+
id="app"
|
|
21
|
+
data-partner-id="5df72bdc97a52507605e4cc1"
|
|
22
|
+
data-wysiwyg-template-editor-bff-base-url="https://my.retailrocket.ru/5db801c197a52821e86b0d45/TransactionalEmailCampaign/6757225a5520d1ae575e7f0e/CampaignWizard/Step2/WysiwygTemplateEditorBff"
|
|
23
|
+
data-wysiwyg-bff-proxy-base-url="https://k8s-b1.retailrocket.ru/"
|
|
24
|
+
data-anti-forgery-header-token-name="data-anti-forgery-header-token-name"
|
|
25
|
+
data-anti-forgery-header-token-value="data-anti-forgery-header-token-value"
|
|
26
|
+
data-anti-forgery-form-token-name="data-anti-forgery-form-token-name"
|
|
27
|
+
data-anti-forgery-form-token-value="data-anti-forgery-form-token-value"
|
|
28
|
+
data-initial-next-best-offer-2-template=""
|
|
29
|
+
data-next-best-offer-2-favorites-templates="[]"
|
|
30
|
+
data-create-email-template-submit-url="data-create-email-template-submit-url"
|
|
31
|
+
data-common-favorites-templates="[]"
|
|
32
|
+
data-exit-link="#"
|
|
33
|
+
data-locale-key="en"
|
|
34
|
+
></div>
|
|
35
|
+
</body>
|
|
36
|
+
</html>
|
package/env.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
package/index.html
CHANGED
|
@@ -12,8 +12,6 @@
|
|
|
12
12
|
/>
|
|
13
13
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lato:wght@100;300;400;700;900&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
14
14
|
<title>Vite App</title>
|
|
15
|
-
<script type="module" crossorigin src="/assets/main.js"></script>
|
|
16
|
-
<link rel="stylesheet" crossorigin href="/assets/main.css">
|
|
17
15
|
</head>
|
|
18
16
|
<body>
|
|
19
17
|
<div
|
|
@@ -32,5 +30,6 @@
|
|
|
32
30
|
data-exit-link="#"
|
|
33
31
|
data-locale-key="en"
|
|
34
32
|
></div>
|
|
33
|
+
<script type="module" src="/src/createNextBestOffer2EmailTemplateApp.ts"></script>
|
|
35
34
|
</body>
|
|
36
35
|
</html>
|
package/package.json
CHANGED
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
import 'bootstrap';
|
|
2
|
+
import '@easy-wizzy/core/index.css';
|
|
3
|
+
|
|
4
|
+
import { createApp } from 'vue';
|
|
5
|
+
import { createVuetify } from 'vuetify';
|
|
6
|
+
import { ClickOutside } from 'vuetify/directives';
|
|
7
|
+
|
|
8
|
+
import { CreateEmailTemplateApp } from '@easy-wizzy/core';
|
|
9
|
+
import { createSimpleDataForm, matcherFactory } from '@easy-wizzy/core';
|
|
10
|
+
import type { GeneralStringExpressionDataSource } from '@easy-wizzy/retailrocket-common';
|
|
11
|
+
import { expressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
12
|
+
import { listExpressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
13
|
+
import { numberExpressionEvaluatorDelegate } from '@easy-wizzy/core';
|
|
14
|
+
import { stringExpressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
15
|
+
import { dataStructBuilderExpressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
16
|
+
|
|
17
|
+
import type { EmailTemplateType } from '@easy-wizzy/core';
|
|
18
|
+
import type { EmailTemplatePreviewTileComponent } from '@easy-wizzy/core';
|
|
19
|
+
import type { LocaleKey } from '@easy-wizzy/core';
|
|
20
|
+
import type { StringExpressionEvaluatorDelegate } from '@easy-wizzy/core';
|
|
21
|
+
|
|
22
|
+
import { createEmailTemplateAppDepsFactory } from '@easy-wizzy/common-app';
|
|
23
|
+
import { emailTemplatePreviewTileComponentFactory } from '@easy-wizzy/common-app';
|
|
24
|
+
import { emailTemplatePreviewTileDepsFactory } from '@easy-wizzy/common-app';
|
|
25
|
+
import { productImageUrlBuilderExpressionEvaluatorFactory } from '@easy-wizzy/common-app';
|
|
26
|
+
import { defaultTemplateLibraryFactory } from '@easy-wizzy/common-app';
|
|
27
|
+
import { apiMachineFetchFactory } from '@easy-wizzy/common-app';
|
|
28
|
+
import { variableSelectorDepsFactory } from '@easy-wizzy/common-app';
|
|
29
|
+
|
|
30
|
+
import type { ApiMachineFetchDelegate } from '@easy-wizzy/common-app';
|
|
31
|
+
|
|
32
|
+
import { stringExpressionBuilderPluginFactory, richTextToolbarPluginFactory, VariableSelector } from '@easy-wizzy/retailrocket-common';
|
|
33
|
+
|
|
34
|
+
import type { ContactCustomData } from '@easy-wizzy/retailrocket-common';
|
|
35
|
+
import type { NextCouponFromBatchType } from '@easy-wizzy/retailrocket-common';
|
|
36
|
+
|
|
37
|
+
import type { NextBestOffer2ListExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
38
|
+
import type { NextBestOffer2NumberExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
39
|
+
import type { NextBestOffer2StringExpressionDataSource } from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
40
|
+
|
|
41
|
+
import { initialEmailTemplateRu } from '@easy-wizzy/template-library';
|
|
42
|
+
import { initialEmailTemplateEn } from '@easy-wizzy/template-library';
|
|
43
|
+
|
|
44
|
+
import { nextBestOffer2EvaluateListExpressionDataSourceFactory } from '@/implementation/DataSources/ListDataExpressionSource/nextBestOffer2EvaluateListExpressionDataSourceFactory';
|
|
45
|
+
import { nextBestOffer2EvaluateNumberExpressionDataSourceFactory } from '@/implementation/DataSources/NumberExpressionDataSource/nextBestOffer2EvaluateNumberExpressionDataSourceFactory';
|
|
46
|
+
import { nextBestOffer2StringExpressionDataSourceEvaluatorFactory } from '@/implementation/DataSources/StringExpressionDataSource/nextBestOffer2EvaluateStringExpressionDataSource';
|
|
47
|
+
|
|
48
|
+
import { createApi as listExpressionDataSourceBffClientFactory } from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.listexpressiondatasource';
|
|
49
|
+
|
|
50
|
+
const appTagId = '#app';
|
|
51
|
+
const appTag = document.querySelector(appTagId);
|
|
52
|
+
|
|
53
|
+
const params = {
|
|
54
|
+
partnerId: appTag!.getAttribute('data-partner-id')!,
|
|
55
|
+
wysiwygTemplateEditorBffBaseUrl: appTag!.getAttribute('data-wysiwyg-template-editor-bff-base-url')!,
|
|
56
|
+
wysiwygBffProxyBaseUrl: appTag!.getAttribute('data-wysiwyg-bff-proxy-base-url')!,
|
|
57
|
+
antiForgeryHeaderTokenName: appTag!.getAttribute('data-anti-forgery-header-token-name')!,
|
|
58
|
+
antiForgeryHeaderTokenValue: appTag!.getAttribute('data-anti-forgery-header-token-value')!,
|
|
59
|
+
antiForgeryFormTokenName: appTag!.getAttribute('data-anti-forgery-form-token-name')!,
|
|
60
|
+
antiForgeryFormTokenValue: appTag!.getAttribute('data-anti-forgery-form-token-value')!,
|
|
61
|
+
createEmailTemplateSubmitUrl: appTag!.getAttribute('data-create-email-template-submit-url')!,
|
|
62
|
+
initialEmailTemplateJson: appTag!.getAttribute('data-initial-next-best-offer-2-template')!,
|
|
63
|
+
nextBestOffer2FavoritesTemplates: JSON.parse(appTag!.getAttribute('data-next-best-offer-2-favorites-templates')!) as [{ templateId: string, templateJson: string, favoriteTemplateName: string }],
|
|
64
|
+
commonFavoritesTemplates: JSON.parse(appTag!.getAttribute('data-common-favorites-templates')!) as [{ templateId: string, templateJson: string, favoriteTemplateName: string }],
|
|
65
|
+
exitLink: appTag!.getAttribute('data-exit-link')!,
|
|
66
|
+
localeKey: appTag!.getAttribute('data-locale-key') as LocaleKey || 'en'
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
const _apiMachineFetchFactory = (arg: {
|
|
70
|
+
baseUrl: string
|
|
71
|
+
}): ApiMachineFetchDelegate => apiMachineFetchFactory({
|
|
72
|
+
baseUrl: arg.baseUrl,
|
|
73
|
+
antiForgeryTokenHeaderName: params.antiForgeryHeaderTokenName,
|
|
74
|
+
antiForgeryTokenValue: params.antiForgeryHeaderTokenValue
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
const listExpressionDataSourceBffClient = listExpressionDataSourceBffClientFactory(
|
|
78
|
+
_apiMachineFetchFactory({
|
|
79
|
+
baseUrl: params.wysiwygBffProxyBaseUrl
|
|
80
|
+
})
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
const createTemplate = <
|
|
84
|
+
TListExpressionDataSource,
|
|
85
|
+
TNumberExpressionDataSource,
|
|
86
|
+
TStringExpressionDataSource>(arg: {
|
|
87
|
+
template: EmailTemplateType<
|
|
88
|
+
TListExpressionDataSource,
|
|
89
|
+
TNumberExpressionDataSource,
|
|
90
|
+
TStringExpressionDataSource>
|
|
91
|
+
}): void => {
|
|
92
|
+
const formData = new FormData();
|
|
93
|
+
formData.append(
|
|
94
|
+
params.antiForgeryFormTokenName,
|
|
95
|
+
params.antiForgeryFormTokenValue);
|
|
96
|
+
formData.append(
|
|
97
|
+
'template',
|
|
98
|
+
JSON.stringify(arg.template));
|
|
99
|
+
|
|
100
|
+
const form = createSimpleDataForm({
|
|
101
|
+
method: 'POST',
|
|
102
|
+
action: params.createEmailTemplateSubmitUrl,
|
|
103
|
+
formData: formData
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
document.body.appendChild(form);
|
|
107
|
+
form.submit();
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
const contactCustomData: ContactCustomData = {};
|
|
111
|
+
const nextCouponFromBatch: NextCouponFromBatchType = {
|
|
112
|
+
BatchId: ''
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
const createEmailTemplatePreviewTile = (arg: {
|
|
116
|
+
template: EmailTemplateType<
|
|
117
|
+
NextBestOffer2ListExpressionDataSource,
|
|
118
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
119
|
+
NextBestOffer2StringExpressionDataSource
|
|
120
|
+
>;
|
|
121
|
+
templateName: string;
|
|
122
|
+
}): EmailTemplatePreviewTileComponent => {
|
|
123
|
+
|
|
124
|
+
const listExpressionDataSourceEvaluator = nextBestOffer2EvaluateListExpressionDataSourceFactory({
|
|
125
|
+
partnerId: params.partnerId,
|
|
126
|
+
listExpressionDataSourceBffClient: listExpressionDataSourceBffClient,
|
|
127
|
+
customerStockId: undefined
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
const listExpressionEvaluator = listExpressionEvaluatorFactory({
|
|
131
|
+
listExpressionDataSourceEvaluator: listExpressionDataSourceEvaluator
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
const numberExpressionDataSourceEvaluator = nextBestOffer2EvaluateNumberExpressionDataSourceFactory();
|
|
135
|
+
|
|
136
|
+
const numberExpressionEvaluator = numberExpressionEvaluatorDelegate({
|
|
137
|
+
listExpressionEvaluator: listExpressionEvaluator,
|
|
138
|
+
numberExpressionDataSourceEvaluator: numberExpressionDataSourceEvaluator
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
const stringExpressionEvaluator: StringExpressionEvaluatorDelegate<
|
|
142
|
+
NextBestOffer2ListExpressionDataSource,
|
|
143
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
144
|
+
NextBestOffer2StringExpressionDataSource
|
|
145
|
+
> = stringExpressionEvaluatorFactory({
|
|
146
|
+
listExpressionEvaluator: listExpressionEvaluator,
|
|
147
|
+
numberExpressionEvaluator: numberExpressionEvaluator,
|
|
148
|
+
stringExpressionDataSourceEvaluatorFactory: () => nextBestOffer2StringExpressionDataSourceEvaluatorFactory({
|
|
149
|
+
productImageUrlBuilderExpressionEvaluator: productImageUrlBuilderExpressionEvaluatorFactory({
|
|
150
|
+
partnerId: params.partnerId,
|
|
151
|
+
numberExpressionEvaluator: numberExpressionEvaluator
|
|
152
|
+
}),
|
|
153
|
+
contactCustomData: contactCustomData,
|
|
154
|
+
nextCouponFromBatch: nextCouponFromBatch
|
|
155
|
+
})
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
const expressionEvaluator = expressionEvaluatorFactory({
|
|
159
|
+
listExpressionEvaluator: listExpressionEvaluator,
|
|
160
|
+
numberExpressionEvaluator: numberExpressionEvaluator,
|
|
161
|
+
stringExpressionEvaluator: stringExpressionEvaluator,
|
|
162
|
+
dataStructBuilderExpressionEvaluatorFactory: expressionEvaluator => dataStructBuilderExpressionEvaluatorFactory({
|
|
163
|
+
expressionEvaluator: expressionEvaluator
|
|
164
|
+
})
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
const dataStructExpressionEvaluator = dataStructBuilderExpressionEvaluatorFactory({
|
|
168
|
+
expressionEvaluator: expressionEvaluator
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
const stringExpressionBuilderPlugin = stringExpressionBuilderPluginFactory({
|
|
172
|
+
localeKey: params.localeKey
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
return emailTemplatePreviewTileComponentFactory<
|
|
176
|
+
NextBestOffer2ListExpressionDataSource,
|
|
177
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
178
|
+
NextBestOffer2StringExpressionDataSource
|
|
179
|
+
>({
|
|
180
|
+
template: arg.template,
|
|
181
|
+
templateName: arg.templateName,
|
|
182
|
+
emailTemplatePreviewTileDeps: emailTemplatePreviewTileDepsFactory<
|
|
183
|
+
NextBestOffer2ListExpressionDataSource,
|
|
184
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
185
|
+
NextBestOffer2StringExpressionDataSource
|
|
186
|
+
>({
|
|
187
|
+
localeKey: params.localeKey,
|
|
188
|
+
dataSourceFieldNameDelegate: ({ dataSource }) => {
|
|
189
|
+
return matcherFactory(dataSource as GeneralStringExpressionDataSource).Match({
|
|
190
|
+
StringFromContactCustomData: (customData) => customData.FieldName,
|
|
191
|
+
StringFromContactCustomDataWithFallback: (customDataWithFallback) => customDataWithFallback.FallbackValue,
|
|
192
|
+
ProductImageUrlBuilderExpression: () => 'ImageResizer',
|
|
193
|
+
NextCouponFromBatch: () => 'Coupon'
|
|
194
|
+
});
|
|
195
|
+
},
|
|
196
|
+
richTextToolbarPlugins: [
|
|
197
|
+
richTextToolbarPluginFactory({
|
|
198
|
+
richTextToolbarPluginComponent: VariableSelector,
|
|
199
|
+
deps: variableSelectorDepsFactory({
|
|
200
|
+
localeKey: params.localeKey,
|
|
201
|
+
stringExpressionBuilderPlugin: stringExpressionBuilderPlugin
|
|
202
|
+
})
|
|
203
|
+
})
|
|
204
|
+
],
|
|
205
|
+
listExpressionEvaluator: listExpressionEvaluator,
|
|
206
|
+
numberExpressionEvaluator: numberExpressionEvaluator,
|
|
207
|
+
stringExpressionEvaluator: stringExpressionEvaluator,
|
|
208
|
+
dataStructExpressionEvaluator: dataStructExpressionEvaluator,
|
|
209
|
+
expressionEvaluator: expressionEvaluator,
|
|
210
|
+
stringExpressionBuilderPlugin: stringExpressionBuilderPlugin,
|
|
211
|
+
}),
|
|
212
|
+
onFavoriteTemplateSelected: () => {
|
|
213
|
+
createTemplate({
|
|
214
|
+
template: arg.template
|
|
215
|
+
});
|
|
216
|
+
},
|
|
217
|
+
});
|
|
218
|
+
};
|
|
219
|
+
|
|
220
|
+
const initialEmailTemplate = params.localeKey === 'ru'
|
|
221
|
+
? initialEmailTemplateRu
|
|
222
|
+
: initialEmailTemplateEn;
|
|
223
|
+
|
|
224
|
+
const app = createApp(
|
|
225
|
+
CreateEmailTemplateApp,
|
|
226
|
+
{
|
|
227
|
+
onInitialTemplateSelected: () => {
|
|
228
|
+
createTemplate({
|
|
229
|
+
template: params.initialEmailTemplateJson.length
|
|
230
|
+
? JSON.parse(params.initialEmailTemplateJson)
|
|
231
|
+
: initialEmailTemplate,
|
|
232
|
+
});
|
|
233
|
+
},
|
|
234
|
+
deps:
|
|
235
|
+
createEmailTemplateAppDepsFactory<
|
|
236
|
+
NextBestOffer2ListExpressionDataSource,
|
|
237
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
238
|
+
NextBestOffer2StringExpressionDataSource
|
|
239
|
+
>({
|
|
240
|
+
partnerId: params.partnerId,
|
|
241
|
+
localeKey: params.localeKey,
|
|
242
|
+
emailTemplatePreviews:
|
|
243
|
+
{
|
|
244
|
+
custom: [
|
|
245
|
+
...params
|
|
246
|
+
.commonFavoritesTemplates
|
|
247
|
+
.map(o => ({
|
|
248
|
+
templateName: o.favoriteTemplateName,
|
|
249
|
+
previewTileComponent: createEmailTemplatePreviewTile({
|
|
250
|
+
template: JSON.parse(o.templateJson),
|
|
251
|
+
templateName: o.favoriteTemplateName
|
|
252
|
+
})
|
|
253
|
+
})),
|
|
254
|
+
...params
|
|
255
|
+
.nextBestOffer2FavoritesTemplates
|
|
256
|
+
.map(o => ({
|
|
257
|
+
templateName: o.favoriteTemplateName,
|
|
258
|
+
previewTileComponent: createEmailTemplatePreviewTile({
|
|
259
|
+
template: JSON.parse(o.templateJson),
|
|
260
|
+
templateName: o.favoriteTemplateName,
|
|
261
|
+
})
|
|
262
|
+
}))
|
|
263
|
+
],
|
|
264
|
+
default: [
|
|
265
|
+
...defaultTemplateLibraryFactory(params.localeKey)
|
|
266
|
+
.map(o => ({
|
|
267
|
+
templateName: o.favoriteTemplateName,
|
|
268
|
+
previewTileComponent: createEmailTemplatePreviewTile({
|
|
269
|
+
template: o.defaultTemplate as EmailTemplateType<
|
|
270
|
+
NextBestOffer2ListExpressionDataSource,
|
|
271
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
272
|
+
NextBestOffer2StringExpressionDataSource
|
|
273
|
+
>,
|
|
274
|
+
templateName: o.favoriteTemplateName
|
|
275
|
+
})
|
|
276
|
+
}))
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
initialEmailTemplate: params.initialEmailTemplateJson.length
|
|
280
|
+
? JSON.parse(params.initialEmailTemplateJson)
|
|
281
|
+
: initialEmailTemplate,
|
|
282
|
+
exitLink: params.exitLink
|
|
283
|
+
}
|
|
284
|
+
)
|
|
285
|
+
}
|
|
286
|
+
);
|
|
287
|
+
|
|
288
|
+
app.use(createVuetify({
|
|
289
|
+
theme: false,
|
|
290
|
+
directives: {
|
|
291
|
+
ClickOutside
|
|
292
|
+
}
|
|
293
|
+
}));
|
|
294
|
+
|
|
295
|
+
app.mount(appTagId);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ComponentLibrarySectionItem,
|
|
3
|
+
} from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
4
|
+
import type { CustomComponentSectionItemType } from '@easy-wizzy/core';
|
|
5
|
+
import type {
|
|
6
|
+
NextBestOffer2ListExpressionDataSource
|
|
7
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
8
|
+
import type {
|
|
9
|
+
NextBestOffer2NumberExpressionDataSource
|
|
10
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
11
|
+
import type {
|
|
12
|
+
NextBestOffer2StringExpressionDataSource
|
|
13
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
14
|
+
import {
|
|
15
|
+
nextBestOffer2EmailComponentFactory
|
|
16
|
+
} from '@/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2EmailComponentFactory';
|
|
17
|
+
|
|
18
|
+
export const nextBestOffer2ComponentSectionItemFactory = (
|
|
19
|
+
componentLibrarySectionItem: ComponentLibrarySectionItem,
|
|
20
|
+
): CustomComponentSectionItemType<
|
|
21
|
+
NextBestOffer2ListExpressionDataSource,
|
|
22
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
23
|
+
NextBestOffer2StringExpressionDataSource
|
|
24
|
+
> => {
|
|
25
|
+
return {
|
|
26
|
+
sectionItemId: componentLibrarySectionItem.sectionItemId,
|
|
27
|
+
sectionItemName: componentLibrarySectionItem.sectionItemName,
|
|
28
|
+
componentTemplate: nextBestOffer2EmailComponentFactory(componentLibrarySectionItem.component),
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { EmailComponentType } from '@easy-wizzy/core';
|
|
2
|
+
import type {
|
|
3
|
+
Component,
|
|
4
|
+
} from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.addcomponentlibrarysectionitemmodalwindow/main';
|
|
5
|
+
import type {
|
|
6
|
+
NextBestOffer2ListExpressionDataSource
|
|
7
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
8
|
+
import type {
|
|
9
|
+
NextBestOffer2NumberExpressionDataSource
|
|
10
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
11
|
+
import type {
|
|
12
|
+
NextBestOffer2StringExpressionDataSource
|
|
13
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
14
|
+
|
|
15
|
+
export const nextBestOffer2EmailComponentFactory = (
|
|
16
|
+
component: Component
|
|
17
|
+
): EmailComponentType<
|
|
18
|
+
NextBestOffer2ListExpressionDataSource,
|
|
19
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
20
|
+
NextBestOffer2StringExpressionDataSource
|
|
21
|
+
> =>
|
|
22
|
+
{
|
|
23
|
+
return component.triggerNextBestOffer2
|
|
24
|
+
? JSON.parse(component.triggerNextBestOffer2.componentJson)
|
|
25
|
+
: JSON.parse(component.common!.componentJson)
|
|
26
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ComponentLibrarySection,
|
|
3
|
+
} from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
4
|
+
import type {
|
|
5
|
+
CustomComponentLibraryType
|
|
6
|
+
} from '@easy-wizzy/core';
|
|
7
|
+
import type {
|
|
8
|
+
NextBestOffer2ListExpressionDataSource
|
|
9
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
10
|
+
import type {
|
|
11
|
+
NextBestOffer2NumberExpressionDataSource
|
|
12
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
13
|
+
import type {
|
|
14
|
+
NextBestOffer2StringExpressionDataSource
|
|
15
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
16
|
+
import {
|
|
17
|
+
nextBestOffer2SectionFactory
|
|
18
|
+
} from '@/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CustomComponentLibrary/nextBestOffer2SectionFactory';
|
|
19
|
+
|
|
20
|
+
export const nextBestOffer2ComponentLibraryFactory = (
|
|
21
|
+
componentLibrary: Array<ComponentLibrarySection>
|
|
22
|
+
): CustomComponentLibraryType<
|
|
23
|
+
NextBestOffer2ListExpressionDataSource,
|
|
24
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
25
|
+
NextBestOffer2StringExpressionDataSource
|
|
26
|
+
> => {
|
|
27
|
+
return componentLibrary
|
|
28
|
+
.map(section => nextBestOffer2SectionFactory(section))
|
|
29
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ComponentLibrarySection,
|
|
3
|
+
} from '@retailrocket/retailrocket.wysiwyg.bff.v2.apiclients.componentlibrary/main';
|
|
4
|
+
import type { CustomComponentSectionType } from '@easy-wizzy/core';
|
|
5
|
+
import type {
|
|
6
|
+
NextBestOffer2ListExpressionDataSource
|
|
7
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
8
|
+
import type {
|
|
9
|
+
NextBestOffer2NumberExpressionDataSource
|
|
10
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
11
|
+
import type {
|
|
12
|
+
NextBestOffer2StringExpressionDataSource
|
|
13
|
+
} from '@easy-wizzy/retailrocket-next-best-offer-2';
|
|
14
|
+
import {
|
|
15
|
+
nextBestOffer2ComponentSectionItemFactory
|
|
16
|
+
} from '@/implementation/Apps/components/WysiwygTemplateEditor/AsideMenu/ComponentLibrary/CreateComponentLibrarySectionModalWindow/nextBestOffer2ComponentSectionItemFactory';
|
|
17
|
+
|
|
18
|
+
export const nextBestOffer2SectionFactory = (
|
|
19
|
+
section: ComponentLibrarySection,
|
|
20
|
+
): CustomComponentSectionType<
|
|
21
|
+
NextBestOffer2ListExpressionDataSource,
|
|
22
|
+
NextBestOffer2NumberExpressionDataSource,
|
|
23
|
+
NextBestOffer2StringExpressionDataSource
|
|
24
|
+
> => {
|
|
25
|
+
return {
|
|
26
|
+
sectionId: section.sectionId,
|
|
27
|
+
sectionName: section.sectionName,
|
|
28
|
+
componentList: section
|
|
29
|
+
.sectionItems
|
|
30
|
+
.map(component => nextBestOffer2ComponentSectionItemFactory(component)),
|
|
31
|
+
};
|
|
32
|
+
};
|