12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130 |
- import React from 'react';
- import './index.less';
- import { Modal } from 'antd';
- import { Link } from 'react-router-dom';
- import Page from '@src/containers/Page';
- import { asyncConfirm, asyncSMessage } from '@src/services/AsyncTools';
- import { formatTreeData, formatSeconds, formatDate, formatPercent, getMap } from '@src/services/Tools';
- import Continue from '../../../components/Continue';
- import Step from '../../../components/Step';
- import Panel from '../../../components/Panel';
- import List from '../../../components/List';
- import Tabs from '../../../components/Tabs';
- import Module from '../../../components/Module';
- import Input from '../../../components/Input';
- import Button from '../../../components/Button';
- import AnswerButton from '../../../components/AnswerButton';
- import Division from '../../../components/Division';
- import { Card1 } from '../../../components/Card';
- import ListTable from '../../../components/ListTable';
- import ProgressText from '../../../components/ProgressText';
- import IconButton from '../../../components/IconButton';
- import QAList from '../../../components/QAList';
- import { Main } from '../../../stores/main';
- import { My } from '../../../stores/my';
- import { Sentence } from '../../../stores/sentence';
- import { Question } from '../../../stores/question';
- import { Course } from '../../../stores/course';
- import { User } from '../../../stores/user';
- import { CourseModuleShow, CourseModule } from '../../../../Constant';
- import { Order } from '../../../stores/order';
- const SENTENCE = 'sentence';
- const PREVIEW = 'preview';
- const PREVIEW_COURSE = 'PREVIEW_COURSE';
- const PREVIEW_LIST = 'PREVIEW_LIST';
- const CourseModuleMap = getMap(CourseModule, 'value', 'label');
- const CourseSorted = getMap([{ value: 'sc', sort: 1 }, { value: 'rc', sort: 2 }, { value: 'cr', sort: 3 }], 'value', 'sort');
- const exerciseColumns = [{
- title: '练习册',
- width: 250,
- align: 'left',
- render: record => {
- let progress = 0;
- if (record.report) {
- progress = formatPercent(record.report.userNumber, record.report.questionNumber);
- }
- return (
- <div className="table-row">
- <div className="night f-s-16">{record.title}</div>
- <div>
- <ProgressText progress={progress} times={record.paper ? record.paper.times : 0} size="small" />
- </div>
- </div>
- );
- },
- }, {
- title: '正确率',
- width: 150,
- align: 'left',
- render: item => {
- return (
- <div className="table-row">
- <div className="night f-s-16 f-w-b">--</div>
- <div className="f-s-12">{formatPercent(item.stat.totalCorrect, item.stat.totalNumber, false)}</div>
- </div>
- );
- },
- }, {
- title: '全站用时',
- width: 150,
- align: 'left',
- render: record => {
- let time = '--';
- if (record.paper) {
- time = formatSeconds(record.paper.report.userTime / record.paper.report.userNumber);
- }
- return (
- <div className="table-row">
- <div className="night f-s-16 f-w-b">{time}</div>
- <div className="f-s-12">全站{formatSeconds(record.stat.totalTime / record.stat.totalNumber)}</div>
- </div>
- );
- },
- }, {
- title: '最近做题',
- width: 150,
- align: 'left',
- render: (record) => {
- const time = record.report ? record.report.updateTime : record.paper ? record.paper.latestTime : null;
- return (
- <div className="table-row">
- <div>{time && formatDate(time, 'YYYY-MM-DD')}</div>
- <div>{time && formatDate(time, 'HH:mm')}</div>
- </div>
- );
- },
- }, {
- title: '操作',
- width: 180,
- align: 'left',
- render: record => {
- return (
- <div className="table-row p-t-1">
- {!record.report && <IconButton type="start" tip="Start" onClick={() => {
- Question.startLink('exercise', record);
- }} />}
- {(record.report && !record.report.isFinish) && <IconButton className="m-r-2" type="continue" tip="Continue" onClick={() => {
- Question.continueLink('exercise', record);
- }} />}
- <IconButton type="restart" tip="Restart" onClick={() => {
- this.restart(record);
- }} />
- </div>
- );
- },
- }, {
- title: '报告',
- width: 30,
- align: 'right',
- render: record => {
- return (
- <div className="table-row p-t-1">
- {record.report && record.report.isFinish && <IconButton type="report" tip="Report" onClick={() => {
- Question.reportLink(record);
- }} />}
- </div>
- );
- },
- }];
- export default class extends Page {
- constructor(props) {
- super(props);
- this.sentenceColums = [{
- title: '练习册',
- width: 250,
- align: 'left',
- render: record => {
- let progress = 0;
- if (record.report) {
- progress = formatPercent(record.report.userNumber, record.report.questionNumber);
- }
- return (
- <div className="table-row">
- <div className="night f-s-16">{record.title}</div>
- <div>
- <ProgressText progress={progress} times={record.paper ? record.paper.times : 0} size="small" />
- </div>
- </div>
- );
- },
- }, {
- title: '正确率',
- width: 150,
- align: 'left',
- render: record => {
- let correct = '--';
- if (record.report) {
- correct = formatPercent(record.report.userCorrect, record.report.userNumber, false);
- }
- return (
- <div className="table-row">
- <div className="night f-s-16 f-w-b">{correct}</div>
- <div className="f-s-12">
- 全站{formatPercent(record.stat.totalCorrect, record.stat.totalNumber, false)}
- </div>
- </div>
- );
- },
- }, {
- title: '全站用时',
- width: 150,
- align: 'left',
- render: record => {
- let time = '--';
- if (record.report) {
- time = formatSeconds(record.report.userTime / record.report.userNumber);
- }
- return (
- <div className="table-row">
- <div className="night f-s-16 f-w-b">{time}</div>
- <div className="f-s-12">全站{formatSeconds(record.stat.totalTime / record.stat.totalNumber)}</div>
- </div>
- );
- },
- }, {
- title: '最近做题',
- width: 150,
- align: 'left',
- render: record => {
- const time = record.report ? record.report.updateTime : record.paper ? record.paper.latestTime : null;
- return (
- <div className="table-row">
- <div>{time && formatDate(time, 'YYYY-MM-DD')}</div>
- <div>{time && formatDate(time, 'HH:mm')}</div>
- </div>
- );
- },
- }, {
- title: '操作',
- width: 180,
- align: 'left',
- render: record => {
- return (
- <div className="table-row p-t-1">
- {!record.report && (
- <IconButton
- type="start"
- tip="Start"
- onClick={() => {
- User.needLogin()
- .then(() => {
- Question.startLink('sentence', record);
- });
- }}
- />
- )}
- {record.report && !record.report.isFinish && (
- <IconButton
- className="m-r-2"
- type="continue"
- tip="Continue"
- onClick={() => {
- User.needLogin()
- .then(() => {
- Question.continueLink('sentence', record);
- });
- }}
- />
- )}
- {record.report && !!record.report.isFinish && (
- <IconButton
- type="restart"
- tip="Restart"
- onClick={() => {
- User.needLogin()
- .then(() => {
- this.restart(record);
- });
- }}
- />
- )}
- </div>
- );
- },
- }, {
- title: '报告',
- width: 30,
- align: 'right',
- render: record => {
- return (
- <div className="table-row p-t-1">
- {record.report && record.report.isFinish && <IconButton type="report" tip="Report" onClick={() => {
- User.needLogin()
- .then(() => {
- Question.reportLink(record);
- });
- }} />}
- </div>
- );
- },
- }];
- }
- initState() {
- this.code = null;
- this.columns = exerciseColumns;
- this.exerciseProgress = {};
- this.courseProgress = {};
- this.inited = false;
- return {
- tab1: SENTENCE,
- tab2: '',
- previewType: PREVIEW_COURSE,
- tabs: [],
- allCourse: [],
- courseProgress: {},
- };
- }
- init() {
- Main.getExercise().then(result => {
- const list = result.map(row => {
- row.title = `${row.titleZh}${row.titleEn}`;
- row.key = row.extend;
- return row;
- });
- const tabs = formatTreeData(list, 'id', 'title', 'parentId');
- // 课程顶级分类
- const courseStructs = result.filter(row => row.isCourse && row.level === 1);
- courseStructs.unshift({ key: '', name: '全部' });
- tabs.push({ key: PREVIEW, name: '预习作业' });
- this.courseStructMap = getMap(courseStructs, 'id', 'title');
- this.setState({
- tabs,
- courseStructs,
- courseTabs: CourseModuleShow.map(row => {
- row.title = row.label;
- row.key = row.value;
- return row;
- }),
- });
- this.inited = true;
- this.refreshData();
- });
- }
- initData() {
- const { info = {} } = this.props.user;
- if (info.latestExercise) {
- // 获取最后一次做题记录
- Question.baseReport(info.latestExercise).then(result => {
- this.setState({ latest: result });
- });
- }
- const data = Object.assign(this.state, this.state.search);
- if (!data.tab1) {
- data.tab1 = SENTENCE;
- }
- if (data.recordId) {
- // 作业列表
- data.previewType = PREVIEW_LIST;
- }
- this.setState(data);
- if (this.inited) this.refreshData();
- }
- refreshData(tab) {
- const { tab1 } = this.state;
- switch (tab || tab1) {
- case SENTENCE:
- this.refreshSentence();
- break;
- case PREVIEW:
- this.refreshPreview();
- break;
- default:
- this.refreshExercise(tab || tab1);
- }
- }
- refreshSentence() {
- const { sentence } = this.state;
- if (!sentence) {
- User.clearSentenceTrail();
- Sentence.getInfo()
- .then(result => {
- // result.code = '123123';
- // result.trailPages = 20;
- this.setState({ sentence: result });
- return result;
- })
- .then(({ code, trailPages, chapters }) => {
- return Sentence.listArticle().then(result => {
- const chapterSteps = [];
- const chapterMap = {};
- const map = {};
- const trailArticles = [];
- let totalPage = 0;
- let introduction = null;
- let exerciseChapter = null;
- let index = 0;
- let lastChapter = -1;
- chapters.forEach(row => {
- chapterMap[row.value] = row;
- if (row.exercise) exerciseChapter = row;
- });
- result.forEach(article => {
- if (article.chapter === 0) introduction = article;
- if (!map[article.chapter]) {
- map[article.chapter] = [];
- }
- article.startPage = totalPage + 1;
- article.endPage = totalPage + article.pages;
- if (article.chapter) {
- article.position = `Part ${article.part}`;
- } else {
- // 设置list中的样式
- article.style = 'introduction';
- }
- totalPage += article.pages;
- if (article.startPage < trailPages) {
- if (lastChapter !== article.chapter) {
- lastChapter = article.chapter;
- trailArticles.push(Object.assign({ articles: [] }, chapterMap[article.chapter] || {}));
- }
- trailArticles[trailArticles.length - 1].articles.push(article);
- }
- map[article.chapter].push(article);
- });
- if (!code) {
- chapterSteps.push('试用');
- }
- // 添加前言
- if (introduction) {
- chapterSteps.push(`${introduction.title}`);
- chapterMap[0] = {
- title: introduction.title,
- value: 0,
- };
- }
- index += 1;
- chapters.forEach(row => {
- chapterSteps.push(`「${index}」${row.short}`);
- index += 1;
- });
- this.setState({ articleMap: map, trailArticles, chapterSteps, introduction, chapterMap, exerciseChapter });
- });
- })
- .then(() => {
- return Sentence.listPaper().then(result => {
- this.setState({ paperList: result, paperFilterList: result });
- });
- });
- }
- }
- refreshPreview() {
- const { previewType } = this.state;
- switch (previewType) {
- case PREVIEW_LIST:
- this.refreshListPreview();
- break;
- case PREVIEW_COURSE:
- default:
- this.refreshCourseProcess();
- break;
- }
- }
- refreshCourseProcess() {
- const { courseTabs, courseStructs, struct } = this.state;
- let { tab2 } = this.state;
- let tab;
- if (tab2 === '') {
- tab2 = courseTabs[0].key;
- this.setState({ tab2 });
- ([tab] = courseTabs);
- } else {
- ([tab] = courseTabs.filter(row => row.key === tab2));
- }
- const [courseStruct] = courseStructs.filter(row => row.key === struct);
- Course.progress(tab.value, courseStruct ? courseStruct.id : null).then(result => {
- const courseMap = {};
- // 排序:sc,rc,cr
- result = result.map(row => {
- row.sort = CourseSorted[row.course.extend] || 10;
- return row;
- });
- result.sort((a, b) => {
- return a.sort < b.sort ? -1 : (a.sort > b.sort ? 1 : 0);
- });
- const now = new Date().getTime();
- courseMap.open = result.filter(row => !row.isUsed && (!row.useEndTime || new Date(row.useEndTime).getTime() > now));
- courseMap.end = result.filter(row => (!row.isSuspend || (row.isSuspend && row.restoreTime)) && new Date(row.useEndTime).getTime() < now);
- courseMap.process = result.filter(row => row.isUsed && ((!row.isSuspend && new Date(row.useEndTime).getTime() >= now) || (row.isSuspend && !row.restoreTime)));
- this.setState({ courseMap });
- });
- Main.listFaq({ page: 1, size: 100, channel: 'preview' }).then(result => {
- this.setState({ faqs: result.list });
- });
- }
- refreshListPreview() {
- const { recordId, endTime, finish } = this.state;
- Course.listPreview({ recordId, endTime, finish }).then(result => {
- this.setState({ previews: result.list });
- });
- Course.record(recordId).then(result => {
- this.setState({ record: result });
- });
- }
- refreshExercise(tab) {
- const { tabs, tab1 } = this.state;
- let { tab2 } = this.state;
- if (!tabs) {
- // 等待数据加载
- return;
- }
- const [subject] = tabs.filter(row => row.key === tab);
- // 切换tab1的情况
- if (tab2 === '' || tab1 !== tab) {
- tab2 = subject.children[0].key;
- this.setState({ tab2 });
- }
- const [type] = subject.children.filter(row => row.key === tab2);
- Question.getExerciseProgress(type.id).then(result => {
- // const exerciseProgress = getMap(r, 'id');
- result = result.map(row => {
- row.info = [
- {
- title: '已做',
- number: row.userNumber || '-',
- unit: '题',
- },
- {
- title: '剩余',
- number: row.userNumber ? row.questionNumber - row.userNumber : '-',
- unit: '题',
- },
- {
- title: '总计',
- number: row.questionNumber || 0,
- unit: '题',
- },
- ];
- if (row.userStat) {
- row.correct = formatPercent(row.userStat.userCorrect, row.userStat.userNumber, false);
- } else {
- row.correct = '--';
- }
- row.progress = formatPercent(row.questionNumber - row.userNumber || 0, row.questionNumber);
- row.totalCorrect = formatPercent(row.stat.totalCorrect, row.stat.totalNumber, false);
- row.pieValue = formatPercent(row.userNumber, row.questionNumber);
- row.pieText = formatPercent(row.userNumber, row.questionNumber, false);
- row.pieSubText = `共${row.questionNumber}题`;
- row.children = row.children.map(r => {
- r.title = r.title || r.titleZh;
- r.progress = formatPercent(r.userNumber, r.questionNumber);
- return r;
- });
- return row;
- });
- this.setState({ exerciseProgress: result });
- });
- Main.listFaq({ page: 1, size: 100, channel: 'exercise' }).then(result => {
- this.setState({ faqs: result.list });
- });
- }
- onChangeTab(level, tab) {
- const { tab1 } = this.state;
- const data = {};
- if (level > 1) {
- data.tab1 = tab1;
- data.tab2 = tab;
- } else {
- data.tab1 = tab;
- }
- // this.refreshData(tab);
- this.refreshQuery(data);
- }
- onChangeCourse(struct) {
- const { tab1, tab2 } = this.state;
- const data = {
- tab1, tab2, struct,
- };
- this.refreshQuery(data);
- }
- onPreviewCourse() {
- const { tab1, tab2, struct } = this.state;
- const data = {
- tab1, tab2, struct,
- };
- this.refreshQuery(data);
- }
- onPreviewList(recordId) {
- const { tab1, tab2, struct } = this.state;
- const data = {
- tab1, tab2, struct, recordId,
- };
- this.refreshQuery(data);
- }
- previewAction(type, item) {
- switch (type) {
- case 'start':
- Question.startLink('preview', item);
- break;
- case 'restart':
- this.restart(item);
- break;
- case 'continue':
- Question.continueLink('preview', item);
- break;
- default:
- break;
- }
- }
- // 开通课程
- open(recordId) {
- Order.useRecord(recordId).then(() => {
- asyncSMessage('开通成功');
- this.refresh();
- });
- }
- restart(item) {
- asyncConfirm('提示', '是否重置', () => {
- Question.restart(item.paper.id).then(() => {
- this.refresh();
- });
- });
- }
- exerciseList(item) {
- User.needLogin().then(() => {
- linkTo(`/exercise/list/${item.id}`);
- });
- }
- activeSentence() {
- User.needLogin().then(() => {
- Sentence.active(this.code)
- .then(() => {
- // 重新获取长难句信息
- User.clearSentenceTrail();
- this.setState({ sentence: null, articleMap: null, paperList: null });
- this.refresh();
- })
- .catch(err => {
- this.setState({ sentenceError: err.message });
- });
- });
- }
- trailSentence() {
- User.needLogin().then(() => {
- User.sentenceTrail();
- this.setState({ sentenceError: null });
- });
- }
- sentenceRead(article) {
- if (article) {
- linkTo(`/sentence/read?chapter=${article.chapter}&part=${article.part}`);
- } else {
- linkTo('/sentence/read');
- }
- }
- sentenceFilter(value) {
- const { paperChecked, paperList } = this.state;
- value = paperChecked === value ? null : value;
- const list = paperList.filter(row => {
- const finish = row.paper ? row.paper.times > 0 : false;
- if (value === 0) {
- return !finish;
- } if (value === 1) {
- return finish;
- }
- return true;
- });
- this.setState({ paperFilterList: list, paperChecked: value });
- }
- clearExercise() {
- My.clearLatestExercise();
- this.setState({ latest: null });
- }
- renderView() {
- const { tab1, tab2, tabs, latest, sentenceModel, previewType, courseTabs = [] } = this.state;
- const [subject] = tabs.filter(row => row.key === tab1);
- const children = (subject && subject.children) ? subject.children : (tab1 === 'preview' && previewType === PREVIEW_COURSE ? courseTabs : []);
- return (
- <div>
- {latest && (
- <Continue
- data={latest}
- onClose={() => {
- this.clearExercise();
- }}
- onContinue={() => {
- Question.continueLink('exercise', latest);
- }}
- onRestart={() => {
- this.restart(latest);
- }}
- onNext={() => {
- Question.continueLink('exercise', latest);
- }}
- />
- )}
- <div className="content">
- <Module className="m-t-2">
- <Tabs
- type="card"
- active={tab1}
- tabs={tabs}
- onChange={key => {
- this.onChangeTab(1, key);
- }}
- />
- {children && children.length > 1 && (
- <Tabs active={tab2} tabs={children} onChange={key => this.onChangeTab(2, key)} />
- )}
- </Module>
- {tab1 !== SENTENCE && tab1 !== PREVIEW && this.renderExercise()}
- {tab1 === SENTENCE && this.renderSentence()}
- {tab1 === PREVIEW && this.renderPreview()}
- {this.state.faqs && <QAList data={this.state.faqs} active={'faq'} tabs={[{ key: 'faq', name: 'FAQs' }]} />}
- </div>
- {sentenceModel && this.renderInputCodeModel()}
- </div>
- );
- }
- renderPreview() {
- const { previewType } = this.state;
- switch (previewType) {
- case PREVIEW_COURSE:
- return this.renderPreviewCourse();
- case PREVIEW_LIST:
- return this.renderPreviewList();
- default:
- return <div />;
- }
- }
- renderPreviewCourse() {
- const { courseStructs, struct, tab2, courseTabs, courseMap = {} } = this.state;
- return (
- <div className="work-body">
- <div className="work-nav" hidden={courseTabs && courseTabs.length > 0 && tab2 !== courseTabs[0].key}>
- <Tabs
- type="tag"
- active={struct || ''}
- space={5}
- tabs={courseStructs}
- onChange={key => {
- this.onChangeCourse(key);
- }}
- />
- </div>
- <div className="work-nav">
- <div className="left">学习中</div>
- </div>
- <Division col="3">
- {(courseMap.process || []).map(row => {
- return <Card1
- title={`${row.course.title}${row.vsNo > 0 ? `V${row.vsNo}` : ''}${row.number > 0 ? `(${row.number}课时)` : ''}`}
- tag={CourseModuleMap[row.course.courseModule]}
- status={row.isSuspend && !row.restoreTime ? 'stop' : 'ing'}
- list={(row.papers || []).map(r => {
- let progress = 0;
- if (r.report) {
- progress = formatPercent(r.report.userNumber, r.report.questionNumber);
- }
- r.progress = progress;
- return r;
- })}
- data={row}
- onPreview={() => {
- this.onPreviewList(row.id);
- }}
- previewAction={(type, item) => {
- this.previewAction(type, item);
- }}
- />;
- })}
- </Division>
- <div className="work-nav">
- <div className="left">待开通</div>
- </div>
- <Division col="3">
- {(courseMap.open || []).map(row => {
- return <Card1
- title={`${row.course.title}${row.vsNo > 0 ? `V${row.vsNo}` : ''}${row.number > 0 ? `(${row.number}课时)` : ''}`}
- tag={CourseModuleMap[row.course.courseModule]}
- status='open'
- data={row}
- onOpen={() => {
- this.open(row.id);
- }}
- />;
- })}
- </Division>
- <div className="work-nav">
- <div className="left">已结束</div>
- </div>
- <Division col="3">
- {(courseMap.end || []).map(row => {
- return <Card1
- title={`${row.course.title}${row.vsNo > 0 ? `V${row.vsNo}` : ''}${row.number > 0 ? `(${row.number}课时)` : ''}`}
- tag={CourseModuleMap[row.course.courseModule]}
- status='end'
- data={row}
- onPreview={() => {
- this.onPreviewList(row.id);
- }}
- />;
- })}
- </Division>
- </div>
- );
- }
- renderPreviewList() {
- const { previews = [], record = {}, search = {} } = this.state;
- const { finish, endTime } = search;
- let finishTime = '';
- if (endTime) {
- const endTimeD = new Date(endTime);
- const now = new Date();
- if ((now.getTime() + 86400000) > endTimeD.getTime()) {
- finishTime = 'today';
- } else {
- finishTime = 'tomorrow';
- }
- }
- return (
- <div className="work-body">
- <div className="work-nav">
- <div className="left">{`${(record.course || {}).title || ''}${record.vsNo > 0 ? `V${record.vsNo}` : ''}${record.number > 0 ? `(${record.number}课时)` : ''}`}全部作业</div>
- <div className="right theme c-p" onClick={() => this.onPreviewCourse()}>
- 我的课程 >
- </div>
- </div>
- <ListTable
- filters={[
- {
- type: 'radio',
- checked: finishTime,
- list: [{ key: 'today', title: '今日需完成' }, { key: 'tomorrow', title: '明日需完成' }],
- onChange: (item) => {
- if (item.key === finishTime) {
- this.search({ endTime: null });
- } else if (item.key === 'today') {
- const a = new Date();
- a.setDate(a.getDate() + 1);
- a.setHours(0);
- a.setMinutes(0);
- a.setMilliseconds(0);
- a.setSeconds(0);
- this.search({ endTime: formatDate(a, 'YYYY-MM-DD') });
- } else if (item.key === 'tomorrow') {
- const a = new Date();
- a.setDate(a.getDate() + 2);
- a.setHours(0);
- a.setMinutes(0);
- a.setMilliseconds(0);
- a.setSeconds(0);
- this.search({ endTime: formatDate(a, 'YYYY-MM-DD') });
- } else {
- this.search({ endTime: null });
- }
- },
- },
- {
- type: 'radio',
- checked: finish,
- list: [{ key: '0', title: '未完成' }, { key: '1', title: '已完成' }],
- onChange: (item) => {
- if (item.key === finish) {
- this.search({ finish: null });
- } else if (item.key === '0') {
- this.search({ finish: '0' });
- } else if (item.key === '1') {
- this.search({ finish: '1' });
- } else {
- this.search({ finish: null });
- }
- },
- },
- ]}
- data={previews}
- columns={this.columns}
- />
- </div>
- );
- }
- renderSentence() {
- const { sentence = {} } = this.state;
- const { sentenceTrail } = this.props.user;
- if (sentence.code || sentenceTrail) {
- return this.renderSentenceArticle();
- }
- return this.renderInputCode();
- }
- renderSentenceArticle() {
- const {
- sentence = {},
- introduction,
- chapterSteps,
- chapterStep = 1,
- exerciseChapter = {},
- chapterMap = {},
- articleMap = {},
- trailArticles = [],
- paperFilterList = [],
- paperList = [],
- paperChecked,
- sentenceInfo = {},
- } = this.state;
- const { sentenceTrail } = this.props.user;
- let maxStep = 0;
- if (sentenceTrail) {
- // 试用只能访问第一step
- maxStep = 1;
- // 查找练习章节
- }
- // 减去前言计算chapter
- const chapter = introduction ? chapterStep - 1 : chapterStep;
- const chapterInfo = chapterMap[chapter] || {};
- let isExercise = false;
- if (chapterInfo && chapterInfo.exercise) {
- isExercise = true;
- }
- return (
- <div>
- {sentence.code && <div className="sentence-code">CODE: {sentence.code}</div>}
- {sentenceTrail && (
- <div className="sentence-code">
- CODE: <a href={sentenceInfo.link} target="_blank">去获取</a>
- <a
- onClick={() => {
- this.setState({ sentenceModel: true });
- }}
- >
- 输入
- </a>
- </div>
- )}
- <Module>
- <Step
- list={chapterSteps}
- step={chapterStep}
- onClick={step => {
- this.setState({ chapterStep: step });
- }}
- message="请购买后访问"
- maxStep={maxStep}
- />
- </Module>
- {/* 正常前言 */}
- {sentence.code && chapter === 0 && (
- <List
- // title={chapterInfo.title}
- list={[introduction]}
- onClick={() => {
- this.sentenceRead();
- }}
- />
- )}
- {/* 正常文章 */}
- {sentence.code && chapter > 0 && !isExercise && (
- <List
- position={`Chapter${chapter}`}
- title={chapterInfo.title}
- list={articleMap[chapter]}
- onClick={part => {
- this.sentenceRead(part);
- }}
- />
- )}
- {/* 正常练习 */}
- {sentence.code && isExercise && (
- <ListTable
- position={`Chapter${chapter}`}
- title={chapterInfo.title}
- filters={[
- {
- type: 'radio',
- checked: paperChecked,
- list: [{ key: 0, title: '未完成' }, { key: 1, title: '已完成' }],
- onChange: item => {
- this.sentenceFilter(item.key);
- },
- },
- ]}
- data={paperFilterList}
- columns={this.sentenceColums}
- />
- )}
- {/* 试读文章 */}
- {sentenceTrail &&
- trailArticles.map(info => {
- return (
- <List
- position={info.value ? `Chapter${info.value}` : null}
- title={info.title}
- list={info.articles}
- onClick={part => {
- this.sentenceRead(part);
- }}
- />
- );
- })}
- {/* 试练 */}
- {sentenceTrail && (
- <ListTable
- position={`Chapter${exerciseChapter.value}`}
- title={exerciseChapter.title}
- data={paperList}
- columns={this.sentenceColums}
- />
- )}
- </div>
- );
- }
- renderInputCode() {
- const { sentenceError, sentenceInfo = {} } = this.state;
- return (
- <Module className="code-module">
- <div className="title">输入《千行GMAT长难句》专属 Code,解锁在线练习功能。</div>
- <div className="input-block">
- <Input
- size="lager"
- placeholder="请输入CODE"
- onChange={value => {
- this.code = value;
- }}
- />
- <Button
- size="lager"
- onClick={() => {
- this.activeSentence();
- }}
- >
- 解锁
- </Button>
- {sentenceError && <div className="error">{sentenceError}</div>}
- </div>
- <div className="tip">
- <Link to="/" className="left link">
- 什么是CODE?
- </Link>
- <span>没有 CODE?</span>
- <a href={sentenceInfo.link} target="_blank" className="link">
- 去获取 >>
- </a>
- <a
- onClick={() => {
- this.trailSentence();
- }}
- className="right link"
- >
- 试用 >>
- </a>
- </div>
- </Module>
- );
- }
- renderInputCodeModel() {
- const { sentenceError } = this.state;
- return (
- <Modal visible closable={false} footer={false} title={false}>
- <div className="code-module-modal">
- <div className="title">请输入CODE</div>
- <div className="desc">
- <Input
- onChange={value => {
- this.code = value;
- }}
- />
- {sentenceError && <div className="error">{sentenceError}</div>}
- <div className="tip">
- <Link to="/" className="right link">
- 什么是CODE?
- </Link>
- </div>
- </div>
- <div className="btn-list">
- <AnswerButton size="lager" theme="confirm" width={150} onClick={() => this.activeSentence()}>
- 确认
- </AnswerButton>
- <AnswerButton
- size="lager"
- theme="cancel"
- width={150}
- onClick={() => this.setState({ sentenceModel: false })}
- >
- 取消
- </AnswerButton>
- </div>
- </div>
- </Modal>
- );
- }
- renderExercise() {
- const { exerciseProgress = [] } = this.state;
- return (
- <div>
- <Division col={2}>
- {(exerciseProgress || []).map(struct => {
- const [first] = struct.children;
- let col = 3;
- if (first && first.type === 'paper') {
- col = 5;
- }
- return (
- <Panel
- title={struct.titleEn}
- message={struct.description}
- data={struct}
- col={col}
- onClick={item => {
- User.needLogin()
- .then(() => {
- if (item.type === 'paper') {
- if (item.progress === 0) {
- Question.startLink('exercise', item);
- } else if (item.progress === 100) {
- Question.startLink('exercise', item);
- } else {
- Question.continueLink('exercise', item);
- }
- } else {
- this.exerciseList(item);
- }
- });
- }}
- />
- );
- })}
- </Division>
- </div>
- );
- }
- }
|