import React, { useState, useEffect } from 'react' import { trigger } from 'educoder' import { Input, Checkbox } from "antd"; /** arg_course_groups 选中的id数组 joinCourseGroup 选中时触发 joinCourseGroup(checkedValues, item, index) 传入item:数据对象,index: 数据对象index checkAllValue 是否全选 onCheckAllChange 全选 onCheckAllChange(e, item, index) course_groups 所有的group */ function CourseGroupChooser({ course_groups, isAdminOrCreator = true, item, index, arg_course_groups, checkAllValue, alwaysShow , onCheckAllChange, joinCourseGroup }) { const [state, setState] = useState({counter: 0}) const [search, setSearch] = useState('') // useEffect(() => { // console.log(' cdm') // return () => { // console.log(' cwum') // }; // // , [state.counter] 加了这个后,onClick就消失了 加错位置了? // }, [state.counter] ) // TODO 为什么每次onClick都会执行 cwum // const add1ToCounter = () => { // const newCounterValue = state.counter + 1 // setState({ counter: newCounterValue }) // } /** that.state.groupSearchValue that.setState({groupSearchValue: e.target.value}) that.onCheckAllChange(e, item, index) - onCheckAllChange(e, item, index) that.joinCourseGroup(checkedValues, item, index) - joinCourseGroup(checkedValues, item, index) that.state.checkAllArray[index] - checkAllValue */ console.log('arg_course_groups', arg_course_groups) const urlStyle = {"left":"unset", minWidth: '262px'}; if (alwaysShow == true) { urlStyle.display = 'block' } return (
{setSearch(e.target.value)}} allowClear/>
): '' }