React組件之多選Checkbox實(shí)例
更新時(shí)間:2023年10月23日 14:22:34 作者:追影的React開發(fā)者
這篇文章主要介紹了React組件之多選Checkbox實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助,
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é)
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
手把手教你從零開始react+antd搭建項(xiàng)目
本文將從最基礎(chǔ)的項(xiàng)目搭建開始講起,做一個(gè)基于react和antd的后臺(tái)管理系統(tǒng),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-06-06
React使用React.lazy和Suspense實(shí)現(xiàn)組件懶加載
React 提供了 React.lazy 和 Suspense 這兩個(gè)好東西,能讓我們實(shí)現(xiàn)組件的懶加載,下面就跟隨小編一起來了解一下如何使用它們實(shí)現(xiàn)懶加載的具體步驟吧2025-03-03
淺析react里面如何封裝一個(gè)通用的Ellipsis組件
這篇文章主要為大家詳細(xì)介紹了在react里面如何封裝一個(gè)通用的Ellipsis組件,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2024-12-12
react-native-tab-navigator組件的基本使用示例代碼
本篇文章主要介紹了react-native-tab-navigator組件的基本使用示例代碼,具有一定的參考價(jià)值,有興趣的可以了解一下2017-09-09

