import React, {Component} from 'react'
|
import { Row, Col, Radio, Input } from 'antd'
|
import { CheckOutlined } from '@ant-design/icons'
|
import './index.scss'
|
|
const { Search } = Input
|
|
class EditCardCell extends Component {
|
constructor(props) {
|
super(props)
|
|
this.state = {
|
card: props.card,
|
type: props.type
|
}
|
}
|
|
changeSelect = () => {
|
const { card } = this.state
|
this.setState({
|
card: {...card, selected: !card.selected}
|
}, () => {
|
this.props.changeCard(this.state.card)
|
})
|
}
|
|
changeType = (e) => {
|
const { card } = this.state
|
this.setState({
|
card: {...card, type: e.target.value}
|
}, () => {
|
this.props.changeCard(this.state.card)
|
})
|
}
|
|
render() {
|
const { card } = this.state
|
return (
|
<div className={'ant-card ant-card-bordered ' + (card.selected ? 'selected' : '')} >
|
<div className="base" onClick={this.changeSelect}>
|
<CheckOutlined />
|
<p title={card.field}>字段: <span>{card.field}</span></p>
|
<p title={card.label}>名称: <span>{card.label}</span></p>
|
</div>
|
<Radio.Group onChange={this.changeType} value={card.type} disabled={!card.selected}>
|
<Radio value="text">text</Radio>
|
<Radio value="number">number</Radio>
|
<Radio value="select">select</Radio>
|
<Radio value="date">date</Radio>
|
</Radio.Group>
|
</div>
|
)
|
}
|
}
|
|
class EditCard extends Component {
|
constructor(props) {
|
super(props)
|
|
this.state = {
|
dataSource: props.data,
|
selectCards: props.data.filter(item => item.selected),
|
type: props.type,
|
searchKey: ''
|
}
|
}
|
|
changeCard = (item) => {
|
let cards = JSON.parse(JSON.stringify(this.state.selectCards))
|
let isAdd = true
|
cards = cards.map(card => {
|
if (card.field === item.field) {
|
isAdd = false
|
return item
|
} else {
|
return card
|
}
|
})
|
if (isAdd) {
|
cards.push(item)
|
}
|
this.setState({
|
selectCards: cards
|
})
|
}
|
|
render() {
|
const { dataSource, type } = this.state
|
|
return (
|
<div className="modal-fields-edit-card">
|
<Row className="search-row">
|
<Col span={8}>
|
<Search placeholder="请输入字段名" onSearch={value => {this.setState({searchKey: value})}} enterButton />
|
</Col>
|
</Row>
|
<Row>
|
{dataSource.map((item, index) => {
|
if (item.field.toLowerCase().indexOf(this.state.searchKey.toLowerCase()) >= 0) {
|
return (
|
<Col key={index} span={8}>
|
<EditCardCell ref={'cellCard' + index} type={type} card={item} changeCard={this.changeCard} />
|
</Col>
|
)
|
} else {
|
return ''
|
}
|
})}
|
</Row>
|
</div>
|
)
|
}
|
}
|
|
export default EditCard
|