Commit 818707fa by FE

pull master and solve conflict

parents d66ee095 975419f3
...@@ -58,7 +58,7 @@ class App extends Component { ...@@ -58,7 +58,7 @@ class App extends Component {
const routeMatchRule = /binding-tel|forgot|set-password/ const routeMatchRule = /binding-tel|forgot|set-password/
const {history} = this.props const {history} = this.props
history.listen((location, action) => { history.listen((location) => {
this.setNavigationRecord(location) this.setNavigationRecord(location)
if (cookie.get('uid') && this.props.user.hasError) { if (cookie.get('uid') && this.props.user.hasError) {
this.getUser() this.getUser()
...@@ -127,6 +127,10 @@ class App extends Component { ...@@ -127,6 +127,10 @@ class App extends Component {
const {location} = this.props const {location} = this.props
this.previousLocation = location.pathname.startsWith('/passport') ? this.previousLocation = location.pathname.startsWith('/passport') ?
this.previousLocation.pathname === '/' ? location : this.previousLocation : location this.previousLocation.pathname === '/' ? location : this.previousLocation : location
if (!this.props.user.hasError && getParam('redirect')) {
window.location.href = getParam('redirect')
}
} }
......
...@@ -109,10 +109,10 @@ class Index extends Component { ...@@ -109,10 +109,10 @@ class Index extends Component {
} }
toCourseDetail = (id) => { toCourseDetail = (id) => {
const { dispatch, history } = this.props; const {dispatch, history} = this.props;
// dispatch(getCourses(id, () => { // dispatch(getCourses(id, () => {
history.push(`/detail?id=${id}`); history.push(`/detail?id=${id}`);
return false; return false;
// })); // }));
} }
...@@ -138,7 +138,7 @@ class Index extends Component { ...@@ -138,7 +138,7 @@ class Index extends Component {
<div className='index-swiper'> <div className='index-swiper'>
{ {
this.state.banner && this.state.banner.length > 0 && this.state.banner && this.state.banner.length > 0 &&
<TopSwiper bannerList={this.state.banner} /> <TopSwiper bannerList={this.state.banner}/>
} }
</div> </div>
...@@ -148,10 +148,10 @@ class Index extends Component { ...@@ -148,10 +148,10 @@ class Index extends Component {
this.state.tabdata.map((item, index) => { this.state.tabdata.map((item, index) => {
return ( return (
<li key={index}> <li key={index}>
<Link to={item.href}> <a href={item.href}>
<img src={item.src} alt="" /> <img src={item.src} alt=""/>
<span>{item.name}</span> <span>{item.name}</span>
</Link> </a>
</li> </li>
) )
}) })
...@@ -159,7 +159,7 @@ class Index extends Component { ...@@ -159,7 +159,7 @@ class Index extends Component {
</ul> </ul>
</div> </div>
<p className="borderTop" /> <p className="borderTop"/>
{ {
...@@ -181,7 +181,7 @@ class Index extends Component { ...@@ -181,7 +181,7 @@ class Index extends Component {
modules={item} modules={item}
toDetail={this.toCourseDetail} toDetail={this.toCourseDetail}
/> />
<p className="borderTop" /> <p className="borderTop"/>
</div> </div>
) )
}) : null }) : null
...@@ -366,7 +366,7 @@ function ScrollBox(props) { ...@@ -366,7 +366,7 @@ function ScrollBox(props) {
{/*公开课需预约、付费课不需要预约*/} {/*公开课需预约、付费课不需要预约*/}
{ {
( item.is_prepare || item.is_free === 0) && item.live_status === 0 && (item.is_prepare || item.is_free === 0) && item.live_status === 0 &&
<p className="item-time">时间:{item.live_start_time}</p> <p className="item-time">时间:{item.live_start_time}</p>
} }
{ {
......
...@@ -579,8 +579,7 @@ class Detail extends Component { ...@@ -579,8 +579,7 @@ class Detail extends Component {
<ShareRank courseInfo={course_info}/> <ShareRank courseInfo={course_info}/>
} }
{ {/**
/**
* 拼团 * 拼团
* is_aist: 是否AI特训营 * is_aist: 是否AI特训营
* group_status: 团状态,3:课程有小团 用户没参加小团;4:用户参加了小团 * group_status: 团状态,3:课程有小团 用户没参加小团;4:用户参加了小团
......
...@@ -74,15 +74,15 @@ const formikConfig = { ...@@ -74,15 +74,15 @@ const formikConfig = {
const {props, props: {history}} = formikBag const {props, props: {history}} = formikBag
props.accountLogin({ props.accountLogin({
username, password username, password
}) })/*.then(res => {
// .then(res => { if (!res.hasError) {
// if (!res.hasError) { let {from} = props.location.state || {from: {pathname: '/', search: ''}}
// let {from} = props.location.state || {from: {pathname: '/', search: ''}} console.log(from, 'account');
// history.replace({pathname: from.pathname, search: from.search || ''}) history.replace({pathname: from.pathname, search: from.search || ''})
// } else { } else {
// Toast.info(res.msg, 2, null, false) Toast.info(res.msg, 2, null, false)
// } }
// }) })*/
} }
} }
......
...@@ -15,6 +15,7 @@ import account from './account.png' ...@@ -15,6 +15,7 @@ import account from './account.png'
import qq from './qq.png' import qq from './qq.png'
import sina from './sina.png' import sina from './sina.png'
import wechat from './wechat.png' import wechat from './wechat.png'
import { getParam } from "@/utils";
class Passport extends Component { class Passport extends Component {
...@@ -59,8 +60,6 @@ class Passport extends Component { ...@@ -59,8 +60,6 @@ class Passport extends Component {
componentDidUpdate() { componentDidUpdate() {
this.routeWhenUserLoggedIn() this.routeWhenUserLoggedIn()
// console.log(this.props.location);
} }
...@@ -72,8 +71,8 @@ class Passport extends Component { ...@@ -72,8 +71,8 @@ class Passport extends Component {
history.push('/') history.push('/')
} else { } else {
const { from } = location.state || {from: {pathname: '/', search: ''}}; const { from } = location.state || {from: {pathname: '/', search: ''}};
history.replace(from); const redirectURI = getParam('redirect')
// history.go(-1) redirectURI ? (window.location.href = redirectURI) : history.replace(from);
} }
} }
} }
......
...@@ -12,7 +12,7 @@ import { connect } from 'react-redux'; ...@@ -12,7 +12,7 @@ import { connect } from 'react-redux';
import { compose } from 'redux'; import { compose } from 'redux';
import { isEmpty } from 'lodash' import { isEmpty } from 'lodash'
import { Toast } from 'antd-mobile'; import { Toast } from 'antd-mobile';
import { validateTel } from "@/utils"; import { validateTel, getParam } from "@/utils";
import { HeaderBar } from "@/common"; import { HeaderBar } from "@/common";
...@@ -27,11 +27,16 @@ class Login extends Component { ...@@ -27,11 +27,16 @@ class Login extends Component {
const item = loginWays.find(item => item.text === method) const item = loginWays.find(item => item.text === method)
let {from} = location.state || {from: {pathname: '/', search: '', hash: ''}}; let from = location.state && location.state.from || {
pathname: '/',
search: window.location.search,
hash: ''
};
const redirectURI = window.location.origin + from.pathname + from.search + from.hash; const redirectURI = window.location.origin + from.pathname + from.search + from.hash;
switch (method) { switch (method) {
case '账号登录': case '账号登录':
history.push('/passport/account-login', location.state) history.push({pathname: '/passport/account-login', search: window.location.search}, location.state)
break; break;
case '微信': case '微信':
window.location.assign(`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx23dac6775ac82877&redirect_uri=${encodeURIComponent(redirectURI)}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`) window.location.assign(`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx23dac6775ac82877&redirect_uri=${encodeURIComponent(redirectURI)}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`)
......
...@@ -167,7 +167,7 @@ class MyCourses extends Component { ...@@ -167,7 +167,7 @@ class MyCourses extends Component {
: :
<div className="empty"> <div className="empty">
<p><i className='iconfont iconfish'/></p> <p><i className='iconfont iconfish'/></p>
<p className='empty-prompt'>还是咸鱼一条,快去翻身~</p> <p className='empty-prompt'>您还没有课程哦,赶快去选课吧~</p>
<p> <p>
<Link className='select-course' to='/classify'>去选课</Link> <Link className='select-course' to='/classify'>去选课</Link>
</p> </p>
......
...@@ -75,6 +75,7 @@ class Video extends Component { ...@@ -75,6 +75,7 @@ class Video extends Component {
previousPlaybackRate = 1 previousPlaybackRate = 1
currentPlaybackRate = 1 currentPlaybackRate = 1
reconnect = true reconnect = true
timeEnough = false
recordSocket recordSocket
recordTimer recordTimer
...@@ -382,12 +383,24 @@ class Video extends Component { ...@@ -382,12 +383,24 @@ class Video extends Component {
}) })
this.ws.addEventListener('message', e => { this.ws.addEventListener('message', e => {
const data = JSON.parse(e.data); const data = JSON.parse(e.data);
data.code == 4040 && (this.reconnect = false) data.code == 4040 && (this.reconnect = false);
data.code == 5001 && (this.timeEnough = true);
}) })
} }
sendMessage = message => { sendMessage = message => {
this.ws && this.ws.readyState === 1 && this.ws.send(JSON.stringify(message)) let readyState = this.ws.readyState, _this = this;
if(readyState === 1) {
this.ws && this.ws.send(JSON.stringify(message))
}else if(readyState === 3) {
this.ws.close();
this.ws = null;
let reconnect = setTimeout(function() {
clearTimeout(reconnect);
reconnect = null;
_this.ws = new WebSocket(PROCESS_URL);
}, 500);
}
} }
//视频结束请求接口 //视频结束请求接口
...@@ -408,6 +421,11 @@ class Video extends Component { ...@@ -408,6 +421,11 @@ class Video extends Component {
console.log('免费课程 拦截'); console.log('免费课程 拦截');
return; return;
} }
// 时间足够不发送
if(this.timeEnough) {
console.log('5001 时间足够');
return;
}
if (course.is_aist) { if (course.is_aist) {
// 返现课程 // 返现课程
this.sendMessage({ this.sendMessage({
...@@ -424,7 +442,7 @@ class Video extends Component { ...@@ -424,7 +442,7 @@ class Video extends Component {
token: this.token, token: this.token,
platform: 5, platform: 5,
video_id: videoList[activeIndex]['id'], video_id: videoList[activeIndex]['id'],
course_id: this.courseID, course_id: this.state.courseId,
v_course_id: vCourseId, v_course_id: vCourseId,
}) })
} }
...@@ -442,6 +460,11 @@ class Video extends Component { ...@@ -442,6 +460,11 @@ class Video extends Component {
if (Number(sec) === 0) { if (Number(sec) === 0) {
return; return;
} }
// 时间足够不发送
if(this.timeEnough) {
console.log('5001 时间足够');
return;
}
let info_type = 'c_watch_time'; let info_type = 'c_watch_time';
if (course.is_aist) { if (course.is_aist) {
info_type = 'watch_time'; info_type = 'watch_time';
...@@ -451,11 +474,11 @@ class Video extends Component { ...@@ -451,11 +474,11 @@ class Video extends Component {
rate, rate,
time: sec, time: sec,
video_id: videoList[activeIndex]['id'], video_id: videoList[activeIndex]['id'],
course_id: this.courseID, course_id: this.state.courseId,
v_course_id: vCourseId, v_course_id: vCourseId,
uid: this.props.user.data.uid, uid: this.props.user.data.uid,
token: this.token, token: this.token,
platform: 0 platform: 5
}) })
} }
...@@ -502,10 +525,14 @@ class Video extends Component { ...@@ -502,10 +525,14 @@ class Video extends Component {
this.previousPlaybackRate = this.currentPlaybackRate this.previousPlaybackRate = this.currentPlaybackRate
}) })
this.player.on('ended', () => { this.player.on('ended', () => {
console.log('ended');
this.sendWatchTime(this.watchSec, this.currentPlaybackRate) this.sendWatchTime(this.watchSec, this.currentPlaybackRate)
this.countSchedule(); // 计算进度 this.countSchedule(); // 计算进度
this.getShareProgressInfo() // 返现课程才出现打卡记录
clearInterval(this.timer) if(this.state.course.is_aist) {
this.getShareProgressInfo()
}
clearInterval(this.timer);
}) })
this.player.on('seeked', () => { this.player.on('seeked', () => {
this.sendRecord() this.sendRecord()
...@@ -535,8 +562,10 @@ class Video extends Component { ...@@ -535,8 +562,10 @@ class Video extends Component {
if (index === this.state.activeIndex) { if (index === this.state.activeIndex) {
return return
} }
console.log('selectVideo 先发送时间 在发送进度 在重置定时器');
this.sendWatchTime(this.watchSec, this.currentPlaybackRate)
this.countSchedule(); // 计算进度 this.countSchedule(); // 计算进度
this.setupTimer();
this.setState( this.setState(
{ {
...@@ -551,7 +580,7 @@ class Video extends Component { ...@@ -551,7 +580,7 @@ class Video extends Component {
this.getCoursePrice(); this.getCoursePrice();
} }
} }
) );
} }
getLastVideoIndex = lastIndex => { getLastVideoIndex = lastIndex => {
...@@ -592,10 +621,16 @@ class Video extends Component { ...@@ -592,10 +621,16 @@ class Video extends Component {
const {course = {}} = this.state; const {course = {}} = this.state;
if (Number(course.course_id) === 0 || course.course_id === '') { if (Number(course.course_id) === 0 || course.course_id === '') {
console.log('免费课程 拦截'); console.log('免费课程 拦截');
} else { }else{
let _this = this;
this.setupWS(); this.setupWS();
this.setupTimer(); this.setupTimer();
this.countSchedule(); console.log('playSetup');
let scheduleTime = setTimeout(function () {
clearTimeout(scheduleTime);
scheduleTime = null;
_this.countSchedule();
}, 1000);
} }
let index = this.getLastVideoIndex(course.last_video_id); let index = this.getLastVideoIndex(course.last_video_id);
index = index >= 0 ? index : 0; index = index >= 0 ? index : 0;
......
...@@ -2,7 +2,7 @@ import { combineReducers } from 'redux'; ...@@ -2,7 +2,7 @@ import { combineReducers } from 'redux';
import myCourses from '@/components/study/myCourses/reducers' import myCourses from '@/components/study/myCourses/reducers'
import courseInfo from '@/components/detail/reducers' import courseInfo from '@/components/detail/reducers'
import user from './userReducer' import user from './userReducer'
import country from '@/components/country/countryRedux'; import country from '@/components/country/countryRedux'
const reducer = combineReducers({ const reducer = combineReducers({
......
import { SET_CURRENT_USER, UPDATE_USER, START_FETCH_USER } from '@/store/userAction'; import { SET_CURRENT_USER, UPDATE_USER, START_FETCH_USER } from '@/store/userAction';
import { merge } from 'lodash' import { merge } from 'lodash'
const notLoggedIn = 4030
const initialState = { const initialState = {
hasError: false, hasError: true,
code: 0, code: notLoggedIn,
msg: '', msg: '',
data: { data: {
username: '', username: '',
......
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