Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
react-wait-content
Advanced tools
React component to delay children rendering to a determined load state of the page
React component to postpone children rendering to a determined load state of the page (DOM loaded or fully loaded) with optional additional delay.
It can show a fallback component while waiting and fire a callback at children rendering.
npm i react-wait-content
Compatible with React >=16.8.0
Compatible with Node >=8.0.0
Index
import { Defer } from 'react-wait-content'
Type: FunctionComponent
Prop | Type | Default | Description |
---|---|---|---|
trigger ? | TriggerEvent | bypass | State of the page that triggers the children rendering |
fallback ? | ReactNode | undefined | Component to render instead of children while waiting |
timeout ? | number | 0 | Additional delay |
onRender ? | Function | undefined | Function to call on rendering |
import { TriggerEvent } from 'react-wait-content'
Type: 'bypass'
, 'domLoaded'
, 'pageLoaded'
Value | Description |
---|---|
'bypass' | Renders children immediately |
'domLoaded' | Renders children when "DOMContentLoaded" event is fired |
'pageLoaded' | Renders children when "load" event is fired |
import { Defer } from 'react-wait-content'
const App = () => {
const handleOnRender = () => window.alert('onRender called')
return (
<div>
<h1>This will appear first</h1>
<Defer
trigger='pageLoaded'
fallback={<CircularProgress />} // <-- this will be rendered while page is loading
timeout={1000}
onRender={handleOnRender}>
<h1>This will appear at page loaded + 1 second</h1>
</Defer>
</div>;
)
}
react-delay-fallback 1.0.1
MIT
FAQs
React component to delay children rendering to a determined load state of the page
We found that react-wait-content demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.