Remove unneded code in the tableComponent

This commit is contained in:
Jesús Espino 2020-10-26 18:45:45 +01:00
parent 15f8506942
commit 083ec6e2ff

View file

@ -29,33 +29,19 @@ type Props = {
}
type State = {
isSearching: boolean
shownCard?: Card
viewMenu: boolean
showFilter: boolean
}
class TableComponent extends React.Component<Props, State> {
private draggedHeaderTemplate: IPropertyTemplate
private cardIdToRowMap = new Map<string, React.RefObject<TableRow>>()
private cardIdToFocusOnRender: string
private searchFieldRef = React.createRef<Editable>()
constructor(props: Props) {
super(props)
this.state = {isSearching: Boolean(this.props.boardTree?.getSearchText()), viewMenu: false, showFilter: false}
}
state: State = {}
shouldComponentUpdate(): boolean {
return true
}
componentDidUpdate(prevPros: Props, prevState: State): void {
if (this.state.isSearching && !prevState.isSearching) {
this.searchFieldRef.current.focus()
}
}
render(): JSX.Element {
const {boardTree, showView} = this.props
@ -225,12 +211,6 @@ class TableComponent extends React.Component<Props, State> {
)
}
private focusOnCardTitle(cardId: string): void {
const tableRowRef = this.cardIdToRowMap.get(cardId)
Utils.log(`focusOnCardTitle, ${tableRowRef?.current ?? 'undefined'}`)
tableRowRef?.current.focusOnTitle()
}
private addCard = async (show = false) => {
const {boardTree} = this.props