npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-simple-dnd

v1.2.0

Published

The very simple Drag and Drop library in React Native.

Downloads

33

Readme

react-native-simple-dnd

The very simple Drag and Drop library in React Native.

demo

Installation

npm install react-native-simple-dnd

Example

All you have to do is enclose <DnDArea>, <DnDable>!

<DnDArea>
  <DnDable x={10} y={10}>
    // Put the component you want to drag and drop here
  </DnDable>
</DnDArea>

For more details, see example codes.

Props

DnDArea

This component is needed above the DnDable. DnDArea manages all the child DnDables.

* is required.

| props | type | description | | :------------ | :---------------- | :------------------------------------------------------------------------------------------ | | *keyValues | Array<string> | The DnDable's unique keys. These are managed inside the DnDArea to avoid too much rendering | | *children | React.ReactNode | Any components including <DnDable> |

Note: This component manages the global state by recoil package. DON'T use the below atom's key in your app.

  • DroppableInformationAtom
    • To store the information including a layout for droppable component
  • DraggableInformationAtom
    • To store the information including a flag that indicates whether this component is dragging now or not
  • DnDAreaAtom
    • Not used now
  • ReloadLayoutAtom
    • To store the state and function for refreshing the DnDable component manually

DnDable

When you enclose DnDable with the components, you can drag and drop them!

| props | type | description | | :--------------- | :-------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------ | | *keyValue | string | The unique key to manage the component | | parentkeyValue | string | The parent unique key to manage the component (This is needed to avoid overlapping during dragging the child DnDable component) | | item | T | The custom item | | styleParams | U extends object | The custom parameters for style | | eventHandlers | DnDEventHandlers<T, U> | The event handlers (See below for more details) | | x | number | The x coordinates relative to parent | | y | number | The y coordinates relative to parent | | reverseX | boolean | Whether the opposite x direction (left) is positive or not | | reverseY | boolean | Whether the opposite y direction (up) is positive or not | | zIndex | number | The z index | | containerStyle | StyleProp<ViewStyle> | The container style | | *children | ((\_styleParams?: U) => React.ReactElement) or React.ReactElement | The child component or functional component |

Event Handlers

| function | args | description | | :-------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------- | | onDragStart | | The function to be called when the dragging starts | | onDragStartForStyleParams | styleParams: U The current style parameters | The function for style parameters to be called when the dragging starts | | onDragEnd | | The function to be called when the dragging ends | | onDragEndForStyleParams | styleParams: U The current style parameters | The function for style parameters to be called when the dragging ends | | onDraggedItemHovered | draggedItem: DnDItemType<any> The hovered (dragged) item on this component | The function to be called when a dragged component hovers this component | | onDraggedItemHoveredForStyleParams | styleParams?: U The current style parametersdraggedItem: DnDItemType<any> The dragged itemdroppedItem: DnDItemType<T> The dropped item (This component's item) | The function for style parameters to be called when a dragged component hovers this component | | onDraggedItemNotHoveredForStyleParams | styleParams?: U The current style parametersdraggedItem: DnDItemType<any> The dragged item | The function for style parameters to be called when a dragged component DOESN'T hovers this component | | onDropped | draggedItem: DnDItemType<any> The dragged itemdroppedItem: DnDItemType<T> The dropped item (This component's item) | The function to be called when the dragging component is dropped into droppable component |

Note: The styleParams is managed inside the DnDable. That's why you can pass the functional component like this;

<DnDable
  keyValue={'1'}
  x={10}
  y={20}
  styleParams={{ bgColor: childItem.bgColor }} // This parameters will be managed inside <DnDable>
  eventHandlers={{
    onDragStartForStyleParams: () => ({ bgColor: 'yellow' }), // You can change the above parameters by event handlers (postfixed by `ForStyleParams`)
    onDraggedItemHoveredForStyleParams: () => ({
      bgColor: 'black',
    })
  })
>
  {/* You can pass the functional component style like this */}
  {(styleParams) => (
    <View
      style={{
        width: 50,
        height: 50,
        backgroundColor: styleParams?.bgColor,
        alignItems: 'center',
        justifyContent: 'center',
      }}
    >
      <Text>{childItem.title}</Text>
    </View>
  )}
</DnDable>

Development

npm install -g yalc
yalc publish react-native-simple-dnd
cd example
yalc add
npm install -S
npx expo start
  • When the codes are updated,
npm run build
yalc push

Referece: Stackoverflow