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

@gavant/ember-shopify-draggable

v0.3.3

Published

Ember components for Shopify's drag and drop

Downloads

48

Readme

Build Status npm version Ember Observer Score

ember-shopify-draggable

Addon for using @shopify/draggable in ember projects.

Doggie

  • [X] Easy to use
  • [X] FastBoot Compatible
  • [X] Easily Extendable

Demo

https://gavant.github.io/ember-shopify-draggable/#/sortable

Installation

ember install @gavant/ember-shopify-draggable

Usage

ember-shopify-draggable contains ember components for all of the @shopify/draggable modules (Swappable, Sortable, Droppable, and Draggable).

Sortable

This addon allows you to pass in a list object to the container component, and an item object to the item component. This will give you the ability to keep track of the underlying JS list automatically. You can see an example of this below.

Here we pass in list which is an array of js objects, and give item to each container.item. When any action is performed the group.container component sends an action and you can just have it mutate the list. So each time the list is modified by drag/drop your passed in list will be updated with those changes!

{{#sortable-group
    sortableActions=(hash
        start=(action "sortableStart")
        sort=(action "sortableSort")
        sorted=(action "sortableSorted")
        stop=(action "sortableStop")
    )
    dragActions=(hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    )
    as |group|
}}
    {{#group.container list
        itemReordered=(action (mut list))
        itemAdded=(action (mut list))
        itemRemoved=(action (mut list)) as |container|}}
            {{#each container.items as |item|}}
                {{#container.item item}}
                    {{item.name}}
                {{/container.item}}
            {{else}}
                Im empty
            {{/each}}
    {{/group.container}}
    {{#group.container listTwo
        itemReordered=(action (mut listTwo))
        itemAdded=(action (mut listTwo))
        itemRemoved=(action (mut listTwo)) as |container|}}
            {{#each container.items as |item|}}
                {{#container.item item}}
                    {{item.name}}
                {{/container.item}}
            {{else}}
                Im Empty
            {{/each}}
    {{/group.container}}
{{/sortable-group}}

Angle bracket component style (Ember v3.4+)

<SortableGroup
    @sortableActions={{hash
        start=(action "sortableStart")
        sort=(action "sortableSort")
        sorted=(action "sortableSorted")
        stop=(action "sortableStop")
    }}
    @dragActions={{hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    }}
    as |Group|
>
    <Group.container
        @items={{this.list}}
        @itemReordered={{action (mut list)}}
        @itemAdded={{action (mut list)}}
        @itemRemoved={{action (mut list)}}
        as |Container|
    >
        {{#each Container.items as |item|}}
            <Container.item @item={{item}}>
                {{item.name}}
            </Container.item>
        {{else}}
            Im empty
        {{/each}}
    </Group.container>
    <Group.container
        @items={{this.listTwo}}
        @itemReordered={{action (mut listTwo)}}
        @itemAdded={{action (mut listTwo)}}
        @itemRemoved={{action (mut listTwo)}}
        as |container|
    >
        {{#each Container.items as |item|}}
            <Container.item @item={{item}}>
                {{item.name}}
            </Container.item>
        {{else}}
            Im Empty
        {{/each}}
    </Group.container>
</SortableGroup>

Events

You can listen to the Sortable's base interaction events by adding actions to the {{#sortable-group}} component. See the above examples for the correct action names and structure.

Possible events for Sortable can be found at Sortable Events

Swappable

NOTE: Currently only works with one container

{{#swappable-group
    swappableActions=(hash
        start=(action "swappableStart")
        swap=(action "swappableSwap")
        swapped=(action "swappableSwapped")
        stop=(action "swappableStop")
    )
    dragActions=(hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    )
    as |group|
}}
    {{#group.container list
        itemReordered=(action (mut list))
        as |container|}}
            {{#each container.items as |item index|}}
                {{#container.item item index=index}}
                    {{item.name}}
                {{/container.item}}
            {{else}}
                Im empty
            {{/each}}
    {{/group.container}}
{{/swappable-group}}

Angle bracket component style (Ember v3.4+)

<SwappableGroup
    @swappableActions={{hash
        start=(action "swappableStart")
        swap=(action "swappableSwap")
        swapped=(action "swappableSwapped")
        stop=(action "swappableStop")
    }}
    @dragActions={{hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    }}
    as |Group|
>
    <Group.container
        @items={{this.list}}
        @itemReordered={{action (mut list)}}
        as |Container|
    >
        {{#each Container.items as |item index|}}
            <Container.item @item={{item}} @index={{index}}>
                {{item.name}}
            </Container.item>
        {{else}}
            Im empty
        {{/each}}
    </Group.container>
</SwappableGroup>

Events

You can listen to the Sortable's base interaction events by adding actions to the {{#swappable-group}} component. See the above examples for the correct action names and structure.

Possible events for Swappable can be found at Swappable Events

Droppable

Droppable can be used via a similar set of components, but with the addition of a dropzone component, which has the restriction that only a single draggable item may occupy a dropzone at any given time.

{{#droppable-group
    dragActions=(hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    )
    droppableActions=(hash
        dropped=(action "droppableDropped")
        returned=(action "droppableReturned")
    )
    as |group|
}}
    {{#group.container as |container|}}
        {{#container.dropzone as |dropzone|}}
            {{#dropzone.item}}Item 1{{/dropzone.item}}
        {{/container.dropzone}}
        {{#container.dropzone as |dropzone|}}
            {{!-- dropzone is starting out empty --}}
        {{/container.dropzone}}
    {{/group.container}}
{{/droppable-group}}

Angle bracket component style (Ember v3.4+)

<DroppableGroup
    @dragActions={{hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    }}
    @droppableActions={{hash
        dropped=(action "droppableDropped")
        returned=(action "droppableReturned")
    }}
    as |Group|
>
    <Group.container as |Container|>
        <Container.dropzone as |Dropzone|}}
            <Dropzone.item>Item 1</Dropzone.item>
        </Container.dropzone>
        <Container.dropzone as |Dropzone|>
            {{!-- dropzone is starting out empty --}}
        </Container.dropzone>
    </Group.container>
<DroppableGroup>

Events

You can listen to the Droppable's base interaction events by adding actions to the {{#droppable-group}} component. See the above examples for the correct action names and structure.

Possible events for Droppable can be found at Droppable Events

Draggable

Draggables are the base module from which all the others extend from, so on its own it doesn't offer much functionality. However, it can still be useful if you need the lower-level primitive to build on top of.

{#draggable-group
    dragActions=(hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    )
    as |group|
}}
    {{#group.container as |container|}}
        {{#container.item}}Item 1{{/container.item}}
        {{#container.item}}Item 2{{/container.item}}
        {{#container.item}}Item 3{{/container.item}}
    {{/group.container}}
{{/draggable-group}}

Angle bracket component style (Ember v3.4+)

<DraggableGroup
    @dragActions={{hash
        start=(action "dragStart")
        move=(action "dragMove")
        over=(action "dragOver")
        out=(action "dragOut")
        stop=(action "dragStop")
    }}
    as |Group|
>
    <Group.container as |Container|>
        <Container.item>Item 1</Container.item>
        <Container.item>Item 2</Container.item>
        <Container.item>Item 3</Container.item>
    </Group.container>
</DraggableGroup>

Events

You can listen to the Draggable's base interaction events by adding actions to the {{#draggable-group}} component. See the above examples for the correct action names and structure.

Possible events for Draggable can be found at Draggable Events

Common Options

You can customize several of the underlying Sortable, Swappable, Droppable, or Draggable instances' options by passing in additional properties to the {{sortable-group}}, {{swappable-group}}, {{droppable-group}} and {{draggable-group}} components.

  • delay - (default: 100) adds a delay to the drag interaction when a sortable item is clicked.
  • handle - (default: null) a CSS selector for a handle element within the sortable item elements if you don't want to allow dragging from anywhere on the entire item element.
  • mirrorOptions - (default: {constrainDimensions: true}) a hash of options that are used to customize the behavior and appearance of the "mirror" element that gets created when dragging

For more details on these options see:
https://github.com/Shopify/draggable/tree/v1.0.0-beta.8/src/Draggable#options
https://github.com/Shopify/draggable/tree/master/src/Draggable/Plugins/Mirror#options

NOTE: These options do not support dynamically changing values, and will only respect the initial value that is passed in when the component is first rendered.

Plugins

The ember components for each of the modules also support enabling the plugins that are provided by @shopify/draggable.

ResizeMirror

https://github.com/Shopify/draggable/tree/v1.0.0-beta.8/src/Plugins/ResizeMirror

Enable by setting resizeMirror=true on the top level *-group components. This plugin is supported by all components.

Snappable

https://github.com/Shopify/draggable/tree/v1.0.0-beta.8/src/Plugins/Snappable

Enable by setting snappable=true on the top level *-group components. This plugin is supported by all components.

The Snappable plugin also exposes some additional events that can be listed to via actions on the supported group components:

snapActions=(hash
    in=(action "snapIn")
    out=(action "snapOut")
)

Possible events for Snappable can be found at Snappable Events

SwapAnimation

https://github.com/Shopify/draggable/tree/v1.0.0-beta.8/src/Plugins/SwapAnimation

Enable by setting swapAnimation=true on the top level *-group component. It is currently only supported by {{sortable-group}}.

An additional option property, swapAnimationOptions is provided on the supported group components. (see options documentation)

Collidable

https://github.com/Shopify/draggable/tree/v1.0.0-beta.8/src/Plugins/Collidable

Enable by setting collidable=true on the top level *-group components. It is currently supported by {{sortable-group}}, {{swappable-group}} and {{droppable-group}}.

An additional option property, collidables is provided on the supported group components (see options documentation)

The Collidable plugin also exposes some additional events that can be listed to via actions on the supported group components:

collidableActions=(hash
    in=(action "collidableIn")
    out=(action "collidableOut")
)

Possible events for Collidable can be found at Collidable Events

Contributing

Installation

  • git clone <repository-url>
  • cd ember-shopify-draggable
  • npm install

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.