-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathwebpack.helpers.js
More file actions
162 lines (152 loc) · 4.45 KB
/
webpack.helpers.js
File metadata and controls
162 lines (152 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
const postCssLoader = {
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: (loader) => [
require('postcss-import')({ root: loader.resourcePath }),
require('postcss-preset-env')({
features: {
'logical-properties-and-values': false, // ⛔ disable polyfill!
},
}),
require('cssnano')(),
],
},
};
const postCssLoaderTheme = {
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: (loader) => [
require('postcss-import')({ root: loader.resourcePath }),
require('postcss-preset-env')({
features: {
'logical-properties-and-values': false, // ⛔ disable polyfill!
},
}),
// Add :host alongside :root for shadow DOM compatibility (works for both iframe and web component)
require('postcss').plugin('postcss-add-host', () => {
return (root) => {
root.walkRules((rule) => {
if (/^:root\b/.test(rule.selector)) {
// Clone the rule and change selector to :host
const clonedRule = rule.clone();
clonedRule.selector = rule.selector.replace(/^:root\b/gm, ':host');
// Insert the :host version after the :root version
rule.parent.insertAfter(rule, clonedRule);
}
});
};
}),
require('cssnano')(),
],
},
};
const styleLoaderInsertFunction = function(styleTag) {
function findNestedWebComponents(tagName, root = document) {
const elements = [];
// Check direct children
root.querySelectorAll(tagName).forEach((el) => elements.push(el));
// Check shadow DOMs
root.querySelectorAll('*').forEach((el) => {
if (el.shadowRoot) {
elements.push(...findNestedWebComponents(tagName, el.shadowRoot));
}
});
return elements;
}
// If its the iframe we just append to the document head
if (!window.isApryseWebViewerWebComponent) {
document.head.appendChild(styleTag);
return;
}
let webComponents;
// First we see if the webcomponent is at the document level
webComponents = document.getElementsByTagName('apryse-webviewer');
// If not, we check have to check if it is nested in another webcomponent
if (!webComponents.length) {
webComponents = findNestedWebComponents('apryse-webviewer');
}
// Now we append the style tag to each webcomponent
const clonedStyleTags = [];
for (let i = 0; i < webComponents.length; i++) {
const webComponent = webComponents[i];
if (i === 0) {
webComponent.shadowRoot.appendChild(styleTag);
styleTag.onload = function() {
if (clonedStyleTags.length > 0) {
clonedStyleTags.forEach((styleNode) => {
// eslint-disable-next-line no-unsanitized/property
styleNode.innerHTML = styleTag.innerHTML;
});
}
};
} else {
const styleNode = styleTag.cloneNode(true);
webComponent.shadowRoot.appendChild(styleNode);
clonedStyleTags.push(styleNode);
}
}
};
const styleLoaderOptions = {
insert: styleLoaderInsertFunction,
};
const createDevThemeRule = (resourceQuery, dataTheme, stylesheet, pathModule) => {
return {
resourceQuery: resourceQuery,
use: [
{
loader: 'style-loader',
options: {
...styleLoaderOptions,
attributes: {
'data-theme': dataTheme,
},
},
},
'css-loader',
postCssLoaderTheme,
{
loader: 'sass-loader',
options: {
data: (loader) => {
const fileName = pathModule.basename(loader.resourcePath);
if (fileName === 'App.scss') {
return `@import '../../constants/${stylesheet}';`;
}
return '';
}
},
},
],
};
};
const createProdThemeRule = (resourceQuery, stylesheet, MiniCssExtractPlugin, pathModule) => {
return {
resourceQuery: resourceQuery,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
postCssLoaderTheme,
{
loader: 'sass-loader',
options: {
data: (loader) => {
const fileName = pathModule.basename(loader.resourcePath);
if (fileName === 'App.scss') {
return `@import '../../constants/${stylesheet}';`;
}
return '';
}
},
},
],
};
};
module.exports = {
postCssLoader,
postCssLoaderTheme,
styleLoaderOptions,
createDevThemeRule,
createProdThemeRule,
};