mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-12 02:39:58 +03:00
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import { Component } from 'react';
|
|
import { Redirect, Switch, RouteComponentProps } from 'react-router-dom';
|
|
|
|
import { Tabs, Tab } from '@material-ui/core';
|
|
|
|
import { WithFeaturesProps, withFeatures } from '../features/FeaturesContext';
|
|
|
|
import {
|
|
withAuthenticatedContext,
|
|
AuthenticatedContextProps,
|
|
AuthenticatedRoute
|
|
} from '../authentication';
|
|
import { MenuAppBar } from '../components';
|
|
|
|
import SystemStatusController from './SystemStatusController';
|
|
import OTASettingsController from './OTASettingsController';
|
|
import UploadFirmwareController from './UploadFirmwareController';
|
|
import LogEventController from './LogEventController';
|
|
|
|
type SystemProps = AuthenticatedContextProps &
|
|
RouteComponentProps &
|
|
WithFeaturesProps;
|
|
|
|
class System extends Component<SystemProps> {
|
|
handleTabChange = (path: string) => {
|
|
this.props.history.push(path);
|
|
};
|
|
|
|
render() {
|
|
const { authenticatedContext, features } = this.props;
|
|
return (
|
|
<MenuAppBar sectionTitle="System">
|
|
<Tabs
|
|
value={this.props.match.url}
|
|
onChange={(e, path) => this.handleTabChange(path)}
|
|
variant="fullWidth"
|
|
>
|
|
<Tab value="/system/status" label="System Status" />
|
|
<Tab value="/system/log" label="System Log" />
|
|
{features.ota && (
|
|
<Tab
|
|
value="/system/ota"
|
|
label="OTA Settings"
|
|
disabled={!authenticatedContext.me.admin}
|
|
/>
|
|
)}
|
|
{features.upload_firmware && (
|
|
<Tab
|
|
value="/system/upload"
|
|
label="Upload Firmware"
|
|
disabled={!authenticatedContext.me.admin}
|
|
/>
|
|
)}
|
|
</Tabs>
|
|
<Switch>
|
|
<AuthenticatedRoute
|
|
exact
|
|
path="/system/status"
|
|
component={SystemStatusController}
|
|
/>
|
|
<AuthenticatedRoute
|
|
exact
|
|
path="/system/log"
|
|
component={LogEventController}
|
|
/>
|
|
{features.ota && (
|
|
<AuthenticatedRoute
|
|
exact
|
|
path="/system/ota"
|
|
component={OTASettingsController}
|
|
/>
|
|
)}
|
|
{features.upload_firmware && (
|
|
<AuthenticatedRoute
|
|
exact
|
|
path="/system/upload"
|
|
component={UploadFirmwareController}
|
|
/>
|
|
)}
|
|
<Redirect to="/system/status" />
|
|
</Switch>
|
|
</MenuAppBar>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withFeatures(withAuthenticatedContext(System));
|