lbry-desktop/ui/js/component/app/view.jsx

87 lines
2.3 KiB
React
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import Router from "component/router";
import Header from "component/header";
2017-07-02 14:23:38 -04:00
import ModalError from "component/modalError";
2017-08-02 18:55:58 -04:00
import ModalAuthFailure from "component/modalAuthFailure";
2017-07-02 14:23:38 -04:00
import ModalDownloading from "component/modalDownloading";
2017-07-15 14:44:50 -04:00
import ModalInsufficientCredits from "component/modalInsufficientCredits";
2017-07-10 13:19:42 -04:00
import ModalUpgrade from "component/modalUpgrade";
import ModalWelcome from "component/modalWelcome";
2017-07-24 18:59:26 -04:00
import ModalFirstReward from "component/modalFirstReward";
2017-06-06 17:19:12 -04:00
import lbry from "lbry";
2017-07-15 14:44:50 -04:00
import * as modals from "constants/modal_types";
2017-04-07 12:15:22 +07:00
2017-06-07 21:42:19 -07:00
class App extends React.PureComponent {
2017-05-03 23:44:08 -04:00
componentWillMount() {
const {
alertError,
checkUpgradeAvailable,
updateBalance,
2017-07-29 18:56:08 -04:00
fetchRewardedContent,
} = this.props;
2017-07-16 12:29:46 -04:00
2017-06-06 17:19:12 -04:00
document.addEventListener("unhandledError", event => {
2017-07-16 12:29:46 -04:00
alertError(event.detail);
2017-04-07 12:15:22 +07:00
});
if (!this.props.upgradeSkipped) {
2017-07-16 12:29:46 -04:00
checkUpgradeAvailable();
2017-04-07 12:15:22 +07:00
}
2017-05-15 12:34:33 -04:00
2017-06-06 17:19:12 -04:00
lbry.balanceSubscribe(balance => {
2017-07-16 12:29:46 -04:00
updateBalance(balance);
2017-06-06 17:19:12 -04:00
});
2017-07-16 12:29:46 -04:00
2017-07-29 18:56:08 -04:00
fetchRewardedContent();
2017-07-16 12:29:46 -04:00
this.showWelcome(this.props);
this.scrollListener = () => this.props.recordScroll(window.scrollY);
window.addEventListener("scroll", this.scrollListener);
2017-07-16 12:29:46 -04:00
}
componentWillReceiveProps(nextProps) {
this.showWelcome(nextProps);
}
showWelcome(props) {
2017-07-27 21:13:12 -04:00
const { isWelcomeAcknowledged, openWelcomeModal, user } = props;
2017-07-16 12:29:46 -04:00
if (
!isWelcomeAcknowledged &&
user &&
2017-07-27 21:13:12 -04:00
!user.is_reward_approved &&
!user.is_identity_verified
2017-07-16 12:29:46 -04:00
) {
openWelcomeModal();
}
2017-05-03 23:44:08 -04:00
}
componentWillUnmount() {
window.removeEventListener("scroll", this.scrollListener);
2017-05-03 23:44:08 -04:00
}
render() {
2017-06-06 17:19:12 -04:00
const { modal } = this.props;
2017-04-07 12:15:22 +07:00
2017-06-06 17:19:12 -04:00
return (
<div id="window">
<Header />
<div id="main-content">
<Router />
</div>
2017-07-15 14:44:50 -04:00
{modal == modals.UPGRADE && <ModalUpgrade />}
{modal == modals.DOWNLOADING && <ModalDownloading />}
{modal == modals.ERROR && <ModalError />}
{modal == modals.INSUFFICIENT_CREDITS && <ModalInsufficientCredits />}
{modal == modals.WELCOME && <ModalWelcome />}
2017-07-24 18:59:26 -04:00
{modal == modals.FIRST_REWARD && <ModalFirstReward />}
2017-08-02 18:55:58 -04:00
{modal == modals.AUTHENTICATION_FAILURE && <ModalAuthFailure />}
2017-04-20 22:31:50 -04:00
</div>
2017-06-06 17:19:12 -04:00
);
2017-04-07 12:15:22 +07:00
}
2017-05-03 23:44:08 -04:00
}
2017-04-07 12:15:22 +07:00
2017-06-05 21:21:55 -07:00
export default App;