15

我在我的应用程序中使用react-table

我一直在做一件事,即在调整列大小时更改CSSof columns

当前,当您resizecursor更改一列时。我想要的是添加borderselected column.

SO我也在搜索这个google。但是找不到有用的东西。而且在文档中也没有提到这个主题。

更新

现在我可以在调整大小时在拖动列时添加边框。我可以通过添加和删除课程来做到这一点。

我为此做了什么:

在 className 的 state 中创建了一个 var:

  this.state = {
         addBorder: null
   }

在我的专栏中传递了这个类名:

     const columns = [{
    Header: 'Name',
    accessor: 'name', // String-based value accessors!,
    headerClassName: this.state.addBorder,
    className: this.state.addBorder
}, {
    Header: 'Age',
    accessor: 'age',
    Cell: props => <span className='number'>{2}</span> // Custom cell components!
}, {
    id: 'friendName', // Required because our accessor is not a string
    Header: 'Friend Name',
    accessor: d => d.friend.name // Custom value accessors!
}, {
    Header: props => <span>Friend Age</span>, // Custom header components!
    accessor: 'friend.age'
}];

return (
    <div onMouseUp={this.handleMouseUp}>
    <ReactTable
        data={data}
        columns={columns} 
        resizable={true}
        onResizedChange={(col, e) => {
            const column = col[col.length-1];
            this.setState({addBorder: column.id})
        }} />
        </div>
)
}

拖动结束时删除类:

   handleMouseUp (e) {
    this.setState({addBorder: null});
}

但我仍然无法在悬停时添加边框。

现在,我在标题道具中发送我的自定义 HTML。在我的 HTML 中,我制作了一个额外的 div。我已经把这个 div 移到了右边。在这个 div 悬停时,我会发出鼠标事件并相应地更改 CSS。

但是负责调整列大小的标题中的现有 div 与我的 div 重叠。

  Header: props => <div className='header-div'> Name <div onMouseOver = {() => {
        console.log('mose');
        this.setState({className: 'addBorder'});
    }} className='hover-div' onMouseOut = {() => {console.log('sdasd');this.setState({className: null});}}> </div></div> ,
4

3 回答 3

6

据我了解,当您将鼠标悬停在列标题上时,您想添加一些边框。如果我的理解是正确的,您可以:hover在标头类上使用伪选择器

.hdrCls:hover {
  border: 2px solid rgba(0,0,0,0.6) !important;
}

更新 :

onResizedChange您可以在react-table 公开的处理程序中操作状态

onResizedChange={(newResized, event) => {
  let resizedCol = newResized.slice(-1)[0].id;
  if(this.state.activeCol !== resizedCol) {
    this.setState({
      activeCol: resizedCol,
      resizing: true
    })
  }
}}

另外,请确保您必须将resizing状态设置为falseonmouseup事件。为此,我提出了以下解决方案。

componentDidUpdate(props, state) {
  if (this.state.resizing && !state.resizing) {
    document.addEventListener('mouseup', this.onMouseUp);
  } else if (!this.state.resizing && state.resizing) {
    document.removeEventListener('mouseup', this.onMouseUp);
  }
}

onMouseUp = (evt) => {
  this.setState({
    activeCol: '',
    resizing: false
  });
  evt.stopPropagation();
  evt.preventDefault();
}      

以供参考:

const ReactTable = window.ReactTable.default

class App extends React.Component {
  constructor(props) {
    super(props)
    this.state = {
      activeCol: '',
      resizing: false
    }
  }
  
  componentDidUpdate(props, state) {
    if (this.state.resizing && !state.resizing) {
      document.addEventListener('mouseup', this.onMouseUp);
    } else if (!this.state.resizing && state.resizing) {
      document.removeEventListener('mouseup', this.onMouseUp);
    }
  }
  
  onMouseUp = (evt) => {
    this.setState({
      activeCol: '',
      resizing: false
    });
    evt.stopPropagation();
    evt.preventDefault();
  }
  
  render() {
    const data = [{
      name:"Mark",
      age:24
    },
    {
      name:"Derek",
      age:26
    }]

    const columns = [{
          Header: 'Name',
          accessor: 'name', // String-based value accessors!,
          headerClassName: 'hdrCls',
          className: (this.state.activeCol === 'name') && this.state.resizing ? 'borderCellCls' : 'defaultCellCls'
      }, {
          Header: 'Age',
          accessor: 'age',
          headerClassName: 'hdrCls',
          className: (this.state.activeCol === 'age') && this.state.resizing ? 'borderCellCls' : 'defaultCellCls'
      }];

    return <ReactTable
      data = { data }
      columns = { columns }
      showPagination= {false}
      onResizedChange={(newResized, event) => {
        let resizedCol = newResized.slice(-1)[0].id;
        if(this.state.activeCol !== resizedCol) {
          this.setState({
            activeCol: resizedCol,
            resizing: true
          })
        }
      }}
    />
  }
}

ReactDOM.render( < App / > , document.getElementById("app"))
.hdrCls:hover {
  border: 2px solid rgba(0,0,0,0.6) !important;
}


.borderCellCls {
  border-right: 2px solid rgba(0,0,0,0.6) !important;
  border-left: 2px solid rgba(0,0,0,0.6) !important;
}

.defaultCellCls {
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-table/6.7.6/react-table.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/react-table/6.7.6/react-table.css"></link>
<div id="app"></div>

您可以使用 CSS。希望这是您想要的,并希望这会有所帮助。

更新:

我认为你必须使用 CSS 来实现你想要的。

.borderCellCls {
   border-right: 2px solid rgba(0,0,0,0.6) !important;
   border-left: 2px solid rgba(0,0,0,0.6) !important;
}
于 2018-02-24T03:44:32.163 回答
1

如果您在这里了解如何将 className 设置为列单元格(使用 react-table),这里是解决方案

1)

<tr
            
              {...row.getRowProps()}
            >
              {row.cells.map((cell) => (
                <td
                  {...cell.getCellProps([
                    {
                      className: cell.column.className, // pay attention to this
                      style: cell.column.style,
                      // set here your other custom props
                    },
                  ])}
                >
                  {cell.render('Cell')}
                </td>
              ))}
            </tr>

2)

  const columns = React.useMemo(
() => [
  {
    Header: 'Date',
    accessor: 'date',
    minWidth: 70,
    className: 'text-dark fw-bolder fs-6 min-w-70px', // pass className props here
    headerClassName: 'text-muted', // or another props like this one
  }]
  
<Table columns={columns} ... />

最后,这些道具将传递到您的牢房

于 2021-08-09T13:06:29.473 回答
1

对于 TypeScript 支持,请遵循 DefinitiveTyped 中的说明即。使用说明中的内容创建文件/src/types/react-table-config.d.ts,然后将以下内容添加到其中以支持列上的自定义属性(根据需要在最后一行添加更多属性):

  // Added to support classes to template from:
  // https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-table
  export interface ColumnInstance<
    D extends Record<string, unknown> = Record<string, unknown>
  > extends Omit<ColumnInterface<D>, 'id'>,
      ColumnInterfaceBasedOnValue<D>,
      UseTableColumnProps<D>,
      Record<headerClassName | className, string> {}
于 2021-10-12T22:55:15.270 回答