mirror of
https://github.com/desktop/desktop
synced 2024-10-31 05:19:03 +00:00
Update to new derived lifecycle method
This commit is contained in:
parent
b4b4b7ed78
commit
24fb263e18
2 changed files with 62 additions and 30 deletions
|
@ -194,28 +194,31 @@ export class FilterList<T extends IFilterListItem> extends React.Component<
|
|||
IFilterListProps<T>,
|
||||
IFilterListState<T>
|
||||
> {
|
||||
public static getDerivedStateFromProps(
|
||||
props: IFilterListProps<IFilterListItem>,
|
||||
state: IFilterListState<IFilterListItem>
|
||||
) {
|
||||
return createStateUpdate(props, state)
|
||||
}
|
||||
|
||||
public state: IFilterListState<T> = {
|
||||
rows: new Array<IFilterListRow<T>>(),
|
||||
selectedRow: -1,
|
||||
filterValue: '',
|
||||
filterValueChanged: false,
|
||||
}
|
||||
|
||||
private list: List | null = null
|
||||
private filterTextBox: TextBox | null = null
|
||||
|
||||
public constructor(props: IFilterListProps<T>) {
|
||||
super(props)
|
||||
|
||||
this.state = {
|
||||
filterValueChanged: false,
|
||||
...createStateUpdate(props),
|
||||
if (props.filterTextBox !== undefined) {
|
||||
this.filterTextBox = props.filterTextBox
|
||||
}
|
||||
}
|
||||
|
||||
public componentWillMount() {
|
||||
if (this.props.filterTextBox !== undefined) {
|
||||
this.filterTextBox = this.props.filterTextBox
|
||||
}
|
||||
}
|
||||
|
||||
public componentWillReceiveProps(nextProps: IFilterListProps<T>) {
|
||||
this.setState(createStateUpdate(nextProps))
|
||||
}
|
||||
|
||||
public componentDidUpdate(
|
||||
prevProps: IFilterListProps<T>,
|
||||
prevState: IFilterListState<T>
|
||||
|
@ -596,7 +599,8 @@ export function getText<T extends IFilterListItem>(
|
|||
}
|
||||
|
||||
function createStateUpdate<T extends IFilterListItem>(
|
||||
props: IFilterListProps<T>
|
||||
props: IFilterListProps<T>,
|
||||
state: IFilterListState<T>
|
||||
) {
|
||||
const flattenedRows = new Array<IFilterListRow<T>>()
|
||||
const filter = (props.filterText || '').toLowerCase()
|
||||
|
@ -637,7 +641,18 @@ function createStateUpdate<T extends IFilterListItem>(
|
|||
selectedRow = flattenedRows.findIndex(i => i.kind === 'item')
|
||||
}
|
||||
|
||||
return { rows: flattenedRows, selectedRow, filterValue: filter }
|
||||
let filterChanged = state.filterValueChanged
|
||||
|
||||
if (!filterChanged && filter.length) {
|
||||
filterChanged = true
|
||||
}
|
||||
|
||||
return {
|
||||
rows: flattenedRows,
|
||||
selectedRow,
|
||||
filterValue: filter,
|
||||
filterValueChanged: filterChanged,
|
||||
}
|
||||
}
|
||||
|
||||
function getItemFromRowIndex<T extends IFilterListItem>(
|
||||
|
|
|
@ -175,28 +175,32 @@ interface IFilterListState<T extends IFilterListItem> {
|
|||
export class SectionFilterList<
|
||||
T extends IFilterListItem
|
||||
> extends React.Component<ISectionFilterListProps<T>, IFilterListState<T>> {
|
||||
public static getDerivedStateFromProps(
|
||||
props: ISectionFilterListProps<IFilterListItem>,
|
||||
state: IFilterListState<IFilterListItem>
|
||||
) {
|
||||
return createStateUpdate(props, state)
|
||||
}
|
||||
|
||||
public state: IFilterListState<T> = {
|
||||
rows: new Array<Array<IFilterListRow<T>>>(),
|
||||
selectedRow: InvalidRowIndexPath,
|
||||
filterValue: '',
|
||||
filterValueChanged: false,
|
||||
groups: [],
|
||||
}
|
||||
|
||||
private list: SectionList | null = null
|
||||
private filterTextBox: TextBox | null = null
|
||||
|
||||
public constructor(props: ISectionFilterListProps<T>) {
|
||||
super(props)
|
||||
|
||||
this.state = {
|
||||
filterValueChanged: false,
|
||||
...createStateUpdate(props),
|
||||
if (props.filterTextBox !== undefined) {
|
||||
this.filterTextBox = props.filterTextBox
|
||||
}
|
||||
}
|
||||
|
||||
public componentWillMount() {
|
||||
if (this.props.filterTextBox !== undefined) {
|
||||
this.filterTextBox = this.props.filterTextBox
|
||||
}
|
||||
}
|
||||
|
||||
public componentWillReceiveProps(nextProps: ISectionFilterListProps<T>) {
|
||||
this.setState(createStateUpdate(nextProps))
|
||||
}
|
||||
|
||||
public componentDidUpdate(
|
||||
prevProps: ISectionFilterListProps<T>,
|
||||
prevState: IFilterListState<T>
|
||||
|
@ -633,7 +637,8 @@ function getFirstVisibleRow<T extends IFilterListItem>(
|
|||
}
|
||||
|
||||
function createStateUpdate<T extends IFilterListItem>(
|
||||
props: ISectionFilterListProps<T>
|
||||
props: ISectionFilterListProps<T>,
|
||||
state: IFilterListState<T>
|
||||
) {
|
||||
const rows = new Array<Array<IFilterListRow<T>>>()
|
||||
const filter = (props.filterText || '').toLowerCase()
|
||||
|
@ -683,7 +688,19 @@ function createStateUpdate<T extends IFilterListItem>(
|
|||
selectedRow = getFirstVisibleRow(rows)
|
||||
}
|
||||
|
||||
return { rows: rows, selectedRow, filterValue: filter, groups: groupIndices }
|
||||
let filterChanged = state.filterValueChanged
|
||||
|
||||
if (!filterChanged && filter.length) {
|
||||
filterChanged = true
|
||||
}
|
||||
|
||||
return {
|
||||
rows: rows,
|
||||
selectedRow,
|
||||
filterValue: filter,
|
||||
filterValueChanged: filterChanged,
|
||||
groups: groupIndices,
|
||||
}
|
||||
}
|
||||
|
||||
function getItemFromRowIndex<T extends IFilterListItem>(
|
||||
|
|
Loading…
Reference in a new issue