ember-light-table-cell-type-multi-value

0.0.2 • Public • Published

ember-light-table-cell-type-multi-value

Ember Version Build Status npm version Download Total Ember Observer Score Greenkeeper badge dependencies Status devDependencies Status

Pass an array of values to your cell

This is an addon for ember-light-table. It adds the cell type multi-value, which enables you to specify an array of valuePaths instead of a single valuePath.

Installation

ember install ember-light-table-cell-type-multi-value

Usage

In your column definition, just replace valuePath with valuePaths, which can now be an array of paths. The value property passed to your cell will now be an array of values. Simple as that! 😉

For maximized backwards compatibility, valuePaths may also be a string. In that case, you'll get a single value, not an array. If no valuePaths were specified, multi-value falls back to the default behavior of the base cell and attempts to read valuePath.

However, valuePath must be a String. This means no fancy multiple values in that case. This limitation and the need to use valuePaths instead of valuePath in the first place, stem from the fact that ember-light-table uses the {{get}} helper like so: {{get row valuePath}}

We might change that in the future.

Example

function format(value) {
  return JSON.stringify(value);
}
 
export default Component.extends({
  columns: computed(function() {
    return [{
      label: 'First Name',
      valuePath: 'firstName', // fallback to `valuePath`
      cellType: 'multi-value',
      format
    }, {
      label: 'Last Name',
      valuePaths: 'lastName', // singular string is also accepted
      cellType: 'multi-value',
      format
    }, {
      label: 'Favorite colors',
      valuePaths: ['firstColor', 'secondColor', 'thirdColor']
      cellType: 'multi-value',
      format
    }, {
      label: 'Youngest Siblings',
      valuePaths: ['siblings.youngestSister', 'siblings.youngestBrother']
      cellType: 'multi-value',
      format
    }];
  }),
 
  rows: computed(function() {
    return [{
      firstName: 'Jan',
      lastName:  'Buschtöns',
 
      firstColor:  'pink',
      secondColor: 'green',
      thirdColor:  'blue',
 
      siblings: {
        youngestBrother: 'Robin'
      }
    }];
  }),
 
  init() {
    this._super(...arguments);
 
    const columns = get(this, 'columns');
    const rows = get(this, 'rows');
    set(this, 'table', new Table(columns, rows));
  }
});
<tr>
  <td>"Jan"</td>
  <td>"Buschtöns"</td>
  <td>["pink", "green", "blue"]</td>
  <td>[null, "Robin"]</td>
</tr>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.2
    1
  • 0.0.1
    1

Package Sidebar

Install

npm i ember-light-table-cell-type-multi-value

Weekly Downloads

2

Version

0.0.2

License

none

Last publish

Collaborators

  • buschtoens