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

vue-arrange

v1.0.9

Published

Component library to drag and drop items across lists in Vue3. Try out [here](https://vuereka.github.io/vue-arrange/):

Downloads

510

Readme

Vue-arrange: Arrangeable lists for Vue3

Component library to drag and drop items across lists in Vue3. Try out here:

showcase

Features:

  • Rearranging a component list. Dragging/dropping items from one list to another.
  • Nested lists (for making kanbans)
  • Fully customizable
  • sensible defaults for "homing effect" and sliding list transitions
  • Supports grab handles for list elements.
  • Interactive elements such trash bin.
  • Utility-class (Tailwind) friendly
  • Completely built in Typescript. Supports generic items for any type of list.
  • lightweight on dependencies

Usage

To install

npm add vue-arrange

To run the example app

  • clone the package and install dependencies
  • npm run dev

Exports:

Component ArrangeableList <PayloadType>

PayloadType is the generic type of the items in the list.

Props:

  • list: <PayloadType[]> list of items to arrange.
  • listKey: <key of PayloadType>, optional;
    • Unique identifier for items.
    • If not given, one gets automatically generated.
  • identifier: <TargetIdentifier>, optional
    • Unique name of the list. Defaults to an unnamed symbol.
  • group: <TargetIdentifier>, optional
    • Group the list belongs to. Items can be moved across member lists of this group.
  • targets: <TargetIdentifier | TargetIdentifier[]>, optional
    • By supplying one or more targets, items from this list can only be moved to those groups/lists.
  • meta: , optional
    • any information you wish to send along with items that get picked up.
  • options: <ArrangeableOptions>, optional; options passed to the ArrangeableList.
    • defaultItemClass: <string>
      • css classes to place on all list items except the lifted one.
    • pickedItemClass: <string>
      • css classes to place on the original of the list item being picked up.
      • By default: 'invisible' built-in class (see below).
    • listTransition: <TransitionGroupProps>
      • Transition props for the list, dictating how moving, removing and adding items to the list looks.
      • Defaults to {moveClass: "transition-all", leaveActiveClass: "absolute"} See built-in classes below.
      • See Vue TransitionGroup API documentation: https://vuejs.org/api/built-in-components.html#transitiongroup.
    • hoverTransitionClass: <string>
      • CSS classes to apply for transition instructions about how the item transitions to the hovering state.
    • hoverClass: <string>
      • CSS classes to shape the item in its lifted state.
    • homingEffect: <string | boolean>, default true/homing-effect
      • If boolean and true, applies default class homing-effect as the transition to bring the hovering item to its destination.
      • If string, applies given CSS classes as the homing effect.
      • If false, no homing effect.
    • handle: <boolean | string>, default false
      • Indicate if the elements should be only dragged by a handle element. If true, any descendant elements with property: name="handle" are used as a handle. If string the name should be set to that string.

See ArrangeableProps type below

Slots:

  • #before: template to display something before the list of items.
    • Props:
      • arrangedItems: the list of items as it is rendered now.
  • #default: template for the listed items;
    • Props:
      • item: the list item
      • arrangedItems: the list of items as it is rendered now.
  • #after: template to display something after the list of items.
    • Props:
      • arrangedItems: the list of items as it is rendered now.

Events emitted:

  • @lift-item: fired when an item is being picked up out of this list. Payload: MovingItem.
  • @drop-item: fired when an item from this list is dropped somewhere. Payload: MovingItem.

Notes

  • The drop-item hook is required to update the actual list. If not, the list restores to its original order.
  • Can be customized using options (see below).
    • class options can take any list of (utility) classes like they would be normally passed to a component.
    • There is a default transition for the list, this can be overridden by with the listTransition option.
    • by default, items can only be moved within the same list.
      • By adding a group (see options below), items can be moved between different lists with the same group name.
      • By adding one or more targets (see options below), items can be made to move only to lists with identifier or group listed in targets.
  • It can be used both by touch devices, mouse and any other type of pointer, as it uses PointerEvents. This is still experimental. It puts touch-action: 'none' css class on the document, to prevent interference from the browser gestures.

Composable useMovingItem<PayloadType>()

Exposes:

  • movingItem, of ref-type MovingItem<PayloadType> | undefined; the item currently being dragged around by the user from any list.
  • isMoving(item: PayloadType) => boolean; test whether item is currently being dragged.
  • movingItemCanTarget(targets: Array<TargetIdentifier | undefined>) => boolean tests whether the movingItem has one of the targets given.
const { movingItem, isMoving } = useMovingItem<MyObjectType>();

Types

MovingItem<PayloadType>

Information about what is/was being dragged/dropped.

type MovingItem<PayloadType extends object> = {
  payload: PayloadType; // The item object being moved.
  hoverElement?: Ref<HTMLElement>; // the element ref of the hovering item.
  origin: Target<PayloadType>; // the list from which it was picked up as it was before the item was picked up.
  destination: Target<PayloadType>; // the list where the item is hovering or being dropped. It includes the new item.
  targets: Array<TargetIdentifier>; // the names/groups of the lists where this item can be dropped.
};
type TargetIdentifier = string | number | symbol;
type Target<PayloadType> = {
  identifier: TargetIdentifier; // unique id
  group?: TargetIdentifier; // shared id for lists of the same group (such as kanban columns)
  type: "list" | "dropzone"; // dropzones are used to interact with listitems outside of lists.
  listItems: PayloadType[]; // the elements of the list.
  index: number; // The index of the lifted item.
  meta: any; // any other information you may want to send to the recipient.
};

ArrangeableProps<PayloadType>

See above for description.

type ArrangeableProps<PayloadType extends object> = {
  options?: ArrangeableOptions;
  list: PayloadType[];
  listKey?: string;
  identifier?: TargetIdentifier;
  meta?: any;
  group?: TargetIdentifier;
  targets?: TargetIdentifier | Array<TargetIdentifier>;
};
type ArrangeableOptions = {
  defaultItemClass?: string;
  pickedItemClass?: string;
  listTransition?: TransitionGroupProps;
  hoverTransitionClass?: string;
  hoverClass?: string;
  homingEffect?: string | boolean;
  handle?: boolean | string;
};

CSS classes used for defaults

These classes are shipped to be used as defaults:

.arrangeable-list__transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.arrangeable-list__transition-all-but-location {
  transition-property: opacity, transform, box-shadow, background-color,
    border-color, color, fill, stroke, padding, margin;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.arrangeable-list__absolute {
  position: absolute;
}
.arrangeable-list__invisible {
  visibility: hidden;
}
.arrangeable-list__homing-effect {
  transition-property: all;
  top: var(--landingzone-top) !important;
  left: var(--landingzone-left) !important;
}

To include them in a project, add vue-arrange to the css section of the vue/nuxt config like this:

  css: [
    //...
    'vue-arrange/dist/vue-arrange.css',
  ],

Example usage

Simple example without typescript.

<script setup>
import { ref } from "vue";
import { ArrangeableList } from "vue-arrange";
const twColors = ref([
  { name: "red", color: "#fecaca" },
  { name: "orange", color: "#fed7aa" },
  { name: "amber", color: "#fde68a" },
  { name: "yellow", color: "#fef08a" },
]);

const dropItem = ({ destination }) => {
  twColors.value = destination.list;
};
</script>

<template>
  <ArrangeableList
    :list="twColors"
    :options="{
      hoverClass: 'hover',
    }"
    @drop-item="dropItem"
    v-slot="{ item }"
  >
    <div
      style="height: 40px;width: 160px;border-radius: 8px;"
      :style="item.color"
    >
      {{ item.name }}
    </div>
  </ArrangeableList>
</template>

<style>
.hover {
  opacity: 0.65;
}
</style>

See example folder for a complete example using typescript and tailwindcss.