You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.7 KiB
93 lines
2.7 KiB
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.raw = undefined;
|
|
exports.default = loader;
|
|
|
|
var _path = require('path');
|
|
|
|
var _path2 = _interopRequireDefault(_path);
|
|
|
|
var _loaderUtils = require('loader-utils');
|
|
|
|
var _loaderUtils2 = _interopRequireDefault(_loaderUtils);
|
|
|
|
var _schemaUtils = require('schema-utils');
|
|
|
|
var _schemaUtils2 = _interopRequireDefault(_schemaUtils);
|
|
|
|
var _options = require('./options.json');
|
|
|
|
var _options2 = _interopRequireDefault(_options);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
/* eslint-disable
|
|
multiline-ternary,
|
|
*/
|
|
function loader(content) {
|
|
if (!this.emitFile) throw new Error('File Loader\n\nemitFile is required from module system');
|
|
|
|
const options = _loaderUtils2.default.getOptions(this) || {};
|
|
|
|
(0, _schemaUtils2.default)(_options2.default, options, 'File Loader');
|
|
|
|
const context = options.context || this.rootContext || this.options && this.options.context;
|
|
|
|
const url = _loaderUtils2.default.interpolateName(this, options.name, {
|
|
context,
|
|
content,
|
|
regExp: options.regExp
|
|
});
|
|
|
|
let outputPath = url;
|
|
|
|
if (options.outputPath) {
|
|
if (typeof options.outputPath === 'function') {
|
|
outputPath = options.outputPath(url);
|
|
} else {
|
|
outputPath = _path2.default.posix.join(options.outputPath, url);
|
|
}
|
|
}
|
|
|
|
if (options.useRelativePath) {
|
|
const filePath = this.resourcePath;
|
|
|
|
const issuer = options.context ? context : this._module && this._module.issuer && this._module.issuer.context;
|
|
|
|
const relativeUrl = issuer && _path2.default.relative(issuer, filePath).split(_path2.default.sep).join('/');
|
|
|
|
const relativePath = relativeUrl && `${_path2.default.dirname(relativeUrl)}/`;
|
|
// eslint-disable-next-line no-bitwise
|
|
if (~relativePath.indexOf('../')) {
|
|
outputPath = _path2.default.posix.join(outputPath, relativePath, url);
|
|
} else {
|
|
outputPath = _path2.default.posix.join(relativePath, url);
|
|
}
|
|
}
|
|
|
|
let publicPath = `__webpack_public_path__ + ${JSON.stringify(outputPath)}`;
|
|
|
|
if (options.publicPath) {
|
|
if (typeof options.publicPath === 'function') {
|
|
publicPath = options.publicPath(url);
|
|
} else if (options.publicPath.endsWith('/')) {
|
|
publicPath = options.publicPath + url;
|
|
} else {
|
|
publicPath = `${options.publicPath}/${url}`;
|
|
}
|
|
|
|
publicPath = JSON.stringify(publicPath);
|
|
}
|
|
|
|
// eslint-disable-next-line no-undefined
|
|
if (options.emitFile === undefined || options.emitFile) {
|
|
this.emitFile(outputPath, content);
|
|
}
|
|
// TODO revert to ES2015 Module export, when new CSS Pipeline is in place
|
|
return `module.exports = ${publicPath};`;
|
|
}
|
|
|
|
const raw = exports.raw = true; |