|
|
@ -198,7 +198,8 @@ export default definePlugin({
|
|
|
|
replacement: [
|
|
|
|
replacement: [
|
|
|
|
// make the tag show the right text
|
|
|
|
// make the tag show the right text
|
|
|
|
{
|
|
|
|
{
|
|
|
|
match: /(switch\((\i)\){.+?)case (\i(?:\.\i)?)\.BOT:default:(\i)=.{0,40}(\i\.\i\.Messages)\.BOT_TAG_BOT/,
|
|
|
|
// FIXME: Remove the BOT_TAG_BOT variant when the change arrives in stable
|
|
|
|
|
|
|
|
match: /(switch\((\i)\){.+?)case (\i(?:\.\i)?)\.BOT:default:(\i)=.{0,40}(\i\.\i\.Messages)\.(?:APP_TAG|BOT_TAG_BOT)/,
|
|
|
|
replace: (_, origSwitch, variant, tags, displayedText, strings) =>
|
|
|
|
replace: (_, origSwitch, variant, tags, displayedText, strings) =>
|
|
|
|
`${origSwitch}default:{${displayedText} = $self.getTagText(${tags}[${variant}], ${strings})}`
|
|
|
|
`${origSwitch}default:{${displayedText} = $self.getTagText(${tags}[${variant}], ${strings})}`
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -321,19 +322,20 @@ export default definePlugin({
|
|
|
|
|
|
|
|
|
|
|
|
isOPTag: (tag: number) => tag === Tag.Types.ORIGINAL_POSTER || tags.some(t => tag === Tag.Types[`${t.name}-OP`]),
|
|
|
|
isOPTag: (tag: number) => tag === Tag.Types.ORIGINAL_POSTER || tags.some(t => tag === Tag.Types[`${t.name}-OP`]),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME: Remove the BOT_TAG_BOT variants from strings when the change arrives in stable
|
|
|
|
getTagText(passedTagName: string, strings: Record<string, string>) {
|
|
|
|
getTagText(passedTagName: string, strings: Record<string, string>) {
|
|
|
|
if (!passedTagName) return strings.BOT_TAG_BOT;
|
|
|
|
if (!passedTagName) return strings.APP_TAG ?? strings.BOT_TAG_BOT;
|
|
|
|
const [tagName, variant] = passedTagName.split("-");
|
|
|
|
const [tagName, variant] = passedTagName.split("-");
|
|
|
|
const tag = tags.find(({ name }) => tagName === name);
|
|
|
|
const tag = tags.find(({ name }) => tagName === name);
|
|
|
|
if (!tag) return strings.BOT_TAG_BOT;
|
|
|
|
if (!tag) return strings.APP_TAG ?? strings.BOT_TAG_BOT;
|
|
|
|
if (variant === "BOT" && tagName !== "WEBHOOK" && this.settings.store.dontShowForBots) return strings.BOT_TAG_BOT;
|
|
|
|
if (variant === "BOT" && tagName !== "WEBHOOK" && this.settings.store.dontShowForBots) return strings.APP_TAG ?? strings.BOT_TAG_BOT;
|
|
|
|
|
|
|
|
|
|
|
|
const tagText = settings.store.tagSettings?.[tag.name]?.text || tag.displayName;
|
|
|
|
const tagText = settings.store.tagSettings?.[tag.name]?.text || tag.displayName;
|
|
|
|
switch (variant) {
|
|
|
|
switch (variant) {
|
|
|
|
case "OP":
|
|
|
|
case "OP":
|
|
|
|
return `${strings.BOT_TAG_FORUM_ORIGINAL_POSTER} • ${tagText}`;
|
|
|
|
return `${strings.BOT_TAG_FORUM_ORIGINAL_POSTER} • ${tagText}`;
|
|
|
|
case "BOT":
|
|
|
|
case "BOT":
|
|
|
|
return `${strings.BOT_TAG_BOT} • ${tagText}`;
|
|
|
|
return `${strings.APP_TAG ?? strings.BOT_TAG_BOT} • ${tagText}`;
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
return tagText;
|
|
|
|
return tagText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|