Commit 79308038 by zhanghaozhe

ai测试

parent 385661a9
...@@ -5,7 +5,13 @@ import { browser, getParam, http } from "@/utils" ...@@ -5,7 +5,13 @@ import { browser, getParam, http } from "@/utils"
import { Toast } from 'antd-mobile' import { Toast } from 'antd-mobile'
import storage from 'store2' import storage from 'store2'
import Navigation from "@components/ai-test/common/navigation" import Navigation from "@components/ai-test/common/navigation"
import { differenceInSeconds, differenceInMinutes, differenceInHours, differenceInDays, lightFormat } from "date-fns"; import {
differenceInSeconds,
differenceInMinutes,
differenceInHours,
differenceInDays,
differenceInMilliseconds,
} from "date-fns";
import { isEmpty } from 'lodash' import { isEmpty } from 'lodash'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import { matchPath } from 'react-router-dom' import { matchPath } from 'react-router-dom'
...@@ -35,8 +41,8 @@ class Exam extends Component { ...@@ -35,8 +41,8 @@ class Exam extends Component {
if (user.hasError) { if (user.hasError) {
return history.push('/passport') return history.push('/passport')
} }
if (this.store.get('submitted')) { if (this.store.session.get('submitted')) {
this.store.remove('submitted') this.store.session.clearAll()
this.props.history.replace('/ai-test') this.props.history.replace('/ai-test')
} }
this.unlisten = history.listen((location) => { this.unlisten = history.listen((location) => {
...@@ -49,6 +55,18 @@ class Exam extends Component { ...@@ -49,6 +55,18 @@ class Exam extends Component {
this.unlisten && this.unlisten() this.unlisten && this.unlisten()
}) })
this.getQuestions() this.getQuestions()
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
this.setState(state => {
return {
elapsed: state.elapsed + (Date.now() - this.store.session.get('hiddenTimestamp')) / 10,
}
})
} else {
this.store.session.set('hiddenTimestamp', Date.now())
}
})
} }
componentWillUnmount() { componentWillUnmount() {
...@@ -59,18 +77,18 @@ class Exam extends Component { ...@@ -59,18 +77,18 @@ class Exam extends Component {
setCounter = () => { setCounter = () => {
this.timer = setInterval(() => { this.timer = setInterval(() => {
this.setState(state => { this.setState(state => {
const s = state.elapsed + 1 const fms = state.elapsed + 1
return { return {
time: { time: {
d: Math.floor(s / (60 * 60 * 24)), d: Math.floor(fms / (60 * 60 * 100 * 24)),
h: Math.floor(s / (60 * 60)) % 24, h: Math.floor(fms / (60 * 60 * 100)) % 24,
m: Math.floor(s / 60) % 60, m: Math.floor(fms / (60 * 100)) % 60,
s: s % 60, s: Math.floor(fms / 100) % 60,
}, },
elapsed: s, elapsed: fms,
} }
}) })
}, 1000) }, 10)
} }
goBack = () => { goBack = () => {
...@@ -92,7 +110,7 @@ class Exam extends Component { ...@@ -92,7 +110,7 @@ class Exam extends Component {
.then(res => { .then(res => {
const {code, msg, data} = res.data const {code, msg, data} = res.data
if (code === 200) { if (code === 200) {
let answer = this.store.get('answer') || {} let answer = this.store.session.get('answer') || {}
if (isEmpty(answer)) { if (isEmpty(answer)) {
data.forEach(item => { data.forEach(item => {
answer[item.id] = 0 answer[item.id] = 0
...@@ -123,7 +141,7 @@ class Exam extends Component { ...@@ -123,7 +141,7 @@ class Exam extends Component {
m: differenceInMinutes(now, createTime) % 60, m: differenceInMinutes(now, createTime) % 60,
s: differenceInSeconds(now, createTime) % 60, s: differenceInSeconds(now, createTime) % 60,
}, },
elapsed: differenceInSeconds(now, createTime), elapsed: differenceInMilliseconds(now, createTime) / 10,
}); });
} }
...@@ -169,21 +187,7 @@ class Exam extends Component { ...@@ -169,21 +187,7 @@ class Exam extends Component {
<i className={'iconfont iconzhong'}></i> <i className={'iconfont iconzhong'}></i>
<span> <span>
{ {
!!time.d && time.d !!time.d && <>{time.d}</>
}
{
!!time.h && <>{time.h && time.h.toString().padStart(2, '0')}:</>
}
{time.m.toString().padStart(2, '0')}:
{time.s.toString().padStart(2, '0')}
</span>
</div>
{/*
<div className="time">
<i className={'iconfont iconzhong'}></i>
<span>
{
!!time.d && time.d
} }
{ {
!!time.h && <>{time.h && time.h.toString().padStart(2, '0')}:</> !!time.h && <>{time.h && time.h.toString().padStart(2, '0')}:</>
...@@ -192,7 +196,6 @@ class Exam extends Component { ...@@ -192,7 +196,6 @@ class Exam extends Component {
{time.s.toString().padStart(2, '0')} {time.s.toString().padStart(2, '0')}
</span> </span>
</div> </div>
*/}
<div className="count" <div className="count"
onClick={this.storeData}>{Object.values(answer).filter(item => item).length}/{questions.length}</div> onClick={this.storeData}>{Object.values(answer).filter(item => item).length}/{questions.length}</div>
</header> </header>
......
...@@ -45,6 +45,9 @@ class scoreReport extends Component { ...@@ -45,6 +45,9 @@ class scoreReport extends Component {
let _this = this let _this = this
var canvas2 = document.createElement("canvas") var canvas2 = document.createElement("canvas")
let _canvas = document.getElementsByClassName('score-list')[0] let _canvas = document.getElementsByClassName('score-list')[0]
if(!_canvas){
return
}
var w = parseInt(window.getComputedStyle(_canvas).width) var w = parseInt(window.getComputedStyle(_canvas).width)
var h = parseInt(window.getComputedStyle(_canvas).height) var h = parseInt(window.getComputedStyle(_canvas).height)
var scale = window.devicePixelRatio var scale = window.devicePixelRatio
......
...@@ -278,7 +278,7 @@ class Scores extends Component { ...@@ -278,7 +278,7 @@ class Scores extends Component {
} }
</Tabs> </Tabs>
{ {
!isExpandRankList ? rankList.length > 10 && (!isExpandRankList ?
<div className="expand" onClick={() => { <div className="expand" onClick={() => {
this.setState({ this.setState({
isExpandRankList: true, isExpandRankList: true,
...@@ -300,6 +300,7 @@ class Scores extends Component { ...@@ -300,6 +300,7 @@ class Scores extends Component {
<i className={'iconfont iconiconfront-71'}></i> <i className={'iconfont iconiconfront-71'}></i>
</span> </span>
</div> </div>
)
} }
</div> </div>
</div> </div>
......
...@@ -28,7 +28,6 @@ class SubmitAnswer extends Component { ...@@ -28,7 +28,6 @@ class SubmitAnswer extends Component {
this.props.history.replace('/ai-test') this.props.history.replace('/ai-test')
this.store.session.remove('submitted') this.store.session.remove('submitted')
} }
console.log(this.store.session.get('submitted'))
if (this.store.session.get('submitted')) { if (this.store.session.get('submitted')) {
this.getAnalysis() this.getAnalysis()
} else { } else {
...@@ -44,18 +43,18 @@ class SubmitAnswer extends Component { ...@@ -44,18 +43,18 @@ class SubmitAnswer extends Component {
setCounter = () => { setCounter = () => {
this.timer = setInterval(() => { this.timer = setInterval(() => {
this.setState(state => { this.setState(state => {
const s = state.elapsed + 1 const fms = state.elapsed + 1
return { return {
time: { time: {
d: Math.floor(s / (60 * 60 * 24)), d: Math.floor(fms / (60 * 60 * 100 * 24)),
h: Math.floor(s / (60 * 60)) % 24, h: Math.floor(fms / (60 * 60 * 100)) % 24,
m: Math.floor(s / 60) % 60, m: Math.floor(fms / (60 * 100)) % 60,
s: s % 60, s: Math.floor(fms / 100) % 60,
}, },
elapsed: s, elapsed: fms,
} }
}) })
}, 1000) }, 10)
} }
...@@ -63,12 +62,14 @@ class SubmitAnswer extends Component { ...@@ -63,12 +62,14 @@ class SubmitAnswer extends Component {
const {answer, recordId} = this.state const {answer, recordId} = this.state
http.post(`${API.home}/sys/submit_answer`, { http.post(`${API.home}/sys/submit_answer`, {
answer: JSON.stringify(answer), answer: JSON.stringify(answer),
cost_time: this.state.elapsed * 1000, cost_time: this.state.elapsed * 10,
record_id: recordId, record_id: recordId,
}).then(res => { }).then(res => {
const {code, msg} = res.data const {code, msg} = res.data
if (code === 200) { if (code === 200) {
this.store.session.set('submitted', true) this.store.session.set('submitted', true)
this.store.session.set('elapsed', this.state.elapsed)
this.store.session.set('time', this.state.time)
clearInterval(this.timer) clearInterval(this.timer)
this.props.history.push('/ai-test/report') this.props.history.push('/ai-test/report')
} else { } else {
...@@ -101,7 +102,7 @@ class SubmitAnswer extends Component { ...@@ -101,7 +102,7 @@ class SubmitAnswer extends Component {
<div className="cost">用时: <div className="cost">用时:
<span> <span>
{ {
!!time.d && time.d !!time.d && <>{time.d}</>
} }
{ {
!!time.h && <>{time.h && time.h.toString().padStart(2, '0')}:</> !!time.h && <>{time.h && time.h.toString().padStart(2, '0')}:</>
......
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