@wandzai/utils 1.0.75-benchmark-classifications-12 → 1.0.75-benchmark-classifications-13
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/bee-free.js +30 -105
- package/src/bee-free.js.map +1 -1
package/package.json
CHANGED
package/src/bee-free.js
CHANGED
|
@@ -7,63 +7,46 @@ const wandz_interfaces_1 = require("@wandzai/wandz-interfaces");
|
|
|
7
7
|
const extractAllTextFromEntityJson = (json, device = null) => {
|
|
8
8
|
const elements = [];
|
|
9
9
|
let index = 0;
|
|
10
|
-
const initialContent = {
|
|
11
|
-
isButton: false,
|
|
12
|
-
isHeading: false,
|
|
13
|
-
isParagraph: false,
|
|
14
|
-
isImageAlt: false,
|
|
15
|
-
isListItem: false,
|
|
16
|
-
isTableCell: false,
|
|
17
|
-
isRawHtml: false,
|
|
18
|
-
};
|
|
19
10
|
const stripHtml = (html) => (0, html_entities_1.decode)(html
|
|
20
11
|
.replace(/<style[^>]*>.*?<\/style>/gis, '')
|
|
21
12
|
.replace(/<script[^>]*>.*?<\/script>/gis, '')
|
|
22
13
|
.replace(/<[^>]+>/g, '')
|
|
23
14
|
.replace(/\s+/g, ' ')
|
|
24
15
|
.trim());
|
|
25
|
-
const normalizeStyleKeys = (style = {}) => {
|
|
26
|
-
const map = {};
|
|
27
|
-
Object.keys(style).forEach((key) => {
|
|
28
|
-
const camelKey = key.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
|
|
29
|
-
map[camelKey] = style[key];
|
|
30
|
-
});
|
|
31
|
-
return map;
|
|
32
|
-
};
|
|
33
|
-
const mergeStyles = (...styles) => Object.assign({}, ...styles.map(normalizeStyleKeys));
|
|
34
16
|
const isVisibleForDevice = (style) => {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
17
|
+
if (!style)
|
|
18
|
+
return true;
|
|
19
|
+
const hideDesktop = style?.hideContentOnDesktop;
|
|
20
|
+
const hideMobile = style?.hideContentOnMobile;
|
|
39
21
|
if (device === wandz_interfaces_1.InteractionViewModes.DESKTOP)
|
|
40
22
|
return !hideDesktop;
|
|
41
23
|
if (device === wandz_interfaces_1.InteractionViewModes.MOBILE)
|
|
42
24
|
return !hideMobile;
|
|
43
|
-
return
|
|
25
|
+
return !(hideDesktop && hideMobile);
|
|
44
26
|
};
|
|
27
|
+
const mergeStyles = (...styles) => Object.assign({}, ...styles);
|
|
45
28
|
const pushElement = (text, style, rowIndex, columnIndex, moduleIndex, totalRows, contentFlags) => {
|
|
46
29
|
if (!text)
|
|
47
30
|
return;
|
|
48
31
|
elements.push({
|
|
49
32
|
id: `${rowIndex}-${columnIndex}-${moduleIndex}-${index}`,
|
|
50
|
-
text,
|
|
33
|
+
text: text.trim(),
|
|
51
34
|
index: index++,
|
|
52
35
|
signals: {
|
|
53
36
|
content: contentFlags,
|
|
54
37
|
typography: {
|
|
55
|
-
fontSizePx: style
|
|
56
|
-
fontWeight: style
|
|
57
|
-
isItalic: style
|
|
58
|
-
isUppercase: style
|
|
59
|
-
isUnderlined: style
|
|
38
|
+
fontSizePx: style?.fontSize ? Number(String(style.fontSize).replace('px', '')) : undefined,
|
|
39
|
+
fontWeight: style?.fontWeight ? Number(style.fontWeight) : undefined,
|
|
40
|
+
isItalic: style?.fontStyle === 'italic',
|
|
41
|
+
isUppercase: style?.textTransform === 'uppercase',
|
|
42
|
+
isUnderlined: style?.textDecoration === 'underline',
|
|
60
43
|
},
|
|
61
44
|
color: {
|
|
62
|
-
textColor: style
|
|
63
|
-
backgroundColor: style
|
|
45
|
+
textColor: style?.color,
|
|
46
|
+
backgroundColor: style?.backgroundColor,
|
|
64
47
|
},
|
|
65
48
|
layout: {
|
|
66
|
-
textAlign: style
|
|
49
|
+
textAlign: style?.textAlign,
|
|
67
50
|
rowIndex,
|
|
68
51
|
columnIndex,
|
|
69
52
|
moduleIndex,
|
|
@@ -74,82 +57,24 @@ const extractAllTextFromEntityJson = (json, device = null) => {
|
|
|
74
57
|
};
|
|
75
58
|
const extractTextFromModule = (module, rowIndex, columnIndex, moduleIndex, totalRows) => {
|
|
76
59
|
const d = module.descriptor;
|
|
77
|
-
if (!d)
|
|
78
|
-
return;
|
|
79
|
-
if (!isVisibleForDevice(d.computedStyle))
|
|
60
|
+
if (!d || !isVisibleForDevice(d.computedStyle))
|
|
80
61
|
return;
|
|
81
62
|
const baseStyle = mergeStyles(d.computedStyle, d.style, d.mobileStyle);
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
})
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
return;
|
|
97
|
-
}
|
|
98
|
-
if (d.heading?.text) {
|
|
99
|
-
const text = stripHtml(d.heading.text);
|
|
100
|
-
pushElement(text, mergeStyles(baseStyle, d.heading.style, d.heading.computedStyle), rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
101
|
-
...initialContent,
|
|
102
|
-
isHeading: true,
|
|
103
|
-
});
|
|
104
|
-
return;
|
|
105
|
-
}
|
|
106
|
-
else if (d.heading?.html) {
|
|
107
|
-
const text = stripHtml(d.heading.html);
|
|
108
|
-
pushElement(text, mergeStyles(baseStyle, d.heading.style, d.heading.computedStyle), rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
109
|
-
...initialContent,
|
|
110
|
-
isHeading: true,
|
|
111
|
-
});
|
|
112
|
-
return;
|
|
113
|
-
}
|
|
114
|
-
if (Array.isArray(d.list?.items)) {
|
|
115
|
-
const listStyle = mergeStyles(baseStyle, d.list.style, d.list.computedStyle);
|
|
116
|
-
for (const item of d.list.items) {
|
|
117
|
-
if (item?.text) {
|
|
118
|
-
pushElement(stripHtml(item.text), listStyle, rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
119
|
-
...initialContent,
|
|
120
|
-
isListItem: true,
|
|
121
|
-
});
|
|
122
|
-
}
|
|
63
|
+
const sources = [
|
|
64
|
+
{ text: d.paragraph?.html && stripHtml(d.paragraph.html), flags: { isParagraph: true }, style: mergeStyles(baseStyle, d.paragraph?.style, d.paragraph?.computedStyle) },
|
|
65
|
+
{ text: d.button?.label && stripHtml(d.button.label), flags: { isButton: true }, style: mergeStyles(baseStyle, d.button?.style, d.button?.computedStyle) },
|
|
66
|
+
{ text: d.heading?.text && stripHtml(d.heading.text), flags: { isHeading: true }, style: mergeStyles(baseStyle, d.heading?.style, d.heading?.computedStyle) },
|
|
67
|
+
{ text: d.heading?.html && stripHtml(d.heading.html), flags: { isHeading: true }, style: mergeStyles(baseStyle, d.heading?.style, d.heading?.computedStyle) },
|
|
68
|
+
{ text: Array.isArray(d.list?.items) ? d.list.items.map((i) => stripHtml(i.text)).join(' | ') : null, flags: { isListItem: true }, style: mergeStyles(baseStyle, d.list?.style, d.list?.computedStyle) },
|
|
69
|
+
{ text: d.html?.html && stripHtml(d.html.html), flags: { isRawHtml: true }, style: mergeStyles(baseStyle, d.html?.style, d.html?.computedStyle) },
|
|
70
|
+
{ text: d.image?.alt && stripHtml(d.image.alt), flags: { isImageAlt: true }, style: mergeStyles(baseStyle, d.image?.style, d.image?.computedStyle) },
|
|
71
|
+
{ text: d.table?.content?.rows?.map((r) => r.cells?.map((c) => stripHtml(c.html)).join(' | ')).join(' || '), flags: { isTableCell: true }, style: mergeStyles(baseStyle, d.table?.style, d.table?.computedStyle) },
|
|
72
|
+
];
|
|
73
|
+
for (const src of sources) {
|
|
74
|
+
if (src.text) {
|
|
75
|
+
pushElement(src.text, src.style, rowIndex, columnIndex, moduleIndex, totalRows, src.flags);
|
|
76
|
+
break;
|
|
123
77
|
}
|
|
124
|
-
return;
|
|
125
|
-
}
|
|
126
|
-
if (d.html?.html) {
|
|
127
|
-
pushElement(stripHtml(d.html.html), mergeStyles(baseStyle, d.html.style, d.html.computedStyle), rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
128
|
-
...initialContent,
|
|
129
|
-
isRawHtml: true,
|
|
130
|
-
});
|
|
131
|
-
return;
|
|
132
|
-
}
|
|
133
|
-
if (d.image?.alt) {
|
|
134
|
-
pushElement(stripHtml(d.image.alt), mergeStyles(baseStyle, d.image.style, d.image.computedStyle), rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
135
|
-
...initialContent,
|
|
136
|
-
isImageAlt: true,
|
|
137
|
-
});
|
|
138
|
-
return;
|
|
139
|
-
}
|
|
140
|
-
if (d.table?.content?.rows) {
|
|
141
|
-
const tableStyle = mergeStyles(baseStyle, d.table.style, d.table.computedStyle);
|
|
142
|
-
for (const tRow of d.table.content.rows) {
|
|
143
|
-
for (const cell of tRow.cells ?? []) {
|
|
144
|
-
if (cell?.html) {
|
|
145
|
-
pushElement(stripHtml(cell.html), tableStyle, rowIndex, columnIndex, moduleIndex, totalRows, {
|
|
146
|
-
...initialContent,
|
|
147
|
-
isTableCell: true,
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
return;
|
|
153
78
|
}
|
|
154
79
|
};
|
|
155
80
|
const rows = json.page?.rows ?? [];
|
package/src/bee-free.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bee-free.js","sourceRoot":"","sources":["../../../../libs/utils/src/bee-free.ts"],"names":[],"mappings":";;;AAAA,mCAA6B;AAC7B,iDAAuC;AACvC,gEAImC;AAE5B,MAAM,4BAA4B,GAAG,CAC1C,IAAS,EACT,SAAsC,IAAI,EACzB,EAAE;IACnB,MAAM,QAAQ,GAAoB,EAAE,CAAC;IACrC,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,MAAM,
|
|
1
|
+
{"version":3,"file":"bee-free.js","sourceRoot":"","sources":["../../../../libs/utils/src/bee-free.ts"],"names":[],"mappings":"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"}
|