![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
empower-category-menu
Advanced tools
--- ### Installation --- ``` npm i empower-category-menu ``` ### Usage ``` Include in the component:
npm i empower-category-menu
Include in the component:
import CategoryMenu from 'empower-category-menu';
title - Title of the Category Menu
data - object composed of label,action,status,icon and subdata
label - The label for each category
action - This is the called action upon clicking the categories
status - Status of category (e.g. in-progress,locked,completed,standard)
icon - The icon that will be displayed beside the category label, preferably svg
subData - If the category has sub category, this should have data sets same as the data props
button - object composed of label,icon
label - The label of the action above the categories.
icon - Optional, an action button icon above the categories.
selected - this is the current selected category, this value should be the same value of action of the category
preSelected - Same as the selected but upon initializing, this will be the active category if it is set
inner - If this is set to true, the category will have a classname of 'category-menu-inner' and empty if its false.
isStepper - This is a boolean, if you want broken lines connecting to each categories, make this option as true, if not, make it false.
loaded - This is the identifier if the category menu will be display or still on loading as some of the category might be from an external api return.
getActions - this is the function that will be called upon clicking each category
const sampleProps = {
title: 'Test Menu',
data: [
{
label: 'Menu 1',
action: 'menu-1',
status: 'in-progress',
icon: SVG_DOCUMENT,
subData: [
{
label: 'Menu 1 Sub Menu 1',
action: 'menu-1-sub-menu-1',
status: 'in-progress',
icon: SVG_DOCUMENT,
},
{
label: 'Menu 1 Sub Menu 2',
action: 'menu-1-sub-menu-2',
status: 'in-progress',
icon: SVG_DOCUMENT,
},
],
},
{
label: 'Menu 2',
action: 'menu-2',
status: 'locked',
icon: SVG_DOCUMENT
},
{
label: 'Menu 3',
action: 'menu-3',
status: 'completed',
icon: SVG_DOCUMENT
},
{
label: 'Menu 4',
action: 'menu-4',
status: 'standard',
icon: SVG_DOCUMENT
},
{
label: 'Menu 5',
action: 'menu-5',
status: 'pending',
icon: SVG_DOCUMENT
},
],
selected: 'menu-1-sub-menu-1',
inner: true,
loaded: true,
};
const App = () => {
let getCategoryMenuActions = (action, value) => {
console.log(action,value);
// this will handle the selected action
}
return (
<div className="sample-div">
<CategoryMenu
{...sampleProps}
preSelected={'menu-1-sub-menu-1'}
getActions={(action, value) => getCategoryMenuActions(action, value)}
/>
</div>
);
}
export default App;
FAQs
--- ### Installation --- ``` npm i empower-category-menu ``` ### Usage ``` Include in the component:
The npm package empower-category-menu receives a total of 1 weekly downloads. As such, empower-category-menu popularity was classified as not popular.
We found that empower-category-menu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.