
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
react-navigation-focus-render
Advanced tools
Prevents re-renders of components that aren't on the focused screen
Screens within a stack or in tabs will still render when any global state(Redux/Context etc) is updated. This component lets you avoid these renders when the screens are inactive.
npm i react-navigation-focus-render --save
import FocusRender from 'react-navigation-focus-render'
const ExpensiveComponent = () => {
const {count} = useCount(); // something that hooks into changing state
return (
<FocusRender>
... Components
</FocusRender>
)
}
You may wish to add a wrapper component that displays differently whilst the inactive component hydrates its state when the screen becomes active.
You can specify a Wrapper component that takes isFocused as a property.
import FocusRender from 'react-navigation-focus-render'
const Wrapper = ({isFocused, children}) => (
<View style={{opacity: isFocused ? 1 : 0.5}}>{children}</View>
);
const ExpensiveComponent = () => {
const {count} = useCount(); // something that hooks into changing state
return (
<FocusRender Wrapper={Wrapper}>
... Components
</FocusRender>
)
}
You can see the example project to see this working.
HomeScreen:
TabScreen
Given this simple example, the difference in performance when updating state can be measured using https://github.com/Flagsmith/react-native-performance-monitor.
Of course, this is quite an extreme example but given an active stack of many tabs / screens this could easily add up if you have complex components.
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.