@useinsider/guido 1.0.3-beta.cd0d7f3 → 1.0.3-beta.ce3ed00

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.
Files changed (163) hide show
  1. package/README.md +0 -3
  2. package/dist/components/Guido.vue.js +1 -1
  3. package/dist/components/Guido.vue2.js +73 -79
  4. package/dist/components/organisms/header/RightSlot.vue.js +1 -1
  5. package/dist/components/organisms/header/RightSlot.vue2.js +22 -23
  6. package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +18 -20
  7. package/dist/composables/useActionsApi.js +1 -1
  8. package/dist/composables/useGuidoActions.js +9 -19
  9. package/dist/composables/useHtmlCompiler.js +13 -15
  10. package/dist/composables/useHtmlValidator.js +35 -36
  11. package/dist/composables/useStripo.js +36 -38
  12. package/dist/config/compiler/unsubscribeCompilerRules.js +28 -33
  13. package/dist/enums/defaults.js +1 -2
  14. package/dist/enums/onboarding.js +3 -7
  15. package/dist/enums/unsubscribe.js +25 -27
  16. package/dist/extensions/Blocks/Items/block.js +42 -38
  17. package/dist/extensions/Blocks/Items/controls/button/link.js +17 -25
  18. package/dist/extensions/Blocks/Items/controls/cardComposition.js +57 -151
  19. package/dist/extensions/Blocks/Items/controls/image/link.js +20 -28
  20. package/dist/extensions/Blocks/Items/controls/name/trimming.js +22 -29
  21. package/dist/extensions/Blocks/Items/controls/price/currencyLocation.js +18 -25
  22. package/dist/extensions/Blocks/Items/controls/price/currencySymbol.js +8 -18
  23. package/dist/extensions/Blocks/Items/controls/price/formattedPrice.js +30 -37
  24. package/dist/extensions/Blocks/Items/controls/price/hideDiscount.js +14 -37
  25. package/dist/extensions/Blocks/Items/controls/settingsControl.js +118 -148
  26. package/dist/extensions/Blocks/Items/enums/productEnums.js +5 -96
  27. package/dist/extensions/Blocks/Items/enums/settingsEnums.js +7 -20
  28. package/dist/extensions/Blocks/Items/extension.js +4 -4
  29. package/dist/extensions/Blocks/Items/layouts/horizontal.html.js +8 -6
  30. package/dist/extensions/Blocks/Items/layouts/vertical.html.js +12 -7
  31. package/dist/extensions/Blocks/Items/settingsPanel.js +45 -71
  32. package/dist/extensions/Blocks/Items/store/items-block.js +1 -5
  33. package/dist/extensions/Blocks/Items/template.js +63 -149
  34. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +1 -1
  35. package/dist/extensions/Blocks/common-control.js +125 -164
  36. package/dist/extensions/DynamicContent/dynamic-content-modal.js +19 -25
  37. package/dist/extensions/DynamicContent/dynamic-content.js +33 -128
  38. package/dist/guido.css +1 -1
  39. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +2 -12
  40. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +12 -13
  41. package/dist/node_modules/lodash-es/keysIn.js +3 -3
  42. package/dist/package.json.js +1 -1
  43. package/dist/src/@types/generic.d.ts +6 -27
  44. package/dist/src/components/Guido.vue.d.ts +2 -3
  45. package/dist/src/composables/useGuidoActions.d.ts +0 -9
  46. package/dist/src/enums/onboarding.d.ts +0 -4
  47. package/dist/src/extensions/Blocks/Items/block.d.ts +0 -1
  48. package/dist/src/extensions/Blocks/Items/controls/cardComposition.d.ts +7 -20
  49. package/dist/src/extensions/Blocks/Items/controls/price/currencySymbol.d.ts +0 -1
  50. package/dist/src/extensions/Blocks/Items/controls/price/hideDiscount.d.ts +1 -5
  51. package/dist/src/extensions/Blocks/Items/controls/settingsControl.d.ts +0 -3
  52. package/dist/src/extensions/Blocks/Items/enums/productEnums.d.ts +0 -18
  53. package/dist/src/extensions/Blocks/Items/enums/settingsEnums.d.ts +0 -14
  54. package/dist/src/extensions/Blocks/Items/store/items-block.d.ts +1 -3
  55. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +1 -1
  56. package/dist/src/extensions/Blocks/common-control.d.ts +2 -25
  57. package/dist/src/extensions/DynamicContent/dynamic-content-modal.d.ts +2 -9
  58. package/dist/src/extensions/DynamicContent/dynamic-content.d.ts +2 -52
  59. package/dist/src/stores/config.d.ts +2 -3
  60. package/dist/src/stores/dynamic-content.d.ts +3 -3
  61. package/dist/src/stores/editor.d.ts +1 -1
  62. package/dist/src/stores/onboarding.d.ts +1 -335
  63. package/dist/src/stores/preview.d.ts +1 -1
  64. package/dist/src/stores/recommendation.d.ts +1 -1
  65. package/dist/src/stores/save-as-template.d.ts +1 -1
  66. package/dist/src/stores/toaster.d.ts +1 -1
  67. package/dist/src/stores/unsubscribe.d.ts +1 -1
  68. package/dist/src/stores/version-history.d.ts +1 -1
  69. package/dist/src/utils/genericUtil.d.ts +0 -1
  70. package/dist/stores/config.js +5 -5
  71. package/dist/stores/dynamic-content.js +2 -2
  72. package/dist/stores/editor.js +1 -1
  73. package/dist/stores/onboarding.js +36 -44
  74. package/dist/stores/preview.js +1 -1
  75. package/dist/stores/recommendation.js +3 -3
  76. package/dist/stores/save-as-template.js +2 -2
  77. package/dist/stores/toaster.js +1 -1
  78. package/dist/stores/unsubscribe.js +1 -1
  79. package/dist/stores/version-history.js +4 -4
  80. package/dist/utils/genericUtil.js +6 -17
  81. package/package.json +3 -3
  82. package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +0 -21
  83. package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +0 -99
  84. package/dist/config/compiler/itemsCompilerRules.js +0 -14
  85. package/dist/extensions/Blocks/Items/utils/configBlockUtils.js +0 -17
  86. package/dist/extensions/Blocks/Items/utils/syncAttributeFromConfigBlock.js +0 -28
  87. package/dist/extensions/Blocks/Items/utils/syncAttributesFromConfigBlock.js +0 -67
  88. package/dist/extensions/Blocks/Items/utils/updateAttributes.js +0 -44
  89. package/dist/node_modules/lodash-es/_DataView.js +0 -6
  90. package/dist/node_modules/lodash-es/_Promise.js +0 -6
  91. package/dist/node_modules/lodash-es/_Set.js +0 -6
  92. package/dist/node_modules/lodash-es/_SetCache.js +0 -13
  93. package/dist/node_modules/lodash-es/_WeakMap.js +0 -6
  94. package/dist/node_modules/lodash-es/_arrayFilter.js +0 -10
  95. package/dist/node_modules/lodash-es/_arrayMap.js +0 -8
  96. package/dist/node_modules/lodash-es/_arrayPush.js +0 -8
  97. package/dist/node_modules/lodash-es/_arraySome.js +0 -9
  98. package/dist/node_modules/lodash-es/_baseEach.js +0 -6
  99. package/dist/node_modules/lodash-es/_baseFlatten.js +0 -13
  100. package/dist/node_modules/lodash-es/_baseForOwn.js +0 -8
  101. package/dist/node_modules/lodash-es/_baseGet.js +0 -11
  102. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +0 -9
  103. package/dist/node_modules/lodash-es/_baseHasIn.js +0 -6
  104. package/dist/node_modules/lodash-es/_baseIsEqual.js +0 -8
  105. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +0 -32
  106. package/dist/node_modules/lodash-es/_baseIsMatch.js +0 -29
  107. package/dist/node_modules/lodash-es/_baseIteratee.js +0 -11
  108. package/dist/node_modules/lodash-es/_baseKeys.js +0 -14
  109. package/dist/node_modules/lodash-es/_baseMap.js +0 -11
  110. package/dist/node_modules/lodash-es/_baseMatches.js +0 -12
  111. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +0 -17
  112. package/dist/node_modules/lodash-es/_baseProperty.js +0 -8
  113. package/dist/node_modules/lodash-es/_basePropertyDeep.js +0 -9
  114. package/dist/node_modules/lodash-es/_baseRange.js +0 -9
  115. package/dist/node_modules/lodash-es/_baseToString.js +0 -18
  116. package/dist/node_modules/lodash-es/_baseTrim.js +0 -8
  117. package/dist/node_modules/lodash-es/_cacheHas.js +0 -6
  118. package/dist/node_modules/lodash-es/_castPath.js +0 -10
  119. package/dist/node_modules/lodash-es/_createBaseEach.js +0 -15
  120. package/dist/node_modules/lodash-es/_createRange.js +0 -11
  121. package/dist/node_modules/lodash-es/_equalArrays.js +0 -40
  122. package/dist/node_modules/lodash-es/_equalByTag.js +0 -45
  123. package/dist/node_modules/lodash-es/_equalObjects.js +0 -36
  124. package/dist/node_modules/lodash-es/_getAllKeys.js +0 -9
  125. package/dist/node_modules/lodash-es/_getMatchData.js +0 -12
  126. package/dist/node_modules/lodash-es/_getSymbols.js +0 -10
  127. package/dist/node_modules/lodash-es/_getTag.js +0 -28
  128. package/dist/node_modules/lodash-es/_hasPath.js +0 -19
  129. package/dist/node_modules/lodash-es/_isFlattenable.js +0 -10
  130. package/dist/node_modules/lodash-es/_isKey.js +0 -12
  131. package/dist/node_modules/lodash-es/_isStrictComparable.js +0 -7
  132. package/dist/node_modules/lodash-es/_mapToArray.js +0 -9
  133. package/dist/node_modules/lodash-es/_matchesStrictComparable.js +0 -8
  134. package/dist/node_modules/lodash-es/_memoizeCapped.js +0 -11
  135. package/dist/node_modules/lodash-es/_nativeKeys.js +0 -5
  136. package/dist/node_modules/lodash-es/_setCacheAdd.js +0 -7
  137. package/dist/node_modules/lodash-es/_setCacheHas.js +0 -6
  138. package/dist/node_modules/lodash-es/_setToArray.js +0 -9
  139. package/dist/node_modules/lodash-es/_stringToPath.js +0 -10
  140. package/dist/node_modules/lodash-es/_toKey.js +0 -10
  141. package/dist/node_modules/lodash-es/_trimmedEndIndex.js +0 -9
  142. package/dist/node_modules/lodash-es/flatMap.js +0 -8
  143. package/dist/node_modules/lodash-es/get.js +0 -8
  144. package/dist/node_modules/lodash-es/hasIn.js +0 -8
  145. package/dist/node_modules/lodash-es/isSymbol.js +0 -9
  146. package/dist/node_modules/lodash-es/keys.js +0 -9
  147. package/dist/node_modules/lodash-es/map.js +0 -11
  148. package/dist/node_modules/lodash-es/property.js +0 -10
  149. package/dist/node_modules/lodash-es/range.js +0 -5
  150. package/dist/node_modules/lodash-es/stubArray.js +0 -6
  151. package/dist/node_modules/lodash-es/toFinite.js +0 -14
  152. package/dist/node_modules/lodash-es/toNumber.js +0 -22
  153. package/dist/node_modules/lodash-es/toString.js +0 -7
  154. package/dist/src/components/organisms/onboarding/ItemsOnboarding.vue.d.ts +0 -2
  155. package/dist/src/config/compiler/itemsCompilerRules.d.ts +0 -2
  156. package/dist/src/extensions/Blocks/Items/utils/configBlockUtils.d.ts +0 -23
  157. package/dist/src/extensions/Blocks/Items/utils/syncAttributeFromConfigBlock.d.ts +0 -32
  158. package/dist/src/extensions/Blocks/Items/utils/syncAttributesFromConfigBlock.d.ts +0 -44
  159. package/dist/src/extensions/Blocks/Items/utils/updateAttributes.d.ts +0 -8
  160. package/dist/src/utils/environmentUtil.d.ts +0 -5
  161. package/dist/src/utils/pairProductVariables.d.ts +0 -7
  162. package/dist/utils/environmentUtil.js +0 -4
  163. package/dist/utils/pairProductVariables.js +0 -136
@@ -1,25 +1,23 @@
1
- import { useActionsApi as h } from "./useActionsApi.js";
2
- import { useBlocksConfig as b } from "./useBlocksConfig.js";
3
- import { useConfig as k } from "./useConfig.js";
4
- import { useCustomInterfaceAppearance as V } from "./useCustomInterfaceAppearance.js";
5
- import { useStripoEventHandler as _ } from "./useStripoEventHandler.js";
6
- import { useToaster as B } from "./useToaster.js";
7
- import { displayConditions as A } from "../enums/displayConditions.js";
8
- import { useStripoApi as F } from "../services/stripoApi.js";
9
- import T from "../static/styles/customEditorStyle.css.js";
10
- import { useEditorStore as v } from "../stores/editor.js";
11
- import { dynamicContentToMergeTags as I } from "../utils/genericUtil.js";
12
- import M from "../package.json.js";
13
- const N = (d) => {
14
- const { config: u } = k(), { handleError: l } = B(), { getToken: f, getCustomFonts: S } = F(), { handleEvent: C } = _(), { getStripoBlocksConfig: y } = b(), E = async (i, r = []) => {
15
- var m, g;
16
- const t = v(), { html: n, css: p, forceRecreate: a } = i, { baseBlocks: e, extensions: c } = await y();
1
+ import { useActionsApi as y } from "./useActionsApi.js";
2
+ import { useBlocksConfig as E } from "./useBlocksConfig.js";
3
+ import { useCustomInterfaceAppearance as w } from "./useCustomInterfaceAppearance.js";
4
+ import { useStripoEventHandler as h } from "./useStripoEventHandler.js";
5
+ import { useToaster as b } from "./useToaster.js";
6
+ import { displayConditions as k } from "../enums/displayConditions.js";
7
+ import { useStripoApi as B } from "../services/stripoApi.js";
8
+ import V from "../static/styles/customEditorStyle.css.js";
9
+ import { useEditorStore as _ } from "../stores/editor.js";
10
+ import { dynamicContentToMergeTags as F } from "../utils/genericUtil.js";
11
+ import A from "../package.json.js";
12
+ const L = (d) => {
13
+ const { handleError: u } = b(), { getToken: p, getCustomFonts: m } = B(), { handleEvent: g } = h(), { getStripoBlocksConfig: f } = E(), S = async (r, i = []) => {
14
+ const t = _(), { html: n, css: l, forceRecreate: a } = r, { baseBlocks: e, extensions: c } = await f();
17
15
  window.UIEditor.initEditor(
18
16
  document.querySelector("#guido-editor"),
19
17
  {
20
18
  metadata: d,
21
19
  html: n,
22
- css: p,
20
+ css: l,
23
21
  forceRecreate: a,
24
22
  locale: "en",
25
23
  undoButtonSelector: "#guido__undo-button",
@@ -30,40 +28,40 @@ const N = (d) => {
30
28
  customAppearanceMergetags: !0,
31
29
  customAppearanceMergetagsBorderColor: "#f1f3fe",
32
30
  customAppearanceMergetagsBackgroundColor: "#f1f3fe",
33
- customViewStyles: T,
34
- conditionsEnabled: ((m = u.features) == null ? void 0 : m.displayConditions) ?? !0,
35
- customConditionsEnabled: ((g = u.features) == null ? void 0 : g.displayConditions) ?? !0,
36
- conditionCategories: A,
31
+ customViewStyles: V,
32
+ conditionsEnabled: !0,
33
+ customConditionsEnabled: !0,
34
+ conditionCategories: k,
37
35
  enableXSSSecurity: !0,
38
36
  messageSettingsEnabled: !1,
39
- selectElementAfterDrop: !0,
37
+ selectBlockAfterDropFromSettingsPanel: !0,
40
38
  ...e ? { baseBlocks: e } : {},
41
39
  editorFonts: {
42
40
  showDefaultStandardFonts: !0,
43
41
  showDefaultNotStandardFonts: !0,
44
- customFonts: r
42
+ customFonts: i
45
43
  },
46
44
  mergeTags: [
47
45
  {
48
- entries: I(d.preselectedDynamicContentList)
46
+ entries: F(d.preselectedDynamicContentList)
49
47
  }
50
48
  ],
51
49
  async onTokenRefreshRequest(o) {
52
50
  try {
53
- const s = await f();
51
+ const s = await p();
54
52
  o(s);
55
53
  } catch (s) {
56
- l(s, "Failed to refresh token");
54
+ u(s, "Failed to refresh token");
57
55
  }
58
56
  },
59
57
  onTemplateLoaded() {
60
58
  try {
61
- const { importCss: o } = V(), { activateCustomViewStyles: s } = h();
59
+ const { importCss: o } = w(), { activateCustomViewStyles: s } = y();
62
60
  o(), s(), d.onReady(), t.isStripoInitialized = !0, t.loadingStatus = !1, setTimeout(() => {
63
61
  t.hasChanges = !1;
64
62
  }, 1e3);
65
63
  } catch (o) {
66
- l(o, "Failed to load custom interface appearance");
64
+ u(o, "Failed to load custom interface appearance");
67
65
  }
68
66
  },
69
67
  onCodeEditorVisibilityChanged(o) {
@@ -78,7 +76,7 @@ const N = (d) => {
78
76
  onDataChanged() {
79
77
  t.hasChanges = !0;
80
78
  },
81
- onEvent: C,
79
+ onEvent: g,
82
80
  ignoreClickOutsideSelectors: [
83
81
  "#guido-dynamic-content-modal",
84
82
  ".in-on-board-wrapper",
@@ -87,26 +85,26 @@ const N = (d) => {
87
85
  extensions: c
88
86
  }
89
87
  );
90
- }, w = (i) => new Promise((r, t) => {
88
+ }, C = (r) => new Promise((i, t) => {
91
89
  var c;
92
90
  if (document.getElementById("UiEditorScript")) {
93
- i(), r();
91
+ r(), i();
94
92
  return;
95
93
  }
96
- const n = M.guido, a = `https://email-static.useinsider.com/guido/${(c = n == null ? void 0 : n.stripo) == null ? void 0 : c.version}/UIEditor.js`, e = document.createElement("script");
94
+ const n = A.guido, a = `https://email-static.useinsider.com/guido/${(c = n == null ? void 0 : n.stripo) == null ? void 0 : c.version}/UIEditor.js`, e = document.createElement("script");
97
95
  e.id = "UiEditorScript", e.type = "module", e.src = a, e.onload = () => {
98
- i(), r();
96
+ r(), i();
99
97
  }, e.onerror = () => {
100
98
  t(new Error(`Failed to load Stripo UIEditor script from S3: ${a}`));
101
99
  }, document.body.appendChild(e);
102
100
  });
103
- return { initPlugin: async (i) => {
104
- await w(async () => {
105
- const r = await S();
106
- await E(i, r);
101
+ return { initPlugin: async (r) => {
102
+ await C(async () => {
103
+ const i = await m();
104
+ await S(r, i);
107
105
  });
108
106
  } };
109
107
  };
110
108
  export {
111
- N as useStripo
109
+ L as useStripo
112
110
  };
@@ -1,41 +1,36 @@
1
- import { usePartner as N } from "../../composables/usePartner.js";
2
- import { LINK_REGEXES as l, LINK_TYPES as g, INSIDER_ID as f, URLS as S } from "../../enums/unsubscribe.js";
3
- import { parsePageList as U } from "../../extensions/Blocks/Unsubscribe/utils/utils.js";
4
- import { useConfigStore as B } from "../../stores/config.js";
5
- import { useDynamicContentStore as y } from "../../stores/dynamic-content.js";
6
- import { useUnsubscribeStore as L } from "../../stores/unsubscribe.js";
7
- const D = [
1
+ import { usePartner as U } from "../../composables/usePartner.js";
2
+ import { LINK_REGEXES as l, LINK_TYPES as b, URLS as f } from "../../enums/unsubscribe.js";
3
+ import { parsePageList as B } from "../../extensions/Blocks/Unsubscribe/utils/utils.js";
4
+ import { useConfigStore as N } from "../../stores/config.js";
5
+ import { useUnsubscribeStore as I } from "../../stores/unsubscribe.js";
6
+ const T = [
8
7
  {
9
8
  id: "add-unsubscribe-link-values",
10
9
  description: "Adding unsubscribe link values",
11
10
  type: "custom",
12
11
  processor: (t) => {
13
- const { getPartnerName: i } = N(), c = B(), n = y(), u = L(), a = c.getVariationId;
14
- if (!a)
12
+ const { getPartnerName: i } = U(), a = N(), n = I(), u = a.getVariationId;
13
+ if (!u)
15
14
  return t;
16
- let e = t;
17
- const r = `/${i()}/email/${a}?user={{iid}}`;
18
- return new DOMParser().parseFromString(e, "text/html").querySelectorAll(".unsubscribe-block-v2[data-unsubscribe-page-list]").forEach((p) => {
19
- var b;
20
- const m = p.getAttribute("data-unsubscribe-page-list");
21
- if (!m)
15
+ let o = t;
16
+ const e = `/${i()}/email/${u}?user={{iid}}`;
17
+ return new DOMParser().parseFromString(o, "text/html").querySelectorAll(".unsubscribe-block-v2[data-unsubscribe-page-list]").forEach((p) => {
18
+ var g;
19
+ const d = p.getAttribute("data-unsubscribe-page-list");
20
+ if (!d)
22
21
  return;
23
- const R = U(m), d = ((b = u.templates) == null ? void 0 : b.filter(
24
- (o) => R.includes(o.id)
25
- )) ?? [], _ = d.some((o) => o.type === g.UNSUBSCRIBE_LINK_TYPE), I = d.some((o) => o.type === g.PREFERENCES_LINK_TYPE), E = p.outerHTML;
22
+ const S = B(d), m = ((g = n.templates) == null ? void 0 : g.filter(
23
+ (c) => S.includes(c.id)
24
+ )) ?? [], R = m.some((c) => c.type === b.UNSUBSCRIBE_LINK_TYPE), _ = m.some((c) => c.type === b.PREFERENCES_LINK_TYPE), E = p.outerHTML;
26
25
  let s = E;
27
- _ && (n.selectedDynamicContentList.push({
28
- text: f,
29
- value: f,
30
- fallback: ""
31
- }), s = s.replace(
26
+ R && (s = s.replace(
32
27
  l.GLOBAL_UNSUBSCRIBE_LINK_REGEX,
33
- S.UNSUBSCRIBE_URL + r
34
- )), I && (s = s.replace(
28
+ f.UNSUBSCRIBE_URL + e
29
+ )), _ && (s = s.replace(
35
30
  l.PREFERENCES_UNSUBSCRIBE_LINK_REGEX,
36
- S.PREFERENCES_URL + r
37
- )), s = s.replace(l.UNSUBSCRIBE_LINK_REGEX, ""), e = e.replace(E, s);
38
- }), e;
31
+ f.PREFERENCES_URL + e
32
+ )), s = s.replace(l.UNSUBSCRIBE_LINK_REGEX, ""), o = o.replace(E, s);
33
+ }), o;
39
34
  },
40
35
  priority: 60
41
36
  },
@@ -61,16 +56,16 @@ const D = [
61
56
  type: "custom",
62
57
  processor: (t) => {
63
58
  let i = t;
64
- const c = i.match(/<a[^>]+>(.*?)<\/a>/gm);
65
- return c && c.forEach((n) => {
59
+ const a = i.match(/<a[^>]+>(.*?)<\/a>/gm);
60
+ return a && a.forEach((n) => {
66
61
  if (n.includes("insEmail=1"))
67
62
  return;
68
63
  if (n.match(/<a\s+(?:[^>]*?\s+)?href=(["'`”])(.*?)\1\s+(?:[^>]*?\s+)?universal=(["'`”])true\3/gm)) {
69
- const a = n.replace(/href=(["'`”])(.*?)\1/gm, (e) => {
64
+ const o = n.replace(/href=(["'`”])(.*?)\1/gm, (e) => {
70
65
  const r = e.slice(6, e.length - 1).trim();
71
66
  return e.includes("?") || e.includes("#") ? r.slice(-1) === "&" ? e.replace(r, `${r}insEmail=1`) : e.replace(r, `${r}&insEmail=1`) : e.replace(r, `${r}?insEmail=1`);
72
67
  });
73
- i = i.replace(n, a);
68
+ i = i.replace(n, o);
74
69
  }
75
70
  }), i;
76
71
  },
@@ -78,5 +73,5 @@ const D = [
78
73
  }
79
74
  ];
80
75
  export {
81
- D as unsubscribeCompilerRules
76
+ T as unsubscribeCompilerRules
82
77
  };
@@ -16,8 +16,7 @@ const e = {
16
16
  dynamicContent: !0,
17
17
  saveAsTemplate: !0,
18
18
  versionHistory: !0,
19
- testMessage: !0,
20
- displayConditions: !0
19
+ testMessage: !0
21
20
  },
22
21
  useHeader: !0
23
22
  }, t = {
@@ -2,12 +2,8 @@ const e = [
2
2
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-0.ng-star-inserted",
3
3
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-1.ng-star-inserted",
4
4
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-2.ng-star-inserted"
5
- ], t = "ui-editor", n = 'button[role="tab"][aria-label="Card Composition"]', s = 'button[role="tab"][aria-label="Settings"]', o = ".in-ribbons-wrapper", a = "https://academy.useinsider.com/docs/email-drag-drop-editor";
5
+ ], t = "https://academy.useinsider.com/docs/email-drag-drop-editor";
6
6
  export {
7
- a as ACADEMY_LINK,
8
- n as CARD_COMPOSITION_TAB_SELECTOR,
9
- o as RIBBON_SELECTOR,
10
- e as SERVICE_HOVER_SELECTORS,
11
- s as SETTINGS_TAB_SELECTOR,
12
- t as UI_EDITOR_SELECTOR
7
+ t as ACADEMY_LINK,
8
+ e as SERVICE_HOVER_SELECTORS
13
9
  };
@@ -1,26 +1,25 @@
1
- import { useTranslations as n } from "../composables/useTranslations.js";
2
- import { getEnvironmentPrefix as R } from "../utils/environmentUtil.js";
3
- const e = n(), I = {
1
+ import { useTranslations as e } from "../composables/useTranslations.js";
2
+ const s = e(), R = {
4
3
  UNSUBSCRIBE_LINK_TYPE: 1,
5
4
  PREFERENCES_LINK_TYPE: 3
6
- }, r = {
5
+ }, S = {
7
6
  UNSUBSCRIBE_LINK_REGEX: /{{ins-unsubscribe-link}}/g,
8
7
  DATA_OGSB_BUTTON_CSS_REGEX: "\\[data-ogsb\\]\\s*\\.es-button\\.es-button-[0-9]+\\s*\\{(?:[^\\}]*)\\}",
9
8
  GLOBAL_UNSUBSCRIBE_LINK_REGEX: /{{ins-global-unsubscribe-link}}/g,
10
9
  PREFERENCES_UNSUBSCRIBE_LINK_REGEX: /{{ins-preferences-unsubscribe-link}}/g
11
- }, s = R(), _ = {
12
- UNSUBSCRIBE_URL: `https://mail.${s}.com/user/v1/unsub`,
13
- PREFERENCES_URL: `https://mail.${s}.com/user/v1/prefs`
14
- }, i = "iid", B = {
10
+ }, N = {
11
+ UNSUBSCRIBE_URL: "https://mail.useinsider.com/user/v1/unsub",
12
+ PREFERENCES_URL: "https://mail.useinsider.com/user/v1/prefs"
13
+ }, _ = {
15
14
  name: "Global Unsubscribe",
16
15
  sendGridId: "G"
17
- }, C = "https://academy.useinsider.com/docs/global-unsubscribe-preference-center", c = "/email/unsubscribe-pages", E = {
16
+ }, I = "https://academy.useinsider.com/docs/global-unsubscribe-preference-center", r = "/email/unsubscribe-pages", E = {
18
17
  GLOBAL_UNSUBSCRIBE: 1,
19
18
  GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE: 2,
20
19
  SUBSCRIPTION_PREFERENCE_CENTER: 3,
21
20
  SUBSCRIPTION_PREFERENCE_CONFIRMATION: 4,
22
21
  RESUBSCRIBE: 5
23
- }, t = {
22
+ }, i = {
24
23
  [E.GLOBAL_UNSUBSCRIBE]: [
25
24
  E.GLOBAL_UNSUBSCRIBE,
26
25
  E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE,
@@ -30,27 +29,26 @@ const e = n(), I = {
30
29
  E.SUBSCRIPTION_PREFERENCE_CENTER,
31
30
  E.SUBSCRIPTION_PREFERENCE_CONFIRMATION
32
31
  ]
33
- }, U = {
34
- [E.GLOBAL_UNSUBSCRIBE]: e("unsubscription-preference.type-global-unsubscribe"),
35
- [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: e("unsubscription-preference.type-global-unsubscription-confirmation"),
36
- [E.RESUBSCRIBE]: e("unsubscription-preference.type-resubscribe"),
37
- [E.SUBSCRIPTION_PREFERENCE_CENTER]: e("unsubscription-preference.type-subscription-preferences-center"),
38
- [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: e("unsubscription-preference.type-subscription-preferences-confirmation")
39
- }, o = {
32
+ }, B = {
33
+ [E.GLOBAL_UNSUBSCRIBE]: s("unsubscription-preference.type-global-unsubscribe"),
34
+ [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: s("unsubscription-preference.type-global-unsubscription-confirmation"),
35
+ [E.RESUBSCRIBE]: s("unsubscription-preference.type-resubscribe"),
36
+ [E.SUBSCRIPTION_PREFERENCE_CENTER]: s("unsubscription-preference.type-subscription-preferences-center"),
37
+ [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: s("unsubscription-preference.type-subscription-preferences-confirmation")
38
+ }, C = {
40
39
  default: "{{ins-unsubscribe-link}}",
41
40
  [E.GLOBAL_UNSUBSCRIBE]: "{{ins-global-unsubscribe-link}}",
42
41
  [E.SUBSCRIPTION_PREFERENCE_CENTER]: "{{ins-preferences-unsubscribe-link}}"
43
42
  };
44
43
  export {
45
- C as ACADEMY_LINK,
46
- B as DEFAULT_UNSUBSCRIBE_GROUP,
47
- i as INSIDER_ID,
48
- r as LINK_REGEXES,
49
- I as LINK_TYPES,
50
- o as MERGE_TAGS,
44
+ I as ACADEMY_LINK,
45
+ _ as DEFAULT_UNSUBSCRIBE_GROUP,
46
+ S as LINK_REGEXES,
47
+ R as LINK_TYPES,
48
+ C as MERGE_TAGS,
51
49
  E as PAGE_TYPES,
52
- t as TYPE_COLLECTIONS,
53
- U as TYPE_TRANSLATIONS,
54
- c as UNSUBSCRIBE_PAGES_LINK,
55
- _ as URLS
50
+ i as TYPE_COLLECTIONS,
51
+ B as TYPE_TRANSLATIONS,
52
+ r as UNSUBSCRIBE_PAGES_LINK,
53
+ N as URLS
56
54
  };
@@ -1,19 +1,18 @@
1
- import { useOnboardingStore as R } from "../../../stores/onboarding.js";
2
- import { Block as L, BlockCompositionType as V, ModificationDescription as a } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
1
+ import { Block as b, BlockCompositionType as E, ModificationDescription as f } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
3
2
  import { configAttributes as t } from "./enums/productEnums.js";
4
- import { DefaultConfigValues as e, SETTINGS_ENUMS as l } from "./enums/settingsEnums.js";
5
- import { useItemsBlockStore as S } from "./store/items-block.js";
6
- import { getDefaultTemplate as y } from "./template.js";
7
- const B = "items-block";
8
- class z extends L {
3
+ import { DefaultConfigValues as n, SETTINGS_ENUMS as m } from "./enums/settingsEnums.js";
4
+ import { useItemsBlockStore as p } from "./store/items-block.js";
5
+ import { getDefaultTemplate as A } from "./template.js";
6
+ const _ = "items-block";
7
+ class D extends b {
9
8
  getId() {
10
- return B;
9
+ return _;
11
10
  }
12
11
  getIcon() {
13
12
  return "items-icon";
14
13
  }
15
14
  getBlockCompositionType() {
16
- return V.CONTAINER;
15
+ return E.CONTAINER;
17
16
  }
18
17
  getName() {
19
18
  return this.api.translate("Items");
@@ -22,45 +21,50 @@ class z extends L {
22
21
  return this.api.translate("Items lets you display personalized products based on user behavior.");
23
22
  }
24
23
  getTemplate() {
25
- return y({
26
- orientation: l.ORIENTATION.HORIZONTAL,
27
- itemsType: l.ITEMS_TYPE.CART_ITEMS,
24
+ const e = p();
25
+ return A({
26
+ orientation: m.ORIENTATION.HORIZONTAL,
27
+ itemsType: m.ITEMS_TYPE.CART_ITEMS,
28
28
  itemId: "{{Abandoned Cart Item (1) Url}}",
29
- currencySymbol: e.productPriceCurrencySymbolControlValue,
30
- currencyLocation: e.productPriceCurrencyLocationControlValue,
31
- formattedPrice: e.productPriceFormattedControlValue === "1"
29
+ currencySymbol: e.currencySymbol,
30
+ currencyLocation: e.currencyLocation,
31
+ formattedPrice: e.formattedPrice
32
32
  });
33
33
  }
34
34
  allowInnerBlocksDND() {
35
35
  return !1;
36
36
  }
37
- onCreated(c) {
38
- const r = c.querySelector("esd-config-block");
37
+ onCreated(e) {
38
+ const r = e.querySelector("esd-config-block");
39
39
  if (!r)
40
40
  return;
41
- const o = r, n = o.getAttribute("data-initialized") || "0", u = o.getAttribute(t.BLOCK_INSTANCE_ID), s = () => String(Date.now() + Math.floor(Math.random() * 1e3));
42
- if (Number(n)) {
43
- if (!u) {
44
- const i = s();
45
- this.api.getDocumentModifier().modifyHtml(o).setAttribute(t.BLOCK_INSTANCE_ID, i).apply(new a("Assign block instance ID to legacy block"));
46
- }
47
- } else {
48
- const i = e.itemsType, d = e.cartItemsSelectControlValue, I = e.cardOrientationControlValue, m = e.productNameTrimmingControlValue, C = e.productPriceHideDiscountControlValue, T = e.productPriceFormattedControlValue, b = e.productPriceCurrencySymbolControlValue, E = e.productPriceCurrencyLocationControlValue, O = e.productButtonLinkControlValue, A = e.productImageLinkControlValue, _ = e.productImageVisible, p = e.productNameVisible, N = e.productQuantityVisible, f = e.productPriceVisible, g = e.productOriginalPriceVisible, D = e.productButtonVisible, P = s();
49
- this.api.getDocumentModifier().modifyHtml(o).setAttribute("data-source", i).setAttribute(t.TYPE, i).setAttribute(t.ITEMS_INDEX_SELECT_CONTROL_VALUE, d).setAttribute(t.ORIENTATION, I).setAttribute(t.PRODUCT_NAME_TRIMMING, m).setAttribute(t.PRODUCT_PRICE_HIDE_DISCOUNT, C).setAttribute(t.PRODUCT_PRICE_FORMATTED, T).setAttribute(t.PRODUCT_PRICE_CURRENCY_SYMBOL, b).setAttribute(t.PRODUCT_PRICE_CURRENCY_LOCATION, E).setAttribute(t.PRODUCT_BUTTON_LINK, O).setAttribute(t.PRODUCT_IMAGE_LINK, A).setAttribute(t.BLOCK_INSTANCE_ID, P).setAttribute("data-initialized", "1").setAttribute(t.NAME_CONTROL_ENABLED, e.productNameControlEnabled).setAttribute(
50
- t.QUANTITY_CONTROL_ENABLED,
51
- e.productQuantityControlEnabled
52
- ).setAttribute(t.PRICE_CONTROL_OPENED, e.productPriceControlOpened).setAttribute(t.PRODUCT_IMAGE_VISIBLE, _).setAttribute(t.PRODUCT_NAME_VISIBLE, p).setAttribute(t.PRODUCT_QUANTITY_VISIBLE, N).setAttribute(t.PRODUCT_PRICE_VISIBLE, f).setAttribute(t.PRODUCT_ORIGINAL_PRICE_VISIBLE, g).setAttribute(t.PRODUCT_BUTTON_VISIBLE, D).apply(new a("Initialize config block attributes with defaults")), R().startOnboarding("itemsOnboarding");
53
- }
54
- }
55
- onSelect(c) {
56
- const r = c.querySelector("esd-config-block"), o = S();
57
- if (!r)
41
+ const I = this.api.getDocumentModifier(), o = r, T = o.getAttribute("data-initialized"), i = p(), { itemsType: a, itemIds: s, orientation: c } = i;
42
+ if (T === "1") {
43
+ const d = o.getAttribute(t.TYPE), u = o.getAttribute(t.ITEMS_INDEX_SELECT_CONTROL_VALUE), l = o.getAttribute(t.ORIENTATION);
44
+ (d || u || l) && i.updateFromAttributes({
45
+ itemsType: d || void 0,
46
+ itemIds: u || void 0,
47
+ orientation: l || void 0
48
+ });
58
49
  return;
59
- const n = r, u = n.getAttribute(t.TYPE) || e.itemsType, s = n.getAttribute(t.ITEMS_INDEX_SELECT_CONTROL_VALUE) || e.cartItemsSelectControlValue, i = n.getAttribute(t.ORIENTATION) || e.cardOrientationControlValue;
60
- o.setItemsType(u), o.setItemIds(s), o.setOrientation(i);
50
+ }
51
+ I.modifyHtml(r).setAttribute(
52
+ t.TYPE,
53
+ a
54
+ ).setAttribute(
55
+ t.ITEMS_INDEX_SELECT_CONTROL_VALUE,
56
+ s
57
+ ).setAttribute(
58
+ t.ORIENTATION,
59
+ c
60
+ ).setAttribute("data-product_name_control_enabled", n.productNameControlEnabled).setAttribute("data-product_quantity_control_enabled", n.productQuantityControlEnabled).setAttribute("data-product_price_control_opened", n.productPriceControlOpened).setAttribute("data-initialized", "1").apply(new f("Initialize config block")), i.updateFromAttributes({
61
+ itemsType: a,
62
+ itemIds: s,
63
+ orientation: c
64
+ });
61
65
  }
62
66
  }
63
67
  export {
64
- B as BLOCK_ID,
65
- z as ItemsBlock
68
+ _ as BLOCK_ID,
69
+ D as ItemsBlock
66
70
  };
@@ -1,18 +1,16 @@
1
1
  var r = Object.defineProperty;
2
- var a = (o, e, t) => e in o ? r(o, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : o[e] = t;
3
- var s = (o, e, t) => a(o, typeof e != "symbol" ? e + "" : e, t);
4
- import { CommonControl as u } from "../../../common-control.js";
5
- import { ItemsBlockControlId as d } from "../../enums/controlEnums.js";
6
- import { useItemsBlockStore as l } from "../../store/items-block.js";
7
- import { syncButtonLinkFromAttributes as h } from "../../utils/syncAttributesFromConfigBlock.js";
8
- import { updateConfigBlockAttributes as m } from "../../utils/updateAttributes.js";
9
- const i = d.BUTTON_LINK, n = {
2
+ var a = (n, e, t) => e in n ? r(n, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[e] = t;
3
+ var s = (n, e, t) => a(n, typeof e != "symbol" ? e + "" : e, t);
4
+ import { CommonControl as l } from "../../../common-control.js";
5
+ import { ItemsBlockControlId as u } from "../../enums/controlEnums.js";
6
+ import { useItemsBlockStore as L } from "../../store/items-block.js";
7
+ const i = u.BUTTON_LINK, o = {
10
8
  LINK: "link"
11
9
  };
12
- class C extends u {
10
+ class k extends l {
13
11
  constructor() {
14
12
  super(...arguments);
15
- s(this, "store", l());
13
+ s(this, "store", L());
16
14
  }
17
15
  getId() {
18
16
  return i;
@@ -26,43 +24,37 @@ class C extends u {
26
24
  }
27
25
  onRender() {
28
26
  this.api.updateValues({
29
- [n.LINK]: this.store.buttonLink
27
+ [o.LINK]: this.store.buttonLink
30
28
  }), this._listenToFormUpdates();
31
29
  }
32
30
  onTemplateNodeUpdated(t) {
33
- super.onTemplateNodeUpdated(t), this.handleBlockInstanceChange(
34
- () => h(this.currentNode),
35
- () => {
36
- this.api.updateValues({
37
- [n.LINK]: this.store.buttonLink
38
- });
39
- }
40
- );
31
+ this.currentNode = t, this.api.updateValues({
32
+ [o.LINK]: this.store.buttonLink
33
+ });
41
34
  }
42
35
  _listenToFormUpdates() {
43
36
  this.api.onValueChanged(
44
- n.LINK,
37
+ o.LINK,
45
38
  (t) => this._onLinkChange(t)
46
39
  );
47
40
  }
48
41
  _onLinkChange(t) {
49
- console.debug("Button link changed to: ", t), this.store.setButtonLink(t), m(this.currentNode, this.api);
42
+ console.debug("Button link changed to: ", t), this.store.setButtonLink(t);
50
43
  }
51
44
  _getLink() {
52
45
  return `
53
46
  ${this._GuOneColumn([
54
47
  this._GuLabel({ text: "Link" }),
55
48
  this._GuTextInput({
56
- name: n.LINK,
49
+ name: o.LINK,
57
50
  placeholder: "Enter Link",
58
- className: "es-100",
59
- disabled: !0
51
+ className: "es-100"
60
52
  })
61
53
  ])}
62
54
  `;
63
55
  }
64
56
  }
65
57
  export {
66
- C as ButtonLinkControl,
58
+ k as ButtonLinkControl,
67
59
  i as CONTROL_BLOCK_ID
68
60
  };