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

bootstrap-vue-datatable

v1.0.7

Published

A datatable plugin for vue and bootstrap

Downloads

253

Readme

vue-datatable

// Import Package
require("bootstrap-vue-datatable");
<!-- Include Component -->
<datatable :data="[]" :columns="[]" :actions="[]"></datatable>
<!-- Using Ajax -->
<datatable :ajax="true" :url="https://demosite.com/api/users" :columns="[]" :actions="[]"></datatable>

Example

Here's how you would use it in Example.vue

<!-- Include Datatable Component -->
<datatable :data="data" :columns="columns" :actions="[]"></datatable>

<script>
  // Use only if you want to parse dates
  import "moment" from "moment";


  export default {
    data() {
      return {
        // Data to be passed to component
        data: [
          { first_name: "Antonio",
            last_name: "Okoro",
            email: "[email protected]",
            date_of_birth: "1998-05-15"
          },
          {
            first_name: "Naruto",
            last_name: "Uzumaki",
            email: "[email protected]",
            date_of_birth: "1987-10-10"
          },
          {
            first_name: "Sasuke",
            last_name: "Uchiha",
            email: "[email protected]",
            date_of_birth: "1987-07-23"
          },
          {
            first_name: "Rock",
            last_name: "Lee",
            email: "[email protected]",
            date_of_birth: "1985-11-27"
          },
          {
            first_name: "Neji",
            last_name: "Hyuga",
            email: "[email protected]",
            date_of_birth: "1985-09-22"
          },
          {
            first_name: "Shikamaru",
            last_name: "Nara",
            email: "[email protected]",
            date_of_birth: "1987-09-22"
          }
        ],

        // Columns that should be displayed on The Table
        columns: [
          {name: "first_name", th: "First Name"},
          {name: "last_name", th: "Last Name"},
          {name: "email", th: "Email Address"},
          {name: "phone", th: "Phone Number"},
          {name: "date_of_birth", th: "Date Of Birth", show: false},
          {name: "age", th: "Age", render (row, cell, index) {
            // Parse date and display difference
            return moment(row.date_of_birth).fromNow();
          }},
        ],
        actions: [
          {text: "Delete", color: "danger", action: (row, index) => {
            alert(`about to delete ${row.first_name} ${row.last_name}`);
          }}
        ]
      }
    }
  }
</script>

Configuration

| Option | Description | Data Type | Default | |----------------|--------------------------------------------------------------|---------------|---------------| | ajax | Use ajax to fetch data from server | Array | false | | url | Server url to load data from while using ajax | Array | "" | | data | Items to be displayed in the table | Array | [] | | actions | Action Buttons For Each Item | Array | [] | | columns | Columns and Appropriate Data Assigment | Array | [] | | index | Whether or Not Items Should Be Indexed | Boolean | true | | loading | Set Loading Status | Boolean | false | | onClick | A function to be called whenever a cell is clicked | Function | {} | | breakWords | Whether Or Not The Table Should Be Allowed To Break Text | Boolean | false | | header | Whether Or Not The Header Should Be Visible | Boolean | true | | footer | Whether Or Not The Footer Should Be Visible | Boolean | true | | searchable | Whether Or Not Searching Should Be Available | Boolean | true | | limitable | Whether Or Not Page Limitation Should Be Changeable | Boolean | true | | pageDetails | Whether Or Not Details Should Be Visible | Boolean | true | | paginatable | Whether Or Not The Results Should Be paginatable | Boolean | true |

ajax

Whether or not to use ajax for loading data into the table

url

This sets the ajax url to fetch data from if ajax is enabled

data

Items to be displayed in the table Should be an array of objects

[
  { first_name: "Antonio",
    last_name: "Okoro",
    email: "[email protected]",
    date_of_birth: "1998-05-15"
  },
  {
    first_name: "Naruto",
    last_name: "Uzumaki",
    email: "[email protected]",
    date_of_birth: "1987-10-10"
  },
  {
    first_name: "Sasuke",
    last_name: "Uchiha",
    email: "[email protected]",
    date_of_birth: "1987-07-23"
  }
]

actions

Action Buttons For Each Item Row Should be an array of objects Each button uses bootstrap button styles and classess

Action Properties

text Text to be displayed on the button

color Color of the button primary, success, danger, warning, info, dark, light, any others defined in the css

size Size of the button sm, lg, any others defined in the css

action Function to be called whenever the button is clicked it passess three arguments to the provided function

| parameter | description | |---------------|-------------------| | row | table row | | name | the name value provided in the columns config | | index | numeric index of the row starting from 0 |

{
  render(row, cell, index){
    return `<a href="${cell}">${cell}</a>`;
  }
}

columns

Columns and Appropriate Data Assigment

Column Properties

name Name of the column for identification

th Title of the column to be displayed on the table header

render Custom function to display the columns data it passess three arguments to the provided function

| parameter | description | |---------------|-------------------| | row | table row | | cell | data for the table cell | | index | numeric index of the row starting from 0 |

{
  render(row, cell, index){
    return `<a href="${cell}">${cell}</a>`;
  }
}

index

Whether or Not Items Should Be Indexed default: true

loading

Set Loading Status whenever this property changes the state will as well default: false

onClick

A function to be called whenever a cell is clicked It passes four arguments to the provided function

| parameter | description | |---------------|-------------------| | row | table row | | cell | data for the table cell | | name | the name value provided in the columns config | | index | numeric index of the row starting from 0 |

<datatable :data="data" :columns="columns" :onclick="click"></datatable>

methods: {
  click(row, cell, name, index) {

  }
}

breakWords

Whether Or Not The Table Should Be Allowed To Break Text default: false

header

Whether Or Not The Header Section Should Be Visible i.e the page limit and search sections at the top default: true

footer

Whether Or Not The Footer Section Should Be Visible i.e the current page details and the pagination links at the bottom default: true

searchable

default: true Whether Or Not Searching Should Be Available

limitable

Whether Or Not Page Limitation Should Be Changeable default: true

pageDetails

Whether Or Not Details Should Be Visible default: true

paginatable

Whether Or Not The Results Should Be paginatable default: true