bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/settings/service.js

32 lines
940 B
JavaScript
Raw Normal View History

import { getSettingsSingletonInstance } from '/imports/ui/services/settings';
import { notify } from '/imports/ui/services/notification';
2024-05-20 23:02:32 +08:00
import intlHolder from '../../core/singletons/intlHolder';
2017-02-16 02:49:40 +08:00
const isKeepPushingLayoutEnabled = () => window.meetingClientSettings.public.layout.showPushLayoutToggle;
2024-01-30 21:03:11 +08:00
const updateSettings = (obj, msgDescriptor, mutation) => {
const Settings = getSettingsSingletonInstance();
2017-10-11 06:08:51 +08:00
Object.keys(obj).forEach(k => (Settings[k] = obj[k]));
2024-01-30 21:03:11 +08:00
Settings.save(mutation);
if (msgDescriptor) {
// prevents React state update on unmounted component
setTimeout(() => {
2024-05-20 23:02:32 +08:00
const intl = intlHolder.getIntl();
notify(
intl.formatMessage(msgDescriptor),
'info',
'settings',
);
}, 0);
}
};
const getAvailableLocales = () => fetch('./locale-list').then(locales => locales.json());
2017-04-06 20:36:59 +08:00
2017-02-16 02:49:40 +08:00
export {
2017-03-29 02:41:48 +08:00
updateSettings,
isKeepPushingLayoutEnabled,
2017-04-06 20:36:59 +08:00
getAvailableLocales,
2017-02-16 02:49:40 +08:00
};