解决Antd Table表头加Icon和气泡提示的坑
对于Antd Table组件的columns数组来说,它需要接受2个属性(filterDropdown,filterIcon)才能在表头某个属性旁展示图标Icon
columns: [{ title: '表达式', dataIndex: 'formulaTenderAmount', key: 'formulaTenderAmount', width: 150, placeholder: '请输入表达式', filterDropdown: (<div></div>), filterIcon: <Tooltip placement="" title="气泡悬浮提示文本" > <Icon type='question-circle-o' style={{ marginLeft: 1 }} /> </Tooltip>, },{ title: '操作', dataIndex: 'operation', key: 'operation', width: 305, fixed: 'right', }, ],
然后,结果是怎样呢?
结果是气泡提示框的文本并不是我们期望的 “气泡悬浮提示文本” ,而是 “筛选” 两个字
为什么?
看这里~react ant design 中如何在表头中加个Icon和排序,悬浮icon又触发Tooltip
需求
本篇文章适用于表头添加悬浮和排序,另,只需支持文字悬浮对title封一层方法即可eg
const TooltipTitle = (text, title) => { // text 展示的thead title 展示的提醒文字 return ( <Fragment> <span style={{ marginRight: 8 }}>{text}</span> <Tooltip placement="" title={title}> <Icon type="question-circle" theme="outlined" /> </Tooltip> </Fragment> ); };
ant design中的table中的thead支持信息提示和远程加载排序。
困难点
ant design 没有提供两者存在的api;直接添加sorter,对我们的title封装方法,出现点击排序,只会触发单一的一个排序,这不是我们最终达成的结果。那么在不对title做处理的情况下,实现信息提示和排序的方法
解决
const columns = [{ title: '姓名', dataIndex: 'name', key: 'name', sorter: true, // 实现排序Icon出现,开始交互排序 filterDropdown: true, // 自定义的列筛选功能,我们占位为信息提示Icon的位置 filterIcon: () => { return ( <Tooltip placement="" onVisibleChange={() => onVisibleChange(1)}> // 在这不写title的原因是ant design 内部有很多title,内部结构并没有对特殊的情况做处理,只接收一个title, // 并覆盖不了默认是筛选。 <Icon type="question-circle" theme="outlined" /> </Tooltip> ); }, }, { title: '年龄', dataIndex: 'age', key: 'age', }, { title: '住址', dataIndex: 'address', key: 'address', }]; onVisibleChange = (key) => { //Tooltip 显示隐藏的回调,类似onmouseenter 进入离开事件,用来显示我们不同的信息提醒 let str = ''; switch (key) { case 1: str = '你的姓名'; default: break; } this.setState({ filterTitleKey: str, }); } handleTableChange = (pagination, filters, sorter) => { console.log(pagination, filters, sorter); } <Table dataSource={dataSource} columns={columns} onChange={() => this.handleTableChange} locale={{ filterTitle: filterTitleKey || '默认', // 设一个默认是防止控制台的报错,移除以后造成filterTitle为空,失败; }} />
样式需要自己去调整
简易解释
ant design table 中 filterIcon api 相关的源码解析 ,一些我们未能解决的问题,我们可以通过研究源代码去分析或可供我们
使用的api方法。
renderFilterIcon = () => { const { column, locale, prefixCls, selectedKeys } = this.props; const filtered = selectedKeys && selectedKeys.length > 0; let filterIcon = column.filterIcon as any; if (typeof filterIcon === 'function') { filterIcon = filterIcon(filtered); } const dropdownIconClass = classNames({ [`${prefixCls}-selected`]: filtered, [`${prefixCls}-open`]: this.getDropdownVisible(), }); return filterIcon ? ( // 重点在这,官网提供了filterIcon api,并未提供filterTitle,来解决我们现实遇到的问题 React.cloneElement(filterIcon as any, { title: locale.filterTitle, // 因源码内部有个title,我们实现让它动态展示,层叠掉默认的title className: classNames(`${prefixCls}-icon`, dropdownIconClass, filterIcon.props.className), onClick: sPropagation, }) ) : ( <Icon title={locale.filterTitle} // 同理上,供我们使用的api type="filter" theme="filled" className={dropdownIconClass} onClick={sPropagation} /> ); };
有兴趣的同学可以看一看完整的代码,看看实现的具体过程,长沙网络推广不才,只展示部分实现的过程,详细的原理长沙网络推广未给出,敬请谅解...
好了~ 回归正题吧!
如此,我改成了以下的代码,并且新增了onVisibleChange方法,新增了state的属性filterTitleKey,并且在Table组件属性中增加了locale对象
this.state = { filterTitleKey: '', } columns: [{ title: '表达式', dataIndex: 'formulaTenderAmount', key: 'formulaTenderAmount', width: 150, placeholder: '请输入表达式', filterDropdown: (<div></div>), filterIcon: <Tooltip onVisibleChange={() => this.onVisibleChange(1)} placement="" > <Icon type='question-circle-o' style={{ marginLeft: 1 }} /> </Tooltip>, },{ title: '操作', dataIndex: 'operation', key: 'operation', width: 305, fixed: 'right', }, ], onVisibleChange = (key) => { //Tooltip 显示隐藏的回调,类似onmouseenter 进入离开事件,用来显示我们不同的信息提醒 let str = ''; switch (key) { case 1: str = '函数计算,x表示发行规模'; default: break; } this.setState({ filterTitleKey: str, }); }
这边会有Table的一个属性locate,官网是这样解释的
<Table loading={loading} className='editableTable' size="small" style={{ height: tableHeight - 40 }} columns={columns} locale={{ filterTitle: filterTitleKey || '默认', // 设一个默认是防止控制台的报错,移除以后造成filterTitle为空,失败; }} dataSource={dataSource} pagination={pagination} scroll={{ x: 2400, y: tableScrollHeight }} />
这样就能正常的显示气泡文本了
以上这篇解决Antd Table表头加Icon和气泡提示的坑就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程