mirror of
https://gitlab.com/comunic/comunicconsole
synced 2024-11-23 13:59:23 +00:00
Create async widget
This commit is contained in:
parent
d02ab79f50
commit
1b683d7b77
@ -1,3 +1,8 @@
|
||||
body {
|
||||
background-color: #212121;
|
||||
}
|
||||
|
||||
html, body, #root, .App {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
18
src/App.tsx
18
src/App.tsx
@ -1,8 +1,9 @@
|
||||
import React from 'react';
|
||||
import './App.css';
|
||||
import { Button, createMuiTheme, ThemeProvider } from '@material-ui/core';
|
||||
import { ApplicationDialogsProvider, input, matAlert, matConfirm } from './ui/widgets/DialogsProvider';
|
||||
import { createMuiTheme, ThemeProvider } from '@material-ui/core';
|
||||
import { ApplicationDialogsProvider } from './ui/widgets/DialogsProvider';
|
||||
import { lightBlue, pink } from '@material-ui/core/colors';
|
||||
import { InitWidget } from './ui/widgets/InitWidget';
|
||||
|
||||
function App() {
|
||||
const darkTheme = createMuiTheme({
|
||||
@ -19,17 +20,8 @@ function App() {
|
||||
{/* Holder of dialogs */}
|
||||
<ApplicationDialogsProvider></ApplicationDialogsProvider>
|
||||
|
||||
{/* TODO : holder of login state */}
|
||||
|
||||
<Button onClick={()=>matAlert("heloo!!")}>alert</Button>
|
||||
<Button onClick={()=>matConfirm("heloo!!").then((r) => matAlert("response: " + r))}>confirm</Button>
|
||||
<Button onClick={()=>input({
|
||||
label: "Your best joke",
|
||||
message: "Please share your best joke:",
|
||||
initialValue: "initial",
|
||||
minLength: 2,
|
||||
maxLength: 10,
|
||||
}).then((r) => matAlert("you wrote: " + r))}>input</Button>
|
||||
{/* Initialization widget */}
|
||||
<InitWidget></InitWidget>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
81
src/ui/widgets/AsyncWidget.tsx
Normal file
81
src/ui/widgets/AsyncWidget.tsx
Normal file
@ -0,0 +1,81 @@
|
||||
/**
|
||||
* Asynchronous loading widget
|
||||
*
|
||||
* @author Pierre Hubert
|
||||
*/
|
||||
|
||||
import { Button, Paper } from "@material-ui/core";
|
||||
import React, { ReactNode } from "react";
|
||||
import { CenterCircularProgress } from "./CenterCircularProgress";
|
||||
|
||||
enum Status {
|
||||
LOADING,
|
||||
ERROR,
|
||||
SUCCESS
|
||||
}
|
||||
|
||||
export interface AsyncWidgetProperties {
|
||||
load: () => Promise<void>,
|
||||
errorMessage: string,
|
||||
onBuild: () => ReactNode
|
||||
}
|
||||
|
||||
interface AsyncWidgetState {
|
||||
status: Status,
|
||||
}
|
||||
|
||||
export class AsyncWidget extends React.Component<AsyncWidgetProperties, AsyncWidgetState> {
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
status: Status.LOADING
|
||||
}
|
||||
|
||||
this.reload = this.reload.bind(this);
|
||||
}
|
||||
|
||||
async reload() {
|
||||
try {
|
||||
this.setState({status: Status.LOADING});
|
||||
|
||||
await this.props.load();
|
||||
|
||||
this.setState({status: Status.SUCCESS});
|
||||
} catch(e) {
|
||||
console.error(e);
|
||||
this.setState({status: Status.ERROR});
|
||||
}
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.reload()
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
if (this.state.status == Status.ERROR)
|
||||
return (<div style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
height: "100%",
|
||||
}}>
|
||||
<Paper>
|
||||
<div style={{padding: "5px 10px"}}>
|
||||
{this.props.errorMessage}
|
||||
|
||||
|
||||
|
||||
<Button onClick={this.reload}>Try again</Button>
|
||||
</div>
|
||||
</Paper>
|
||||
</div>);
|
||||
|
||||
if(this.state.status == Status.SUCCESS)
|
||||
return this.props.onBuild();
|
||||
|
||||
return (<CenterCircularProgress></CenterCircularProgress>)
|
||||
}
|
||||
}
|
12
src/ui/widgets/CenterCircularProgress.tsx
Normal file
12
src/ui/widgets/CenterCircularProgress.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { CircularProgress } from "@material-ui/core";
|
||||
|
||||
export function CenterCircularProgress() {
|
||||
return <div style={{
|
||||
display: "flex",
|
||||
justifyContent: "center",
|
||||
alignItems: "center",
|
||||
height: "100%"
|
||||
}}>
|
||||
<CircularProgress></CircularProgress>
|
||||
</div>
|
||||
}
|
39
src/ui/widgets/InitWidget.tsx
Normal file
39
src/ui/widgets/InitWidget.tsx
Normal file
@ -0,0 +1,39 @@
|
||||
/**
|
||||
* Initialization widget
|
||||
*
|
||||
* @author Pierre Hubert
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
import { AsyncWidget } from "./AsyncWidget";
|
||||
|
||||
|
||||
export class InitWidget extends React.Component {
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
|
||||
this.init = this.init.bind(this);
|
||||
this.build = this.build.bind(this);
|
||||
}
|
||||
|
||||
async init() {
|
||||
await new Promise((res, rej) => {
|
||||
setTimeout(() => {
|
||||
rej(null);
|
||||
}, 500)
|
||||
})
|
||||
}
|
||||
|
||||
render() {
|
||||
return (<AsyncWidget
|
||||
errorMessage = "Failed to initialize application!"
|
||||
load = {this.init}
|
||||
onBuild = {this.build}
|
||||
></AsyncWidget>);
|
||||
}
|
||||
|
||||
build() {
|
||||
return (<div>yes !!! done !!!</div>);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user