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-action-table

v0.1.0

Published

Easy to use responsive table with the ability to add action buttons to each row

Downloads

3

Readme

NPM version Known Vulnerabilities npm NPM downloads Gitter

Table of Contents

Overview

Vue Action Table focuses on two things: responsiveness and actions. This is all covered below but I wanted to cover that Veu Action Table is not a complete out of the box solution. What Vue Action Table doesn't provide is a styled table. Outside of the responsive bits it is a very basic table and you will need to provide your custom styling for it. I chose to not add styling because it varies from person to person and it would add unnecessary styles that would need to be overwritten.

Installation

To install Vue Action Table use:

$ npm install vue-action-table

Usage

To use Vue Action Table, simply import it into the page or component you want to use it in.

Below is a complete example of Vue Action Table usage and everything is briefly explained in comments but make sure to look further down at the props breakdown for a more detailed explanation.

<template>
  <vue-action-table
    :rows="users"
    :actions="actions"
    actions-header="Actions"
    @promote="verifyUser"
    @delete="deleteUser"
  />
</template>

<script>
import VueActionTable from 'vue-action-table';

export default {
  components: {
    VueActionTable,
  },
  data() {
    return {
      /**
       * The users used to populate the table with.
       */
      users: [
        {
          name: "Bob",
          email: "[email protected]",
          dateCreated: "04/01/2020",
          role: "admin",
        },
        {
          name: "Joe",
          email: "[email protected]",
          dateCreated: "04/12/2020",
          role: "editor",
        },
        {
          name: "Amanda",
          email: "[email protected]",
          dateCreated: "04/15/2020",
          role: "admin",
        },
        {
          name: "Jane",
          email: "[email protected]",
          dateCreated: "04/20/2020",
          role: "editor",
        },
      ],

      /**
       * The actions to add to the table. Here we have two actions: promote and delete.
       * Both of these actions have a font-awesome icon passed to them and the promote
       * action is set to only show on that row if the the user's `role` is an editor.
       */
      actions: [
        {
          name: "Promote",
          faIcon: ["fas", "check"],
          showIf: {
            key: "role",
            is: "editor",
          }
        },
        {
          name: "Delete",
          faIcon: ["fas", "trash"],
        }
      ]
    }
  }
};
</script>

Props

caption

Optional. Adds a caption to the table in a <caption> tag.

example:

<vue-action-table caption="Users" />

rows

Required. An array of objects that represents the rows of data to add to the table.

The headers are automatically created from the rows by taking the keys of each object and turning them from camelCase to separate words. For example, if there's a key named dateCreated, the header will be Date Created.

example:

<template>
  <vue-action-table :rows="users" />
</template>

<script>
export default {
  data() {
    return {
      /**
       * The users used to populate the table with.
       */
      users: [
        {
          name: "Bob",
          email: "[email protected]",
          dateCreated: "04/01/2020",
          role: "admin",
        },
        {
          name: "Jane",
          email: "[email protected]",
          dateCreated: "04/20/2020",
          role: "editor",
        },
      ],
    }
  }
}

actions

Optional. Actions are buttons that appear in the last column of every row. Actions at the minimum are just an array of text values for the buttons and at most are more complicated conditionals as seen below. Whenever an action button is clicked by the user, an event will be emitted with the action's name in lowercase. For example, if an action with the name of Edit is clicked, an event named edit will be emitted.

A simple actions array can be:

data() {
  return {
    ["Edit", "Delete"],
  }
}

While a more complex example is shown below:

example:

<template>
  <vue-action-table :rows="users" :actions="actions" />
</template>

<script>
export default {
  data() {
    return {
      /**
       * The users used to populate the table with.
       */
      users: [
        {
          name: "Bob",
          email: "[email protected]",
          dateCreated: "04/01/2020",
          role: "admin",
        },
        {
          name: "Joe",
          email: "[email protected]",
          dateCreated: "04/12/2020",
          role: "editor",
        },
      ],
      /**
       * The actions for each row. Notice that the Delete button will only show
       * up on rows where the "role" is "editor".
       */
      actions: [
        {
          name: 'Edit',
        },
        {
          name: 'Delete',
          showIf: {
            key: "role",
            is: "editor"
          }
        }
      ]
    }
  }
}
</script>

Notice that the Delete action has a special conditional. What it says is that the Delete button will only show if the value for the role of that row is editor. If it is editor, then the Delete button will show, otherwise it won't show for that row.

actionsHeader

Optional. The header label for the column that contains the row's actions.

<template>
  <vue-action-table :rows="users" :actions="userActions" actionsHeader="Actions" />
</template>

<script>
export default {
  data() {
    return {
      /**
       * The users used to populate the table with.
       */
      users: [
        {
          name: "Bob",
          email: "[email protected]",
          dateCreated: "04/01/2020",
          role: "admin",
        },
        {
          name: "Joe",
          email: "[email protected]",
          dateCreated: "04/12/2020",
          role: "editor",
        },
      ],

      /**
       * The actions to add to the table.
       */
      actions: ["Edit", "Delete"],
    }
  }
}
</script>

tableClasses

Adds one or more classes to the root table element.

example:

<template>
  <vue-action-table :rows="users" :tableClasses="userTableClasses" />
</template>

<script>
export default {
  data() {
    return {
      /**
       * The classes to add to the table element.
       */
      userTableClasses: ["table", "table--users"],

      /**
       * The users used to populate the table with.
       */
      users: [
        {
          name: "Bob",
          email: "[email protected]",
          dateCreated: "04/01/2020",
          role: "admin",
        },
        {
          name: "Joe",
          email: "[email protected]",
          dateCreated: "04/12/2020",
          role: "editor",
        },
    }
  }
}
</script>

Tests

To run all of the tests available for Vue Action Table, use:

$ npm run test:unit

License

MIT