
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-create-view
Advanced tools
A utility to standardize creating react views that go through different states like loading, success, empty, error
A utility to standardize creating views that go through different states like loading, success, empty, error.
Inspired by redwoodjs Cells which you can peep here
There is an example of how to use the createView utility in example/src/App.tsx.
You can also check out test.tsx here
import { createView, ViewModelProps } from 'react-create-view';
// note: models can contain callbacks, etc!
type SuccessModel = {
name: string;
};
type FailureModel = {
error: Error;
};
type LoadingModel = {
icon: string;
};
type EmptyModel = {
msg: string;
};
type VMProps = ViewModelProps<
SuccessModel,
FailureModel,
LoadingModel,
EmptyModel
>;
const useViewModel = (): VMProps => {
// note: this is just for demo purposes. not a full example. use react-query!
const [isLoading, setIsLoading] = useState(false);
const [isError, setIsError] = useState(false);
const [isEmpty, setIsEmpty] = useState(false);
const [name, setName] = useState('Chris Fields');
if (isError) {
return {
status: 'error',
model: {
error: new Error('Failed to get data'),
},
};
}
if (isLoading) {
return {
status: 'loading',
model: {
icon: 'loadingIcon',
},
};
}
if (isEmpty) {
return {
status: 'empty',
model: {
msg: 'No items',
},
};
}
return {
status: 'success',
model: {
name: 'chris',
},
};
};
const MyView = createView<SuccessModel, FailureModel, LoadingModel, EmptyModel>(
{
Success({ name }) {
return <h1>{name}</h1>;
},
Failure({ error }) {
return <h1>{error.message}</h1>;
},
Loading({ icon }) {
return <h1>{icon}</h1>;
},
Empty({ msg }) {
return <h1>{msg}</h1>;
},
}
);
const MyComponent = () => {
const vm = useViewModel();
return <MyView {...vm} />;
};
// use <MyComponent /> anywhere!
The one thing I feel can be approved is it would be nice to pass the ViewModelProps type to createView so dont have to redo generics, but I don't know this TS wizardry. So if you do, help!
FAQs
A utility to standardize creating react views that go through different states like loading, success, empty, error
We found that react-create-view 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.