video_transcode
harry 5 years ago
parent 862135ef8a
commit 29941df44c

@ -42,10 +42,6 @@ function StudentStudy(props) {
useEffect(() => { useEffect(() => {
// 保存当前的id // 保存当前的id
saveUserProgramIdentifier(id); saveUserProgramIdentifier(id);
// startProgramQuestion(id);
// console.log("getUserProgramDetail(id)");
// console.log(id);
// console.log(id.charAt(id.length-1));
try { try {
if (id.charAt(id.length - 1) === "?") { if (id.charAt(id.length - 1) === "?") {
id = id.substring(0, id.length - 1); id = id.substring(0, id.length - 1);
@ -69,16 +65,14 @@ function StudentStudy(props) {
changeUserCodeTab(tab); changeUserCodeTab(tab);
} }
}, []); }, []);
// console.log(hack, hack.modify_code)
useEffect(() => { useEffect(() => {
if (hack && hack.modify_code && hasUpdate) { // 代码更改,提示是否需要更新代码 if (hack && hack.modify_code && hasUpdate) { // 代码更改,提示是否需要更新代码
setHasUpdate(false); setHasUpdate(false);
handleUpdateNotice(); handleUpdateNotice();
} }
}, [hack, hasUpdate]); }, [hack, hack.modify_code, hasUpdate]);
const handleUpdateNotice = () => { const handleUpdateNotice = () => {
console.log(props);
props.confirm({ props.confirm({
title: '提示', title: '提示',
content: ( content: (
@ -91,22 +85,7 @@ function StudentStudy(props) {
restoreInitialCode(id, '更新成功'); restoreInitialCode(id, '更新成功');
} }
}) })
// Modal.confirm({
// title: '提示',
// content: (
// <p>
// 代码文件有更新啦 <br />
// 还未提交的代码,请自行保存
// </p>
// ),
// okText: '立即更新',
// cancelText: '稍后再说',
// onOk () {
// restoreInitialCode(id, '更新成功');
// }
// });
} }
// const _hack_id = hack_identifier || fromStore('hack_identifier');
// 处理编辑 // 处理编辑
const handleClickEditor = (identifier) => { const handleClickEditor = (identifier) => {
if (!identifier) return; if (!identifier) return;

Loading…
Cancel
Save