【发布时间】:2021-08-13 14:42:16
【问题描述】:
我实际上是在尝试将一些 Javascript 代码转换为 Typescript,但我在以下功能上遇到了问题。它的目的是解析一些内容(从 JSON.parse() 构建的嵌套对象),当被调用时,例如:t('common.error')。
const i18nContent = {
common: {
error: {
missing_translation: 'Missing translation',
missing_posts: 'Some articles are not available in this language',
},
languages_available: 'This article is available in other languages'
}
const t = (key) => {
const kArray = key.split('.')
// Parsing possibly nested object
const keyValue = kArray.reduce((o, k) => ((o && o[k] !== 'undefined') ? o[k] : undefined), i18nContent)
return keyValue || key
}
我尝试了这种方法,这似乎可行,但对我来说似乎很丑...:/
type I18nContent = Record<string, unknown> // Content value could be a string, or a nested object
type I18n = Record<string, I18nContent> // API always returns an object with namespace as key, and object (possibly nested) as value
const i18nContent: I18n = {
common: {
error: {
missing_translation: 'Missing translation',
missing_posts: 'Some articles are not available in this language'
},
languages_available: 'This article is available in other languages'
}
}
const t = (key: string): string => {
const kArray = key.split('.')
const keyValue = kArray.reduce((o: unknown, k: string) => {
if (o && typeof o === 'object' && Object.keys(o).length && o[k as keyof typeof o] !== 'undefined') {
return o[k as keyof typeof o]
} else {
return undefined
}
}, i18nContent)
return typeof keyValue === 'string' ? keyValue : key
}
我对 Typescript 还是很陌生,所以我很乐意收到一些反馈,也许是关于这个 refato 的建议?
提前致谢!
【问题讨论】:
-
reduce谓词返回值的类型应与acc的类型匹配(第二个参数)
标签: typescript reduce nested-object