import React from 'react'; import ReactDOM from 'react-dom'; import { BrowserRouter as Router, Route, Link, Switch } from 'react-router-dom'; import Icon from './components/Icon'; import { Discover, Discussions, Blog, Tag, Home } from './components/Feeds'; import Post from './components/Post'; import Thread from './components/Thread'; import LoginButton from './components/LoginButton'; import Footer from './components/Footer'; import Avatar from './components/Avatar'; const elClassHidden = 'header--hidden' const elClassBackground = 'header--background'; class App extends React.Component { constructor(props) { super(props); this.auth = this.auth.bind(this); this.state = { visitor: { uid: window.localStorage.uid || 0, hash: window.localStorage.hash || '' }, headerClassName: '' }; this.dHeight = 0; this.wHeight = 0; this.wScrollCurrent = 0; this.wScrollBefore = 0; this.wScrollDiff = 0; window.addEventListener('scroll', this.throttle(500, () => { this.dHeight = document.body.offsetHeight; this.wHeight = window.innerHeight; this.wScrollCurrent = window.pageYOffset; this.wScrollDiff = this.wScrollBefore - this.wScrollCurrent; if (this.wScrollCurrent <= 0) { // scrolled to the very top; element sticks to the top this.setState({ headerClassName: '' }) } else if (this.wScrollDiff > 0 && this.state.headerClassName.indexOf(elClassHidden) >= 0) { // scrolled up; element slides in this.setState({ headerClassName: elClassBackground }) } else if (this.wScrollDiff < 0) { // scrolled down if (this.wScrollCurrent + this.wHeight >= this.dHeight && this.state.headerClassName.indexOf(elClassHidden) >= 0) { // scrolled to the very bottom; element slides in this.setState({ headerClassName: elClassBackground }) } else { // scrolled down; element slides out this.setState({ headerClassName: [elClassHidden, elClassBackground].join(' ') }) } } this.wScrollBefore = this.wScrollCurrent; })); this.auth(this.state.visitor.hash) } throttle(delay, fn) { var last, deferTimer; return function () { var context = this, args = arguments, now = +new Date; if (last && now < last + delay) { clearTimeout(deferTimer); deferTimer = setTimeout( function () { last = now; fn.apply(context, args); }, delay); } else { last = now; fn.apply(context, args); } }; }; render() { return (
{this.state.visitor.uid > 0 ?
: }
} /> } /> } /> } /> } /> } /> } />