mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 16:59:50 +03:00
31 lines
809 B
TypeScript
31 lines
809 B
TypeScript
import React, { Component } from 'react';
|
|
|
|
import {restController, RestControllerProps, RestFormLoader, SectionContent } from '../components';
|
|
import { SYSTEM_STATUS_ENDPOINT } from '../api';
|
|
|
|
import SystemStatusForm from './SystemStatusForm';
|
|
import { SystemStatus } from './types';
|
|
|
|
type SystemStatusControllerProps = RestControllerProps<SystemStatus>;
|
|
|
|
class SystemStatusController extends Component<SystemStatusControllerProps> {
|
|
|
|
componentDidMount() {
|
|
this.props.loadData();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<SectionContent title="System Status">
|
|
<RestFormLoader
|
|
{...this.props}
|
|
render={formProps => <SystemStatusForm {...formProps} />}
|
|
/>
|
|
</SectionContent>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default restController(SYSTEM_STATUS_ENDPOINT, SystemStatusController);
|