Commit 13e9cfa0 by zhanghaozhe

视频页面点击返回

parent b4b7bee6
...@@ -82,8 +82,8 @@ class App extends Component { ...@@ -82,8 +82,8 @@ class App extends Component {
location.state = { location.state = {
...state, ...{ ...state, ...{
record: _state.record ? record: _state.record ?
[..._state.record, {pathname: location.pathname}] : [..._state.record, {pathname: location.pathname, search: location.search, hash: location.hash}] :
[{pathname: location.pathname}] [{pathname: location.pathname, search: '', hash: ''}]
} }
} }
} }
......
import React, { Component } from 'react' import React, { Component } from 'react'
import HeaderBar from '@/common/HeaderBar' import HeaderBar from '@/common/HeaderBar'
import './video.scss' import './video.scss'
import {NavLink, Route, Redirect, Switch, Link} from 'react-router-dom' import { NavLink, Route, Redirect, Switch, Link } from 'react-router-dom'
import {http, getParam, browser} from '@/utils' import { http, getParam, browser } from '@/utils'
import Recommendation from './recommendation' import Recommendation from './recommendation'
import VideoCatalog from './video-catalog' import VideoCatalog from './video-catalog'
import DatumCatalog from './datum-catalog' import DatumCatalog from './datum-catalog'
...@@ -103,9 +103,8 @@ class Video extends Component { ...@@ -103,9 +103,8 @@ class Video extends Component {
componentDidMount() { componentDidMount() {
const location = window.location; if (window.location.protocol === 'https:') {
if (location.protocol === 'https:') { window.location.replace('http' + window.location.href.slice(5))
location.replace('http' + location.href.slice(5))
return return
} }
...@@ -117,8 +116,8 @@ class Video extends Component { ...@@ -117,8 +116,8 @@ class Video extends Component {
this.setState({ this.setState({
courseId: this.courseID courseId: this.courseID
}) })
const { location: { state = {} } } = this.props; const {location, location: {state = {}}} = this.props;
if(state.oid) { if (state.oid) {
this.check(state.oid); this.check(state.oid);
} }
if (getParam('is_class') === 1 || getParam('weixinpay')) { if (getParam('is_class') === 1 || getParam('weixinpay')) {
...@@ -136,7 +135,7 @@ class Video extends Component { ...@@ -136,7 +135,7 @@ class Video extends Component {
// 直接购买 // 直接购买
tobuy = () => { tobuy = () => {
// 详情页单集购买到该页面,url中的id不是课程id // 详情页单集购买到该页面,url中的id不是课程id
const { course={} } = this.state; const {course = {}} = this.state;
http.get(`${API['base-api']}/m/cart/addtopreorder/[${course.course_id}]`).then((res) => { http.get(`${API['base-api']}/m/cart/addtopreorder/[${course.course_id}]`).then((res) => {
if (res.data.errno === 0) { if (res.data.errno === 0) {
this.props.history.push(`/order?id=${course.course_id}`, {simple: 1}) this.props.history.push(`/order?id=${course.course_id}`, {simple: 1})
...@@ -162,11 +161,11 @@ class Video extends Component { ...@@ -162,11 +161,11 @@ class Video extends Component {
} }
// 单集购买 H5支付成功后回调 // 单集购买 H5支付成功后回调
payCallback =() => { payCallback = () => {
const _this = this; const _this = this;
if(!getParam('oid')) { if (!getParam('oid')) {
return; return;
}else{ } else {
this.setState({ this.setState({
singMess: JSON.parse(window.localStorage.getItem('singMess')) singMess: JSON.parse(window.localStorage.getItem('singMess'))
}) })
...@@ -209,7 +208,7 @@ class Video extends Component { ...@@ -209,7 +208,7 @@ class Video extends Component {
} }
}; };
// 单集购买 微信内支付成功后回调 // 单集购买 微信内支付成功后回调
isweixinPay =()=> { isweixinPay = () => {
let _this = this; let _this = this;
let weixin_code = getParam('code'); let weixin_code = getParam('code');
if (weixin_code) { if (weixin_code) {
...@@ -223,6 +222,7 @@ class Video extends Component { ...@@ -223,6 +222,7 @@ class Video extends Component {
http.get(`${API['base-api']}/pay/wxpay/pub_charge/oid/${getParam('oid')}/code/${weixin_code}`).then((res) => { http.get(`${API['base-api']}/pay/wxpay/pub_charge/oid/${getParam('oid')}/code/${weixin_code}`).then((res) => {
if (res.data.errno === 0) { if (res.data.errno === 0) {
const data = res.data.data; const data = res.data.data;
function onBridgeReady() { function onBridgeReady() {
WeixinJSBridge.invoke( WeixinJSBridge.invoke(
'getBrandWCPayRequest', { 'getBrandWCPayRequest', {
...@@ -278,6 +278,7 @@ class Video extends Component { ...@@ -278,6 +278,7 @@ class Video extends Component {
} }
) )
} }
if (typeof WeixinJSBridge == "undefined") { if (typeof WeixinJSBridge == "undefined") {
if (document.addEventListener) { if (document.addEventListener) {
document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false) document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false)
...@@ -386,7 +387,7 @@ class Video extends Component { ...@@ -386,7 +387,7 @@ class Video extends Component {
} }
sendMessage = message => { sendMessage = message => {
this.ws && this.ws.send(JSON.stringify(message)) this.ws && this.ws.readyState === 1 && this.ws.send(JSON.stringify(message))
} }
//视频结束请求接口 //视频结束请求接口
...@@ -402,12 +403,12 @@ class Video extends Component { ...@@ -402,12 +403,12 @@ class Video extends Component {
//告诉服务端计算进度 普通课程不发送 //告诉服务端计算进度 普通课程不发送
countSchedule = () => { countSchedule = () => {
const {videoList, activeIndex, vCourseId, course={}} = this.state const {videoList, activeIndex, vCourseId, 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('免费课程 拦截');
return; return;
} }
if(course.is_aist) { if (course.is_aist) {
// 返现课程 // 返现课程
this.sendMessage({ this.sendMessage({
mtype: 'count_schedule', mtype: 'count_schedule',
...@@ -415,7 +416,7 @@ class Video extends Component { ...@@ -415,7 +416,7 @@ class Video extends Component {
token: this.token, token: this.token,
platform: 5 platform: 5
}) })
}else{ } else {
// 普通课程 // 普通课程
this.sendMessage({ this.sendMessage({
mtype: 'c_count_schedule', mtype: 'c_count_schedule',
...@@ -433,16 +434,16 @@ class Video extends Component { ...@@ -433,16 +434,16 @@ class Video extends Component {
sendWatchTime = (sec, rate) => { sendWatchTime = (sec, rate) => {
const {videoList, activeIndex, vCourseId, course = {}} = this.state const {videoList, activeIndex, vCourseId, 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('免费课程 拦截');
return; return;
} }
// 时间为0 不发送消息 // 时间为0 不发送消息
if(Number(sec) === 0) { if (Number(sec) === 0) {
return; 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';
} }
this.sendMessage({ this.sendMessage({
...@@ -546,7 +547,7 @@ class Video extends Component { ...@@ -546,7 +547,7 @@ class Video extends Component {
this.setPlayerSrc(this.state.videoList[index]['play_url']) this.setPlayerSrc(this.state.videoList[index]['play_url'])
this.sendLastRecord() this.sendLastRecord()
this.playVideo() this.playVideo()
}else { } else {
this.getCoursePrice(); this.getCoursePrice();
} }
} }
...@@ -565,7 +566,7 @@ class Video extends Component { ...@@ -565,7 +566,7 @@ class Video extends Component {
url = `${API.home}/m/course/play/${this.courseID}` url = `${API.home}/m/course/play/${this.courseID}`
} }
http.get(url).then(res => { http.get(url).then(res => {
const { data={}, code } = res.data; const {data = {}, code} = res.data;
if (code === 200) { if (code === 200) {
this.setState( this.setState(
state => ({ state => ({
...@@ -588,10 +589,10 @@ class Video extends Component { ...@@ -588,10 +589,10 @@ class Video extends Component {
playSetup = () => { playSetup = () => {
// is_aist,是否AI特训营 // is_aist,是否AI特训营
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 {
this.setupWS(); this.setupWS();
this.setupTimer(); this.setupTimer();
this.countSchedule(); this.countSchedule();
...@@ -661,7 +662,7 @@ class Video extends Component { ...@@ -661,7 +662,7 @@ class Video extends Component {
} }
getCoursePrice = () => { getCoursePrice = () => {
const { course = {} } = this.state; const {course = {}} = this.state;
http.get(`${API.home}/sys/course/price/${course.course_id}`) http.get(`${API.home}/sys/course/price/${course.course_id}`)
.then(res => { .then(res => {
const {data} = res const {data} = res
...@@ -705,19 +706,19 @@ class Video extends Component { ...@@ -705,19 +706,19 @@ class Video extends Component {
let {match, location, history} = this.props let {match, location, history} = this.props
const {videoList, activeIndex, isAuth, salePrice, course, singleBox, singleType} = this.state; const {videoList, activeIndex, isAuth, salePrice, course, singleBox, singleType} = this.state;
let toHref = ''; let toHref = '';
if(location.state && location.state.to && location.state.to === 'detail') { if (location.state && location.state.to && location.state.to === 'detail') {
toHref=`/detail?id=${course.course_id}` toHref = `/detail?id=${course.course_id}`
} }
return ( return (
<div className='play'> <div className='play'>
<HeaderBar title={this.state.title} arrow={true} toHref={()=>{ <HeaderBar title={this.state.title} arrow={true} toHref={() => {
history.push( toHref ? history.push(
toHref, toHref,
{ {
to: 'classify' to: 'classify'
} }
) ) : history.go(-1)
}} /> }}/>
<Loading isLoading={this.state.isLoading}> <Loading isLoading={this.state.isLoading}>
<div className="video"> <div className="video">
<video className={'video-js'} ref={el => this.video = el}> <video className={'video-js'} ref={el => this.video = el}>
......
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