Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@donnikitos/react-usepromise
Advanced tools
Use promisises and asynchronous component loading hook for React.js
A very simple function to use Promises with React.js's states.
Install with npm:
# via npm
npm install @n94/react-usepromise
The usePromiseState
function takes a string or component that should be displayed while the promise is not yeat resolved.
It returns a variable and a setter function very much like in React.js.
The setter function may take up to 2 parameters: 1st - Promise; 2nd -
import React from 'react';
// import usePromiseState from '@n94/react-usepromise';
import { usePromise } from '@n94/react-usepromise';
// use in Component
export default function Comp(props) {
const [display, setDisplay] = usePromise('Loading...');
React.useEffect(() => {
setDisplay(import('./link-to-file')); // loads the default export from link-to-file
}, []);
return (<div>
{display}
</div>);
};
Alternatively you can use the updateState
function to update the state with a Promise:
import React from 'react';
import { updateState } from '@n94/react-usepromise';
// use in Component
export default function Comp(props) {
const [display, setDisplay] = usePromiseState('Loading...');
const updateDisplay = updateState(setDisplay);
React.useEffect(() => {
updateDisplay(import('./link-to-file'), 'someExport'); // loads the someExport export from link-to-file -> also possible with the normal version
}, []);
return (<div>
{display}
</div>);
};
MIT.
FAQs
Use promisises and asynchronous component loading hook for React.js
The npm package @donnikitos/react-usepromise receives a total of 4 weekly downloads. As such, @donnikitos/react-usepromise popularity was classified as not popular.
We found that @donnikitos/react-usepromise 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.