123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770 |
- import React from 'react';
- import './index.less';
- import Page from '@src/containers/Page';
- import Assets from '@src/components/Assets';
- import { asyncSMessage } from '@src/services/AsyncTools';
- import { formatDate, getMap } from '@src/services/Tools';
- import UserLayout from '../../../layouts/User';
- import UserAction from '../../../components/UserAction';
- import menu from '../index';
- import Tabs from '../../../components/Tabs';
- import More from '../../../components/More';
- import Button from '../../../components/Button';
- import Switch from '../../../components/Switch';
- import TotalSort from '../../../components/TotalSort';
- import { RealAuth, TextbookFeedbackModal, FinishModal, CommentModal, FeedbackErrorDataModal } from '../../../components/OtherModal';
- import Examination from '../../../components/Examination';
- import VipRenew from '../../../components/VipRenew';
- import Modal from '../../../components/Modal';
- import UserTable from '../../../components/UserTable';
- import UserPagination from '../../../components/UserPagination';
- import { My } from '../../../stores/my';
- import { User } from '../../../stores/user';
- import { Order } from '../../../stores/order';
- import { Textbook } from '../../../stores/textbook';
- import { DataType, ServiceKey, RecordSource, TextbookFeedbackTarget } from '../../../../Constant';
- import { Main } from '../../../stores/main';
- import { Question } from '../../../stores/question';
- const ServiceKeyMap = getMap(ServiceKey, 'value', 'label');
- const RecordSourceMap = getMap(RecordSource, 'value', 'label');
- const dataHistoryColumns = [
- { title: '更新时间', key: 'time', width: 120 },
- { title: '位置', key: 'position', width: 120 },
- { title: '原内容', key: 'originContent', width: 120 },
- { title: '更改为', key: 'content', width: 120 },
- { title: '更新至', key: 'version', width: 90 },
- ];
- const textbookHistoryColumns = [
- {
- title: '更新时间',
- key: 'createTime',
- width: 120,
- render: (text) => {
- return <div className="sub">
- <div className="t-2 t-s-12">{text.split(' ')[0]}</div>
- <div className="t-6 t-s-12">{text.split(' ')[1]}</div>
- </div>;
- },
- },
- { title: '版本', key: 'version', width: 120 },
- { title: '更新内容', key: 'content', width: 330 },
- ];
- const openColumns = [
- { title: '商品名称', key: 'title', width: 240 },
- { title: '获取方式', key: 'source', width: 240 },
- { title: '开通期限', key: 'endTime', width: 240 },
- { title: '操作', key: 'handler', width: 90 },
- ];
- export default class extends Page {
- constructor(props) {
- props.size = 10;
- super(props);
- }
- initState() {
- return {
- tab: 'data',
- sortMap: {},
- filterMap: {},
- feedbackError: { position: ['', '', ''] },
- };
- }
- initData() {
- const data = Object.assign(this.state, this.state.search);
- if (data.order) {
- data.sortMap = { [data.order]: data.direction };
- }
- data.filterMap = this.state.search;
- this.setState(data);
- const { tab } = this.state;
- switch (tab) {
- case 'textbook':
- this.refreshTextbook();
- break;
- case 'examination':
- this.refreshExamination();
- break;
- case 'vip':
- this.refreshVip();
- break;
- case 'cal':
- break;
- case 'data':
- default:
- this.refreshData();
- break;
- }
- }
- refreshTextbook() {
- Main.getService('textbook').then(result => {
- this.setState({ service: result });
- });
- Textbook.getInfo().then(result => {
- const { latest } = result;
- result.day = parseInt((new Date().getTime() - new Date(result.latest.startDate).getTime()) / 86400000, 10);
- result.expireDay =
- result.expireTime && parseInt((new Date(result.expireTime).getTime() - new Date().getTime()) / 86400000, 10);
- const list = [];
- list.push({ subject: 'quant', number: latest.quantNumber, time: latest.quantTime, version: latest.quantVersion });
- list.push({ subject: 'rc', number: latest.rcNumber, time: latest.rcTime, version: latest.rcVersion });
- list.push({ subject: 'ir', number: latest.irNumber, time: latest.irTime, version: latest.irVersion });
- this.setState({ data: result, list });
- });
- }
- textbookHistory({ page, size, subject }) {
- Textbook.allHistory(subject).then(result => {
- this.setState({
- showUpdate: true,
- updateList: result.map(row => {
- row.version = row[`${subject}Version`];
- row.content = row[`${subject}Content`];
- row.createTime = formatDate(row.createTime, 'YYYY-MM-DD HH:mm:ss');
- return row;
- }),
- // 不显示分页
- updateTotal: 0,
- maxHeight: 730,
- updatePage: page,
- updateData: { page, size, subject, columns: textbookHistoryColumns, type: 'textbook' },
- });
- });
- }
- refreshExamination() {
- Main.getService('qx_cat').then(result => {
- this.setState({ service: result });
- });
- Question.getExaminationInfo().then(result => {
- result.expireDay =
- result.expireTime && parseInt((new Date(result.expireTime).getTime() - new Date().getTime()) / 86400000, 10);
- this.setState({ data: result });
- });
- }
- refreshVip() {
- Main.getService('vip').then(result => {
- this.setState({ service: result });
- });
- My.getVipInfo().then(result => {
- this.setState({ data: result });
- });
- }
- recordList({ page, size, service, isUse, isExpire }) {
- Order.listRecord({ page, size, productType: 'service', service, isUse, isExpire }).then(result => {
- this.setState({
- showUpdate: true,
- updateList: result.list.map(row => {
- row.title = ServiceKeyMap[service];
- row.source = RecordSourceMap[row.source];
- row.handler = (
- <a
- onClick={() => {
- this.open(row.id);
- }}
- >
- 立即开通
- </a>
- );
- row.endTime = `${formatDate(row.endTime, 'YYYY-MM-DD')} 前`;
- return row;
- }),
- updateTotal: result.list.length,
- updatePage: page,
- updateData: { page, size, service, isUse, columns: isUse ? [] : openColumns, type: 'record' },
- });
- });
- }
- refreshData() {
- const dataTypeSelect = DataType.map(row => {
- row.title = row.label;
- row.key = row.value;
- return row;
- });
- dataTypeSelect.unshift({
- title: '全部',
- key: '',
- });
- this.setState({ dataTypeSelect });
- Main.dataStruct().then(result => {
- const structs = result
- .filter(row => row.level === 1)
- .map(row => {
- row.title = `${row.titleZh}${row.titleEn}`;
- row.key = `${row.id}`;
- return row;
- });
- structs.unshift({
- title: '全部',
- key: '',
- });
- this.setState({
- structs,
- });
- });
- My.listData(Object.assign({}, this.state.search)).then(result => {
- // result = {
- // list: [
- // {
- // title: '123123',
- // latestTime: '',
- // id: 1,
- // number: 10,
- // version: '1231',
- // },
- // ],
- // };
- this.setState({
- list: result.list.map(row => {
- row.time = formatDate(row.time, 'YYYY-MM-DD HH:mm:ss');
- return row;
- }),
- total: result.total,
- page: this.state.search.page,
- });
- });
- }
- dataHistory({ dataId, page, size }) {
- My.listDataHistory({ page, size: 10000, dataId }).then(result => {
- result.list = result.list.map(row => {
- row.time = formatDate(row.time, 'YYYY-MM-DD\nHH:mm:ss');
- return row;
- });
- this.setState({
- showUpdate: true,
- // 不显示分页
- updateTotal: 0,
- maxHeight: 730,
- updateList: result.list,
- updatePage: page,
- updateData: { page, size, dataId, columns: dataHistoryColumns, type: 'data' },
- });
- });
- }
- onFilter(value) {
- this.search(value);
- }
- onSort(value) {
- const { sortMap } = this.state;
- const keys = Object.keys(value);
- const index = keys.length > 1 && sortMap[keys[0]] ? 1 : 0;
- this.search({ order: keys.length && value[keys[index]] ? keys[index] : null, direction: keys.length ? value[keys[index]] : null });
- }
- onTabChange(tab) {
- const data = { tab };
- this.refreshQuery(data);
- }
- subscribeDataEmail(value) {
- My.subscribeDataEmail(value)
- .then(() => {
- const { info } = this.props.user;
- info.dataEmailSubscribe = value;
- User.infoHandle(info);
- })
- .catch(err => {
- asyncSMessage(err.message, 'warn');
- });
- }
- cancelSubscribe(dataId) {
- My.subscribeData(dataId, false)
- .then(() => {
- this.refresh();
- });
- }
- open(recordId) {
- Order.useRecord(recordId).then(() => {
- this.refresh();
- });
- }
- buyTextbook() {
- User.needLogin()
- .then(() => {
- return Order.speedPay({ productType: 'service', service: 'textbook' });
- })
- .then((order) => {
- return User.needPay(order);
- })
- .then(() => {
- this.refresh();
- });
- }
- buyQxCat() {
- User.needLogin()
- .then(() => {
- return Order.speedPay({ productType: 'service', service: 'qx_cat' });
- })
- .then((order) => {
- return User.needPay(order);
- })
- .then(() => {
- this.refresh();
- });
- }
- renderView() {
- const { config } = this.props;
- console.log('view');
- return <UserLayout active={config.key} menu={menu} center={this.renderDetail()} />;
- }
- renderDetail() {
- const {
- tab,
- comment = {},
- feedback = {},
- feedbackError = {},
- showComment,
- showFinish,
- showUpdate,
- showFeedback,
- showFeedbackError,
- updateList,
- updateTotal,
- maxHeight,
- updateData = {},
- showExamination,
- showReal,
- showVip,
- } = this.state;
- const { info } = this.props.user;
- console.log('detail');
- return (
- <div className="table-layout">
- <Tabs
- border
- type="division"
- theme="theme"
- size="small"
- space={2.5}
- width={100}
- active={tab}
- tabs={[
- { key: 'data', title: '资料' },
- { key: 'textbook', title: '机经' },
- { key: 'examination', title: '模考' },
- { key: 'vip', title: 'VIP' },
- { key: 'cal', title: '考分计算器' },
- ]}
- onChange={key => this.onTabChange(key)}
- />
- {this[`renderTab${tab}`]()}
- <Modal
- show={showUpdate}
- maskClosable
- close={false}
- body={false}
- width={630}
- onClose={() => this.setState({ showUpdate: false, updateList: [] })}
- >
- <UserTable
- size="small"
- theme="top"
- columns={updateData.columns}
- data={updateList}
- current={updateData.page}
- pageSize={updateData.size}
- onChange={page => {
- updateData.page = page;
- if (updateData.type === 'data') {
- this.dataHistory(updateData);
- } else if (updateData.type === 'textbook') {
- this.textbookHistory(updateData);
- } else if (updateData.type === 'record') {
- this.recordList(updateData);
- }
- }}
- total={updateTotal}
- maxHeight={maxHeight}
- />
- </Modal>
- <CommentModal
- show={showComment}
- defaultData={comment}
- onConfirm={() => this.setState({ showComment: false, comment: {}, showFinish: true })}
- onCancel={() => this.setState({ showComment: false, comment: {} })}
- onClose={() => this.setState({ showComment: false, comment: {} })}
- />
- <FeedbackErrorDataModal
- show={showFeedbackError}
- defaultData={feedbackError}
- onConfirm={() => this.setState({ showFeedbackError: false, feedbackError: {}, showFinish: true })}
- onCancel={() => this.setState({ showFeedbackError: false, feedbackError: {} })}
- onClose={() => this.setState({ showFeedbackError: false, feedbackError: {} })}
- />
- <TextbookFeedbackModal
- show={showFeedback}
- defaultData={feedback}
- onConfirm={() => this.setState({ showFeedback: false, feedback: {}, showFinish: true })}
- onCancel={() => this.setState({ showFeedback: false, feedback: {} })}
- onClose={() => this.setState({ showFeedback: false, feedback: {} })}
- />
- <FinishModal
- show={showFinish}
- onConfirm={() => this.setState({ showFinish: false })}
- />
- <Examination
- show={showExamination}
- data={info}
- onConfirm={() => this.setState({ showExamination: false })}
- onCancel={() => this.setState({ showExamination: false })}
- onClose={() => this.setState({ showExamination: false })}
- />
- <RealAuth show={showReal} data={info} onConfirm={() => this.setState({ showReal: false })} />
- <VipRenew
- show={showVip}
- data={info}
- onReal={() => this.setState({ showVip: false, showReal: true })}
- onPrepare={() => this.setState({ showVip: false, showExamination: true })}
- onClose={(result) => {
- if (result) {
- this.refresh();
- } else {
- this.setState({ showVip: false });
- }
- }}
- />
- </div>
- );
- }
- renderTabdata() {
- const { list = [], filterMap = {}, sortMap = {}, structs, dataTypeSelect, total, page } = this.state;
- const { info } = this.props.user;
- return (
- <div className="tab-1-layout">
- <UserAction
- selectList={[
- {
- label: '学科',
- key: 'structId',
- select: structs,
- },
- {
- label: '资料形式',
- key: 'dataType',
- select: dataTypeSelect,
- },
- ]}
- sortList={[
- { right: true, label: '销量', key: 'sale_number' },
- { right: true, label: '更新时间', key: 'latest_time' },
- ]}
- sortMap={sortMap}
- filterMap={filterMap}
- onFilter={value => this.onFilter(value)}
- onSort={value => this.onSort(value)}
- right={
- <div className="email">
- 邮箱订阅{' '}
- <Switch
- checked={info.dataEmailSubscribe}
- onChange={() => {
- this.subscribeDataEmail(!info.dataEmailSubscribe);
- }}
- />
- </div>
- }
- />
- <div className="data-layout">
- {list.map(item => {
- return (
- <div className="data-item">
- <Assets name="sun_blue" src={item.cover} />
- <div className="fixed">
- <div className="btns">
- {<Button
- size="small"
- radius
- onClick={() => {
- openLink(item.resource);
- }}
- >
- {item.have ? '阅读' : '预览'}
- </Button>}
- <div
- hidden={item.resource === item.trailResource}
- className="white"
- onClick={() => {
- openLink(`${item.resource}&download=true`);
- }}
- >
- 下载
- </div>
- </div>
- </div>
- <div className="title">
- <span>版本{item.version}</span>
- {item.title}
- </div>
- <div className="date">最新更新: {formatDate(item.latestTime, 'YYYY-MM-DD HH:mm:ss')}</div>
- <More
- menu={[
- { label: '纠错', key: 'feedback' },
- { label: '评价', key: 'comment' },
- { label: '更新', key: 'update' },
- { label: '移除', key: 'remove' },
- ]}
- onClick={value => {
- const { key } = value;
- if (key === 'comment') {
- this.setState({ showComment: true, comment: { channel: 'course_data', position: item.id } });
- } else if (key === 'update') {
- this.dataHistory({ dataId: item.id, page: 1, size: 10 });
- } else if (key === 'feedback') {
- this.setState({ showFeedbackError: true, feedbackError: { dataId: item.id, title: item.title, position: ['', '', ''] } });
- } else if (key === 'remove') {
- this.cancelSubscribe(item.id);
- }
- }}
- />
- </div>
- );
- })}
- </div>
- {total > 0 && list.length > 0 && (
- <UserPagination total={total} current={page} pageSize={this.state.search.size} onChange={p => this.onChangePage(p)} />
- )}
- </div>
- );
- }
- renderTabtextbook() {
- const { data = {}, list = [], service } = this.state;
- const { latest = {}, day } = data;
- return (
- <div className="tab-2-layout">
- <UserAction
- left={
- <div className="total-log">
- <span>最新换库</span>
- <span>{latest.startDate ? formatDate(latest.startDate, 'YYYY-MM-DD') : ''}</span>
- <span>
- 已换库<b>{day}</b>天
- </span>
- </div>
- }
- right={
- data.unUseRecord && (
- <div className="email c-p" >
- <span onClick={() => {
- this.recordList({ page: 1, size: 10, service: 'textbook', isUse: false, isExpire: false });
- }} >待开通</span>
- </div>
- )
- }
- />
- {data.hasService && (
- <div className="data-layout">
- {list.map(item => {
- return (
- <div className="data-item">
- <Assets name="sun_blue" onClick={() => linkTo(`/textbook/topic/list/${item.subject}`)} />
- <div className="title">
- 已更新至<b>{item.number || 0}</b>题
- </div>
- <div className="date">{item.date}</div>
- <More
- menu={[
- { label: '更新日志', key: 'update' },
- { label: '反馈', key: 'feedback' },
- { label: '评价', key: 'comment' },
- ]}
- onClick={value => {
- const { key } = value;
- if (key === 'comment') {
- this.setState({ showComment: true, comment: { channel: 'library' } });
- } else if (key === 'update') {
- this.textbookHistory({ page: 1, size: 100, subject: item.subject });
- } else if (key === 'feedback') {
- this.setState({ showFeedback: true, feedback: { textbookSubject: item.subject, target: TextbookFeedbackTarget[0].value, no: '' } });
- }
- }}
- />
- </div>
- );
- })}
- </div>
- )}
- {!data.hasService && !data.unUseRecord && (
- <div className="tip-layout">
- <div className="t1">还未购买本月机经</div>
- <div className="desc">¥ {service && service.package && service.package[0].price}</div>
- <Button radius size="lager" width={150} onClick={() => {
- this.buyTextbook();
- }}>
- 立即购买
- </Button>
- </div>
- )}
- {/* {data.hasService && (
- <div className="tip-layout">
- <div className="t1">使用中</div>
- <div className="t2">距离到期还有 {data.expireDay} 天</div>
- </div>
- )} */}
- {!data.hasService && data.unUseRecord && (
- <div className="tip-layout">
- <div className="t2">请于{formatDate(data.unUseRecord.endTime, 'YYYY-MM-DD')}前开通</div>
- <Button
- radius
- size="lager"
- width={150}
- onClick={() => {
- this.open(data.unUseRecord.id);
- }}
- >
- 立即开通
- </Button>
- </div>
- )}
- </div>
- );
- }
- renderTabexamination() {
- const { data = {}, service } = this.state;
- return (
- <div className="tab-3-layout">
- <UserAction
- right={
- data.unUseRecord && (
- <div
- className="email c-p"
- onClick={() => {
- this.recordList({ page: 1, size: 10, service: 'qx_cat', isUse: false, isExpire: false });
- }}
- >
- 待开通
- </div>
- )
- }
- />
- {!data.hasService && !data.unUseRecord && !data.expireTime && (
- <div className="tip-layout">
- <div className="t1">未购买</div>
- <div className="desc">¥ {service && service.package && service.package[0].price}</div>
- <Button radius size="lager" width={150} onClick={() => {
- this.buyQxCat();
- }}>
- 立即购买
- </Button>
- </div>
- )}
- {!data.hasService && data.unUseRecord && (
- <div className="tip-layout">
- <div className="t2">请于{formatDate(data.unUseRecord.endTime, 'YYYY-MM-DD')}前开通</div>
- <Button
- radius
- size="lager"
- width={150}
- onClick={() => {
- this.open(data.unUseRecord.id);
- }}
- >
- 立即开通
- </Button>
- </div>
- )}
- {data.hasService && (
- <div className="tip-layout">
- <div className="t1">使用中</div>
- <div className="t2">距离到期还有 {data.expireDay} 天</div>
- </div>
- )}
- {!data.hasService && !data.unUseRecord && data.expireTime && (
- <div className="tip-layout">
- <div className="t3">已过期</div>
- <div className="date">
- {formatDate(data.startTime, 'YYYY-MM-DD')} ~ {formatDate(data.expireTime, 'YYYY-MM-DD')}
- </div>
- <div className="desc">¥ {service && service.package && service.package[0].price}</div>
- <Button radius size="lager" width={150} onClick={() => {
- this.buyQxCat();
- }}>
- 立即购买
- </Button>
- </div>
- )}
- </div>
- );
- }
- renderTabvip() {
- const { data } = this.state;
- return (
- <div className="tab-4-layout">
- {!data.hasService && !data.unUseRecord && !data.expireTime && (
- <div className="tip-layout">
- <div className="t2">未购买</div>
- <Button radius size="lager" width={150} onClick={() => {
- this.setState({ showVip: true });
- }}>
- 立即购买
- </Button>
- </div>
- )}
- {data.hasService && (
- <div className="tip-layout">
- <div className="t1">使用中</div>
- <div className="desc">{formatDate(data.expireTime, 'YYYY-MM-DD')} 到期</div>
- <Button radius size="lager" width={150} onClick={() => {
- this.setState({ showVip: true });
- }}>
- 续费
- </Button>
- </div>
- )}
- {!data.hasService && !data.unUseRecord && data.expireTime && (
- <div className="tip-layout">
- <div className="t1">已过期</div>
- <div className="desc">
- {formatDate(data.startTime, 'YYYY-MM-DD')} ~ {formatDate(data.expireTime, 'YYYY-MM-DD')}
- </div>
- <Button radius size="lager" width={150} onClick={() => {
- this.setState({ showVip: true });
- }}>
- 立即购买
- </Button>
- </div>
- )}
- </div>
- );
- }
- renderTabcal() {
- const { data = {} } = this.state;
- return (
- <div className="tab-5-layout">
- <TotalSort
- value={data.value || 700}
- onChange={value => {
- data.value = value;
- this.setState({ data });
- }}
- />
- </div>
- );
- }
- }
|