2021-06-19 02:32:46 +08:00
|
|
|
import React, { useContext } from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2017-03-29 02:41:48 +08:00
|
|
|
import SettingsService from '/imports/ui/services/settings';
|
2018-01-08 12:44:42 +08:00
|
|
|
import Settings from './component';
|
2021-08-05 19:03:24 +08:00
|
|
|
import LayoutContext from '../layout/context';
|
2017-03-29 02:41:48 +08:00
|
|
|
|
2017-02-25 04:19:53 +08:00
|
|
|
import {
|
2018-01-08 12:44:42 +08:00
|
|
|
getUserRoles,
|
2021-05-30 23:09:33 +08:00
|
|
|
showGuestNotification,
|
2018-01-08 12:44:42 +08:00
|
|
|
updateSettings,
|
|
|
|
getAvailableLocales,
|
|
|
|
} from './service';
|
2016-12-21 02:06:01 +08:00
|
|
|
|
2021-08-09 22:24:02 +08:00
|
|
|
const SettingsContainer = (props) => {
|
2021-08-05 19:03:24 +08:00
|
|
|
const layoutContext = useContext(LayoutContext);
|
|
|
|
const { layoutContextDispatch } = layoutContext;
|
2021-06-19 02:32:46 +08:00
|
|
|
|
2021-08-09 22:24:02 +08:00
|
|
|
return <Settings {...props} layoutContextDispatch={layoutContextDispatch} />;
|
2021-06-19 02:32:46 +08:00
|
|
|
};
|
2016-12-23 09:48:19 +08:00
|
|
|
|
2018-10-04 00:14:10 +08:00
|
|
|
export default withTracker(() => ({
|
2017-06-03 03:25:02 +08:00
|
|
|
audio: SettingsService.audio,
|
2018-02-06 21:33:48 +08:00
|
|
|
dataSaving: SettingsService.dataSaving,
|
2017-06-03 03:25:02 +08:00
|
|
|
application: SettingsService.application,
|
|
|
|
updateSettings,
|
|
|
|
availableLocales: getAvailableLocales(),
|
|
|
|
isModerator: getUserRoles() === 'MODERATOR',
|
2021-05-30 23:09:33 +08:00
|
|
|
showGuestNotification: showGuestNotification(),
|
2021-05-01 03:06:28 +08:00
|
|
|
showToggleLabel: false,
|
2018-10-04 00:14:10 +08:00
|
|
|
}))(SettingsContainer);
|