Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@replit/clui-session
Advanced tools
@replit/clui-session
A utility for manipulating a list of React children.
When building a CLI-style interfaces this can be useful for adding and removing lines when the prompt is submitted. Each child receives an item prop that contains methods and properties related to navigating and transforming the list. By default only the first child is rendered. It's up to the child elements to call a method on props.item
to update the list. The child elements can be insered dynamically, defined up-front or a mix of both.
Here's an exmaple that renders an input and a button. When the button is clicked, 2 components are added (not rendered) to the list by calling item.insert(/* ... */).next()
. By chaining next()
the next child is rendered, which is <Output value={value} />
. By passing value
to Output
it can render something based on it. The only requirement for Output
is to call props.item.next()
at some point to show the next Prompt
. This could be after fetching data, a user interaction, or right when the component mounts (useEffect(() => props.item.next(), [])
.
import React, { useState } from 'react'
import { render } from 'react-dom'
import Session from '@replit/clui-session';
// Substitute for somehting more interesting!
const useFetchData = (value) => {
return value;
}
const Output = (props) => {
// Do something interesting with prompt input value
const data = useFetchData(props.value);
useEffect(() => {
if (data) {
// After data has loaded, call `next` to show next child (which is another Prompt)
props.item.next();
}
}, [data]);
if (!data) {
return <div>Loading...</div>;
}
// Render output data
return <div>output: ${data}</div>,
}
const Prompt = (props) => {
const [value, setValue] = useState('');
const onClick = () => {
props.item.insert(
<Output value={value} />,
<Prompt />,
).next();
}
return (
<div>
<input value={value} onChange={e => setValue(e.target.value)}/>
<button onClick={onClick}>run</button>
<div>;
);
}
render(
<Session>
<Prompt />
</Session>,
document.getElementById('root'),
);
/* After typing "hello session" and clicking run on the output
* the component tree would look like
*
* <Session>
* <Prompt />
* <Output value="hello session" />
* <Prompt />
* </Session>
*/
Step
is a utility component that automatically shows the next child by calling item.next
when the component mounts
<Session>
<Step><div>step 1</div></Step>
<Step wait={2000}><div>step 2 (paused for 1 second)</div></Step>
<Step wait={2000}><div>step 3 (paused for 1 second)</div></Step>
<Step><div>step 4</div></Step>
</Session>
Do
is a utility component the gives you access to item
inline as a render prop.
<Session>
<Do>
{item => <button onClick={item.next}>next 1</button>}
</Do>
<Do>
{item => <button onClick={item.next}>next 2</button>}
</Do>
<Do>
{item => <button onClick={item.next}>next 3</button>}
</Do>
</Session>
FAQs
A utility library to manage a list of react components
We found that @replit/clui-session demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.