Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-native-drag-sort
Advanced tools
Drag and drop sort control for react-native
yarn add react-native-drag-sort
or
npm i react-native-drag-sort --save
export { DragSortableView, AutoDragSortableView, AnySizeDragSortableView }
Use priority: DragSortableView > AutoDragSortableView > AnySizeDragSortableView
AnyThreePage | AnyThreePage |
---|---|
AutomaticSlidingOnePage | AutomaticSlidingThreePage |
---|---|
ScrollFixedAddPage | DragDeletePage |
---|---|
SortAndFixedPage | OneRowsPage |
---|---|
isRequired if there is a * in the name field
name | Proptypes | Description |
---|---|---|
dataSource * | array | |
parentWidth | number | parent width |
childrenHeight * | number | Each item height |
childrenWidth * | number | Each item width |
marginChildrenTop | number | So the item's outermost view adds margin, you can only use this method. |
marginChildrenBottom | number | |
marginChildrenLeft | number | |
marginChildrenRight | number | |
sortable | bool | Do not allow dragging |
onClickItem | func | click |
onDragStart | func | |
onDragEnd | func | |
onDataChange | func | This method is called every time the data changes. |
renderItem * | func | render item view |
fixedItems | array | no remove |
keyExtractor | func | (item,index) => key |
delayLongPress | number | |
isDragFreely | bool | Whether to limit the drag space |
onDragging | func | |
maxScale | number | |
minOpacity | number |
name | Proptypes | Description |
---|---|---|
scaleDuration | number | |
slideDuration | number | |
autoThrottle | number | |
autoThrottleDuration | number | |
renderHeaderView | element | |
headerViewHeight | number | |
scrollIndicatorInsets | ({top:number, left:number, bottom:number, right:number}) | |
renderBottomView | element | |
bottomViewHeight | number | |
onScrollListener | (event: NativeSyntheticEvent) => void | |
onScrollRef | (ref: any) => void |
name | Proptypes | Description |
---|---|---|
dataSource * | array | |
keyExtractor | func.isRequired | (item,index) => key |
renderItem * | func | render item view |
onDataChange | func | This method is called every time the data changes. |
renderHeaderView | element | |
headerViewHeight | number | |
renderBottomView | element | |
bottomViewHeight | number | |
autoThrottle | number | |
autoThrottleDuration | number | |
onDragEnd | func | |
scrollIndicatorInsets | ({top:number, left:number, bottom:number, right:number}) | |
onScrollListener | (event: NativeSyntheticEvent) => void | |
onScrollRef | (ref: any) => void | |
areaOverlapRatio | number | Must be greater than 0.5 |
movedWrapStyle | StyleProp | style |
childMarginTop | number | |
childMarginBottom | number | |
childMarginLeft | number | |
childMarginRight | number |
<DragSortableView
dataSource={this.state.data}
parentWidth={parentWidth}
childrenWidth= {childrenWidth}
childrenHeight={childrenHeight}
keyExtractor={(item,index)=> item.id}
renderItem={(item,index)=>{
return this.renderItem(item,index)
}}
/>
<AutoDragSortableView
dataSource={this.state.data}
parentWidth={parentWidth}
childrenWidth= {childrenWidth}
childrenHeight={childrenHeight}
keyExtractor={(item,index)=> item.id}
renderItem={(item,index)=>{
return this.renderItem(item,index)
}}
/>
// ====== AnySizeDragSortableView start =======
constructor(props) {
super(props);
this.sortableViewRef = createRef()
}
<AnySizeDragSortableView
ref={this.sortableViewRef}
dataSource={items}
keyExtractor={(item) => item.text} // 1、isRequired
renderItem={this._renderItem}
onDataChange={(data, callback)=> {
this.setState({items: data},()=>{
callback() // isRequired
})
}}
/>
_renderItem = (item, index, isMoved) => {
return (
<TouchableOpacity
onLongPress={() => {
this.sortableViewRef.current.startTouch(item, index) // 2、isRequired }}
onPressOut = {() => {
this.sortableViewRef.current.onPressOut() 3、isRequired
}}
>
<...>
</TouchableOpacity>
)
}
// ====== AnySizeDragSortableView end =======
FAQs
Drag and drop sort control for react-native
The npm package react-native-drag-sort receives a total of 0 weekly downloads. As such, react-native-drag-sort popularity was classified as not popular.
We found that react-native-drag-sort 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.