Ben Lin
2024-06-27 1e4b207c532a50651a3e9d1e79db221542eb30eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * @Description: file content
 * @Author: Ben Lin
 * @version:
 * @Date: 2024-06-18 15:09:47
 * @LastEditors: Ben Lin
 * @LastEditTime: 2024-06-18 16:12:57
 */
import { i18n } from '@/locales/setupI18n';
import { isObject, isString } from '/@/utils/is';
 
type I18nGlobalTranslation = {
  (key: string): string;
  (key: string, locale: string): string;
  (key: string, locale: string, list: unknown[]): string;
  (key: string, locale: string, named: Record<string, unknown>): string;
  (key: string, list: unknown[]): string;
  (key: string, named: Record<string, unknown>): string;
};
 
type TigerLocale = { Key: string; Args: unknown[] };
type I18nTranslationRestParameters = [string, any];
 
function getKey(namespace: string | undefined, key: string) {
  if (!namespace) {
    return key;
  }
  if (key.startsWith(namespace)) {
    return key;
  }
  return `${namespace}.${key}`;
}
 
export function useI18n(namespace?: string): {
  t: I18nGlobalTranslation;
} {
  const normalFn = {
    t: (key: string | TigerLocale) => {
      if (isString(key)) {
        return getKey(namespace, key);
      } else if (isObject(key)) {
        if (!key) return '';
        if (!key.Key) return '';
        return getKey(namespace, key.Key);
      } else {
        return key;
      }
    },
  };
 
  if (!i18n) {
    return normalFn;
  }
 
  const { t, ...methods } = i18n.global;
 
  const tFn: I18nGlobalTranslation = (key: string | TigerLocale, ...arg: any[]) => {
    if (isString(key)){
      if (!key) return '';
      if (!key.includes('.') && !namespace) return key;
  
      return (t as (arg0: string, ...arg: I18nTranslationRestParameters) => string)(
        getKey(namespace, key),
        ...(arg as I18nTranslationRestParameters),
      );}else if (isObject(key)) {
        if (!key) return '';
        if (!key.Key) return '';
        return t(getKey(namespace, key.Key), key.Args);
      }
  };
  return {
    ...methods,
    t: tFn,
  };
}
 
// Why write this function?
// Mainly to configure the vscode i18nn ally plugin. This function is only used for routing and menus. Please use useI18n for other places
 
// 为什么要编写此函数?
// 主要用于配合vscode i18nn ally插件。此功能仅用于路由和菜单。请在其他地方使用useI18n
export const t = (key: string) => key;