1. 程式人生 > 程式設計 >解決Antd Table表頭加Icon和氣泡提示的坑

解決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="top" title="氣泡懸浮提示文字" > 
 <Icon type='question-circle-o' style={{ marginLeft: 1 }} />
 
 </Tooltip>,},{
 
 title: '操作',dataIndex: 'operation',key: 'operation',width: 305,fixed: 'right',],

然後,結果是怎樣呢?

結果是氣泡提示框的文字並不是我們期望的 “氣泡懸浮提示文字” ,而是 “篩選” 兩個字

解決Antd Table表頭加Icon和氣泡提示的坑

為什麼?

看這裡~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="top" title={title}>
 <Icon type="question-circle" theme="outlined" />
 </Tooltip>
 </Fragment>
 );
};

ant design中的table中的thead支援資訊提示和遠端載入排序。

解決Antd Table表頭加Icon和氣泡提示的坑

困難點

ant design 沒有提供兩者同時存在的api;直接新增sorter,同時對我們的title封裝方法,出現點選排序,只會觸發單一的一個排序,這不是我們最終達成的結果。那麼在不對title做處理的情況下,實現資訊提示和排序的方法

解決

const columns = [{
 title: '姓名',dataIndex: 'name',key: 'name',sorter: true,// 實現排序Icon出現,開始互動排序
 filterDropdown: true,// 自定義的列篩選功能,我們佔位為資訊提示Icon的位置
 filterIcon: () => {
 return (
 <Tooltip placement="top" 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,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: stopPropagation,})
 ) : (
 <Icon
 title={locale.filterTitle} // 同理上,供我們使用的api
 type="filter"
 theme="filled"
 className={dropdownIconClass}
 onClick={stopPropagation}
 />
 );
 };

有興趣的同學可以看一看完整的程式碼,看看實現的具體過程,小編不才,只展示部分實現的過程,詳細的原理小編未給出,敬請諒解...

好了~ 迴歸正題吧!

如此,我改成了以下的程式碼,並且新增了onVisibleChange方法,新增了state的屬性filterTitleKey,並且在Table元件屬性中增加了locale物件:

this.state = { 
 filterTitleKey: '',}
columns: [{
 
 title: '表示式',filterIcon: <Tooltip onVisibleChange={() => this.onVisibleChange(1)} placement="top" > 
 <Icon type='question-circle-o' style={{ marginLeft: 1 }} /> 
 </Tooltip>,onVisibleChange = (key) => { //Tooltip 顯示隱藏的回撥,類似onmouseenter 進入離開事件,用來顯示我們不同的資訊提醒
 
 let str = ''; 
 switch (key) { 
 case 1: 
 str = '函式計算,x表示發行規模'; 
 default: 
 break; 
 }
 
 this.setState({ 
 filterTitleKey: str,}); 
 }

這邊會有Table的一個屬性locate,官網是這樣解釋的:

解決Antd Table表頭加Icon和氣泡提示的坑

<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和氣泡提示的坑

解決Antd Table表頭加Icon和氣泡提示的坑

以上這篇解決Antd Table表頭加Icon和氣泡提示的坑就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。