Commit 40315e34 by zhanghaozhe

搜索结果

parent a5c96251
var API = {
'www': 'http://www-test.julyedu.com',
'home': 'http://fast-test.julyedu.com',
'search-api': 'https://search.julyedu.com',
'search-api': 'http://search-test.julyedu.com',
'passport-api': 'http://passport-test.julyedu.com',
'base-api': 'http://api-test.julyedu.com',
'record': 'record.julyedu.com:8001',
......
import React, { PureComponent } from 'react';
import React, { PureComponent } from 'react'
import SearchHeader from './searchHead'
import VList from 'src/common/VList'
import { http, getParam } from 'src/utils'
......@@ -6,16 +6,15 @@ import './search-result.scss'
import Recommendation from './recommendation'
import throttle from 'lodash/throttle'
const ForwardRefSearchHead = React.forwardRef((props, ref) => {
return <SearchHeader {...props} forwardedRef={ref}/>
return <SearchHeader {...props} forwardedRef={ref} />
})
const Bottom = ({item}) => {
const Bottom = ({ item }) => {
return (
<div className='bottom'>
<span className='price'>¥{item.price1}</span>
<span className='stale-price'>¥{item.price0}</span>
<div className="bottom">
<span className="price">¥{item.price1}</span>
<span className="stale-price">¥{item.price0}</span>
</div>
)
}
......@@ -31,10 +30,11 @@ class SearchResult extends PureComponent {
value: decodeURIComponent(getParam('word')) || '',
searchHistory: JSON.parse(localStorage.getItem('searchHistory')) || [],
fixedHeader: false,
searchHeadStyle: {top: 0},
searchHeadStyle: { top: 0 },
swipeDirection: this.swipeUp,
isHide: false,
basicTop: 0
basicTop: 0,
resultCount: 0,
}
componentDidMount() {
......@@ -46,16 +46,15 @@ class SearchResult extends PureComponent {
document.removeEventListener('scroll', this.handleScroll)
}
getCourses = (word) => {
http.get(`${API['search-api']}/search/${word}?type=course&page=1`)
.then(res => {
getCourses = word => {
http.get(`${API['search-api']}/search/${word}?type=v2-course&page=1`).then(res => {
const data = res.data
if (data.errno === 0) {
this.setState({
courseList: data.data.info['search_data'].course
});
courseList: data.data.info['search_data'].course,
resultCount: data.data.info['search_data'].num,
})
}
})
}
......@@ -69,31 +68,31 @@ class SearchResult extends PureComponent {
}
handleChange = value => {
this.setState({value})
this.setState({ value })
}
toCourseDetail = (id) => {
const {history} = this.props;
toCourseDetail = id => {
const { history } = this.props
history.push(`/detail?id=${id}`)
}
handleScroll = throttle(() => {
let y = window.scrollY < 0? 0 : window.scrollY,
let y = window.scrollY < 0 ? 0 : window.scrollY,
headY = this.searchHead.current.offsetTop,
h = this.searchHead.current.offsetHeight;
if(y > this.prevScrollY) {
h = this.searchHead.current.offsetHeight
if (y > this.prevScrollY) {
this.setState({
searchHeadStyle: {
top : `${-h}px`
}
});
top: `${-h}px`,
},
})
}
if(y < this.prevScrollY) {
if (y < this.prevScrollY) {
this.setState({
searchHeadStyle: {
top: 0
}
});
top: 0,
},
})
}
// if (y < this.prevScrollY) {
// if (this.state.swipeDirection === this.swipeDown) {
......@@ -118,7 +117,6 @@ class SearchResult extends PureComponent {
// }
// })
// }
// })
// }
......@@ -132,15 +130,14 @@ class SearchResult extends PureComponent {
// }
// })
// }
this.prevScrollY = y;
this.prevScrollY = y
}, 0)
render() {
const { courseList, isHide } = this.state;
const { courseList, isHide, resultCount } = this.state
return (
<div
className={'search-result'}>
<div className={'search-result'}>
<ForwardRefSearchHead
handleSearch={this.handleSearch}
value={this.state.value}
......@@ -150,55 +147,51 @@ class SearchResult extends PureComponent {
ref={this.searchHead}
isHide={isHide}
/>
{
courseList && courseList.length > 0 ?
{resultCount > 0 && <div className="result-count">{resultCount}个结果</div>}
{courseList && courseList.length > 0 ? (
<ul>
{
courseList.map(item => {
{courseList.map((item, index) => {
const Info = (
<div className="info">
<p className='title text-overflow-2'>{item.course_title}</p>
<p className='des text-overflow-1'>{item.simpledescription}</p>
<Bottom
item={item}
/>
<p
className="title text-overflow-2"
dangerouslySetInnerHTML={{
__html:
item.highlight?.course_title?.length > 0 ? item.highlight.course_title[0] : item.course_title,
}}
></p>
<p className="des text-overflow-1">{item.simpledescription}</p>
<Bottom item={item} />
</div>
)
const status = (
(item['bargain_num'] || item['groupon_num']) ?
<div
className='status'>
{
item['bargain_num'] === 0 ? `砍价减${item['groupon_num']}元` : `拼团减${item['bargain_num']}元`
}
const status =
item['bargain_num'] || item['groupon_num'] ? (
<div className="status">
{item['bargain_num'] === 0 ? `砍价减${item['groupon_num']}元` : `拼团减${item['bargain_num']}元`}
</div>
: null
)
) : null
return (
<VList
img={item.image_name}
toDetail={this.toCourseDetail}
key={item.course_id}
key={index}
info={Info}
id={item['course_id']}
status={status}
/>
)
})
}
})}
</ul>
: <div className="empty">
<img src={require('./image/ss_empty.png')} alt=""/>
) : (
<div className="empty">
<img src={require('./image/ss_empty.png')} alt="" />
抱歉,没有搜到相关内容!
</div>
}
<Recommendation/>
)}
<Recommendation />
</div>
);
)
}
}
export default SearchResult;
\ No newline at end of file
export default SearchResult
@import "src/assets/css/variable";
@import 'src/assets/css/variable';
.search-result {
padding-top: 44px;
......@@ -16,13 +16,23 @@
}
}
.result-count {
width: 375px;
height: 30px;
background: #f7f7fb;
border-top: 1px solid #ddd;
color: #333;
font-size: 12px;
text-align: center;
line-height: 30px;
}
ul {
list-style: none;
border-top:1px solid #ddd;
}
.v-list-item{
.content{
.v-list-item {
.content {
width: 100%;
}
}
......@@ -31,14 +41,17 @@
width: 50%;
position: relative;
display: block;
.title{
.title {
font-size: $font_16;
color:#525C65;
color: #525c65;
em {
color: #09f;
}
}
.des {
font-size: $font_14;
color:#777;
color: #777;
margin-top: 10px;
}
......
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