
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
react-usemap-render-component
Advanced tools
An npm package for rendering ReactJS components in a cleaner and more beautiful way, allowing elements to be passed to the components from the hook’s props.
An npm package for rendering ReactJS components in a cleaner and more beautiful way, allowing elements to be passed to the components from the hook’s props.
(SSR compatible)
To install this package, run the following command in the terminal:
npm install react-usemap-render-component
or
yarn add react-usemap-render-component
To use this package in your project, you must first import it:
Then, you can use the useMap hook to render your ReactJS components. Here is an example of how to use the hook:
import React from 'react';
import useMap from 'react-usemap-render-component';
// Data
interface Data {
id: number
name: string
}
interface MyComponentProps extends Data {
color: "red"
}
const data: Data[] = [
{ id: 1, name: 'Item 1' },
{ id: 2, name: 'Item 2' }
]
// Component to render, easily receives props
const MyComponent = ({ id, name, color }:MyComponentProps) => {
return (
<div style={{ color }}>{name}</div>
)
}
const MyApp = () => {
const itemsComponent = useMap({ data, Component: MyComponent, color: 'red' })
// Rendering
return <div>{itemsComponent}</div>
};
Now, here is an example of how to use the useMap
hook with an array that is not of objects:
// Data
type Data = string
interface MyComponentProps {
color: "red"
children: string
}
const data: Data[] = ['Item 1', 'Item 2']
// To get the string Item is through "children"
const MyComponent = ({ children, color }:MyComponentProps) => {
return (
<div style={{ color }}>{children}</div>
)
}
const MyApp = () => {
const itemsComponent = useMap({ data, Component: MyComponent, color: 'red' })
// Rendering
return <div>{itemsComponent}</div>
};
config
: Optional object that can contain the following values:
*key
: Allows changing the prop key of the component to render. The values can be:
by default it has "default"
"default"
: If the data is an object and has an id
property, id
will be used otherwise it takes the index as key.
"item"
: If the data is not an object, like array of strings, you can use the string element itself as a key.
"object fields"
: example "id" | "name" | "slug"
"index"
: index of the array
// When the data is an object **************************
interface Data {
id: number,
name: string
}
const data: Data[] = [
{ id: 1, name: 'Item 1' },
{ id: 2, name: 'Item 2' }
]
// Here, if the data is an object and has an `id` property, `id` will be used as a key.
// If you specify another value in `key` that exists in the object, that value will be used as a key.
const items = useMap({ data, Component: MyComponent, color: 'red', config: { key: "id" } })
// When the data is not an object ***********************************
type Data = string
const data: Data[] = ['Item 1', 'Item 2']
// Here, if the data is not an object, you can use the element itself as a key by specifying `"item"` in `key`.
// If you do not specify `key` or use `"default"`, the index of the element in the array will be used as a key.
const items = useMap({ data, Component: MyComponent, color: 'red', config: { key: "item" } })
-"index"
value of the array, can be received in the component to render
-"children"
child of component
FAQs
An npm package for rendering ReactJS components in a cleaner and more beautiful way, allowing elements to be passed to the components from the hook’s props.
The npm package react-usemap-render-component receives a total of 11 weekly downloads. As such, react-usemap-render-component popularity was classified as not popular.
We found that react-usemap-render-component demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.