Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
react-rnd-custom
Advanced tools
Resizable and draggable component for React.
See demo: http://bokuweb.github.io/react-rnd/
demo Code: https://github.com/bokuweb/react-rnd/blob/master/docs/src/example.js
npm i react-rnd
<Rnd
ref={c => { this.rnd = c; }}
initial={{
x: window.innerWidth / 2 - 200,
y: window.innerHeight / 2 - 80,
width: 400,
height: 160,
}}
style={style}
minWidth={300}
minHeight={160}
maxWidth={800}
maxHeight={300}
bounds={'parent'}
>
<span className="box">
resize and drag me!!
</span>
</Rnd>
initial: PropTypes.shape({width: PropTypes.oneOfType([ PropTypes.number, PropTypes.string ]), height: PropTypes.oneOfType([ PropTypes.number, PropTypes.string ]), x: PropTypes.number, y: PropTypes.number }),
The width
and height
property is used to set the size of a component.
The x
and y
property is used to set the initial position of the component.
minWidth: PropTypes.number
The minWidth
property is used to set the minimum width of a component.
minHeight: PropTypes.number
The minHeight
property is used to set the minimum height of a component.
maxWidth: PropTypes.number
The maxWidth
property is used to set the maximum width of a component.
maxHeight: PropTypes.number
The maxheight
property is used to set the maximum height of a component.
className: PropTypes.string
The className
property is used to set the custom className
of a component.
style: Proptypes.object
The style
property is used to set the custom style
of a component.
resizerHandleStyle: PropTypes.shape({ top: PropTypes.object, right: PropTypes.object, bottom: PropTypes.object, left: PropTypes.object, topRight: PropTypes.object, bottomRight: PropTypes.object, bottomLeft: PropTypes.object, topLeft: PropTypes.object })
The resizerHandleStyle
property is used to override the style of one or more resize handles.
Only the axis you specify will have its handle style replaced.
If you specify a value for right
it will completely replace the styles for the right
resize handle,
but other handle will still use the default styles.
isResizable: PropTypes.shape({ top: PropTypes.bool, right: PropTypes.bool, bottom: PropTypes.bool, left: PropTypes.bool, topRight: PropTypes.bool, bottomRight: PropTypes.bool, bottomLeft: PropTypes.bool, topLeft: PropTypes.bool })
The isResizable
property is used to set the resizable permission of a resizable component.
The permission of top
, right
, bottom
, left
, topRight
, bottomRight
, bottomLeft
, topLeft
direction resizing.
If omitted, all resizer are enabled.
If you want to permit only right direction resizing, set { top:false, right:true, bottom:false, left:false, topRight:false, bottomRight:false, bottomLeft:false, topLeft:false }
.
onClick: PropTypes.func
Calls when resizable component clicked.
onTouchStart: PropTypes.func
Calls when resizable component touched.
onDoubleClick: PropTypes.func
Calls when resizable component double clicked.
onResizeStart: PropTypes.func
Calls when resizable component resize starts.
Calls back with (direction: string
, styleSize: object
, clientSize: object
, event: object
)
direction: top
, right
, bottom
, left
, topRight
, bottomRight
, bottomLeft
, and topLeft
.
styleSize: { width, height }
clientSize: { width, height }
clientWidth
and clientHeight
.event: mouse down event
onResize: PropTypes.func
Calls when resizable component resize.
Calls back with (direction: string
, styleSize: object
, clientSize: object
, delta: object
, newPos: object
)
top
, right
, bottom
, left
, topRight
, bottomRight
, bottomLeft
, and topLeft
.{ width, height }
{ width, height }
clientWidth
and clientHeight
.{ width, height }
{ x, y }
For example, when <Resizable width={100} height={200} style={{ padding: '20px'}} onResize={...} />
mounted and resize 'right' 20px, this callback is called with ('right', { width: 120, height: 200 }, { width: 160, height: 240 }, {width: 20, height: 0})
onResizeStop: PropTypes.func
Calls back with (direction: string
, styleSize: object
, clientSize: object
, delta: object
)
top
, right
, bottom
, left
, topRight
, bottomRight
, bottomLeft
, and topLeft
.{ width, height }
{ width, height }
clientWidth
and clientHeight
.{ width, height }
For example, when <Resizable width={100} height={200} style={{ padding: '20px'}} onResize={...} />
mounted and resize 'right' 20px, this callback is called with ('right', { width: 120, height: 200 }, { width: 160, height: 240 }, {width: 20, height: 0}, {x: 20, y: 0})
moveAxis: PropTypes.string
The direction of allowed movement (dragging) allowed ('x','y','both','none').
lockAspectRatio: PropTypes.bool
The lockAspectRatio
property is used to lock aspect ratio.
If ommited, set false
.
onDragStart: PropTypes.func
Callback called on dragging start.
onDrag: PropTypes.func
Callback called on resizing.
onDrag
called with the following parameters:
(
event: Event,
ui:{
deltaX: number, deltaY: number,
node: Node
position:
{
left: number, top: number
}
}
)
onDragStop: PropTypes.func
Callback called on dragging stop.
onDragStop
called with the following parameters:
(
event: Event,
ui:{
deltaX: number, deltaY: number,
node: Node
position:
{
left: number, top: number
}
}
)
bounds: PropTypes.oneOfType([PropTypes.object, PropTypes.string])
Specifies movement boundaries. Accepted values:
parent
restricts movement within the node's offsetParent
(nearest node with position relative or absolute), or
An object with left, top, right, and bottom
properties.
These indicate how far in each direction the draggable
can be moved.
dragHandlerClassName: PropTypes.string
Specifies a selector to be used as the handle that initiates drag. Example: '.handle'.
zIndex: PropTypes.number
The zIndex
property is used to set the zindex of a component.
resizeGrid: PropTypes.arrayOf(PropTypes.number)
The resizeGrid
property is used to specify the increments that resizing should snap to. Defaults to [1, 1]
.
moveGrid: PropTypes.arrayOf(PropTypes.number)
The moveGrid
property is used to specify the increments that moving should snap to. Defaults to [1, 1]
.
updateSize({ width: number, height: number })
Update component size.
grid
,max/minWidth
, max/minHeight
props is ignored, when this method called.
class YourComponent extends Component {
...
update() {
this.rnd.updateSize({ width: 200, height: 300 });
}
render() {
return (
<Rnd ref={c => { this.rnd = c; }}>
example
</Rnd>
);
}
...
}
updatePosition({ x: number, x: number })
Update component size.
grid
bounds
props is ignored, when this method called.
class YourComponent extends Component {
...
update() {
this.rnd.updatePosition({ x: 200, y: 300 });
}
render() {
return (
<Rnd ref={c => { this.rnd = c; }}>
example
</Rnd>
);
}
...
}
updateZIndex(zIndex: number)
Update component z-index.
class YourComponent extends Component {
...
update() {
this.rnd.updateZIndex(200);
}
render() {
return (
<Rnd ref={c => { this.rnd = c; }}>
example
</Rnd>
);
}
...
}
npm t
updateZIndex
, method to updated component zIndex
state.react-rnd
.canUpdatePositionByParent
property.canUpdateSizeByParent
property.initiAsResizing
property.x
, y
, width
and height
property to initial
.updateSize
, updatePosition
, method to updated conponent state.lockAspectRatio
property to lock aspect ratio when resizing.canUpdatePositionByParent
property.grid
props to snap grid. (thanks @paulyoung)canUpdateSizeByParent
props #38require
The MIT License (MIT)
Copyright (c) 2016 @Bokuweb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Resizable and draggable component for React.
The npm package react-rnd-custom receives a total of 4 weekly downloads. As such, react-rnd-custom popularity was classified as not popular.
We found that react-rnd-custom 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.