| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- import { hot } from 'react-hot-loader/root'
- import * as React from 'react'
- import Frame from './frame/Frame'
- import Welcome from './welcome/Welcome'
- import { connect } from 'react-redux'
- import { View } from '../meta/Views'
- import Landing from './landing/Landing'
- import Login from './login/Login'
- import Loader from './loader/Loader'
- import Settings from './settings/Settings'
- import { StoreType } from '../redux/store'
- import { CSSTransition } from 'react-transition-group'
- import { ViewActionDispatch } from '../redux/actions/viewActions'
- import { throttle } from 'lodash'
- import { readdir } from 'fs-extra'
- import { join } from 'path'
- import Overlay from './overlay/Overlay'
- import { OverlayPushAction, OverlayActionDispatch } from '../redux/actions/overlayActions'
- import { DistributionAPI } from 'common/distribution/distribution'
- import { getServerStatus } from 'common/util/ServerStatusUtil'
- import './Application.css'
- declare const __static: string
- function setBackground(id: number) {
- import(`../../../static/images/backgrounds/${id}.jpg`).then(mdl => {
- document.body.style.backgroundImage = `url('${mdl.default}')`
- })
- }
- interface ApplicationProps {
- currentView: View
- overlayQueue: OverlayPushAction<unknown>[]
- }
- interface ApplicationState {
- loading: boolean
- showMain: boolean
- renderMain: boolean
- workingView: View
- }
- const mapState = (state: StoreType): Partial<ApplicationProps> => {
- return {
- currentView: state.currentView,
- overlayQueue: state.overlayQueue
- }
- }
- const mapDispatch = {
- ...ViewActionDispatch,
- ...OverlayActionDispatch
- }
- class Application extends React.Component<ApplicationProps & typeof mapDispatch, ApplicationState> {
- private bkid!: number
- constructor(props: ApplicationProps & typeof mapDispatch) {
- super(props)
- this.state = {
- loading: true,
- showMain: false,
- renderMain: false,
- workingView: props.currentView
- }
- }
- getViewElement(): JSX.Element {
- switch(this.state.workingView) {
- case View.WELCOME:
- return <>
- <Welcome />
- </>
- case View.LANDING:
- return <>
- <Landing />
- </>
- case View.LOGIN:
- return <>
- <Login cancelable={false} />
- </>
- case View.SETTINGS:
- return <>
- <Settings />
- </>
- }
- }
- private hasOverlay = (): boolean => {
- return this.props.overlayQueue.length > 0
- }
- private updateWorkingView = throttle(() => {
- this.setState({
- ...this.state,
- workingView: this.props.currentView
- })
-
- }, 200)
- private showMain = (): void => {
- setBackground(this.bkid)
- this.setState({
- ...this.state,
- showMain: true
- })
- }
- private initLoad = async (): Promise<void> => {
- if(this.state.loading) {
- const MIN_LOAD = 800
- const start = Date.now()
- this.bkid = Math.floor((Math.random() * (await readdir(join(__static, 'images', 'backgrounds'))).length))
- const endLoad = () => {
- this.setState({
- ...this.state,
- loading: false
- })
- // TODO temp
- setTimeout(() => {
- //this.props.setView(View.WELCOME)
- this.props.pushGenericOverlay({
- title: 'Load Distribution',
- description: 'This is a test. Will load the distribution.',
- dismissible: false,
- acknowledgeCallback: async () => {
- const distro = new DistributionAPI('C:\\Users\\user\\AppData\\Roaming\\Helios Launcher')
- const x = await distro.testLoad()
- console.log(x)
- const serverStatus = await getServerStatus(47, 'mc.westeroscraft.com', 25565)
- console.log(serverStatus)
- }
- })
- this.props.pushGenericOverlay({
- title: 'Test Title 2',
- description: 'Test Description',
- dismissible: true
- })
- this.props.pushGenericOverlay({
- title: 'Test Title 3',
- description: 'Test Description',
- dismissible: true
- })
- this.props.pushGenericOverlay({
- title: 'Test Title 4',
- description: 'Test Description',
- dismissible: true
- })
- this.props.pushGenericOverlay({
- title: 'Test Title IMPORTANT',
- description: 'Test Description',
- dismissible: true
- }, true)
- }, 5000)
- }
- const diff = Date.now() - start
- if(diff < MIN_LOAD) {
- setTimeout(endLoad, MIN_LOAD-diff)
- } else {
- endLoad()
- }
- }
- }
- render(): JSX.Element {
- return (
- <>
- <Frame />
- <CSSTransition
- in={this.state.showMain}
- appear={true}
- timeout={500}
- classNames="appWrapper"
- unmountOnExit
- >
- <div className="appWrapper" {...(this.hasOverlay() ? {overlay: 'true'} : {})}>
- <CSSTransition
- in={this.props.currentView == this.state.workingView}
- appear={true}
- timeout={500}
- classNames="appWrapper"
- unmountOnExit
- onExited={this.updateWorkingView}
- >
- {this.getViewElement()}
- </CSSTransition>
-
- </div>
- </CSSTransition>
- <CSSTransition
- in={this.hasOverlay()}
- appear={true}
- timeout={500}
- classNames="appWrapper"
- unmountOnExit
- >
- <Overlay overlayQueue={this.props.overlayQueue} />
- </CSSTransition>
- <CSSTransition
- in={this.state.loading}
- appear={true}
- timeout={300}
- classNames="loader"
- unmountOnExit
- onEnter={this.initLoad}
- onExited={this.showMain}
- >
- <Loader />
- </CSSTransition>
- </>
- )
- }
-
- }
- export default hot(connect<unknown, typeof mapDispatch>(mapState, mapDispatch)(Application))
|