React組件之多選Checkbox實例
更新時間:2023年10月23日 14:22:34 作者:追影的React開發(fā)者
這篇文章主要介紹了React組件之多選Checkbox實例,具有很好的參考價值,希望對大家有所幫助,
React組件之多選Checkbox
import React, { PureComponent } from "react"; import { List, NavBar, Checkbox } from "antd-mobile"; import { Icon } from "antd"; import TouchFeedback from "rmc-feedback"; import NavContentContainer from "./NavContentContainer"; import PanelContentContainer from "./PanelContentContainer"; export default class Checkbox_ extends PureComponent { constructor(props) { super(props); this.state = { select: [] }; } componentWillReceiveProps(props) { const { show, init } = props; if (show) { this.setState({ select: init || [] }); } } getDefaultChecked = value => { const { init } = this.props; const result = (init || []).filter(i => i === value); return result.length !== 0; }; render() { const { show, data, title, hide, save } = this.props; const { select } = this.state; return ( <div style={{ display: show ? "block" : "none", zIndex: 1, position: "absolute", backgroundColor: "#fff", overflowY: "auto", top: 0, bottom: 0, left: 0, right: 0 }} > <NavBar className="global-navbar" mode="dark" icon={ <TouchFeedback activeClassName="primary-feedback-active"> <Icon type="left" /> </TouchFeedback> } onLeftClick={() => hide()} rightContent={[ <Icon type="check" style={{ marginRight: "16px" }} onClick={() => save(select)} /> ]} > {title} </NavBar> <NavContentContainer> <PanelContentContainer> <List> {data.map(i => ( <Checkbox.CheckboxItem wrap key={i.value} defaultChecked={this.getDefaultChecked(i.value)} onChange={() => { if (select.indexOf(i.value) === -1) { select.push(i.value); } else { const odd = select; odd.splice(odd.indexOf(i.value), 1); this.setState({ select: odd }); } }} > {i.key} </Checkbox.CheckboxItem> ))} </List> </PanelContentContainer> </NavContentContainer> </div> ); } }
<Checkbox show={showCheckbox} data={checkboxData} title={checkboxTitle} id={checkboxId} init={checkboxNum[checkboxId]} hide={() => this.setState({ showCheckbox: false })} save={v => { this.setState({ showCheckbox: false, checkboxNum: { ...checkboxNum, [checkboxId]: v } }); }} />
總結(jié)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
React使用React.lazy和Suspense實現(xiàn)組件懶加載
React 提供了 React.lazy 和 Suspense 這兩個好東西,能讓我們實現(xiàn)組件的懶加載,下面就跟隨小編一起來了解一下如何使用它們實現(xiàn)懶加載的具體步驟吧2025-03-03react-native-tab-navigator組件的基本使用示例代碼
本篇文章主要介紹了react-native-tab-navigator組件的基本使用示例代碼,具有一定的參考價值,有興趣的可以了解一下2017-09-09