-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathEncoreProxy.js
102 lines (87 loc) · 4.31 KB
/
EncoreProxy.js
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
/*
* This file is part of the Symfony Webpack Encore package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
'use strict';
const chalk = require('chalk');
const levenshtein = require('fast-levenshtein');
const prettyError = require('./utils/pretty-error');
module.exports = {
createProxy: (Encore) => {
const EncoreProxy = new Proxy(Encore, {
get: (target, prop) => {
if (typeof prop !== 'string') {
// Only care about strings there since prop
// could also be a number or a symbol
return target[prop];
}
if (prop === '__esModule') {
// When using Babel to preprocess a webpack.config.babel.js file
// (for instance if we want to use ES6 syntax) the __esModule
// property needs to be whitelisted to avoid an "Unknown property"
// error.
return target[prop];
}
if (typeof target[prop] === 'function') {
// These methods of the public API can be called even if the
// webpackConfig object hasn't been initialized yet.
const safeMethods = [
'configureRuntimeEnvironment',
'clearRuntimeEnvironment',
'isRuntimeEnvironmentConfigured',
];
if (!Encore.isRuntimeEnvironmentConfigured() && !safeMethods.includes(prop)) {
throw new Error(`Encore.${prop}() cannot be called yet because the runtime environment doesn't appear to be configured. Make sure you're using the encore executable or call Encore.configureRuntimeEnvironment() first if you're purposely not calling Encore directly.`);
}
// Either a safe method has been called or the webpackConfig
// object is already available. In this case act as a passthrough.
return (...parameters) => {
try {
const res = target[prop](...parameters);
return (res === target) ? EncoreProxy : res;
} catch (error) {
prettyError(error);
process.exit(1); // eslint-disable-line
}
};
}
if (typeof target[prop] === 'undefined') {
// Find the property with the closest Levenshtein distance
let similarProperty;
let minDistance = Number.MAX_VALUE;
const encorePrototype = Object.getPrototypeOf(Encore);
for (const apiProperty of Object.getOwnPropertyNames(encorePrototype)) {
// Ignore class constructor
if (apiProperty === 'constructor') {
continue;
}
const distance = levenshtein.get(apiProperty, prop);
if (distance <= minDistance) {
similarProperty = apiProperty;
minDistance = distance;
}
}
let errorMessage = `${chalk.red(`Encore.${prop}`)} is not a recognized property or method.`;
if (minDistance < (prop.length / 3)) {
errorMessage += ` Did you mean ${chalk.green(`Encore.${similarProperty}`)}?`;
}
// Prettify the error message.
// Only keep the 2nd line of the stack trace:
// - First line should be the index.js file
// - Second line should be the Webpack config file
prettyError(
new Error(errorMessage),
{ skipTrace: (traceLine, lineNumber) => lineNumber !== 1 }
);
process.exit(1); // eslint-disable-line
}
return target[prop];
}
});
return EncoreProxy;
}
};