First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+221
View File
@@ -0,0 +1,221 @@
import React from 'react';
import Button from '@material-ui/core/Button';
import {PiPedalModel,PiPedalModelFactory} from './PiPedalModel';
import Dialog from '@material-ui/core/Dialog';
import DialogTitle from '@material-ui/core/DialogTitle';
import DialogActions from '@material-ui/core/DialogActions';
import DialogContent from '@material-ui/core/DialogContent';
import ResizeResponsiveComponent from './ResizeResponsiveComponent';
import Typography from '@material-ui/core/Typography';
const PRESET_EXTENSION = ".piPreset";
const BANK_EXTENSION = ".piBank";
export interface UploadDialogProps {
open: boolean,
onClose: () => void,
uploadAfter: number,
onUploaded: (instanceId: number) => void
};
export interface UploadDialogState {
fullScreen: boolean;
};
export default class UploadDialog extends ResizeResponsiveComponent<UploadDialogProps, UploadDialogState> {
model: PiPedalModel;
constructor(props: UploadDialogProps) {
super(props);
this.state = {
fullScreen: false
};
this.model = PiPedalModelFactory.getInstance();
this.handlePopState = this.handlePopState.bind(this);
}
mounted: boolean = false;
hasHooks: boolean = false;
stateWasPopped: boolean = false;
handlePopState(e: any): any {
this.stateWasPopped = true;
let shouldClose = (!e.state || !e.state.UploadDialog);
if (shouldClose) {
this.props.onClose();
}
}
updateHooks(): void {
let wantHooks = this.mounted && this.props.open;
if (wantHooks !== this.hasHooks) {
this.hasHooks = wantHooks;
if (this.hasHooks) {
this.stateWasPopped = false;
window.addEventListener("popstate", this.handlePopState);
// eslint-disable-next-line no-restricted-globals
let state = history.state;
if (!state) {
state = {};
}
state.UploadDialog = true;
// eslint-disable-next-line no-restricted-globals
history.pushState(
state,
"Upload",
"#UploadDialog"
);
} else {
window.removeEventListener("popstate", this.handlePopState);
if (!this.stateWasPopped) {
// eslint-disable-next-line no-restricted-globals
history.back();
}
}
}
}
onWindowSizeChanged(width: number, height: number): void {
this.setState({ fullScreen: height < 200 })
}
componentDidMount() {
super.componentDidMount();
this.mounted = true;
this.updateHooks();
}
componentWillUnmount() {
super.componentDidMount();
this.mounted = false;
this.updateHooks();
}
componentDidUpdate() {
this.updateHooks();
}
handleClose(): void {
this.props.onClose();
}
handleOk(): void {
this.props.onClose();
}
async uploadFiles(fileList: FileList)
{
try {
let uploadAfter = this.props.uploadAfter;
for (let i = 0; i < fileList.length; ++i)
{
uploadAfter = await this.model.uploadPreset(fileList[i],uploadAfter);
}
this.props.onUploaded(uploadAfter);
} catch(error) {
this.model.showAlert(error);
};
this.props.onClose();
}
handleDrop(e: React.DragEvent<HTMLDivElement>) {
e.preventDefault();
e.currentTarget.style.background = "";
if (this.wantsTransfer(e.dataTransfer)) {
this.uploadFiles(e.dataTransfer.files)
.then(() => {
this.handleClose();
})
.catch((error)=> {
this.handleClose();
this.model.showAlert(error);
});
}
}
getFileExtension(name: string): string {
let pos = name.lastIndexOf('.');
if (pos !== -1) {
return name.substring(pos);
}
return "";
}
wantsTransfer(fileList: DataTransfer): boolean {
if (fileList.files.length === 0) return false;
for (let i = 0; i < fileList.files.length; ++i) {
let file = fileList.files[i];
let extension = this.getFileExtension(file.name);
if (extension !== PRESET_EXTENSION && extension !== BANK_EXTENSION) return false;
}
return true;
}
handleDragOver(e: React.DragEvent<HTMLDivElement>) {
e.currentTarget.style.background = "#D8D8D8";
e.preventDefault();
}
handleButtonSelect(e: React.ChangeEvent<HTMLInputElement>)
{
if (e.currentTarget.files)
{
this.uploadFiles(e.currentTarget.files);
}
}
render() {
return (
<Dialog open={this.props.open} fullWidth onClose={() => this.handleClose()} style={{}}
fullScreen={this.state.fullScreen}
>
<DialogTitle>Upload preset</DialogTitle>
<DialogContent>
<div style={{
width: "100%", height: 100, marginBottom: 0,
border: "2px dashed #CCC",
borderRadius: "10px",
fontFamily: "Roboto",
padding: 20
}}
onDragEnter={(e) => { this.handleDragOver(e); }}
onDragLeave={(e) => { e.currentTarget.style.background = ""; e.preventDefault(); }}
onDragOver={(e) => { this.handleDragOver(e); }}
onDrop={(e) => {
this.handleDrop(e);
}}
>
<Typography noWrap color="textSecondary" align="center" variant="caption" style={{verticalAlign: "middle"}} >Drop files here</Typography>
</div>
</DialogContent>
<DialogActions>
<Button onClick={() => this.handleClose()} color="primary">
Cancel
</Button>
<Button
component="label" color="secondary" style={{width: 120}}
>
Select File
<input
type="file"
hidden
accept=".piPreset"
multiple
onChange={(e)=> this.handleButtonSelect(e)}
/>
</Button>
</DialogActions>
</Dialog>
);
}
}