Files
EMS-ESP32/interface/src/system/UploadFirmwareForm.tsx
2021-03-28 16:25:44 +02:00

40 lines
1.1 KiB
TypeScript

import React, { Fragment } from "react";
import { SingleUpload } from "../components";
import { Box } from "@material-ui/core";
interface UploadFirmwareFormProps {
uploading: boolean;
progress?: ProgressEvent;
onFileSelected: (file: File) => void;
onCancel: () => void;
}
class UploadFirmwareForm extends React.Component<UploadFirmwareFormProps> {
handleDrop = (files: File[]) => {
const file = files[0];
if (file) {
this.props.onFileSelected(files[0]);
}
};
render() {
const { uploading, progress, onCancel } = this.props;
return (
<Fragment>
<Box py={2}>
Upload a new firmware file (.bin or .bin.gz) below to replace the existing firmware.
<p></p>This can take up to a minute. Wait until you see "Activating new Firmware" and EMS-ESP will then automatically restart.
</Box>
<SingleUpload
onDrop={this.handleDrop}
uploading={uploading}
progress={progress}
onCancel={onCancel}
/>
</Fragment>
);
}
}
export default UploadFirmwareForm;