forked from mrmckeb/typescript-plugin-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
293 lines (258 loc) · 9.41 KB
/
index.ts
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import fs from 'fs';
import path from 'path';
import dotenv from 'dotenv';
import { AcceptedPlugin } from 'postcss';
import postcssrc from 'postcss-load-config';
import type tsModule from 'typescript/lib/tsserverlibrary';
import { Options } from './options';
import { createMatchers } from './helpers/createMatchers';
import { isCSSFn } from './helpers/cssExtensions';
import { getDtsSnapshot } from './helpers/getDtsSnapshot';
import { createLogger } from './helpers/logger';
import { getProcessor } from './helpers/getProcessor';
import { filterPlugins } from './helpers/filterPlugins';
const getPostCssConfigPlugins = (directory: string) => {
try {
return postcssrc.sync({}, directory).plugins;
} catch (error) {
return [];
}
};
const init: tsModule.server.PluginModuleFactory = ({ typescript: ts }) => {
if (process.env.DISABLE_TS_PLUGIN_CSS_MODULES !== undefined) {
return {
create: (info: tsModule.server.PluginCreateInfo) => info.languageService,
};
}
let _isCSS: isCSSFn;
function create(
info: tsModule.server.PluginCreateInfo,
): tsModule.LanguageService {
const logger = createLogger(info);
const directory = info.project.getCurrentDirectory();
const compilerOptions = info.project.getCompilerOptions();
const languageServiceHost = {} as Partial<tsModule.LanguageServiceHost>;
const languageServiceHostProxy = new Proxy(info.languageServiceHost, {
get(target, key: keyof tsModule.LanguageServiceHost) {
return languageServiceHost[key]
? languageServiceHost[key]
: target[key];
},
});
const languageService = ts.createLanguageService(languageServiceHostProxy);
// TypeScript plugins have a `cwd` of `/`, which causes issues with import resolution.
process.chdir(directory);
// User options for plugin.
const options: Options =
(info.config as { options?: Options }).options ?? {};
logger.log(`options: ${JSON.stringify(options)}`);
// Load environment variables like SASS_PATH.
// TODO: Add tests for this option.
const dotenvOptions = options.dotenvOptions;
if (dotenvOptions) {
dotenvOptions.path = path.resolve(
directory,
dotenvOptions.path ?? '.env',
);
}
dotenv.config(dotenvOptions);
// Normalise SASS_PATH array to absolute paths.
if (process.env.SASS_PATH) {
process.env.SASS_PATH = process.env.SASS_PATH.split(path.delimiter)
.map((sassPath) =>
path.isAbsolute(sassPath)
? sassPath
: path.resolve(directory, sassPath),
)
.join(path.delimiter);
}
// Add postCSS config if enabled.
const postcssOptions =
options.postcssOptions ?? options.postCssOptions ?? {};
let userPlugins: AcceptedPlugin[] = [];
if (postcssOptions.useConfig) {
const postcssConfigPlugins = getPostCssConfigPlugins(directory);
userPlugins = filterPlugins({
plugins: postcssConfigPlugins,
exclude: postcssOptions.excludePlugins,
});
}
// If a custom renderer is provided, resolve the path.
if (options.customRenderer) {
if (fs.existsSync(path.resolve(directory, options.customRenderer))) {
options.customRenderer = path.resolve(
directory,
options.customRenderer,
);
} else if (fs.existsSync(require.resolve(options.customRenderer))) {
options.customRenderer = require.resolve(options.customRenderer);
} else {
logger.error(
new Error(
`The file or package for \`customRenderer\` '${options.customRenderer}' could not be resolved.`,
),
);
}
}
// If a custom template is provided, resolve the path.
if (options.customTemplate) {
options.customTemplate = path.resolve(directory, options.customTemplate);
}
// Create PostCSS processor.
const processor = getProcessor(userPlugins);
// Create matchers using options object.
const { isCSS, isRelativeCSS } = createMatchers(logger, options);
_isCSS = isCSS;
languageServiceHost.getScriptKind = (fileName) => {
if (!info.languageServiceHost.getScriptKind) {
return ts.ScriptKind.Unknown;
}
if (isCSS(fileName)) {
return ts.ScriptKind.TS;
}
return info.languageServiceHost.getScriptKind(fileName);
};
languageServiceHost.getScriptSnapshot = (fileName) => {
if (isCSS(fileName) && fs.existsSync(fileName)) {
return getDtsSnapshot(
ts,
processor,
fileName,
options,
logger,
compilerOptions,
directory,
);
}
return info.languageServiceHost.getScriptSnapshot(fileName);
};
const createModuleResolver =
(containingFile: string) =>
(
moduleName: string,
resolveModule: () =>
| tsModule.ResolvedModuleWithFailedLookupLocations
| undefined,
): tsModule.ResolvedModuleFull | undefined => {
if (isRelativeCSS(moduleName)) {
return {
extension: ts.Extension.Dts,
isExternalLibraryImport: false,
resolvedFileName: path.resolve(
path.dirname(containingFile),
moduleName,
),
};
}
if (isCSS(moduleName)) {
// TODO: Move this section to a separate file and add basic tests.
// Attempts to locate the module using TypeScript's previous search paths. These include "baseUrl" and "paths".
const resolvedModule = resolveModule();
if (!resolvedModule) return;
const baseUrl = info.project.getCompilerOptions().baseUrl;
const match = '/index.ts';
// An array of paths TypeScript searched for the module. All include .ts, .tsx, .d.ts, or .json extensions.
// NOTE: TypeScript doesn't expose this in their interfaces, which is why the type is unknown.
// https://github.com/microsoft/TypeScript/issues/28770
const failedLocations: readonly string[] = (
resolvedModule as unknown as {
failedLookupLocations: readonly string[];
}
).failedLookupLocations;
// Filter to only one extension type, and remove that extension. This leaves us with the actual file name.
// Example: "usr/person/project/src/dir/File.module.css/index.d.ts" > "usr/person/project/src/dir/File.module.css"
const normalizedLocations = failedLocations.reduce<string[]>(
(locations, location) => {
if (
(baseUrl ? location.includes(baseUrl) : true) &&
location.endsWith(match)
) {
return [...locations, location.replace(match, '')];
}
return locations;
},
[],
);
// Find the imported CSS module, if it exists.
const cssModulePath = normalizedLocations.find((location) =>
fs.existsSync(location),
);
if (cssModulePath) {
return {
extension: ts.Extension.Dts,
isExternalLibraryImport: false,
resolvedFileName: path.resolve(cssModulePath),
};
}
}
};
// TypeScript 5.x
if (info.languageServiceHost.resolveModuleNameLiterals) {
languageServiceHost.resolveModuleNameLiterals = (
moduleNames,
containingFile,
...rest
) => {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const resolvedModules = info.languageServiceHost
.resolveModuleNameLiterals!(moduleNames, containingFile, ...rest);
const moduleResolver = createModuleResolver(containingFile);
return moduleNames.map(({ text: moduleName }, index) => {
try {
const resolvedModule = moduleResolver(
moduleName,
() => resolvedModules[index],
);
if (resolvedModule) return { resolvedModule };
} catch (e) {
logger.error(e);
return resolvedModules[index];
}
return resolvedModules[index];
});
};
}
// TypeScript 4.x
else if (info.languageServiceHost.resolveModuleNames) {
const _resolveModuleNames =
info.languageServiceHost.resolveModuleNames.bind(
info.languageServiceHost,
);
languageServiceHost.resolveModuleNames = (
moduleNames,
containingFile,
...rest
) => {
const resolvedModules = _resolveModuleNames(
moduleNames,
containingFile,
...rest,
);
const moduleResolver = createModuleResolver(containingFile);
return moduleNames.map((moduleName, index) => {
try {
const resolvedModule = moduleResolver(moduleName, () =>
languageServiceHost.getResolvedModuleWithFailedLookupLocationsFromCache?.(
moduleName,
containingFile,
),
);
if (resolvedModule) return resolvedModule;
} catch (e) {
logger.error(e);
return resolvedModules[index];
}
return resolvedModules[index];
});
};
}
return languageService;
}
function getExternalFiles(
project: tsModule.server.ConfiguredProject,
): string[] {
return project.getFileNames().filter(_isCSS);
}
return { create, getExternalFiles };
};
export = init;