|
2 | 2 | import fs from 'fs';
|
3 | 3 | import NativeModule from 'module';
|
4 | 4 |
|
| 5 | +import querystring from 'querystring'; |
| 6 | + |
5 | 7 | import loaderRunner from 'loader-runner';
|
6 | 8 | import asyncQueue from 'neo-async/queue';
|
| 9 | +import parseJson from 'json-parse-better-errors'; |
| 10 | +import { validate } from 'schema-utils'; |
7 | 11 |
|
8 | 12 | import readBuffer from './readBuffer';
|
9 | 13 | import { replacer, reviver } from './serializer';
|
@@ -158,6 +162,53 @@ const queue = asyncQueue(({ id, data }, taskCallback) => {
|
158 | 162 | });
|
159 | 163 | }
|
160 | 164 | },
|
| 165 | + // Not an arrow function because it uses this |
| 166 | + getOptions(schema) { |
| 167 | + // loaders, loaderIndex will be defined by runLoaders |
| 168 | + const loader = this.loaders[this.loaderIndex]; |
| 169 | + |
| 170 | + // Verbatim copy from |
| 171 | + // https://github.com/webpack/webpack/blob/v5.31.2/lib/NormalModule.js#L471-L508 |
| 172 | + // except eslint/prettier differences |
| 173 | + // -- unfortunate result of getOptions being synchronous functions. |
| 174 | + |
| 175 | + let { options } = loader; |
| 176 | + |
| 177 | + if (typeof options === 'string') { |
| 178 | + if (options.substr(0, 1) === '{' && options.substr(-1) === '}') { |
| 179 | + try { |
| 180 | + options = parseJson(options); |
| 181 | + } catch (e) { |
| 182 | + throw new Error(`Cannot parse string options: ${e.message}`); |
| 183 | + } |
| 184 | + } else { |
| 185 | + options = querystring.parse(options, '&', '=', { |
| 186 | + maxKeys: 0, |
| 187 | + }); |
| 188 | + } |
| 189 | + } |
| 190 | + |
| 191 | + // eslint-disable-next-line no-undefined |
| 192 | + if (options === null || options === undefined) { |
| 193 | + options = {}; |
| 194 | + } |
| 195 | + |
| 196 | + if (schema) { |
| 197 | + let name = 'Loader'; |
| 198 | + let baseDataPath = 'options'; |
| 199 | + let match; |
| 200 | + // eslint-disable-next-line no-cond-assign |
| 201 | + if (schema.title && (match = /^(.+) (.+)$/.exec(schema.title))) { |
| 202 | + [, name, baseDataPath] = match; |
| 203 | + } |
| 204 | + validate(schema, options, { |
| 205 | + name, |
| 206 | + baseDataPath, |
| 207 | + }); |
| 208 | + } |
| 209 | + |
| 210 | + return options; |
| 211 | + }, |
161 | 212 | emitWarning: (warning) => {
|
162 | 213 | writeJson({
|
163 | 214 | type: 'emitWarning',
|
|
0 commit comments