import React, { useState, useEffect, useRef, useMemo } from 'react' import { trigger } from 'educoder' import { Input, Checkbox } from "antd"; import CourseGroupChooser from '../CourseGroupChooser' import ModalWrapper from "../../common/ModalWrapper" import axios from 'axios' /** arg_course_groups 选中的id数组 joinCourseGroup 选中时触发 joinCourseGroup(checkedValues, item, index) 传入item:数据对象,index: 数据对象index checkAllValue 是否全选 onCheckAllChange 全选 onCheckAllChange(e, item, index) course_groups 所有的group */ function CourseGroupChooserModal({ course_groups = [], isAdminOrCreator, item, index, setVisible, visible, record = {}, props = {}, fetchAll }) { // , arg_course_groups, checkAllValue , onCheckAllChange, joinCourseGroup const [checkAllValue, setCheckAllValue] = useState(true) const [arg_course_groups, setArg_course_groups] = useState(course_groups.map(item => item.id)) const modalEl = useRef(null); useEffect(() => { setCheckAllValue(true) setArg_course_groups(course_groups.map(item => item.id)) }, [course_groups, visible]) useEffect(() => { if (visible != undefined) { modalEl.current.setVisible(true) } }, [visible]) const joinCourseGroup = (checks) => { setArg_course_groups(checks) } const onCheckAllChange = (e) => { if (checkAllValue) { setArg_course_groups([]) } else { setArg_course_groups(course_groups.map(item => item.id)) } setCheckAllValue(!checkAllValue) } const onOk = async () => { console.log(checkAllValue, arg_course_groups) let approval = 1 const courseId = props.match.params.coursesId let url = `/courses/${courseId}/teacher_application_review.json` const response = await axios.post(url, { user_id: record.user_id, application_id: record.application_id, approval: approval, group_id: arg_course_groups }) props.showNotification(`已${approval == 1? '同意' : '拒绝'}`) fetchAll(1) modalEl.current.setVisible(false) } return ( {/* */}
确认同意TA的加入,并设置TA的分班管理权限
) } export default (CourseGroupChooserModal)