Sharkey/webpack/loaders/replace.js

23 lines
770 B
JavaScript
Raw Normal View History

2018-05-17 12:18:45 +03:00
import { getOptions } from 'loader-utils';
2018-02-15 19:53:54 +02:00
2018-02-18 08:27:06 +02:00
function trim(text, g) {
return text.substring(1, text.length - (g ? 2 : 0));
2018-02-15 19:53:54 +02:00
}
2018-05-17 12:18:45 +03:00
export default function(src) {
2018-02-15 19:53:54 +02:00
this.cacheable();
2018-05-17 12:18:45 +03:00
const options = getOptions(this);
2018-02-15 20:23:10 +02:00
const search = options.search;
2018-02-18 08:27:06 +02:00
const g = search[search.length - 1] == 'g';
2018-04-14 19:04:40 +03:00
const file = this.resourcePath.replace(/\\/g, '/');
2018-04-14 20:51:29 +03:00
const replace = options.i18n ? global[options.replace].bind(null, {
2018-04-15 00:16:50 +03:00
src: file,
lang: options.lang
2018-04-14 20:51:29 +03:00
}) : global[options.replace];
2018-02-15 20:23:10 +02:00
if (typeof search != 'string' || search.length == 0) console.error('invalid search');
if (typeof replace != 'function') console.error('invalid replacer:', replace, this.request);
2018-02-18 08:27:06 +02:00
src = src.replace(new RegExp(trim(search, g), g ? 'g' : ''), replace);
2018-02-15 19:53:54 +02:00
this.callback(null, src);
return src;
2018-05-17 12:18:45 +03:00
}