Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@usmangurowa/react-switch
Advanced tools
React Switch is a customizable switch component for React applications.
Install the package using npm:
npm install @usmangurowa/react-switch
Install the package using yarn:
yarn add @usmangurowa/react-switch
Here's a basic example of how to use @usmangurowa/react-switch
:
import React from "react";
import { Switch, Case } from "@usmangurowa/react-switch";
const App = () => {
const condition = true;
return (
<Switch case={condition.toString()}>
<Case when="true">
<h1>This is displayed when the condition is true</h1>
</Case>
<Case when="false">
<h1>This is displayed when the condition is false</h1>
</Case>
</Switch>
);
};
export default App;
The Switch
component renders the first matching Case
component based on the provided condition.
Props:
case
(optional): The condition to match against. Accepts a string.children
: The Case
components to render.The Case
component represents a case within the Switch
component.
Props:
when
(optional): The condition to match against. Accepts a string.case
(optional): Same thing as when
.component
(optional): A custom component to render when the condition matches.children
: The content to render when the condition matches.import React, { useState } from "react";
import { Switch, Case } from "@usmangurowa/react-switch";
const ToggleSwitch = () => {
const [isOn, setIsOn] = useState(false);
const handleToggle = () => {
setIsOn(!isOn);
};
return (
<Switch case={isOn}>
<Case when={true}>
<button onClick={handleToggle}>ON</button>
</Case>
<Case when={false}>
<button onClick={handleToggle}>OFF</button>
</Case>
</Switch>
);
};
export default ToggleSwitch;
import React, { useState } from "react";
import { Switch, Case } from "@usmangurowa/react-switch";
const UserRoleSwitch = () => {
const [userRole, setUserRole] = useState("user");
const handleChangeUserRole = (role) => {
setUserRole(role);
};
return (
<Switch case={userRole}>
<Case when="admin">
<button onClick={() => handleChangeUserRole("user")}>
Switch to User
</button>
</Case>
<Case when="user">
<button onClick={() => handleChangeUserRole("admin")}>
Switch to Admin
</button>
</Case>
</Switch>
);
};
export default UserRoleSwitch;
Contributions are welcome! Feel free to open an issue or submit a pull request.
FAQs
A customizable switch component for React applications
We found that @usmangurowa/react-switch 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.