searchForm自适应布局 + 按钮插槽

收起

在这里插入图片描述

展开

在这里插入图片描述

代码:

useResizeObserverHooks.js

import { useEffect, useLayoutEffect } from "react";export const useResizeObserver = (containerDom, domClass, callback) => {useLayoutEffect(() => {let resizeObserver = null;let dom = null;if (typeof ResizeObserver !== "undefined") {// 选择你想要观察的元素const container = containerDom || document;dom = container.querySelector(domClass);// 创建一个 ResizeObserver 实例并传入回调函数resizeObserver = new ResizeObserver(entries => {// 循环遍历所有观察到变化的元素for (const entry of entries) {const height = entry.target.offsetHeight;callback(height);}});// 开始观察元素if (dom) {resizeObserver?.observe(dom);}} else {console.log("ResizeObserver is not supported in this browser.");}return () => {if (dom) {resizeObserver.unobserve(dom);resizeObserver?.disconnect(dom);}};}, [containerDom, domClass, callback]);
};
import React, { useState } from "react";
import { Button, ConfigProvider, Space, Form, Flex } from "antd";
import styles from "./Index.module.less";
import { useResizeObserver } from "./useResizeObserverHooks";const classnames = (...args) => {return args.filter(Boolean).join(" ");
};const SearchForm = props => {const {defaultHeight = 58,children,onResetHandle,buttomSolt,submitText = "查询",resetText = "重置",...FromProps} = props;// const [form] = Form.useForm();// console.log(buttomSolt, "buttomSolt");const [showMore, setShowMore] = useState(false);const containerRef = useRef(null);useResizeObserver(containerRef.current,".ant-form", h => {setShowMore(h > defaultHeight);});const onReset = () => {// form.resetFields();onResetHandle && onResetHandle();};const [isOpen, setIsOpen] = useState(false);return (<divref={containerRef}style={{ height: `${isOpen ? "auto" : `${defaultHeight}px`}` }}className={classnames(styles.searchForm,!isOpen ? styles.overflowhidden : "",)}><ConfigProvidertheme={{token: {borderRadius: 4,},}}><Form {...FromProps}><div className={styles.formItemBox}>{children}</div><divclassName={styles.ButtonBox}style={{paddingBottom: `${isOpen ? "" : "4px"}`,height: `${isOpen ? "auto" : `${defaultHeight}px`}`,}}><Form.Item>{buttomSolt ? (buttomSolt) : (<><Button htmlType="button" onClick={onReset}>{resetText}</Button><Button type="primary" htmlType="submit">{submitText}</Button></>)}</Form.Item></div></Form></ConfigProvider>{/* 展开 收起 */}{isOpen ? <div className={styles.zhanweibefore}></div> : null}{showMore ? (<divclassName={isOpen ? styles.before : styles.topBefore}onClick={() => {setIsOpen(e => !e);}}><div></div></div>) : null}</div>);
};export default SearchForm;

样式

.overflowhidden {overflow: hidden;
}
.searchForm {color: #666666;position: relative;.formItemBox {display: flex;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;flex: 1;}.topBefore {position: absolute;bottom: 0;background: #fff;border-bottom: 1px solid #dce6ec;width: 100%;display: flex;justify-content: center;cursor: pointer;> div {width: 74px;height: 4px;background: #b3d9ff;position: relative;cursor: pointer;&::before {content: "";width: 0;height: 0;border-left: 5px solid transparent;border-right: 5px solid transparent;border-bottom: 10px solid #b3d9ff;position: absolute;top: -2px;left: 50%;transform: translate(-50%, -50%);}}}.zhanweibefore {width: 100%;height: 14px;}.before {position: absolute;bottom: 0;background: #fff;width: 100%;height: 14px;display: flex;justify-content: center;border-top: 1px solid #dce6ec;> div {width: 74px;height: 4px;background: #b3d9ff;position: relative;cursor: pointer;&::before {content: "";width: 0;height: 0;border-left: 5px solid transparent;border-right: 5px solid transparent;border-top: 10px solid #b3d9ff;position: absolute;top: 7px;left: 50%;transform: translate(-50%, -50%);}}}.ButtonBox {width: 200px;height: 100%;display: flex;align-items: flex-end;justify-content: flex-end;:global {.ant-btn {padding: 4px 10px;margin-right: 10px;}// 重置插槽内样式.ant-form-item-control-input-content {align-items: flex-end;justify-content: flex-end;}}}:global {.ant-form {//   padding-right: 200px;position: relative;}.ant-form-item {display: flex;align-items: center;width: 290px;margin: 0;padding: 10px 15px 10px 0;}.ant-row {flex: 1;.ant-form-item-label {width: 90px;}.ant-form-item-control {flex: 1;}.ant-form-item-control-input-content {display: flex;.flex1 {flex: 1;}.flex2 {flex: 2;}}}.ant-space-compact {flex: 1;align-items: center;}.ant-picker,.ant-input-number {width: 100%;}.span2 {width: 580px;}.ant-slider {width: 100%;}}
}

使用

查看Antd Form api

 className="span2"className="flex2"className="flex1"
import React, { useState, useEffect } from "react";
import styles from "./index.module.less";
import SearchForm from "@/components/SearchForm";
import HocAntdTable from "@/components/HocAntdTable";import {Form,Space,Tag,Button,Cascader,Checkbox,ColorPicker,DatePicker,Input,InputNumber,Radio,Select,Slider,Switch,TreeSelect,Upload,
} from "antd";const { RangePicker } = DatePicker;
const { TextArea } = Input;const mockDataSource = Array.from({ length: 20 }, (_, index) => ({key: (index + 1).toString(),firstName: ["John", "Jim", "Joe"][index % 3],lastName: ["Brown", "Green", "Black"][index % 3],age: [32, 42, 32][index % 3],address: ["New York No. 1 Lake Park","London No. 1 Lake Park","Sydney No. 1 Lake Park",][index % 3],tags: [["nice", "developer"], ["loser"], ["cool", "teacher"]][index % 3],
}));
const dataSource = [...mockDataSource,{key: "1",firstName: "John",lastName: "Brown",age: 32,address: "New York No. 1 Lake Park",tags: ["nice", "developer"],},{key: "2",firstName: "Jim",lastName: "Green",age: 42,address: "London No. 1 Lake Park",tags: ["loser"],},{key: "3",firstName: "Joe",lastName: "Black",age: 32,address: "Sydney No. 1 Lake Park",tags: ["cool", "teacher"],},{key: "11",firstName: "John",lastName: "Brown",age: 32,address: "New York No. 1 Lake Park",tags: ["nice", "developer"],},{key: "22",firstName: "Jim",lastName: "Green",age: 42,address: "London No. 1 Lake Park",tags: ["loser"],},{key: "33",firstName: "Joe",lastName: "Black",age: 32,address: "Sydney No. 1 Lake Park",tags: ["cool", "teacher"],},
];const columns = [{title: "姓名",dataIndex: "name",key: "name",},{title: "年龄",dataIndex: "age",key: "age",},{title: "住址",dataIndex: "address",key: "address",},
];const FormTableDemoPage = props => {const [form] = Form.useForm();const aa = () => {form.resetFields();};return (<>{/* 表单搜索 对照antd Api通用 */}<SearchFormlabelAlign="left"layout="inline"onFinish={values => {console.log(values);}}form={form}onFieldsChange={(changedFields, allFields) => {console.log(changedFields, allFields);}}onResetHandle={() => {// 重置事件form.resetFields();}}// buttomSolt = {//     <div>//     <Button>重置</Button>//     <Button>定义</Button>//     </div>// }><Form.ItemclassName="span1"label="Checkbox"name="disabled"valuePropName="checked"><Checkbox>Checkbox</Checkbox></Form.Item><Form.Item label="Address"><Space.Compact><Form.Itemname={["address", "province"]}noStylerules={[{required: true,message: "Province is required",},]}><Select placeholder="Select province"><Option value="Zhejiang">Zhejiang</Option><Option value="Jiangsu">Jiangsu</Option></Select></Form.Item><Form.Itemname={["address", "street"]}noStylerules={[{required: true,message: "Street is required",},]}><Inputstyle={{width: "50%",}}placeholder="Input street"/></Form.Item></Space.Compact></Form.Item><Form.Item label={null} name="ssss"><Select className="flex1"><Select.Option value="demo">Demo</Select.Option><Select.Option value="222">Demo</Select.Option></Select><Select className="flex2" name="demo"><Select.Option value="demo">Demo</Select.Option><Select.Option value="222">Demo</Select.Option></Select></Form.Item><Form.Item label="Radio" name="Radio"><Radio.Group><Radio value="apple"> Apple </Radio><Radio value="pear"> Pear </Radio></Radio.Group></Form.Item><Form.Item label="Input" name="Input"><Input /></Form.Item><Form.Item label="Select" name="Select"><Select><Select.Option value="demo">Demo</Select.Option></Select></Form.Item><Form.Item label="TreeSelect" name="TreeSelect"><TreeSelecttreeData={[{title: "Light",value: "light",children: [{title: "Bamboo",value: "bamboo",},],},]}/></Form.Item><Form.Item label="Cascader" name="Cascader"><Cascaderoptions={[{value: "zhejiang",label: "Zhejiang",children: [{value: "hangzhou",label: "Hangzhou",},],},]}/></Form.Item><Form.Item label="DatePicker" name="DatePicker"><DatePicker /></Form.Item><Form.Item label="RangePicker" className="span2" name="RangePicker"><RangePicker /></Form.Item><Form.Item label="InputNumber"><InputNumber /></Form.Item><Form.Item label="Switch" valuePropName="checked" name="Switch"><Switch /></Form.Item><Form.Item label="Button"><Button>Button</Button></Form.Item><Form.Item label="Slider"><Slider /></Form.Item><Form.Item label="ColorPicker"><ColorPicker /></Form.Item></SearchForm>{/* 表格查看  对照antd Api通用<HocAntdTable dataSource={dataSource} columns={columns} />*/}</>);
};export default FormTableDemoPage;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/40680.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Qt Json详细介绍

一.概念介绍 JSON&#xff08;JavaScript Object Notation&#xff09;是一种轻量级的数据交换格式&#xff0c;常用于前后端数据传输和存储。它具有以下特点&#xff1a; 易读性&#xff1a;JSON 使用人类可读的文本格式表示数据&#xff0c;采用键值对的方式组织数据&#x…

eth0设备繁忙

当您遇到 ifconfig eth0 hw ether 20:24:07:04:18:00 命令执行后显示 ifconfig: SIOCSIFHWADDR: Device or resource busy 错误时&#xff0c;这意味着您尝试更改的网络设备&#xff08;在这个例子中是 eth0&#xff09;目前正被占用&#xff0c;无法进行硬件地址的更改。 为了…

Map Set(Java篇详解)

&#x1f341; 个人主页&#xff1a;爱编程的Tom&#x1f4ab; 本篇博文收录专栏&#xff1a;Java专栏&#x1f449; 目前其它专栏&#xff1a;c系列小游戏 c语言系列--万物的开始_ 等 &#x1f389; 欢迎 &#x1f44d;点赞✍评论⭐收藏&#x1f496;三连支持…

【每日一练】python列表

1、输入一个整数列表&#xff0c;将列表中的元素按照逆序输出。 list1[5,4,5,6] list1.reverse() print(list1)[6, 5, 4, 5]2、输入一个字符串列表&#xff0c;输出其中长度大于等于5的字符串&#xff0c;并且将它们转换为大写形式。 list1[hello,lol,ak47,aliang] for i in …

211.xv6——3(page tables)

在本实验室中&#xff0c;您将探索页表并对其进行修改&#xff0c;以简化将数据从用户空间复制到内核空间的函数。 开始编码之前&#xff0c;请阅读xv6手册的第3章和相关文件&#xff1a; kernel/memlayout.h&#xff0c;它捕获了内存的布局。kernel/vm.c&#xff0c;其中包含…

代谢组数据分析(十二):岭回归、Lasso回归、弹性网络回归构建预测模型

欢迎大家关注全网生信学习者系列: WX公zhong号:生信学习者Xiao hong书:生信学习者知hu:生信学习者CDSN:生信学习者2介绍 在代谢物预测模型的构建中,我们采用了三种主流的回归分析方法:岭回归、Lasso回归以及弹性网络回归。这三种方法各有其独特的原理和适用场景,因此在…

WPS操作技巧:制作可以打对勾的方框,只需简单几步!沈阳wps办公软件培训

日常工作中&#xff0c;我们经常需要在表格中添加复选框&#xff0c;比如【性别选择】、【任务完成状态】等等&#xff0c;通过打对勾来确定状态。今天就分别从WPS的Excel表格和Word文档2种场景&#xff0c;介绍制作可以打对勾的复选框的方法技巧&#xff0c;掌握技巧&#xff…

25、PHP 实现两个链表的第一个公共结点(含源码)

题目&#xff1a; PHP 实现两个链表的第一个公共结点 描述&#xff1a; 输入两个链表&#xff0c;找出它们的第一个公共结点。 <?php /*class ListNode{var $val;var $next NULL;function __construct($x){$this->val $x;} }*/ function FindFirstCommonNode($pHead…

构建zdppy docker镜像

拉取镜像 docker pull python:3.8-alpine3.19创建容器 docker run -itd --name zdppy python:3.8-alpine3.19 sh进入容器 docker exec -it zdppy sh配置pip国内源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple提交容器为镜像 docker commit…

游戏AI的创造思路-技术基础-计算机视觉

让游戏的AI具备“眼睛”和“视觉”&#xff0c;就是通过计算机视觉的方法进行的。现在&#xff0c;越来越多的游戏&#xff0c;特别是动捕类游戏都在使用这个方法。当然&#xff0c;计算机视觉不仅仅用于游戏&#xff0c;越来越多的应用使用到这个技术 目录 1. 定义 2. 发展历…

spring 枚举、策略模式、InitializingBean初使化组合使用示例

实现一个简单的文本处理系统。 在这个系统中&#xff0c;我们将定义不同类型的文本处理策略&#xff0c;比如大小写转换、添加前缀后缀等&#xff0c;并使用工厂模式来管理这些策略。 1 定义一个枚举来标识不同的文本处理类型 public enum TextProcessTypeEnum {UPPER_CASE,LO…

腾讯混元文生图开源模型推出小显存版本,6G显存即可运行,并开源caption模型

7月4日&#xff0c;腾讯混元文生图大模型&#xff08;混元DiT&#xff09;宣布开源小显存版本&#xff0c;仅需6G显存即可运行&#xff0c;对使用个人电脑本地部署的开发者十分友好&#xff0c;该版本与LoRA、ControlNet等插件&#xff0c;都已适配至Diffusers库&#xff1b;并…

探索 Apache Paimon 在阿里智能引擎的应用场景

摘要&#xff1a;本文整理自Apache Yarn && Flink Contributor&#xff0c;阿里巴巴智能引擎事业部技术专家王伟骏&#xff08;鸿历&#xff09;老师在 5月16日 Streaming Lakehouse Meetup Online 上的分享。内容主要分为以下三个部分&#xff1a; 一、 阿里智能引擎…

【LeetCode】全排列

目录 一、题目二、解法完整代码 一、题目 给定一个不含重复数字的数组 nums &#xff0c;返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。 示例 1&#xff1a; 输入&#xff1a;nums [1,2,3] 输出&#xff1a;[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]] …

LVS+Nginx高可用集群--基础篇

1.集群概述 单体部署&#xff1a; 可以将上面内容分别部署在不同的服务器上。 单体架构的优点&#xff1a; 小团队成型就可完成开发&#xff0c;测试&#xff0c;上线 迭代周期短&#xff0c;速度快 打包方便&#xff0c;运维简单 单体架构的挑战&#xff1a;单节点宕机造成…

DVWA sql手注学习(巨详细不含sqlmap)

这篇文章主要记录学习sql注入的过程中遇到的问题已经一点学习感悟&#xff0c;过程图片会比较多&#xff0c;比较基础和详细&#xff0c;不存在看不懂哪一步的过程 文章目录 靶场介绍SQL注入 lowSQL注入 MediumSQL注入 HighSQL注入 Impossible 靶场介绍 DVWA&#xff08;Damn…

必备的 Adobe XD 辅助工具

想要高效便捷的使用 Adobe XD&#xff0c; Adobe XD 插件是必不可少的&#xff0c; Adobe XD 的插件非常多&#xff0c;但 90%都是英文&#xff0c;并且良莠不齐。在这儿挑选 9 个好用的 Adobe XD 插件给大家&#xff0c;这里是我整理的一些实用 Adobe XD 插件&#xff0c;让你…

大屏开发系列——Echarts的基础使用

本文为个人近期学习总结&#xff0c;若有错误之处&#xff0c;欢迎指出&#xff01; Echarts在vue2中的基础使用 一、简单介绍二、基本使用&#xff08;vue2中&#xff09;1.npm安装2.main.js引入3.使用步骤(1)准备带有宽高的DOM容器&#xff1b;(2)初始化echarts实例&#xff…

gcc: warning: -Wunused-function;加了选项,为什么就不报警告呢?

文章目录 问题clang的编译而使用gcc是就不报问题分析原因如果是非static的函数问题 下面这个代码段,其中这个函数hton_ext_2byte,在整个程序里就没有使用。 static inline uint16_t hton_ext_2byte(uint8_t **p) {uint16_t v;******return v;

PHP宜邦家政服务管理系统-计算机毕业设计源码04426

目 录 摘要 1 绪论 1.1 选题背景与意义 1.2开发现状 1.3论文结构与章节安排 2 宜邦家政服务管理系统系统分析 2.1 可行性分析 2.1.1 技术可行性分析 2.1.2 经济可行性分析 2.1.3 操作可行性分析 2.2 系统功能分析 2.2.1 功能性分析 2.2.2 非功能性分析 2.3 系统用…