mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
97 lines
2.5 KiB
TypeScript
97 lines
2.5 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
TextValidator,
|
|
ValidatorForm,
|
|
SelectValidator
|
|
} from 'react-material-ui-form-validator';
|
|
|
|
import { Checkbox, MenuItem } from '@material-ui/core';
|
|
import SaveIcon from '@material-ui/icons/Save';
|
|
|
|
import {
|
|
RestFormProps,
|
|
FormActions,
|
|
FormButton,
|
|
BlockFormControlLabel
|
|
} from '../components';
|
|
import { isIP, isHostname, or } from '../validators';
|
|
|
|
import { TIME_ZONES, timeZoneSelectItems, selectedTimeZone } from './TZ';
|
|
import { NTPSettings } from './types';
|
|
|
|
type NTPSettingsFormProps = RestFormProps<NTPSettings>;
|
|
|
|
class NTPSettingsForm extends React.Component<NTPSettingsFormProps> {
|
|
componentDidMount() {
|
|
ValidatorForm.addValidationRule('isIPOrHostname', or(isIP, isHostname));
|
|
}
|
|
|
|
changeTimeZone = (event: React.ChangeEvent<HTMLSelectElement>) => {
|
|
const { data, setData } = this.props;
|
|
setData({
|
|
...data,
|
|
tz_label: event.target.value,
|
|
tz_format: TIME_ZONES[event.target.value]
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const { data, handleValueChange, saveData } = this.props;
|
|
return (
|
|
<ValidatorForm onSubmit={saveData}>
|
|
<BlockFormControlLabel
|
|
control={
|
|
<Checkbox
|
|
checked={data.enabled}
|
|
onChange={handleValueChange('enabled')}
|
|
value="enabled"
|
|
/>
|
|
}
|
|
label="Enable NTP"
|
|
/>
|
|
<TextValidator
|
|
validators={['required', 'isIPOrHostname']}
|
|
errorMessages={[
|
|
'Server is required',
|
|
'Not a valid IP address or hostname'
|
|
]}
|
|
name="server"
|
|
label="Server"
|
|
fullWidth
|
|
variant="outlined"
|
|
value={data.server}
|
|
onChange={handleValueChange('server')}
|
|
margin="normal"
|
|
/>
|
|
<SelectValidator
|
|
validators={['required']}
|
|
errorMessages={['Time zone is required']}
|
|
name="tz_label"
|
|
label="Time zone"
|
|
fullWidth
|
|
variant="outlined"
|
|
native="true"
|
|
value={selectedTimeZone(data.tz_label, data.tz_format)}
|
|
onChange={this.changeTimeZone}
|
|
margin="normal"
|
|
>
|
|
<MenuItem disabled>Time zone...</MenuItem>
|
|
{timeZoneSelectItems()}
|
|
</SelectValidator>
|
|
<FormActions>
|
|
<FormButton
|
|
startIcon={<SaveIcon />}
|
|
variant="contained"
|
|
color="primary"
|
|
type="submit"
|
|
>
|
|
Save
|
|
</FormButton>
|
|
</FormActions>
|
|
</ValidatorForm>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default NTPSettingsForm;
|