112 lines
3.2 KiB
JavaScript
112 lines
3.2 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import createSettingsSectionSelector from 'Store/Selectors/createSettingsSectionSelector';
|
|
import createCommandExecutingSelector from 'Store/Selectors/createCommandExecutingSelector';
|
|
import createSystemStatusSelector from 'Store/Selectors/createSystemStatusSelector';
|
|
import { setGeneralSettingsValue, saveGeneralSettings, fetchGeneralSettings } from 'Store/Actions/settingsActions';
|
|
import { clearPendingChanges } from 'Store/Actions/baseActions';
|
|
import { executeCommand } from 'Store/Actions/commandActions';
|
|
import { restart } from 'Store/Actions/systemActions';
|
|
import * as commandNames from 'Commands/commandNames';
|
|
import GeneralSettings from './GeneralSettings';
|
|
|
|
const SECTION = 'general';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.settings.advancedSettings,
|
|
createSettingsSectionSelector(SECTION),
|
|
createCommandExecutingSelector(commandNames.RESET_API_KEY),
|
|
createSystemStatusSelector(),
|
|
(advancedSettings, sectionSettings, isResettingApiKey, systemStatus) => {
|
|
return {
|
|
advancedSettings,
|
|
isResettingApiKey,
|
|
isMono: systemStatus.isMono,
|
|
isWindows: systemStatus.isWindows,
|
|
isWindowsService: systemStatus.isWindows && systemStatus.mode === 'service',
|
|
mode: systemStatus.mode,
|
|
packageUpdateMechanism: systemStatus.packageUpdateMechanism,
|
|
...sectionSettings
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
setGeneralSettingsValue,
|
|
saveGeneralSettings,
|
|
fetchGeneralSettings,
|
|
executeCommand,
|
|
restart,
|
|
clearPendingChanges
|
|
};
|
|
|
|
class GeneralSettingsConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount() {
|
|
this.props.fetchGeneralSettings();
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (!this.props.isResettingApiKey && prevProps.isResettingApiKey) {
|
|
this.props.fetchGeneralSettings();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.props.clearPendingChanges({ section: `settings.${SECTION}` });
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onInputChange = ({ name, value }) => {
|
|
this.props.setGeneralSettingsValue({ name, value });
|
|
}
|
|
|
|
onSavePress = () => {
|
|
this.props.saveGeneralSettings();
|
|
}
|
|
|
|
onConfirmResetApiKey = () => {
|
|
this.props.executeCommand({ name: commandNames.RESET_API_KEY });
|
|
}
|
|
|
|
onConfirmRestart = () => {
|
|
this.props.restart();
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<GeneralSettings
|
|
onInputChange={this.onInputChange}
|
|
onSavePress={this.onSavePress}
|
|
onConfirmResetApiKey={this.onConfirmResetApiKey}
|
|
onConfirmRestart={this.onConfirmRestart}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
GeneralSettingsConnector.propTypes = {
|
|
isResettingApiKey: PropTypes.bool.isRequired,
|
|
setGeneralSettingsValue: PropTypes.func.isRequired,
|
|
saveGeneralSettings: PropTypes.func.isRequired,
|
|
fetchGeneralSettings: PropTypes.func.isRequired,
|
|
executeCommand: PropTypes.func.isRequired,
|
|
restart: PropTypes.func.isRequired,
|
|
clearPendingChanges: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(GeneralSettingsConnector);
|