
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@hyuchia/react-image-area
Advanced tools
React component to select multiple areas/regions of images.
yarn add @hyuchia/react-image-area
Usage with types
import { AreaSelector, IArea } from '@hyuchia/react-image-area'
const ExampleComponent = () => {
const [areas, setAreas] = useState<IArea[]>([]);
const onChangeHandler = (areas: IArea[]) => {
setAreas(areas);
}
return (
<AreaSelector
areas={areas}
onChange={onChangeHandler}
>
<img src='my-image.jpg' alt='my image'/>
</AreaSelector>
)
}
areas: IArea[]
Starting with no areas:
// ...
const [areas,setAreas] = useState<IArea[]>([])
// ...
return (
<AreaSelector
areas={areas}
>
<img src='my-image.jpg' alt='my image'/>
</AreaSelector>
)
// ...
onChange: (areas: IArea[]) => void
A callback which happens for every change on the selection area.
// ...
const [areas,setAreas] = useState<IArea[]>()
// ...
return (
<AreaSelector
onChange={setAreas}
>
<img src='my-image.jpg' alt='my image'/>
</AreaSelector>
)
// ...
maxAreas: number
Default: Infinity
Set the maximum areas that can be drawn, by default there are no limit.
unit: 'pixel' | 'percentage'
Default: pixel
Set the unit you want to work with.
minWidth: number
Default: 0
Min width of the areas.
minHeight: number
Default: 0
Min height of the areas.
debug: boolean
Default: false
Display info of the current areas.
maxWidth: number
Max width of the areas.
maxHeight: number
Max height of the areas.
wrapperStyle: CSSProperties
Apply styles to the wrapper element.
Omited Styles: touchAction | boxSizing
wrapperStyle={{
border: '2px solid black'
}}
globalAreaStyle: CSSProperties
Apply global styles to the areas.
Omited Styles: position | touchAction | top | left | width |
height | boxSizing
globalAreaStyle={{
border: '1.5px dashed blue',
backgroundColor: 'lightblue',
opacity: '0.5'
}}
customAreaRenderer: (areaProps: IAreaRendererProps) => ReactNode
Custom render function to display info inside the areas. Remember to add a key
import { AreaSelector, IAreaRendererProps } from '@bmunozg/react-image-area'
// ...
const customRender = (areaProps: IAreaRendererProps) => {
if (!areaProps.isChanging) {
return (
<div key={areaProps.areaNumber}>
{areaProps.areaNumber}
</div>
);
}
};
// ...
return (
<AreaSelector
{/*...*/}
customAreaRenderer={customRender}
>
<img src='my-image.jpg' />
</AreaSelector>
);
// ...
mediaWrapperClassName: string
Classname to apply to the media wrapper (image passed as children).
// ...
return (
<AreaSelector>
<img src="my-image.jpg" />
</AreaSelector>
);
// ...
inside the component :arrow_down:
// ...
return (
<div {/*wrapperStyle*/}>
<div className={mediaWrapperClassName}>
{/*image passed as children*/}
</div>
{/*...Areas*/}
</div>
)
//...
Please open an issue for support.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.
FAQs
React component to select multiple areas/regions of images.
We found that @hyuchia/react-image-area 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.