|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
* @Github:
|
|
|
|
|
* @Date: 2019-11-23 10:53:19
|
|
|
|
|
* @LastEditors: tangjiang
|
|
|
|
|
* @LastEditTime: 2019-12-13 16:46:31
|
|
|
|
|
* @LastEditTime: 2019-12-13 17:19:15
|
|
|
|
|
*/
|
|
|
|
|
import './index.scss';
|
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
@ -23,15 +23,14 @@ import { withRouter } from 'react-router';
|
|
|
|
|
|
|
|
|
|
function StudentStudy (props) {
|
|
|
|
|
|
|
|
|
|
const [hasUpdate, setHasUpdate] = useState(true);
|
|
|
|
|
const {
|
|
|
|
|
// hack,
|
|
|
|
|
userInfo,
|
|
|
|
|
hack_identifier,
|
|
|
|
|
user_program_identifier,
|
|
|
|
|
// user_program_identifier,
|
|
|
|
|
restoreInitialCode
|
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
|
|
// 是否更新
|
|
|
|
|
const [isUpdate, setIsUpdate] = useState(true);
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
match: { params },
|
|
|
|
@ -50,8 +49,8 @@ function StudentStudy (props) {
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const { hack = {} } = props;
|
|
|
|
|
if (!hack.modify_code && isUpdate) { // 代码更改,提示是否需要更新代码
|
|
|
|
|
setIsUpdate(false);
|
|
|
|
|
if (hack.modify_code && hasUpdate) { // 代码更改,提示是否需要更新代码
|
|
|
|
|
setHasUpdate(false);
|
|
|
|
|
Modal.confirm({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: (
|
|
|
|
@ -67,7 +66,7 @@ function StudentStudy (props) {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, [props]);
|
|
|
|
|
}, [props, hasUpdate, setHasUpdate]);
|
|
|
|
|
|
|
|
|
|
const _hack_id = hack_identifier || fromStore('hack_identifier');
|
|
|
|
|
|
|
|
|
@ -93,7 +92,7 @@ function StudentStudy (props) {
|
|
|
|
|
</div> */}
|
|
|
|
|
<UserInfo userInfo={userInfo}/>
|
|
|
|
|
<div className={'study_name'}>
|
|
|
|
|
<span>乘积最大序列</span>
|
|
|
|
|
<span>乘积最大序列 {hasUpdate}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div className={'study_quit'}>
|
|
|
|
|
{/* to={`/problems/${_hack_id}/edit`} */}
|
|
|
|
@ -129,8 +128,9 @@ function StudentStudy (props) {
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => {
|
|
|
|
|
const { userInfo } = state.userReducer;
|
|
|
|
|
const { hack_identifier, user_program_identifier } = state.ojForUserReducer;
|
|
|
|
|
const { hack_identifier, user_program_identifier, hack } = state.ojForUserReducer;
|
|
|
|
|
return {
|
|
|
|
|
hack,
|
|
|
|
|
userInfo,
|
|
|
|
|
user_program_identifier,
|
|
|
|
|
hack_identifier
|
|
|
|
|