index.js
2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import React, { Component } from 'react'
import './video-catalog.scss'
import { Link } from "react-router-dom";
import classnames from 'classnames'
class VideoCatalog extends Component {
handleClick = (i) => {
this.props.selectVideo(i)
}
render() {
return (
<div className='video-catalog'>
<ul>
{
this.props.videoCatalog.map((item, index) => {
return (
<li
key={item.id}
className={classnames({active: this.props.activeIndex === index})}
>
<div
className="video-title"
onClick={this.handleClick.bind(this, index)}
>
<span className="title">{item.name}</span>
<span className='duration'>{item.duration}</span>
<i className={classnames(`iconfont`,
[item.video_auth === 0
? 'iconiconfront-74'
: 'iconplay_hovericon'],
)}/>
</div>
{
(item.practice && item.practice.qid)
? <Link to={{
pathname: item.practice.is_tested ? '/campResolve' : '/campTest',
search: `?keshi_id=${item.id}&qid=${item.practice.qid}`,
state: {from: `/play/video${window.location.search}`}
}}>
<div className="exercise">
课后练习:{item.practice.title}
<i className={classnames('iconfont',!item.video_auth ? 'iconiconfront-74' : item.practice.is_tested ? 'iconiconfront-3' : '')}/>
</div>
</Link>
: null
}
</li>
)
})
}
</ul>
</div>
);
}
}
export default VideoCatalog;