-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.ts
More file actions
240 lines (208 loc) · 7.95 KB
/
index.ts
File metadata and controls
240 lines (208 loc) · 7.95 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* eslint-disable */
import { dirname, relative, sep } from "node:path";
import { versions } from "node:process";
import debug from "debug";
import type { MetroConfig } from "metro-config";
import type { CompilerOptions, ReactNativeCssStyleSheet } from "../compiler";
import { compile } from "../compiler/compiler";
import { getNativeInjectionCode, getWebInjectionCode } from "./injection-code";
import { nativeResolver, webResolver } from "./resolver";
import { setupTypeScript } from "./typescript";
export interface WithReactNativeCSSOptions extends CompilerOptions {
/* Specify the path to the TypeScript environment file. Defaults types-env.d.ts */
typescriptEnvPath?: string;
/* Disable generation of the types-env.d.ts file. Defaults false */
disableTypeScriptGeneration?: boolean;
/** Add className to all React Native primitives. Defaults false */
globalClassNamePolyfill?: boolean;
hexColors?: boolean;
}
const defaultLogger = debug("react-native-css:metro");
export function withReactNativeCSS<
T extends MetroConfig | (() => Promise<MetroConfig>),
>(config: T, options?: WithReactNativeCSSOptions): T {
if (typeof config === "function") {
return (async () => {
return withReactNativeCSS(await config(), options);
}) as T;
}
if (Number(versions.node.split(".")[0]) < 20) {
throw new Error("react-native-css only supports NodeJS >20");
}
const {
disableTypeScriptGeneration,
typescriptEnvPath,
globalClassNamePolyfill = false,
logger = defaultLogger,
} = options || {};
const loggerEnabled = "enabled" in logger ? logger.enabled : true;
if (disableTypeScriptGeneration !== true) {
setupTypeScript(typescriptEnvPath);
}
return {
...config,
transformerPath: require.resolve("./metro-transformer"),
transformer: {
...config.transformer,
reactNativeCSS: options,
},
resolver: {
...config.resolver,
sourceExts: [...(config?.resolver?.sourceExts || []), "css"],
resolveRequest: (context, moduleName, platform) => {
if (moduleName.includes("poison.pill")) {
return { type: "empty" };
}
const parentResolver =
config.resolver?.resolveRequest ?? context.resolveRequest;
// Don't hijack the resolution of react-native imports
if (!globalClassNamePolyfill) {
return parentResolver(context, moduleName, platform);
}
const resolver = platform === "web" ? webResolver : nativeResolver;
const resolved = resolver(
parentResolver,
context,
moduleName,
platform,
);
return resolved;
},
},
server: {
...config.server,
enhanceMiddleware(metroMiddleware, metroServer) {
const bundler: any = metroServer.getBundler().getBundler();
if (!bundler.__react_native_css__patched) {
bundler.__react_native_css__patched = true;
const nativeCSSFiles = new Map<
string,
[string, ReactNativeCssStyleSheet]
>();
const webCSSFiles = new Set<string>();
const nativeInjectionPath = require.resolve(
"../runtime/native/metro",
);
const nativeInjectionFilepaths = [
// CommonJS
nativeInjectionPath,
// ES Module
nativeInjectionPath.replace(
`dist${sep}commonjs`,
`dist${sep}module`,
),
// TypeScript
nativeInjectionPath
.replace(`dist${sep}commonjs`, `src`)
.replace(".js", ".ts"),
];
const webInjectionPath = require.resolve("../runtime/web/metro");
const webInjectionFilepaths = [
// CommonJS
webInjectionPath,
// ES Module
webInjectionPath.replace(`dist${sep}commonjs`, `dist${sep}module`),
// TypeScript
webInjectionPath
.replace(`dist${sep}commonjs`, `src`)
.replace(".js", ".ts"),
];
// Keep the original
const transformFile = bundler.transformFile.bind(bundler);
const watcher = bundler.getWatcher();
// Patch with our functionality
bundler.transformFile = async function (
filePath: string,
transformOptions: any,
fileBuffer?: Buffer,
) {
const isCss = /\.(s?css|sass)$/.test(filePath);
if (transformOptions.platform === "web") {
if (isCss) {
webCSSFiles.add(filePath);
} else if (webInjectionFilepaths.includes(filePath)) {
fileBuffer = getWebInjectionCode(Array.from(webCSSFiles));
}
return transformFile(filePath, transformOptions, fileBuffer);
} else {
// Handle CSS files on native platforms
if (isCss) {
const webTransform = await transformFile(
filePath,
{
...transformOptions,
// Force the platform to web for CSS files
platform: "web",
// Let the transformer know that we will handle compilation
customTransformOptions: {
...transformOptions.customTransformOptions,
reactNativeCSS: options,
},
},
fileBuffer,
);
const lastTransform = nativeCSSFiles.get(filePath);
const last = lastTransform?.[0];
const next = webTransform.output[0].data.css.code.toString();
// The CSS file has changed, we need to recompile the injection file
if (next !== last) {
nativeCSSFiles.set(filePath, [
next,
compile(next, {
hexColors: options?.hexColors,
}).stylesheet(),
]);
watcher.emit("change", {
eventsQueue: nativeInjectionFilepaths.map((filePath) => ({
filePath,
metadata: {
modifiedTime: Date.now(),
size: 1, // Can be anything
type: "virtual", // Can be anything
},
type: "change",
})),
});
}
const nativeTransform = await transformFile(
filePath,
transformOptions,
fileBuffer,
);
// Tell Expo to skip caching this file
nativeTransform.output[0].data.css = {
skipCache: true,
// Expo requires a `code` property
code: "",
};
return nativeTransform;
} else if (nativeInjectionFilepaths.includes(filePath)) {
// If this is the injection file, we to swap its content with the
// compiled CSS files
fileBuffer = getNativeInjectionCode(
Array.from(nativeCSSFiles.keys()).map((key) =>
relative(dirname(filePath), key),
),
Array.from(nativeCSSFiles.values()).map(([, value]) => value),
);
if (loggerEnabled && fileBuffer) {
logger(`Transformed ${filePath}`);
logger(fileBuffer?.toString());
}
}
return transformFile(filePath, transformOptions, fileBuffer);
}
};
}
/**
* We don't modify the middleware, we just use this function to get the metroServer
* So simply return the existing middleware
*/
return (
config.server?.enhanceMiddleware?.(metroMiddleware, metroServer) ??
metroMiddleware
);
},
},
};
}