@gem-sdk/core 1.46.0-staging.13 → 1.46.0-staging.16
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/dist/cjs/helpers/third-party/appConfig.js +8 -1
- package/dist/cjs/helpers/third-party/appSetting.js +23 -1
- package/dist/cjs/helpers/third-party/constant.js +2 -1
- package/dist/cjs/helpers/third-party/getAppBlockConfig.js +2 -1
- package/dist/esm/helpers/third-party/appConfig.js +8 -2
- package/dist/esm/helpers/third-party/appSetting.js +23 -2
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/dist/esm/helpers/third-party/getAppBlockConfig.js +3 -2
- package/package.json +1 -1
|
@@ -26,7 +26,7 @@ const SelleasyConfig = {
|
|
|
26
26
|
};
|
|
27
27
|
const LoopSubscriptionsConfig = {
|
|
28
28
|
LoopSubscriptions: {
|
|
29
|
-
appName: '
|
|
29
|
+
appName: 'loop-subscriptions',
|
|
30
30
|
appId: '267a7c64-5cb3-4552-b817-5485165f0a0b'
|
|
31
31
|
}
|
|
32
32
|
};
|
|
@@ -36,10 +36,17 @@ const SkioSubscriptionsYcS20Config = {
|
|
|
36
36
|
appId: 'de50f7a4-0bb0-4d4c-84e2-c03dce83436d'
|
|
37
37
|
}
|
|
38
38
|
};
|
|
39
|
+
const ShopifyFormsConfig = {
|
|
40
|
+
ShopifyForms: {
|
|
41
|
+
appName: 'forms',
|
|
42
|
+
appId: '8744a304-fcb1-4347-b211-bb6b4759a76a'
|
|
43
|
+
}
|
|
44
|
+
};
|
|
39
45
|
|
|
40
46
|
exports.BonLoyaltyRewardsReferralsConfig = BonLoyaltyRewardsReferralsConfig;
|
|
41
47
|
exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
|
|
42
48
|
exports.RechargeSubscriptionsConfig = RechargeSubscriptionsConfig;
|
|
43
49
|
exports.SelleasyConfig = SelleasyConfig;
|
|
50
|
+
exports.ShopifyFormsConfig = ShopifyFormsConfig;
|
|
44
51
|
exports.SkioSubscriptionsYcS20Config = SkioSubscriptionsYcS20Config;
|
|
45
52
|
exports.SubifySubscriptionsConfig = SubifySubscriptionsConfig;
|
|
@@ -57,7 +57,9 @@ const SelleasyWidget = {
|
|
|
57
57
|
};
|
|
58
58
|
const LoopSubscriptions = {
|
|
59
59
|
LoopSubscriptions: {
|
|
60
|
-
|
|
60
|
+
star_rating: {
|
|
61
|
+
product: '{{product}}'
|
|
62
|
+
}
|
|
61
63
|
}
|
|
62
64
|
};
|
|
63
65
|
const SkioSubscriptionsYcS20 = {
|
|
@@ -65,7 +67,26 @@ const SkioSubscriptionsYcS20 = {
|
|
|
65
67
|
'app-block': null
|
|
66
68
|
}
|
|
67
69
|
};
|
|
70
|
+
const ShopifyForms = {
|
|
71
|
+
ShopifyForms: {
|
|
72
|
+
inline: {
|
|
73
|
+
form_id: null
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
78
|
+
switch(tag){
|
|
79
|
+
case 'ShopifyForms':
|
|
80
|
+
return {
|
|
81
|
+
...currentSetting,
|
|
82
|
+
form_id: appSetting['formId']
|
|
83
|
+
};
|
|
84
|
+
default:
|
|
85
|
+
return currentSetting;
|
|
86
|
+
}
|
|
87
|
+
};
|
|
68
88
|
const composeSettingsByWidgetType = {
|
|
89
|
+
...ShopifyForms,
|
|
69
90
|
...SkioSubscriptionsYcS20,
|
|
70
91
|
...LoopSubscriptions,
|
|
71
92
|
...RechargeSubscriptions,
|
|
@@ -75,3 +96,4 @@ const composeSettingsByWidgetType = {
|
|
|
75
96
|
};
|
|
76
97
|
|
|
77
98
|
exports.composeSettingsByWidgetType = composeSettingsByWidgetType;
|
|
99
|
+
exports.overrideSettings = overrideSettings;
|
|
@@ -8,7 +8,8 @@ const mapShopifyAppMeta = {
|
|
|
8
8
|
...appConfig.SubifySubscriptionsConfig,
|
|
9
9
|
...appConfig.SelleasyConfig,
|
|
10
10
|
...appConfig.LoopSubscriptionsConfig,
|
|
11
|
-
...appConfig.SkioSubscriptionsYcS20Config
|
|
11
|
+
...appConfig.SkioSubscriptionsYcS20Config,
|
|
12
|
+
...appConfig.ShopifyFormsConfig
|
|
12
13
|
};
|
|
13
14
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
14
15
|
|
|
@@ -9,12 +9,13 @@ const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
|
9
9
|
widgetType: settings?.widgetType
|
|
10
10
|
});
|
|
11
11
|
const settingByWidget = appSetting.composeSettingsByWidgetType[tag][settings?.widgetType];
|
|
12
|
+
const appSettings = appSetting.overrideSettings(tag, settingByWidget, settings);
|
|
12
13
|
return {
|
|
13
14
|
key: appBlockId,
|
|
14
15
|
value: {
|
|
15
16
|
type: appBlockType,
|
|
16
17
|
...settingByWidget && {
|
|
17
|
-
settings:
|
|
18
|
+
settings: appSettings
|
|
18
19
|
}
|
|
19
20
|
}
|
|
20
21
|
};
|
|
@@ -24,7 +24,7 @@ const SelleasyConfig = {
|
|
|
24
24
|
};
|
|
25
25
|
const LoopSubscriptionsConfig = {
|
|
26
26
|
LoopSubscriptions: {
|
|
27
|
-
appName: '
|
|
27
|
+
appName: 'loop-subscriptions',
|
|
28
28
|
appId: '267a7c64-5cb3-4552-b817-5485165f0a0b'
|
|
29
29
|
}
|
|
30
30
|
};
|
|
@@ -34,5 +34,11 @@ const SkioSubscriptionsYcS20Config = {
|
|
|
34
34
|
appId: 'de50f7a4-0bb0-4d4c-84e2-c03dce83436d'
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
|
+
const ShopifyFormsConfig = {
|
|
38
|
+
ShopifyForms: {
|
|
39
|
+
appName: 'forms',
|
|
40
|
+
appId: '8744a304-fcb1-4347-b211-bb6b4759a76a'
|
|
41
|
+
}
|
|
42
|
+
};
|
|
37
43
|
|
|
38
|
-
export { BonLoyaltyRewardsReferralsConfig, LoopSubscriptionsConfig, RechargeSubscriptionsConfig, SelleasyConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig };
|
|
44
|
+
export { BonLoyaltyRewardsReferralsConfig, LoopSubscriptionsConfig, RechargeSubscriptionsConfig, SelleasyConfig, ShopifyFormsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig };
|
|
@@ -55,7 +55,9 @@ const SelleasyWidget = {
|
|
|
55
55
|
};
|
|
56
56
|
const LoopSubscriptions = {
|
|
57
57
|
LoopSubscriptions: {
|
|
58
|
-
|
|
58
|
+
star_rating: {
|
|
59
|
+
product: '{{product}}'
|
|
60
|
+
}
|
|
59
61
|
}
|
|
60
62
|
};
|
|
61
63
|
const SkioSubscriptionsYcS20 = {
|
|
@@ -63,7 +65,26 @@ const SkioSubscriptionsYcS20 = {
|
|
|
63
65
|
'app-block': null
|
|
64
66
|
}
|
|
65
67
|
};
|
|
68
|
+
const ShopifyForms = {
|
|
69
|
+
ShopifyForms: {
|
|
70
|
+
inline: {
|
|
71
|
+
form_id: null
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
const overrideSettings = (tag, currentSetting, appSetting)=>{
|
|
76
|
+
switch(tag){
|
|
77
|
+
case 'ShopifyForms':
|
|
78
|
+
return {
|
|
79
|
+
...currentSetting,
|
|
80
|
+
form_id: appSetting['formId']
|
|
81
|
+
};
|
|
82
|
+
default:
|
|
83
|
+
return currentSetting;
|
|
84
|
+
}
|
|
85
|
+
};
|
|
66
86
|
const composeSettingsByWidgetType = {
|
|
87
|
+
...ShopifyForms,
|
|
67
88
|
...SkioSubscriptionsYcS20,
|
|
68
89
|
...LoopSubscriptions,
|
|
69
90
|
...RechargeSubscriptions,
|
|
@@ -72,4 +93,4 @@ const composeSettingsByWidgetType = {
|
|
|
72
93
|
...SelleasyWidget
|
|
73
94
|
};
|
|
74
95
|
|
|
75
|
-
export { composeSettingsByWidgetType };
|
|
96
|
+
export { composeSettingsByWidgetType, overrideSettings };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config } from './appConfig.js';
|
|
1
|
+
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -6,7 +6,8 @@ const mapShopifyAppMeta = {
|
|
|
6
6
|
...SubifySubscriptionsConfig,
|
|
7
7
|
...SelleasyConfig,
|
|
8
8
|
...LoopSubscriptionsConfig,
|
|
9
|
-
...SkioSubscriptionsYcS20Config
|
|
9
|
+
...SkioSubscriptionsYcS20Config,
|
|
10
|
+
...ShopifyFormsConfig
|
|
10
11
|
};
|
|
11
12
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
12
13
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { composeSettingsByWidgetType } from './appSetting.js';
|
|
1
|
+
import { composeSettingsByWidgetType, overrideSettings } from './appSetting.js';
|
|
2
2
|
import { getAppBlockType } from './getAppBlockType.js';
|
|
3
3
|
|
|
4
4
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
@@ -7,12 +7,13 @@ const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
|
|
7
7
|
widgetType: settings?.widgetType
|
|
8
8
|
});
|
|
9
9
|
const settingByWidget = composeSettingsByWidgetType[tag][settings?.widgetType];
|
|
10
|
+
const appSettings = overrideSettings(tag, settingByWidget, settings);
|
|
10
11
|
return {
|
|
11
12
|
key: appBlockId,
|
|
12
13
|
value: {
|
|
13
14
|
type: appBlockType,
|
|
14
15
|
...settingByWidget && {
|
|
15
|
-
settings:
|
|
16
|
+
settings: appSettings
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
19
|
};
|