64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import { getSettingsSingletonInstance } from '/imports/ui/services/settings';
|
|
import { notify } from '/imports/ui/services/notification';
|
|
import intlHolder from '../../core/singletons/intlHolder';
|
|
|
|
const isKeepPushingLayoutEnabled = () => window.meetingClientSettings.public.layout.showPushLayoutToggle;
|
|
|
|
const updateSettings = (obj, msgDescriptor, mutation) => {
|
|
const Settings = getSettingsSingletonInstance();
|
|
Object.keys(obj).forEach(k => (Settings[k] = obj[k]));
|
|
Settings.save(mutation);
|
|
|
|
if (msgDescriptor) {
|
|
// prevents React state update on unmounted component
|
|
setTimeout(() => {
|
|
const intl = intlHolder.getIntl();
|
|
notify(
|
|
intl.formatMessage(msgDescriptor),
|
|
'info',
|
|
'settings',
|
|
);
|
|
}, 0);
|
|
}
|
|
};
|
|
|
|
const getAvailableLocales = () => fetch('./locales/').then(locales => locales.json());
|
|
|
|
const FALLBACK_LOCALES = {
|
|
dv: {
|
|
englishName: 'Dhivehi',
|
|
nativeName: 'ދިވެހި',
|
|
},
|
|
hy: {
|
|
englishName: 'Armenian',
|
|
nativeName: 'Հայերեն',
|
|
},
|
|
ka: {
|
|
englishName: 'Georgian',
|
|
nativeName: 'ქართული',
|
|
},
|
|
kk: {
|
|
englishName: 'Kazakh',
|
|
nativeName: 'қазақ',
|
|
},
|
|
'lo-LA': {
|
|
englishName: 'Lao',
|
|
nativeName: 'ລາວ',
|
|
},
|
|
oc: {
|
|
englishName: 'Occitan',
|
|
nativeName: 'Occitan',
|
|
},
|
|
'uz@Cyrl': {
|
|
englishName: 'Uzbek (Cyrillic)',
|
|
nativeName: 'ўзбек тили',
|
|
},
|
|
};
|
|
|
|
export {
|
|
updateSettings,
|
|
isKeepPushingLayoutEnabled,
|
|
getAvailableLocales,
|
|
FALLBACK_LOCALES,
|
|
};
|