You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/public/react/src/modules/developer/components/knowledge/index.js

65 lines
1.4 KiB

/*
* @Description: 知识点
* @Author: tangjiang
* @Github:
* @Date: 2019-12-30 13:51:19
* @LastEditors : tangjiang
* @LastEditTime : 2019-12-30 16:54:30
*/
import './index.scss';
import React, { useState } from 'react';
import { Select } from 'antd';
const { Option } = Select;
function KnowLedge (props) {
const {
options = [], // 下拉选项
values = [], // 已选择的下拉项
} = props;
// 显示的下拉项
const [selectOptions, setSelectOptions] = useState(options);
// 已选择的下拉项
const [selectValue, setSelectValue] = useState(values);
// 渲染下拉选项
const renderOptions = (options = []) => {
console.log('下拉选择: ', options);
return options.map((opt, i) => (
<Option key={`opt_${i}`} value={opt}>{opt}</Option>
));
}
const handleSelectChange = (value) => {
console.log(value);
}
// 渲染下拉列表
const renderSelect = (options, values) => {
return (
<Select
mode="multiple"
placeholder="请选择"
style={{ width: '100%' }}
onChange={handleSelectChange}
autoClearSearchValue={true}
maxTagCount={0}
>
{renderOptions(options)}
</Select>
)
}
return (
<div className="knowledge-select-area">
{ renderSelect(selectOptions, selectValue) }
<div className="knowledge-select-result">
</div>
</div>
);
}
export default KnowLedge;