|
@@ -2,7 +2,8 @@ import { get, isNil } from 'lodash-es';
|
|
|
|
|
|
/** 根据配置中的 formatter 将文本格式并返回 */
|
|
|
export function getFormattedText(data: any, formatter: string, trans?: Record<string, string>, defaultValue?: any): string {
|
|
|
- if (!data) return formatter;
|
|
|
+ const defval = defaultValue === undefined ? '-' : defaultValue;
|
|
|
+ if (!data) return defval;
|
|
|
|
|
|
// e.g. 'pre${prop[0].name}suf' => ['pre${prop[0].name}suf', 'prop[0].name']
|
|
|
const exp = /\$\{([\w|\.|\[|\]]*)\}/g;
|
|
@@ -12,7 +13,6 @@ export function getFormattedText(data: any, formatter: string, trans?: Record<st
|
|
|
if (!res) return formatter;
|
|
|
|
|
|
const [__, prop] = res;
|
|
|
- const val = defaultValue === undefined ? '-' : defaultValue;
|
|
|
const txt = get(data, prop);
|
|
|
|
|
|
// 如果指明了需要进行翻译,那么根据 txt 的值查找翻译内容,必要时进行二次翻译
|
|
@@ -21,9 +21,9 @@ export function getFormattedText(data: any, formatter: string, trans?: Record<st
|
|
|
// 如果查不出翻译内容则返回原本的值
|
|
|
if (translated === undefined) return txt;
|
|
|
const result = getFormattedText(data, translated);
|
|
|
- return formatter.replace(exp, isNil(result) ? val : result);
|
|
|
+ return formatter.replace(exp, isNil(result) ? defval : result);
|
|
|
}
|
|
|
- return formatter.replace(exp, isNil(txt) ? val : txt);
|
|
|
+ return formatter.replace(exp, isNil(txt) ? defval : txt);
|
|
|
}
|
|
|
|
|
|
/** 获取 formatter 需要取的源 prop,用于在一些不支持 formatter 的组件中使用 */
|