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

quasar-ui-q-draggable-table

v1.0.2

Published

Drag and drop for q-table of quasar components

Downloads

396

Readme

Directive v-draggable-table

npm npm

Compatible with Quasar UI v2 and Vue 3.

Directive v-draggable-table

The directive makes q-table component draggable. Works only with q-table. Allows you to move both columns and rows. With some settings, such as virtual-scroll, row movement is not available

Installation

npm install quasar-ui-q-draggable-table

Usage

Create and register a boot file:

Create in boot folder q-draggable-table.js

import { boot } from 'quasar/wrappers';
import qDraggableTable from 'quasar-ui-q-draggable-table';
import 'quasar-ui-q-draggable-table/dist/index.css';

export default boot(({ app }) => {
  app.use(qDraggableTable);
});

Register in boot of quasr.conf.js "q-draggable-table"

module.exports = configure(function (ctx) {
  return {
    // ...
    boot: ["q-draggable-table"],
    // ...
  }
})

Use directive v-draggable-table with q-table component

<q-table
  v-draggable-table="{
    options,
    onDrop,
    onDrag,
    onShadowMove,
    onOut,
  }"
  title="Drag columns"
  :rows="rows"
  :columns="columns"
  row-key="name"
/>

Directive value

options

|key|description| options | |:---|---|------------------------------------| | mode | Available mode for moving. Default: 'column' | 'column' / 'row' / 'free' / 'none' | | dragHandler | Selector of the element being moved. Required for 'free' mode | string | | onlyBody | If true, only main body of table is moved. Relevant for 'row' mode | boolean | | fixFirstColumn | If true , all columns except the first one are moved . Relevant for 'column' mode | boolean |

Mode 'none'

In some cases, it may be necessary to disable table dragging. For example, when using grid mode, the table is missing and dragging will not work. Use the mode 'none' option

Options Reactivity

In general, changing an option does not cause a component change. Use the component's key to rerender with new options

<q-table
  v-draggable-table="{
    onDrop,
    options,
  }"
  :key="options.mode"
/>

onDrop(from?: number, to?: number, table?: HTMLTableElement, mode?: 'column'|'row')

Hook that is triggered when an element is dropped

onDrag(table?: HTMLTableElement, mode?: 'column'|'row')

Hook that is triggered when an element is dragged

onShadowMove(from?: number, to?: number, table?: HTMLTableElement, mode?: 'column'|'row')

Hook that triggers when the shadow of element is moved

onOut(table?: HTMLTableElement, mode?: 'column'|'row')

Hook that triggers when element goes outside the table

Note: Library does not redraw original component, but only represents indexes of elements being moved. Use hooks to rerender table. All indexes correspond to real cells of the table.

Quick example

<template>
  <q-page padding>
    <q-table
      v-draggable-table="{
        onDrop,
      }"
      title="Drag columns"
      :rows="rows"
      :columns="columns"
      row-key="name"
    />
  </q-page>
</template>

<script>
import { ref } from 'vue'

export default {
  setup () {
    const columns = ref([
      { name: 'name', label: 'Name', field: 'name' },
      { name: 'calories', label: 'Calories', field: 'calories' },
      { name: 'fat', label: 'Fat (g)', field: 'fat' },
      { name: 'carbs', label: 'Carbs (g)', field: 'carbs' },
      { name: 'protein', label: 'Protein (g)', field: 'protein' },
    ])
    const rows = ref([
      {
        name: 'Frozen Yogurt',
        calories: 159,
        fat: 6.0,
        carbs: 24,
        protein: 4.0,
      },
      {
        name: 'Ice cream sandwich',
        calories: 237,
        fat: 9.0,
        carbs: 37,
        protein: 4.3,
      },
    ])
    return {
      columns,
      rows,
    }
  },
  methods: {
    onDrop(from, to) {
      this.columns.splice(to, 0, this.columns.splice(from, 1)[0]);
    },
  }
}
</script>

Demo

Codesanbox example

License

MIT (c) bd2051 [email protected]