@wandzai/utils 1.0.58 → 1.0.59-test-types-refactor-1
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/package.json +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/index.js.map +1 -1
- package/src/interactions.d.ts +5 -0
- package/src/interactions.js +74 -0
- package/src/interactions.js.map +1 -0
- package/src/wandz.d.ts +9 -9
- package/src/wandz.js +10 -28
- package/src/wandz.js.map +1 -1
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
|
@@ -26,4 +26,5 @@ __exportStar(require("./mysql"), exports);
|
|
|
26
26
|
__exportStar(require("./snowflake"), exports);
|
|
27
27
|
__exportStar(require("./schedule"), exports);
|
|
28
28
|
__exportStar(require("./cache"), exports);
|
|
29
|
+
__exportStar(require("./interactions"), exports);
|
|
29
30
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/utils/src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,4CAA0B;AAC1B,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,0CAAwB;AACxB,8CAA4B;AAC5B,6CAA2B;AAC3B,0CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/utils/src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,yCAAuB;AACvB,4CAA0B;AAC1B,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,0CAAwB;AACxB,8CAA4B;AAC5B,6CAA2B;AAC3B,0CAAwB;AACxB,iDAA+B"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCloseButton = void 0;
|
|
4
|
+
const btnSvg = '<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.87097 0.366057C10.3591 -0.121966 11.1504 -0.122072 11.6385 0.366057C12.1261 0.854212 12.1264 1.64566 11.6385 2.13363L7.76941 6.0018L11.6385 9.87094L11.7245 9.96567C12.1243 10.4566 12.0959 11.1811 11.6385 11.6385C11.1811 12.096 10.4567 12.1243 9.96569 11.7245L9.87097 11.6385L6.00085 7.76938L2.13366 11.6375C1.64563 12.1255 0.85426 12.1253 0.366085 11.6375C-0.121993 11.1494 -0.122063 10.3581 0.366085 9.86996L4.23327 6.0018L0.366085 2.13461C-0.12203 1.64652 -0.121894 0.855216 0.366085 0.367033C0.854135 -0.121035 1.64547 -0.121806 2.13366 0.366057L6.00183 4.23422L9.87097 0.366057Z" fill="#2F2F2F"/></svg>';
|
|
5
|
+
const DEFAULTS = {
|
|
6
|
+
OFFSET: 8,
|
|
7
|
+
SIZE: 12,
|
|
8
|
+
COLOR: '#000000',
|
|
9
|
+
PADDING: 10,
|
|
10
|
+
};
|
|
11
|
+
const getCloseButton = (interaction, deviceType, btnClassName = 'exit-btn', btnId = 'wandz-interaction-close-btn', tagType = 'span') => {
|
|
12
|
+
let config = interaction.closeButtonConfig?.[deviceType] || interaction.closeButtonConfig?.desktop;
|
|
13
|
+
if (!config) {
|
|
14
|
+
config = {
|
|
15
|
+
color: interaction.closeButtonColor || DEFAULTS.COLOR,
|
|
16
|
+
size: DEFAULTS.SIZE,
|
|
17
|
+
offsetX: DEFAULTS.OFFSET,
|
|
18
|
+
offsetY: DEFAULTS.OFFSET,
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
let extraStyles = '';
|
|
22
|
+
const backgroundConfig = config.background;
|
|
23
|
+
if (backgroundConfig) {
|
|
24
|
+
extraStyles = `
|
|
25
|
+
#${btnId} {
|
|
26
|
+
width: ${config.size + DEFAULTS.PADDING * 2}px;
|
|
27
|
+
height: ${config.size + DEFAULTS.PADDING * 2}px;
|
|
28
|
+
background-color: ${backgroundConfig.color};
|
|
29
|
+
border-radius: ${backgroundConfig.radius}px;
|
|
30
|
+
box-shadow: inset 0 0 0 1.5px ${backgroundConfig.borderColor};
|
|
31
|
+
}`;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
html: `<${tagType} id="${btnId}" class="${btnClassName}">${btnSvg}</${tagType}>`,
|
|
35
|
+
styles: `
|
|
36
|
+
#${btnId} {
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: ${config.offsetY}px;
|
|
39
|
+
right: ${config.offsetX}px;
|
|
40
|
+
line-height: ${config.size}px;
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
overflow: hidden;
|
|
46
|
+
}
|
|
47
|
+
#${btnId} svg {
|
|
48
|
+
height: ${config.size}px;
|
|
49
|
+
width: ${config.size}px;
|
|
50
|
+
}
|
|
51
|
+
#${btnId} svg path {
|
|
52
|
+
fill: ${config.color};
|
|
53
|
+
}
|
|
54
|
+
#${btnId}::after {
|
|
55
|
+
content: '';
|
|
56
|
+
position: absolute;
|
|
57
|
+
top: 0;
|
|
58
|
+
left: 0;
|
|
59
|
+
width: 100%;
|
|
60
|
+
height: 100%;
|
|
61
|
+
background-color: #ffffff;
|
|
62
|
+
opacity: 0;
|
|
63
|
+
transition: opacity 0.3s ease;
|
|
64
|
+
pointer-events: none;
|
|
65
|
+
}
|
|
66
|
+
#${btnId}:hover::after {
|
|
67
|
+
opacity: 0.3;
|
|
68
|
+
}
|
|
69
|
+
${extraStyles}
|
|
70
|
+
`,
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
exports.getCloseButton = getCloseButton;
|
|
74
|
+
//# sourceMappingURL=interactions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interactions.js","sourceRoot":"","sources":["../../../../libs/utils/src/interactions.ts"],"names":[],"mappings":";;;AAGA,MAAM,MAAM,GAAG,2sBAA2sB,CAAA;AAC1tB,MAAM,QAAQ,GAAG;IACf,MAAM,EAAE,CAAC;IACT,IAAI,EAAE,EAAE;IACR,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,EAAE;CACZ,CAAC;AAEK,MAAM,cAAc,GAAG,CAC5B,WAAyB,EACzB,UAAgC,EAChC,eAAuB,UAAU,EACjC,QAAgB,6BAA6B,EAC7C,UAAkB,MAAM,EACtB,EAAE;IACJ,IAAI,MAAM,GAAG,WAAW,CAAC,iBAAiB,EAAE,CAAC,UAAU,CAAC,IAAI,WAAW,CAAC,iBAAiB,EAAE,OAAO,CAAC;IACnG,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,GAAG;YACP,KAAK,EAAE,WAAW,CAAC,gBAAgB,IAAI,QAAQ,CAAC,KAAK;YACrD,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,OAAO,EAAE,QAAQ,CAAC,MAAM;YACxB,OAAO,EAAE,QAAQ,CAAC,MAAM;SACQ,CAAC;IACrC,CAAC;IACD,IAAI,WAAW,GAAG,EAAE,CAAC;IACrB,MAAM,gBAAgB,GAAG,MAAM,CAAC,UAAU,CAAC;IAC3C,IAAI,gBAAgB,EAAE,CAAC;QACrB,WAAW,GAAG;GACf,KAAK;aACK,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,OAAO,GAAG,CAAC;cACjC,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,OAAO,GAAG,CAAC;wBACxB,gBAAgB,CAAC,KAAK;qBACzB,gBAAgB,CAAC,MAAM;oCACR,gBAAgB,CAAC,WAAW;EAC9D,CAAA;IACA,CAAC;IACD,OAAO;QACL,IAAI,EAAE,IAAI,OAAO,QAAQ,KAAK,YAAY,YAAY,KAAK,MAAM,KAAK,OAAO,GAAG;QAChF,MAAM,EAAE;GACT,KAAK;;WAEG,MAAM,CAAC,OAAO;aACZ,MAAM,CAAC,OAAO;mBACR,MAAM,CAAC,IAAI;;;;;;;GAO3B,KAAK;cACM,MAAM,CAAC,IAAI;aACZ,MAAM,CAAC,IAAI;;GAErB,KAAK;YACI,MAAM,CAAC,KAAK;;GAErB,KAAK;;;;;;;;;;;;GAYL,KAAK;;;EAGN,WAAW;CACZ;KACE,CAAC;AACJ,CAAC,CAAC;AAnEW,QAAA,cAAc,kBAmEzB"}
|
package/src/wandz.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { AdaptiveSearchReplaceLabels, AiFeatureDistributionType, IAdaptiveSearch, IAffinityBasedCustomAiFeatureConfig, IAiFeaturesBasicConfig, IAudience, ICustomAiFeature, ICustomAudience,
|
|
1
|
+
import { AdaptiveSearchReplaceLabels, AiFeatureDistributionType, IAdaptiveSearch, IAffinityBasedCustomAiFeatureConfig, IAiFeaturesBasicConfig, IAudience, ICustomAiFeature, ICustomAudience, IEntityCommonDetails, IEventBasedCustomAiFeatureConfig, IPredictionModel, IStorageBasedCustomAiFeatureConfig, IWandzAiFeaturesConfig, WandzAllEntities } from '@wandzai/wandz-interfaces';
|
|
2
2
|
export declare const entityTechNameBuilder: (entityName: string) => string;
|
|
3
3
|
export declare function isAffinityBasedCustomAiFeature(feature: ICustomAiFeature): feature is IAffinityBasedCustomAiFeatureConfig;
|
|
4
4
|
export declare function isStorageBasedCustomAiFeature(feature: ICustomAiFeature): feature is IStorageBasedCustomAiFeatureConfig;
|
|
5
5
|
export declare function isEventBasedCustomAiFeature(feature: ICustomAiFeature): feature is IEventBasedCustomAiFeatureConfig;
|
|
6
6
|
export declare const getCustomAiFeatureType: (feature: ICustomAiFeature) => AiFeatureDistributionType;
|
|
7
|
-
export declare const isAiFeature: (entity:
|
|
8
|
-
export declare const isAudience: (entity:
|
|
9
|
-
export declare const
|
|
7
|
+
export declare const isAiFeature: (entity: IEntityCommonDetails) => entity is IAiFeaturesBasicConfig;
|
|
8
|
+
export declare const isAudience: (entity: IEntityCommonDetails) => entity is IAudience;
|
|
9
|
+
export declare const isModel: (entity: IEntityCommonDetails) => entity is IPredictionModel;
|
|
10
|
+
export declare const isCustomEntity: (entity: IEntityCommonDetails) => boolean;
|
|
10
11
|
export declare const isCustomAudience: (audience: IAudience) => audience is ICustomAudience;
|
|
11
12
|
export declare const isCustomAiFeature: (feature: IAiFeaturesBasicConfig) => feature is ICustomAiFeature;
|
|
12
|
-
export declare const isInHouseAiFeature: (entity:
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const getEntityDisplayName: (entity: IEntity) => string;
|
|
13
|
+
export declare const isInHouseAiFeature: (entity: IEntityCommonDetails) => entity is IWandzAiFeaturesConfig;
|
|
14
|
+
export declare const getEntityID: (entity: IEntityCommonDetails) => string | number;
|
|
15
|
+
export declare const getEntityType: (entity: IEntityCommonDetails) => WandzAllEntities;
|
|
16
|
+
export declare const getEntityDisplayName: (entity: IEntityCommonDetails) => string;
|
|
17
17
|
export declare const getAdaptiveSearchDataByField: (search: IAdaptiveSearch, label: AdaptiveSearchReplaceLabels) => any;
|
package/src/wandz.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getAdaptiveSearchDataByField = exports.getEntityDisplayName = exports.getEntityType = exports.getEntityID = exports.
|
|
3
|
+
exports.getAdaptiveSearchDataByField = exports.getEntityDisplayName = exports.getEntityType = exports.getEntityID = exports.isInHouseAiFeature = exports.isCustomAiFeature = exports.isCustomAudience = exports.isCustomEntity = exports.isModel = exports.isAudience = exports.isAiFeature = exports.getCustomAiFeatureType = exports.isEventBasedCustomAiFeature = exports.isStorageBasedCustomAiFeature = exports.isAffinityBasedCustomAiFeature = exports.entityTechNameBuilder = void 0;
|
|
4
4
|
const wandz_interfaces_1 = require("@wandzai/wandz-interfaces");
|
|
5
5
|
const entityTechNameBuilder = (entityName) => {
|
|
6
6
|
return entityName
|
|
@@ -32,15 +32,19 @@ const getCustomAiFeatureType = (feature) => {
|
|
|
32
32
|
};
|
|
33
33
|
exports.getCustomAiFeatureType = getCustomAiFeatureType;
|
|
34
34
|
const isAiFeature = (entity) => {
|
|
35
|
-
return entity.
|
|
35
|
+
return entity.entityType === wandz_interfaces_1.WandzEntities.AI_FEATURE;
|
|
36
36
|
};
|
|
37
37
|
exports.isAiFeature = isAiFeature;
|
|
38
38
|
const isAudience = (entity) => {
|
|
39
|
-
return entity.
|
|
39
|
+
return entity.entityType === wandz_interfaces_1.WandzEntities.AUDIENCE;
|
|
40
40
|
};
|
|
41
41
|
exports.isAudience = isAudience;
|
|
42
|
+
const isModel = (entity) => {
|
|
43
|
+
return entity.entityType === wandz_interfaces_1.WandzEntities.MODEL;
|
|
44
|
+
};
|
|
45
|
+
exports.isModel = isModel;
|
|
42
46
|
const isCustomEntity = (entity) => {
|
|
43
|
-
return
|
|
47
|
+
return entity.isCustom;
|
|
44
48
|
};
|
|
45
49
|
exports.isCustomEntity = isCustomEntity;
|
|
46
50
|
const isCustomAudience = (audience) => {
|
|
@@ -55,34 +59,12 @@ const isInHouseAiFeature = (entity) => {
|
|
|
55
59
|
return (0, exports.isAiFeature)(entity) && !(0, exports.isCustomEntity)(entity);
|
|
56
60
|
};
|
|
57
61
|
exports.isInHouseAiFeature = isInHouseAiFeature;
|
|
58
|
-
const isModel = (entity) => {
|
|
59
|
-
return entity.targetRules != null;
|
|
60
|
-
};
|
|
61
|
-
exports.isModel = isModel;
|
|
62
62
|
const getEntityID = (entity) => {
|
|
63
|
-
|
|
64
|
-
return entity.id?.toString();
|
|
65
|
-
}
|
|
66
|
-
else if ((0, exports.isAudience)(entity)) {
|
|
67
|
-
return entity.guid;
|
|
68
|
-
}
|
|
69
|
-
else if ((0, exports.isModel)(entity)) {
|
|
70
|
-
return entity.guid;
|
|
71
|
-
}
|
|
72
|
-
return '';
|
|
63
|
+
return entity.identifier;
|
|
73
64
|
};
|
|
74
65
|
exports.getEntityID = getEntityID;
|
|
75
66
|
const getEntityType = (entity) => {
|
|
76
|
-
|
|
77
|
-
return wandz_interfaces_1.WandzEntities.AI_FEATURE;
|
|
78
|
-
}
|
|
79
|
-
else if ((0, exports.isAudience)(entity)) {
|
|
80
|
-
return wandz_interfaces_1.WandzEntities.AUDIENCE;
|
|
81
|
-
}
|
|
82
|
-
else if ((0, exports.isModel)(entity)) {
|
|
83
|
-
return wandz_interfaces_1.WandzEntities.MODEL;
|
|
84
|
-
}
|
|
85
|
-
return wandz_interfaces_1.WandzEntities.AI_FEATURE;
|
|
67
|
+
return entity.entityType;
|
|
86
68
|
};
|
|
87
69
|
exports.getEntityType = getEntityType;
|
|
88
70
|
const getEntityDisplayName = (entity) => {
|
package/src/wandz.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wandz.js","sourceRoot":"","sources":["../../../../libs/utils/src/wandz.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"wandz.js","sourceRoot":"","sources":["../../../../libs/utils/src/wandz.ts"],"names":[],"mappings":"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"}
|