mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
51 lines
2.0 KiB
JavaScript
Executable File
51 lines
2.0 KiB
JavaScript
Executable File
import P from "parsernostrum"
|
|
import Utility from "../Utility.js"
|
|
import Grammar from "../serialization/Grammar.js"
|
|
import IEntity from "./IEntity.js"
|
|
import StringEntity from "./StringEntity.js"
|
|
|
|
export default class LocalizedTextEntity extends IEntity {
|
|
|
|
static attributeSeparator = ", "
|
|
static printKey = k => ""
|
|
static lookbehind = "NSLOCTEXT"
|
|
static attributes = {
|
|
...super.attributes,
|
|
namespace: StringEntity.withDefault(),
|
|
key: StringEntity.withDefault(),
|
|
value: StringEntity.withDefault(),
|
|
}
|
|
static grammar = this.createGrammar()
|
|
|
|
constructor(values = {}) {
|
|
super(values)
|
|
/** @type {InstanceType<typeof LocalizedTextEntity.attributes.namespace>} */ this.namespace
|
|
/** @type {InstanceType<typeof LocalizedTextEntity.attributes.key>} */ this.key
|
|
/** @type {InstanceType<typeof LocalizedTextEntity.attributes.value>} */ this.value
|
|
}
|
|
|
|
/** @returns {P<LocalizedTextEntity>} */
|
|
static createGrammar() {
|
|
return P.regArray(new RegExp(
|
|
String.raw`${LocalizedTextEntity.lookbehind}\s*\(`
|
|
+ String.raw`\s*"(?<namespace>${Grammar.Regex.InsideString.source})"\s*,`
|
|
+ String.raw`\s*"(?<key>${Grammar.Regex.InsideString.source})"\s*,`
|
|
+ String.raw`\s*"(?<value>${Grammar.Regex.InsideString.source})"\s*`
|
|
+ String.raw`(?<trailing>,\s+)?`
|
|
+ String.raw`\)`,
|
|
"m"
|
|
)).map(({ groups: { namespace, key, value, trailing } }) => {
|
|
return new this({
|
|
namespace: new (this.attributes.namespace)(Utility.unescapeString(namespace)),
|
|
key: new (this.attributes.namespace)(Utility.unescapeString(key)),
|
|
value: new (this.attributes.namespace)(Utility.unescapeString(value)),
|
|
trailing: trailing !== undefined,
|
|
})
|
|
}).label("LocalizedTextEntity")
|
|
}
|
|
|
|
toString() {
|
|
return Utility.capitalFirstLetter(this.value.valueOf())
|
|
}
|
|
}
|