GithubHelp home page GithubHelp logo

bline / bartable Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fooplugins/footable

0.0 2.0 0.0 2.35 MB

minimalistic very fast fork of FooTable

License: Other

CoffeeScript 94.24% CSS 4.37% JavaScript 1.39%

bartable's Introduction

BarTable

BarTable is a fork of FooTable. BarTable was created out of a need for speed on larger sets of data (~10000) as well as the ability to work with updates/additions/removals from the data. At this point, not much of the original code from FooTable remains, only the plugin framework and basic layout (which was well written!).

Features that were removed:

  • column groups (probably not going to)
  • customizing the dropdown html for phone/tablet rendering is no longer possible. (todo)

Technical changes:

  • internal dom element stores all rows, only displayed rows are added to the document.
  • for display, a new tbody element is created with the range we are displaying and appended to the dom. this cuts down on rerendering and makes things very smooth
  • sorting is done on internal dom element
  • paging only needs to set the range we are displaying and create the paging toolbar
  • all additions/removals/updates are done on internal dom element and pushed to document dom via redraw replacing tbody
  • very optimized for speed, none of the functions that deal with the rows are using jquery. this resulted in loss of ie8 support but gained more than 100% speed increase
  • updated to work with bootstrap3, no longer needs internal font set, as a result, this plugin requires bootstrap3
  • table stipping is done with bootstrap3 now, we no longer add class to every other tr in the table (this was way too slow).
  • use of underscore.js, so is now required
  • unfortunately jquery has no builtin way to get notified on remove. You must call a bartable.destroy() method instead of $table.remove() so it can clean up internal DOM elements which are not cleaned up by Javascript. If someone knows a work-around for this, please let me know.

TODO

  • filter plugin
  • ability to customize breakpoint dropdown html
  • remove nth column selectors so more browsers are supported
  • create examples
  • create demos
  • create documentions
  • better tests for required libraries
  • better loading indicator
  • more optimizations ;)

Features

  • Hide certain columns at different sizes
  • Configuration via data attributes
  • Built to work with Bootstrap3
  • Easy to theme
  • Sorting
  • Pagination
  • Easy to extend with add-ons
  • Extremely fast
  • Ability to load and sort large data sets (~10,000)

What Is BarTable?

BarTable is a jQuery plugin that transforms your HTML tables into expandable responsive tables. This is how it works:

  1. It hides certain columns of data at different resolutions (we call these breakpoints).
  2. Rows become expandable to reveal any hidden data.

So simple! Any hidden data can always be seen just by clicking the row.

Demos

TODO

Documentation

TODO

Data Attribute Configuration

One of the main goals of BarTable was to make it completely configurable via data attributes. We wanted you to be able to look at the HTML markup and see exactly how the BarTable was going to function. Take a look at this markup for example:

<table class="bartable" data-page-size="5">
  <thead>
    <tr>
      <th data-toggle="true">
        First Name
      </th>
      <th data-sort-ignore="true">
        Last Name
      </th>
      <th data-hide="phone,tablet">
        Job Title
      </th>
      <th data-hide="phone,tablet" data-name="Date Of Birth">
        DOB
      </th>
      <th data-hide="phone">
        Status
      </th>
    </tr>
  </thead>

Breakpoints

BarTable works with the concepts of "breakpoints", which are different table widths we care about. The default breakpoints are:

breakpoints: {
  phone: 480,
  tablet: 1024
}

So looking at the markup in the Data Attribute Configuration section, you can now tell that the Job Title, DOB and Status columns will be hidden when the table width is below 480 (phone).

There are also two built-in breakpoints called "default" and "all".

The "default" breakpoint is the fallback breakpoint for when the current table width is larger than any defined breakpoint. Looking at the above JS snippet the "default" breakpoint would be applied once the table width is larger than 1024 (tablet).

The "all" breakpoint is pretty straight forward in it's use. You can always hide a column on any table width by applying the data-hide="all" attribute to the header.

Usage

Create a simple table (don't forget to set the data attributes for each column in your thead!):

<table class="bartable">
  <thead>
    <tr>
      <th>Name</th>
      <th data-hide="phone,tablet">Phone</th>
      <th data-hide="phone,tablet">Email</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Bob Builder</td>
      <td>555-12345</td>
      <td>[email protected]</td>
    </tr>
    <tr>
      <td>Bridget Jones</td>
      <td>544-776655</td>
      <td>[email protected]</td>
    </tr>
    <tr>
      <td>Tom Cruise</td>
      <td>555-99911</td>
      <td>[email protected]</td>
    </tr>
  </tbody>
</table>
  1. Include bootstrap3 CSS

```
  1. Include BarTable Core CSS

```
  1. Include underscore

<script src="//cdn.jsdelivr.net/underscorejs/1.5.2/underscore-min.js" type="text/javascript"></script>

4. **Include jQuery**

    ```html
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  1. Include BarTable jQuery Plugin

<script src="path_to_your_js/bartable.js" type="text/javascript"></script>

6. **Initialize BarTable!**

   ```html
<script type="text/javascript">
    $(function () {

        $('.bartable').bartable();

    });
</script>

Extensible

Another goal of BarTable was to make it easily extensible. If you look at the code you will see that there is a plugin framework within the plugin, so extra mods can be attached just by including another javascript file.

We also didn't want to bloat BarTable, so you can only use what you need and leave out everything else.

Working add-ons:

  • sorting
  • pagination (thanks @awc737)

Thanks

Thanks to FooTable team for creating the starting point for BarTable. Their code was a pleasure to gut :)

This is a list of the thanks from original FooTable README

bartable's People

Contributors

akf avatar alonextou avatar bline avatar bradvin avatar darms69 avatar davidduda avatar dboune avatar josephdpurcell avatar kenzik avatar kurtaschliman avatar lorenzkahl avatar mvance avatar oliverrc avatar pattan avatar pcassis avatar polof avatar seriema avatar steveush avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.