Commit 962decae by zhanghaozhe

搜索

parent e3f4c090
import React, { PureComponent } from 'react'; import React, { PureComponent } from 'react';
import { connect } from 'react-redux';
import SearchHeader from './searchHead' import SearchHeader from './searchHead'
import VList from '@/common/VList' import VList from '@/common/VList'
import { http, getParam } from '@/utils' import { http, getParam } from '@/utils'
import './search-result.scss' import './search-result.scss'
import Recommendation from './recommendation' import Recommendation from './recommendation'
import throttle from 'lodash/throttle' import throttle from 'lodash/throttle'
import classnames from "classnames";
const ForwardRefSearchHead = React.forwardRef((props, ref) => { const ForwardRefSearchHead = React.forwardRef((props, ref) => {
...@@ -22,18 +20,19 @@ const Bottom = ({item}) => { ...@@ -22,18 +20,19 @@ const Bottom = ({item}) => {
) )
} }
@connect()
class SearchResult extends PureComponent { class SearchResult extends PureComponent {
prevScrollY = 0 prevScrollY = 0
searchHead = React.createRef() searchHead = React.createRef()
swipeUp = 'up'
swipeDown = 'down'
state = { state = {
courseList: [], courseList: [],
value: decodeURIComponent(getParam('word')) || '', value: decodeURIComponent(getParam('word')) || '',
searchHistory: JSON.parse(localStorage.getItem('searchHistory')) || [], searchHistory: JSON.parse(localStorage.getItem('searchHistory')) || [],
fixedHeader: false, fixedHeader: false,
searchHeadStyle: {}, searchHeadStyle: {top: 0},
swipeDirection: 'up' swipeDirection: this.swipeUp
} }
componentDidMount() { componentDidMount() {
...@@ -80,42 +79,50 @@ class SearchResult extends PureComponent { ...@@ -80,42 +79,50 @@ class SearchResult extends PureComponent {
let y = window.scrollY, headY = this.searchHead.current.offsetTop let y = window.scrollY, headY = this.searchHead.current.offsetTop
if (y < this.prevScrollY) { if (y < this.prevScrollY) {
this.state.swipeDirection !== 'down' && this.setState({ if (this.state.swipeDirection === this.swipeDown) {
swipeDirection: 'down'
}, () => { y <= headY && this.state.searchHeadStyle.position !== 'fixed' && this.setState({
if(this.state.swipeDirection === 'down'){ searchHeadStyle: {
this.setState({ top: `0`,
searchHeadStyle: { position: 'fixed'
top: `${y > headY ? y - 44 : y}px` }
} })
})
} } else {
}) this.setState({
swipeDirection: this.swipeDown
}, () => {
if (this.state.swipeDirection === this.swipeDown) {
this.setState({
searchHeadStyle: {
top: `${y > headY ? y - 44 : y}px`
}
})
}
})
}
} else { } else {
this.state.swipeDirection !== this.swipeUp &&
this.setState({ this.setState({
swipeDirection: 'up' swipeDirection: this.swipeUp,
searchHeadStyle: {
position: 'absolute',
top: `${y}px`
}
}) })
}
/*if (this.state.fixedHeader) {
y >= this.prevScrollY && this.setState({fixedHeader: false})
} else {
y <= this.prevScrollY && this.setState({fixedHeader: true})
}
this.searchHeadStyle = { }
position: 'absolute',
top: `${y - 44}px`
}*/
this.prevScrollY = y this.prevScrollY = y
}, 30) }, 0)
render() { render() {
const {courseList} = this.state const {courseList} = this.state
return ( return (
<div <div
className={classnames('search-result', {/*[this.state.fixedHeader ? 'fixed-header' : 'static-header']*/})}> className={'search-result'}>
<ForwardRefSearchHead <ForwardRefSearchHead
handleSearch={this.handleSearch} handleSearch={this.handleSearch}
value={this.state.value} value={this.state.value}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment