2023-03-29 17:21:20 +02:00
|
|
|
import Combine from "../../Base/Combine"
|
|
|
|
import Wikidata from "../../../Logic/Web/Wikidata"
|
|
|
|
import { UIEventSource } from "../../../Logic/UIEventSource"
|
|
|
|
import Locale from "../../i18n/Locale"
|
|
|
|
import { Utils } from "../../../Utils"
|
|
|
|
import WikidataSearchBox from "../../Wikipedia/WikidataSearchBox"
|
2023-03-29 17:56:42 +02:00
|
|
|
import { Validator } from "../Validator"
|
2023-03-29 17:21:20 +02:00
|
|
|
|
|
|
|
export default class WikidataValidator extends Validator {
|
|
|
|
constructor() {
|
2023-04-16 03:42:26 +02:00
|
|
|
super("wikidata", new Combine(["A wikidata identifier, e.g. Q42.", WikidataSearchBox.docs]))
|
2023-03-29 17:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public isValid(str): boolean {
|
|
|
|
if (str === undefined) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (str.length <= 2) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return !str.split(";").some((str) => Wikidata.ExtractKey(str) === undefined)
|
|
|
|
}
|
|
|
|
|
|
|
|
public reformat(str) {
|
|
|
|
if (str === undefined) {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
let out = str
|
|
|
|
.split(";")
|
|
|
|
.map((str) => Wikidata.ExtractKey(str))
|
|
|
|
.join("; ")
|
|
|
|
if (str.endsWith(";")) {
|
|
|
|
out = out + ";"
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
}
|