'f'
mh-two-thousand-and-two
2024-04-12 26f2711ef9461961fb953e2b497bd314ef95e345
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
import { normalizeLocale, LOCALE_EN } from '../helpers/i18n/index'
import { isFn } from 'uni-shared'
 
export function getLocale () {
  // 优先使用 $locale
  if (isFn(getApp)) {
    const app = getApp({
      allowDefault: true
    })
    if (app && app.$vm) {
      return app.$vm.$locale
    }
  }
  return normalizeLocale(__GLOBAL__.getSystemInfoSync().language) || LOCALE_EN
}
 
export function setLocale (locale) {
  const app = isFn(getApp) ? getApp() : false
  if (!app) {
    return false
  }
  const oldLocale = app.$vm.$locale
  if (oldLocale !== locale) {
    app.$vm.$locale = locale
    onLocaleChangeCallbacks.forEach((fn) => fn({
      locale
    }))
    return true
  }
  return false
}
 
const onLocaleChangeCallbacks = []
export function onLocaleChange (fn) {
  if (onLocaleChangeCallbacks.indexOf(fn) === -1) {
    onLocaleChangeCallbacks.push(fn)
  }
}
 
if (typeof global !== 'undefined') {
  global.getLocale = getLocale
}