Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: search transition smoother on slower devices #31354

Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5de34fb
perf: add memoization
hurali97 Nov 14, 2023
3ebfc50
perf: add memoization
hurali97 Nov 15, 2023
bbb216d
perf: add navigation listeners and remove inline functions
hurali97 Nov 15, 2023
15147c6
refactor: use personalDetails from utils and add Interaction Manager
hurali97 Nov 15, 2023
15e62f9
fix: linting
hurali97 Nov 15, 2023
aab633b
refactor: focus text input
hurali97 Nov 16, 2023
70e5512
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Nov 27, 2023
0e28330
fix: skeleton being shown when typing
hurali97 Nov 28, 2023
5f66ef4
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Nov 28, 2023
b2be763
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 1, 2023
a494ec0
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 1, 2023
bdb9af9
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 4, 2023
44cc8fe
refactor: remove unnecessary useMemo
hurali97 Dec 4, 2023
cd3c7e3
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 6, 2023
abb5fc6
fix: personalDetails not updating
hurali97 Dec 6, 2023
d45957a
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 14, 2023
8b1d46a
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 19, 2023
47f1670
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 20, 2023
3f05754
fix: skeleton not hiding when no result found for input
hurali97 Dec 22, 2023
e6a37a8
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 22, 2023
06bda40
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 27, 2023
b890a8a
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 28, 2023
82e9c7c
fix: PR feedbacks
hurali97 Dec 28, 2023
94d9a50
test: fix reassure test
hurali97 Dec 28, 2023
4787850
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 28, 2023
56f5f49
test: mock withNavigation for options selector reassure test
hurali97 Dec 28, 2023
5c61a64
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Dec 29, 2023
c4859f4
fix: linting
hurali97 Dec 29, 2023
ee753e4
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Jan 8, 2024
f8605a3
Merge branch 'main' of https://github.com/hurali97/Expensify-App into…
hurali97 Jan 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/LHNOptionsList/LHNOptionsList.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {FlashList} from '@shopify/flash-list';
import lodashGet from 'lodash/get';
import PropTypes from 'prop-types';
import React, {useCallback} from 'react';
import React, {memo, useCallback} from 'react';
import {View} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import _ from 'underscore';
Expand Down Expand Up @@ -190,4 +190,4 @@ export default compose(
key: ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT,
},
}),
)(LHNOptionsList);
)(memo(LHNOptionsList));
Loading
Loading