| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- 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 Overlay from './overlay/Overlay'
- import Fatal from './fatal/Fatal'
- 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 { AppActionDispatch } from '../redux/actions/appActions'
- import { OverlayPushAction, OverlayActionDispatch } from '../redux/actions/overlayActions'
- import { LoggerUtil } from 'common/logging/loggerutil'
- import { DistributionAPI } from 'common/distribution/DistributionAPI'
- import { getServerStatus, ServerStatus } from 'common/mojang/net/ServerStatusAPI'
- import { Distribution } from 'helios-distribution-types'
- import { HeliosDistribution, HeliosServer } from 'common/distribution/DistributionFactory'
- 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>[]
- distribution: HeliosDistribution
- selectedServer: HeliosServer
- selectedServerStatus: ServerStatus
- }
- interface ApplicationState {
- loading: boolean
- showMain: boolean
- renderMain: boolean
- workingView: View
- }
- const mapState = (state: StoreType): Partial<ApplicationProps> => {
- return {
- currentView: state.currentView,
- overlayQueue: state.overlayQueue,
- distribution: state.app.distribution!,
- selectedServer: state.app.selectedServer!
- }
- }
- const mapDispatch = {
- ...AppActionDispatch,
- ...ViewActionDispatch,
- ...OverlayActionDispatch
- }
- class Application extends React.Component<ApplicationProps & typeof mapDispatch, ApplicationState> {
- private static readonly logger = LoggerUtil.getLogger('ApplicationTSX')
- private bkid!: number
- constructor(props: ApplicationProps & typeof mapDispatch) {
- super(props)
- this.state = {
- loading: true,
- showMain: false,
- renderMain: false,
- workingView: props.currentView
- }
- }
- private getViewElement = (): JSX.Element => {
- // TODO debug remove
- console.log('loading', this.props.currentView, this.state.workingView)
- switch(this.state.workingView) {
- case View.WELCOME:
- return <>
- <Welcome />
- </>
- case View.LANDING:
- return <>
- <Landing
- distribution={this.props.distribution}
- selectedServer={this.props.selectedServer}
- selectedServerStatus={this.props.selectedServerStatus}
- />
- </>
- case View.LOGIN:
- return <>
- <Login cancelable={false} />
- </>
- case View.SETTINGS:
- return <>
- <Settings />
- </>
- case View.FATAL:
- return <>
- <Fatal />
- </>
- case View.NONE:
- return <></>
- }
- }
- private hasOverlay = (): boolean => {
- return this.props.overlayQueue.length > 0
- }
- private updateWorkingView = throttle(() => {
- // TODO debug remove
- console.log('Setting to', this.props.currentView)
- this.setState({
- ...this.state,
- workingView: this.props.currentView
- })
-
- }, 200)
- private finishLoad = (): void => {
- if(this.props.currentView !== View.FATAL) {
- setBackground(this.bkid)
- }
- this.showMain()
- }
- private showMain = (): void => {
- this.setState({
- ...this.state,
- showMain: true
- })
- }
- private initLoad = async (): Promise<void> => {
- if(this.state.loading) {
- const MIN_LOAD = 800
- const start = Date.now()
- // Initial distribution load.
- const distroAPI = new DistributionAPI('C:\\Users\\user\\AppData\\Roaming\\Helios Launcher')
- let rawDisto: Distribution
- try {
- rawDisto = await distroAPI.testLoad()
- console.log('distro', distroAPI)
- } catch(err) {
- console.log('EXCEPTION IN DISTRO LOAD TODO TODO TODO', err)
- rawDisto = null!
- }
- // Fatal error
- if(rawDisto == null) {
- this.props.setView(View.FATAL)
- this.setState({
- ...this.state,
- loading: false,
- workingView: View.FATAL
- })
- return
- } else {
- const distro = new HeliosDistribution(rawDisto)
- // TODO TEMP USE CONFIG
- // TODO TODO TODO TODO
- const selectedServer: HeliosServer = distro.servers[0]
- const { hostname, port } = selectedServer
- let selectedServerStatus
- try {
- selectedServerStatus = await getServerStatus(47, hostname, port)
- } catch(err) {
- Application.logger.error('Failed to refresh server status', selectedServerStatus)
- }
- this.props.setDistribution(distro)
- this.props.setSelectedServer(selectedServer)
- this.props.setSelectedServerStatus(selectedServerStatus)
- }
- // TODO Setup hook for distro refresh every ~ 5 mins.
- // Pick a background id.
- this.bkid = Math.floor((Math.random() * (await readdir(join(__static, 'images', 'backgrounds'))).length))
- const endLoad = () => {
- // TODO determine correct view
- // either welcome, landing, or login
- this.props.setView(View.LANDING)
- this.setState({
- ...this.state,
- loading: false,
- workingView: View.LANDING
- })
- // TODO temp
- setTimeout(() => {
- // this.props.setView(View.WELCOME)
- // this.props.pushGenericOverlay({
- // title: 'Load Distribution',
- // description: 'This is a test.',
- // dismissible: false,
- // acknowledgeCallback: async () => {
- // const serverStatus = await getServerStatus(47, 'play.hypixel.net', 25565)
- // console.log(serverStatus)
- // }
- // })
- // this.props.pushGenericOverlay({
- // title: 'Test Title 2',
- // 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.finishLoad}
- >
- <Loader />
- </CSSTransition>
- </>
- )
- }
-
- }
- export default hot(connect<unknown, typeof mapDispatch>(mapState, mapDispatch)(Application))
|