自寫一個漂亮的ant design form提交標簽

来源:https://www.cnblogs.com/chengpu/archive/2019/12/27/web4.html
-Advertisement-
Play Games

在ant design 的form組件中 能用於提交的組件比較少,所以我在這寫了一個可以單選、多選標簽提交的組件,調用非常簡單。 代碼: 1 import React,{Fragment} from 'react'; 2 import { Tag,Icon,Input } from 'antd'; ...


在ant design 的form組件中 能用於提交的組件比較少,所以我在這寫了一個可以單選、多選標簽提交的組件,調用非常簡單。

代碼:

  1 import React,{Fragment} from 'react';
  2 import { Tag,Icon,Input } from 'antd';
  3 export interface TagDataType{
  4     data:string,
  5     color:string,
  6     key:string
  7 }
  8 export interface Props {
  9     data:Array<TagDataType>,
 10     click?:boolean,//是否可點擊
 11     defaultKey?:string | Array<string>,//預設選擇tag的key
 12     checkbox?:boolean,//多選
 13     form?:any,//菜單驗證方法
 14     dataValidationName?:string,//設置提交名稱,若用此參數提交則提交選中的data,用於菜單提交獲取
 15     keyValidationName?:string,//設置提交名稱,若用此參數提交則提交選中的key,用於菜單提交獲取
 16     notNull?:boolean,//選項不能為空
 17 }
 18  
 19 export interface State {
 20     //tagData:TagDataType | undefined,
 21     keys:string,
 22     datas:string,
 23     styleState:number | Array<number>,
 24 }
 25  
 26 class TagOpt extends React.Component<Props, State> {
 27     constructor(props: Props) {
 28         super(props);
 29         //驗證傳入數據的合法性
 30         if(this.props.notNull && !!!this.props.defaultKey){
 31             throw Error('TagOpt選中項為空,設置defaultKey!');
 32         }
 33         if(!!this.props.form && !!!this.props.keyValidationName && !!!this.props.dataValidationName){
 34             throw Error('若要使用form提交,請設置keyValidationName或dataValidationName!');
 35         } 
 36         this.state=this.setDefaultVal();      
 37     }
 38     //滑鼠點擊標簽事件
 39     TagClick = (tagData:TagDataType,index:number) =>{
 40         if(this.props.click !== undefined && this.props.click){
 41             if(this.props.checkbox){
 42                 const optIf = this.optIf(index);
 43                 let styleState:Array<number> = new Array();;
 44                 if(typeof this.state.styleState === 'object'){
 45                     styleState = [...this.state.styleState];
 46                 }else{
 47                     styleState = [this.state.styleState];
 48                 }
 49                 if(optIf.state){
 50                     //點擊已選擇
 51                     //如果設置不為空且選中選項大於1或者沒有設置不為空選項
 52                     //則清空
 53                     if(this.props.notNull && styleState.length>1 || !!!this.props.notNull){
 54                         styleState.splice(optIf.index,1);
 55                         this.setState({
 56                             keys:this.moveSubString(this.state.keys,tagData.key),
 57                             datas:this.moveSubString(this.state.datas,tagData.data),
 58                             styleState
 59                         },()=>{this.setVal(this.state.datas,'data');this.setVal(this.state.keys,'key')});
 60                     } 
 61                 }else{
 62                     //點擊未選擇
 63                     styleState.splice(styleState.length,0,index);
 64                     this.setState({
 65                         keys:this.addSubString(this.state.keys,tagData.key),
 66                         datas:this.addSubString(this.state.datas,tagData.data),
 67                         styleState
 68                     },()=>{this.setVal(this.state.datas,'data');this.setVal(this.state.keys,'key')});
 69                 }
 70             }else{
 71                 if(this.state.styleState === index){
 72                     //點擊已選擇
 73                     //若設置可以為空
 74                     //則清空
 75                     if(!!!this.props.notNull){
 76                         this.setState({keys:'',datas:'',styleState:this.props.data.length}
 77                         ,()=>{this.setVal(this.state.datas,'data');this.setVal(this.state.keys,'key')});
 78                     }
 79                 }else{
 80                     //點擊未選擇
 81                     this.setState({keys:tagData.key,datas:tagData.data,styleState:index}
 82                     ,()=>{this.setVal(this.state.datas,'data');this.setVal(this.state.keys,'key')});
 83                 }
 84             } 
 85         }   
 86     }
 87     //返回移出指定子串的字元串,移出所有重覆子串
 88     moveSubString = (str:string,subString:string):string => {
 89         let array:Array<string> = str.split(',');
 90         for(let i=0;i<array.length;i++){
 91             if(array[i] === subString){
 92                 array.splice(i,1);
 93             }
 94         }
 95         return array.toString();
 96     }
 97     //返回增加子串的字元串,重覆則不增加
 98     addSubString = (str:string,subString:string|Array<string>) =>{
 99         if(typeof subString === 'string'){
100             let comma = str !==''?',':'';
101             return str +comma+subString;
102         }else{
103             let s:string = str;
104             for(let i=0;i<subString.length;i++){
105                 let comma = s !==''?',':'';
106                 s+=comma+subString[i];
107             }
108             return s;
109         }
110     }
111     //選擇判斷
112     optIf = (index:number):{state:boolean,index:number} => {
113         if(typeof this.state.styleState ==='number'){
114             return {state:this.state.styleState === index,index:0};
115         }else{
116             let falg:boolean = false;
117             const styleState = this.state.styleState;
118             let i=0;
119             for(;i<styleState.length;i++){
120                 if(styleState[i] === index){
121                     falg = true;
122                     break;
123                 }
124             }
125             return {state:falg,index:i};
126         }
127     }
128     //寫入表單
129     setVal = (data:string,type:string) => {
130         if(this.props.form != undefined){
131             let json:object = {}
132             if(type === 'data'){
133                 if(this.props.dataValidationName !== undefined){
134                     json[this.props.dataValidationName] = data;
135                     this.props.form.setFieldsValue(json);
136                 }
137             }else if(type === 'key'){
138                 if(this.props.keyValidationName !== undefined){
139                     json[this.props.keyValidationName] = data;
140                     this.props.form.setFieldsValue(json);
141                 }
142             }
143         }
144     }
145     //預設值轉換
146     setDefaultVal=():State=>{
147         if(this.props.checkbox){
148             //多選框,值為1個或數組
149             let styleState:Array<number> = new Array();
150             let keys:Array<string> = new Array();
151             let datas:Array<string> = new Array();
152             const {defaultKey,data} = this.props;
153             if(typeof defaultKey === 'object'){
154                 for(let i=0;i<defaultKey.length;i++){
155                     for(let j=0;j<data.length;j++){
156                         if(defaultKey[i] === data[j].key){
157                             styleState.push(i);
158                             keys.push(data[j].key);
159                             datas.push(data[j].data);
160                         }
161                     }
162                 }
163                 return {
164                     keys:this.addSubString('',keys),
165                     datas:this.addSubString('',datas),
166                     styleState 
167                 }
168             }else{
169                 let i:number = 0;
170                 let key:string = '';
171                 let dat:string = '';
172                 for(;i<data.length;i++){
173                     if(data[i].key === defaultKey){
174                         key=data[i].key;
175                         dat=data[i].data;
176                         break;
177                     }
178                 }
179                 return { keys:key,datas:dat,styleState: i };
180             }  
181         }else if(this.props.checkbox === undefined && typeof this.props.defaultKey ==='string' ||
182             !this.props.checkbox && typeof this.props.defaultKey ==='string'){
183             //多選未設置且預設值為1個或單選且預設值為一個
184             let i:number = 0;
185             let key:string = '';
186             let dat:string = '';
187             if(this.props.defaultKey !== undefined){
188                 const data = this.props.data;
189                 for(;i<data.length;i++){
190                     if(data[i].key === this.props.defaultKey){
191                         key=data[i].key;
192                         dat=data[i].data;
193                         break;
194                     }
195                 }
196             }
197             return { keys:key,datas:dat,styleState: i };
198         }else if(this.props.defaultKey === undefined || this.props.defaultKey === '' || this.props.defaultKey === []){
199             if(this.props.checkbox){
200                 return { keys:'',datas:'',styleState: [] };
201             }else{
202                 return { keys:'',datas:'',styleState: this.props.data.length };
203             }
204         }else{
205             return {keys:'',datas:'',styleState: this.props.data.length};
206         }
207     }
208     render() {
209         const content:any = this.props.data.map((tagData:TagDataType,index:number)=>{
210             const cursor:any = this.props.click !== undefined && this.props.click ?'pointer':'default';
211             return(
212                 <Tag color={tagData.color} key={tagData.key} onClick={this.TagClick.bind(this,tagData,index)} style={{cursor}}>
213                     {tagData.data}
214                     {this.optIf(index).state?<Icon type="check" />:undefined}
215                 </Tag>
216             )
217         });
218         return ( 
219             <Fragment>
220                 {content}
221                 {
222                     !!this.props.click && !!this.props.form && !!this.props.form.getFieldDecorator && !!this.props.keyValidationName?
223                     this.props.form.getFieldDecorator(this.props.keyValidationName, {
224                         initialValue:this.state.keys,
225                     })(<Input type="hidden"/>)
226                     :undefined
227                 }
228                 {
229                     !!this.props.click && !!this.props.form &&!!this.props.form.getFieldDecorator && !!this.props.dataValidationName
230                     && !!!this.props.keyValidationName?
231                     this.props.form.getFieldDecorator(this.props.dataValidationName, {
232                         initialValue:this.state.datas,
233                     })(<Input type="hidden"/>)
234                     :undefined
235                 }
236             </Fragment>
237          );
238     }
239 }
240 export default TagOpt;

效果:

 

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本文源碼: "GitHub·點這裡" || "GitEE·點這裡" 一、數據場景 1、表結構簡介 任何工具類的東西都是為瞭解決某個場景下的問題,比如Redis緩存系統熱點數據,ClickHouse解決海量數據的實時分析,MySQL關係型資料庫存儲結構化數據。數據的存儲則需要設計對應的表結構,清楚的表 ...
  • APK二次打包的危害 APK二次打包是Android應用安全風險中的一部分, 一般是通過反編譯工具嚮應用中插入廣告代碼與相關配置,再在第三方應用市場、論壇發佈。打包黨對移動App帶來的危害有以下幾種: 1. 插入自己廣告或者刪除原來廣告; 2. 惡意代碼, 惡意扣費、木馬等; 3. 修改原來支付邏輯 ...
  • 這是一篇文字超多的博客,哈哈哈,廢話自行過濾··· 遇到問題 在開發中我們常會在ListView , RecycleView 列表中添加EditText輸入框,或者checkbox覆選框。 覆選框應該是用的比較多的,輸入框淘寶採用的是彈出框的方式,可能在一些特定的情況下,我們希望能夠直接在列表中輸入 ...
  • Janus說明 Android APP僅使用V1簽名,可能存在Janus漏洞(CVE 2017 13156),Janus漏洞(CVE 2017 13156)允許攻擊者在不改變原簽名的情況下任意修改APP中的代碼邏輯。 影響範圍:Android系統5.1.1 8.0 檢測方式 方式1 使用GetApk ...
  • MAC停靠欄 ~~~javascript ~~~ ...
  • 實例對象使用屬性和方法層層的搜索: 實例對象使用的屬性或者方法, 先在實例中查找, 找到了則直接使用; 找不到則, 再去實例對象的__proto__指向的原型對象prototype中找, 找到了則使用, 找不到則報錯。 <!DOCTYPE html> <html lang="en"> <head> ...
  • 原型的簡單的語法 構造函數,通過原型添加方法,以下語法,手動修改構造器的指向 實例化對象,並初始化,調用方法 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>title</title> <script> fu ...
  • 什麼樣子的數據是需要寫在原型中? 需要共用的數據就可以寫原型中 原型的作用之一: 數據共用 //屬性需要共用, 方法也需要共用 //不需要共用的數據寫在構造函數中,需要共用的數據寫在原型中 //構造函數 function Student(name,age,sex) { this.name=name; ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...