import React, { Component, Fragment } from 'react'; import PropTypes from 'prop-types'; import { withNamespaces } from 'react-i18next'; import Services from './Services'; import StatsConfig from './StatsConfig'; import LogsConfig from './LogsConfig'; import FiltersConfig from './FiltersConfig'; import Checkbox from '../ui/Checkbox'; import Loading from '../ui/Loading'; import PageTitle from '../ui/PageTitle'; import Card from '../ui/Card'; import './Settings.css'; class Settings extends Component { settings = { safebrowsing: { enabled: false, title: 'use_adguard_browsing_sec', subtitle: 'use_adguard_browsing_sec_hint', }, parental: { enabled: false, title: 'use_adguard_parental', subtitle: 'use_adguard_parental_hint', }, safesearch: { enabled: false, title: 'enforce_safe_search', subtitle: 'enforce_save_search_hint', }, }; componentDidMount() { this.props.initSettings(this.settings); this.props.getBlockedServices(); this.props.getStatsConfig(); this.props.getLogsConfig(); this.props.getFilteringStatus(); } renderSettings = (settings) => { const settingsKeys = Object.keys(settings); if (settingsKeys.length > 0) { return settingsKeys.map((key) => { const setting = settings[key]; const { enabled } = setting; return ( this.props.toggleSetting(key, enabled)} /> ); }); } return ''; }; render() { const { settings, services, setBlockedServices, setStatsConfig, resetStats, stats, queryLogs, setLogsConfig, clearLogs, filtering, setFiltersConfig, t, } = this.props; const isDataReady = !settings.processing && !services.processing && !stats.processingGetConfig && !queryLogs.processingGetConfig; return ( {!isDataReady && } {isDataReady && (
{this.renderSettings(settings.settingsList)}
)}
); } } Settings.propTypes = { initSettings: PropTypes.func.isRequired, settings: PropTypes.object.isRequired, toggleSetting: PropTypes.func.isRequired, getStatsConfig: PropTypes.func.isRequired, setStatsConfig: PropTypes.func.isRequired, resetStats: PropTypes.func.isRequired, setFiltersConfig: PropTypes.func.isRequired, getFilteringStatus: PropTypes.func.isRequired, t: PropTypes.func.isRequired, }; export default withNamespaces()(Settings);