woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
42 lines • 1.78 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const Compiler_1 = require("../Compiler");
const LocalizationFileCompiler_1 = require("./LocalizationFileCompiler");
/**
* Provides the functionality to compile localization-sets.
*/
class LocalizationSetCompiler extends Compiler_1.Compiler {
/**
* Initializes a new instance of the `LocalizationSetCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item) {
super(item);
}
/**
* @inheritdoc
*/
Compile() {
return __awaiter(this, void 0, void 0, function* () {
let tasks = [];
for (let locale in this.Item) {
let compiler = new LocalizationFileCompiler_1.LocalizationFileCompiler([locale, this.Item[locale]]);
compiler.DestinationPath = this.MakeDestinationPath(`${locale}.xml`);
tasks.push(compiler.Execute());
}
yield Promise.all(tasks);
});
}
}
exports.LocalizationSetCompiler = LocalizationSetCompiler;
//# sourceMappingURL=LocalizationSetCompiler.js.map