Farmbot-Web-App/webpack/app.tsx
2017-08-23 17:26:09 -05:00

93 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as React from "react";
import { connect } from "react-redux";
import * as _ from "lodash";
import { init, error } from "farmbot-toastr";
import { NavBar } from "./nav";
import { Everything, Log } from "./interfaces";
import { Spinner } from "./spinner";
import { BotState } from "./devices/interfaces";
import { ResourceName, TaggedUser } from "./resources/tagged_resources";
import { selectAllLogs, maybeFetchUser } from "./resources/selectors";
import { HotKeys } from "./hotkeys";
import { ControlsPopup } from "./controls_popup";
/** Remove 300ms delay on touch devices - https://github.com/ftlabs/fastclick */
let fastClick = require("fastclick");
fastClick.attach(document.body);
/** For the logger module */
init();
/**
* If the sync object takes more than 10s to load, the user will be granted
* access into the app, but still warned.
*/
const TIMEOUT_MESSAGE = `App could not be fully loaded, we recommend you try
refreshing the page.`;
interface AppProps {
dispatch: Function;
loaded: ResourceName[];
logs: Log[];
user: TaggedUser | undefined;
bot: BotState;
}
function mapStateToProps(props: Everything): AppProps {
return {
dispatch: props.dispatch,
user: maybeFetchUser(props.resources.index),
bot: props.bot,
logs: _(selectAllLogs(props.resources.index))
.map(x => x.body)
.sortBy("created_at")
.reverse()
.value(),
loaded: props.resources.loaded
};
}
/**
* Relational resources that *must* load before app starts.
* App will crash at load time if they are not pre-loaded.
*/
const MUST_LOAD: ResourceName[] = [
"sequences",
"regimens",
"farm_events",
"points"
];
@connect(mapStateToProps)
export default class App extends React.Component<AppProps, {}> {
get isLoaded() {
return (MUST_LOAD.length ===
_.intersection(this.props.loaded, MUST_LOAD).length);
}
componentDidMount() {
setTimeout(() => {
if (!this.isLoaded) {
error(TIMEOUT_MESSAGE, "Warning");
}
}, 10000);
}
render() {
let syncLoaded = this.isLoaded;
return <div className="app">
<HotKeys dispatch={this.props.dispatch} />
<NavBar
user={this.props.user}
bot={this.props.bot}
dispatch={this.props.dispatch}
logs={this.props.logs} />
{!syncLoaded && <Spinner radius={33} strokeWidth={6} />}
{syncLoaded && this.props.children}
<ControlsPopup dispatch={this.props.dispatch} />
</div>;
}
}