import React, { Component } from "react"; import { Modal, Checkbox, Input, Spin, Select, Divider } from "antd"; import axios from 'axios' import ModalWrapper from "../../common/ModalWrapper" import InfiniteScroll from 'react-infinite-scroller'; import { ConditionToolTip } from 'educoder' const Option = Select.Option; const pageCount = 15; // 代码查重弹框 class CheckCodeModal extends Component{ constructor(props){ super(props); this.state={ checkBoxValues: [], candidates: [], hasMore: true, loading: false, page: 1 } } fetchMemberList = (arg_page) => { const courseId = this.props.match.params.coursesId const page = arg_page || this.state.page; const { name, school_name } = this.state let url = `/courses/${courseId}/search_teacher_candidate.json` this.setState({ loading: true }) axios.post(url, { page: page, limit: pageCount, school_name: school_name || '', name: name || '' }) .then((response) => { if (!response.data.candidates || response.data.candidates.length == 0) { this.setState({ page, loading: false, hasMore: false, }) } else { this.setState({ candidates: page == 1 ? response.data.candidates : this.state.candidates.concat(response.data.candidates), page, loading: false, hasMore: response.data.candidates.length == pageCount }) } }) .catch(function (error) { console.log(error); }); } componentDidMount() { } fetchOptions = () => { // add_teacher_popup const courseId = this.props.match.params.coursesId let url = `/courses/${courseId}/add_teacher_popup.json` axios.get(url, { }) .then((response) => { if (response.data.graduation_groups) { this.setState({ graduation_groups: response.data.graduation_groups }) } if (response.data.course_groups) { this.setState({ course_groups: response.data.course_groups }) } }) .catch(function (error) { console.log(error); }); } setVisible = (visible) => { if (visible) { this.fetchMemberList() this.fetchOptions() } this.refs.modalWrapper.setVisible(visible) if (visible == false) { this.setState({ checkBoxValues: [] }) } } onSendOk = () => { const courseId = this.props.match.params.coursesId const url = `/courses/${courseId}/add_teacher.json` const params = { "user_list": this.state.checkBoxValues.map (item => { return { 'user_id': item }}) , "graduation_group_id": "2", "course_group_id": "820", // "role": ROLE_TEACHER_NUM } const { graduationGroup, courseGroup } = this.state if (graduationGroup) { params.graduation_group_id = graduationGroup } if (courseGroup) { params.course_group_id = courseGroup } axios.post(url, params) .then((response) => { if (response.data.status == 0) { this.setVisible(false) this.props.showNotification('添加成功') } }) .catch(function (error) { console.log(error); }); } onOk = () => { this.onSendOk() } onCheckBoxChange = (checkBoxValues) => { this.setState({ checkBoxValues: checkBoxValues }) } handleInfiniteOnLoad = () => { this.fetchMemberList(this.state.page + 1) } onSearch = () => { this.fetchMemberList(1) } handleGradationGroupChange = (value) => { this.setState({ graduationGroup: value }) } handleCourseGroupChange = (value) => { this.setState({ courseGroup: value }) } render(){ const { candidates, checkBoxValues, loading, hasMore, name, school_name , graduationGroup, graduation_groups, courseGroup, course_groups } = this.state const { moduleName } = this.props return(

{/* https://github.com/CassetteRocks/react-infinite-scroller/issues/70 */}
{ candidates && candidates.map( candidate => { console.log(candidates) return (

12 }> 12 }>

) }) }
) } } export default CheckCodeModal;