2018-02-13 08:35:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 - present Instructure, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of Canvas.
|
|
|
|
*
|
|
|
|
* Canvas is free software: you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Affero General Public License as published by the Free
|
|
|
|
* Software Foundation, version 3 of the License.
|
|
|
|
*
|
|
|
|
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-04-28 11:43:09 +08:00
|
|
|
|
2021-04-06 07:44:00 +08:00
|
|
|
import I18n from '@canvas/i18n'
|
2021-04-08 01:58:44 +08:00
|
|
|
import 'translations/_core_en'
|
2015-04-02 05:01:43 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
const frames = []
|
2021-04-08 01:58:44 +08:00
|
|
|
const enTranslations = I18n.translations.en
|
2015-04-02 05:01:43 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
export default {
|
|
|
|
pushFrame() {
|
|
|
|
frames.push({
|
|
|
|
locale: I18n.locale,
|
|
|
|
translations: I18n.translations
|
|
|
|
})
|
|
|
|
I18n.locale = null
|
|
|
|
I18n.translations = {en: {}}
|
|
|
|
I18n.fallbacksMap = null
|
|
|
|
},
|
|
|
|
popFrame() {
|
|
|
|
if (!frames.length) throw 'I18nStubber: pop without a stored frame'
|
|
|
|
const {locale, translations} = frames.pop()
|
|
|
|
I18n.locale = locale
|
|
|
|
I18n.translations = translations
|
|
|
|
I18n.fallbacksMap = null
|
|
|
|
},
|
|
|
|
clear() {
|
|
|
|
while (frames.length > 0) this.popFrame()
|
|
|
|
},
|
2021-04-08 01:58:44 +08:00
|
|
|
useInitialTranslations() {
|
|
|
|
this.pushFrame()
|
|
|
|
I18n.locale = 'en'
|
|
|
|
I18n.translations = { en: enTranslations }
|
|
|
|
},
|
2018-02-13 08:35:35 +08:00
|
|
|
stub(locale, translations, cb) {
|
|
|
|
if (cb) {
|
|
|
|
return this.withFrame(() => this.stub(locale, translations), cb)
|
|
|
|
}
|
|
|
|
if (!frames.length) throw 'I18nStubber: stub without a stored frame'
|
2015-04-02 05:01:43 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
I18n.fallbacksMap = null
|
2015-05-22 00:35:40 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
// don't merge into a given locale, just replace everything wholesale
|
|
|
|
if (typeof locale === 'object') {
|
|
|
|
I18n.translations = locale
|
|
|
|
return
|
|
|
|
}
|
2016-05-20 00:04:22 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
let scope = I18n.translations
|
|
|
|
if (!scope[locale]) scope[locale] = {}
|
|
|
|
locale = scope[locale]
|
2016-05-20 00:04:22 +08:00
|
|
|
|
2018-02-13 08:35:35 +08:00
|
|
|
return Object.keys(translations).map(key => {
|
|
|
|
const value = translations[key]
|
|
|
|
scope = locale
|
|
|
|
const parts = key.split('.')
|
|
|
|
const last = parts.pop()
|
|
|
|
parts.forEach(part => {
|
|
|
|
if (!scope[part]) scope[part] = {}
|
|
|
|
scope = scope[part]
|
|
|
|
})
|
|
|
|
return (scope[last] = value)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
setLocale(locale, cb) {
|
|
|
|
if (!frames.length) throw 'I18nStubber: setLocale without a stored frame'
|
|
|
|
return (I18n.locale = locale)
|
|
|
|
},
|
|
|
|
withFrame(...cbs) {
|
|
|
|
this.pushFrame()
|
|
|
|
cbs.forEach(cb => cb())
|
|
|
|
return this.popFrame()
|
|
|
|
}
|
|
|
|
}
|