chore: fix type issues

pull/3206/head
Ryan Miller 7 months ago
parent a7c1693532
commit 7ac1a37cb2

@ -1272,6 +1272,7 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
this.getConversation()?.getNicknameOrRealUsernameOrPlaceholder() || window.i18n('unknown');
if (groupUpdate.left) {
// @ts-expect-error -- TODO: Fix by using new i18n builder
const { token, args } = getLeftGroupUpdateChangeStr(groupUpdate.left, groupName);
// TODO: clean up this typing
return window.i18n.stripped(...([token, args] as GetMessageArgs<LocalizerToken>));
@ -1282,12 +1283,14 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
}
if (groupUpdate.joined?.length) {
// @ts-expect-error -- TODO: Fix by using new i18n builder
const { token, args } = getJoinedGroupUpdateChangeStr(groupUpdate.joined, groupName);
// TODO: clean up this typing
return window.i18n.stripped(...([token, args] as GetMessageArgs<LocalizerToken>));
}
if (groupUpdate.kicked?.length) {
// @ts-expect-error -- TODO: Fix by using new i18n builder
const { token, args } = getKickedGroupUpdateStr(groupUpdate.kicked, groupName);
// TODO: clean up this typing
return window.i18n.stripped(...([token, args] as GetMessageArgs<LocalizerToken>));

@ -4,8 +4,6 @@ import type {
LocalizerToken,
LocalizerDictionary,
GetMessageArgs,
ArgsRecord,
DictionaryWithoutPluralStrings,
SetupI18nReturnType,
} from '../../../types/Localizer';
import { i18nLog } from '../shared';
@ -15,16 +13,16 @@ import { inEnglish } from './inEnglish';
import { stripped } from './stripped';
import { localizeFromOld, type StringArgsRecord } from '../localizedString';
/**
* Checks if a string contains a dynamic variable.
* @param localizedString - The string to check.
* @returns `true` if the string contains a dynamic variable, otherwise `false`.
*
* TODO: Change this to a proper type assertion when the type is fixed.
*/
const isStringWithArgs = <R extends DictionaryWithoutPluralStrings[LocalizerToken]>(
localizedString: string
): localizedString is R => localizedString.includes('{');
// /**
// * Checks if a string contains a dynamic variable.
// * @param localizedString - The string to check.
// * @returns `true` if the string contains a dynamic variable, otherwise `false`.
// *
// * TODO: Change this to a proper type assertion when the type is fixed.
// */
// const isStringWithArgs = <R extends DictionaryWithoutPluralStrings[LocalizerToken]>(
// localizedString: string
// ): localizedString is R => localizedString.includes('{');
/**
* Retrieves a localized message string, substituting variables where necessary.

Loading…
Cancel
Save