lbry-desktop/src/renderer/component/app/view.jsx

71 lines
1.7 KiB
React
Raw Normal View History

import React from 'react';
import Router from 'component/router/index';
import Header from 'component/header';
import Theme from 'component/theme';
import ModalRouter from 'modal/modalRouter';
import ReactModal from 'react-modal';
import throttle from 'util/throttle';
2017-04-07 07:15:22 +02:00
class App extends React.PureComponent {
2017-11-17 22:27:35 +01:00
constructor() {
super();
this.mainContent = undefined;
}
2017-05-04 05:44:08 +02:00
componentWillMount() {
2017-11-16 22:39:10 +01:00
const { alertError } = this.props;
2017-07-16 18:29:46 +02:00
document.addEventListener('unhandledError', event => {
2017-07-16 18:29:46 +02:00
alertError(event.detail);
2017-04-07 07:15:22 +02:00
});
2017-11-17 22:27:35 +01:00
}
2017-04-07 07:15:22 +02:00
2017-11-17 22:27:35 +01:00
componentDidMount() {
const { recordScroll } = this.props;
const mainContent = document.getElementById('main-content');
2017-11-17 22:27:35 +01:00
this.mainContent = mainContent;
const scrollListener = () => recordScroll(this.mainContent.scrollTop);
this.mainContent.addEventListener('scroll', throttle(scrollListener, 750));
ReactModal.setAppElement('#window'); // fuck this
2017-07-16 18:29:46 +02:00
}
componentWillUnmount() {
this.mainContent.removeEventListener('scroll', this.scrollListener);
}
componentWillReceiveProps(props) {
this.setTitleFromProps(props);
}
componentDidUpdate(prevProps) {
2017-11-17 22:27:35 +01:00
const { currentStackIndex: prevStackIndex } = prevProps;
const { currentStackIndex, currentPageAttributes } = this.props;
if (currentStackIndex !== prevStackIndex) {
2017-11-17 22:27:35 +01:00
this.mainContent.scrollTop = currentPageAttributes.scrollY || 0;
}
}
setTitleFromProps(props) {
window.document.title = props.pageTitle || 'LBRY';
}
2017-05-04 05:44:08 +02:00
render() {
2017-06-06 23:19:12 +02:00
return (
<div id="window">
2017-09-07 02:52:34 +02:00
<Theme />
2017-06-06 23:19:12 +02:00
<Header />
<div id="main-content">
<Router />
</div>
<ModalRouter />
2017-04-21 04:31:50 +02:00
</div>
2017-06-06 23:19:12 +02:00
);
2017-04-07 07:15:22 +02:00
}
2017-05-04 05:44:08 +02:00
}
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
export default App;