Giter Club home page Giter Club logo

projection-grid's Introduction

projection-grid

Build Status Coverage percentage

Client side grid control in JavaScript using pipe and filter patterns. Our data starts its journey at a data-source (OData, Memory, Mock) and travels through multiple filters before it makes it to the grid renderer. Those filters are called 'projections'.

Install

npm install --save projection-grid

Usage

As AMD

require(['projection-grid'], function (pgrid) {
  var gridView = pgrid.factory().create({
    el: '.some-css-selector',
    dataSource: {
      type: 'js-data',
      resource: someJSDataResource,
    },
    columns: [
      { name: 'Foo' },
      { name: 'Bar', template: someTemplate },
    ],
  }).gridView;

  gridView.render();
});

As CommonJS

var pgrid = require('projection-grid');

var gridView = pgrid.factory().create({
  el: '.some-css-selector',
  dataSource: {
    type: 'js-data',
    resource: someJSDataResource,
  },
  columns: [
    { name: 'Foo' },
    { name: 'Bar', template: someTemplate },
  ],
}).gridView;

gridView.render();

Play with the demos

git clone https://github.com/Microsoft/projection-grid
cd projection-grid
npm install
gulp demos

A demo server will start at http://localhost:8080/demos/, each sub-folders of demos would be a standalone demo page.

The standard usage is demoed at http://localhost:8080/demos/factory

The source code is demos/factory/index.js.

Configurations

The configuration object passed to factory.create(...).

el

The root element of the grid. It should be a CSS selector.

dataSource

Data source of the grid. Tells grid where to get the row data.

dataSource.type

The type of the data source. Available values are

  • 'js-data', the JSData data source
  • 'memory', the memory data source

The default value is 'memory'.

dataSource.data

An option of 'memory' data source which should be an array of row data, or a Backbone.Collection.

dataSource.resource

An option of 'js-data' data source which is a JSData Resource.

dataSource.schema

An optional JSON schema object specifying the schema of the row data.

layout

The grid layout. Available values are

  • 'table', the table layout
  • 'flex', the flex layout

The default value is 'table'.

columns

An array of grid column configuration objects.

columns[].name

The name of the column. By default, it's also the title showing in the column header, the field of the cell data.

columns[].title

The title showing in the column header. It overrides the columns[].name.

columns[].field

The field of the cell data. It overrides the columns[].name. In case you row data is in form of

{
  "companyName": "Microsoft Corporation",
  "address": {
    "country": "USA",
    "state": "WA",
    "city": "Redmond",
    "street": "One Microsoft Way",
    "zip": "98053"
  }
}
  • To reference the company name, the field should be companyName.
  • To reference the zip code, the field should be address/zip.

columns[].value

A function to calculate the cell value from the row data. It's used in complex scenarios when the cell value is not a field of the row data. For example,

// A column of combined address information
{
  name: 'address',
  value: function (rowData) {
    return [
      rowData.street,
      rowData.city,
      rowData.state,
      rowData.country,
      rowData.zip,
    ].join(', ');
  },
}

columns[].template

A template function to generate the HTML in cells.

columns[].headerTemplate

A template function to generate the HTML in column header.

columns[].View

A Backbone view class to render the data cells. It will be instantiated with { model: dataOfTheRow }. Within the view, you can access the row data with this.model.

columns[].HeaderView

A Backbone view class to render the header cell.

columns[].attributes

User defined attributes attached to the cells (TD).

columns[].headerAttributes

User defined attributes attached to the column header (TH).

columns[].locked

A boolean value specifies whether or not the column is locked. Locked columns are always visible when column shifter is on.

columns[].hidden

A boolean value specifies whether or not the column is hide.

columns[].sortable

A boolean value specifies whether the column is sortable by clicking the header.

columns[].editable

A boolean value specifies whether the cell data is editable with a pop up editor.

columns[].group

A string value. The row will be splitted into several groups by this value.

pageable

Define the pagination behavior.

pageable.pageSize

The default page size.

pageable.pageSizes

An array of available page sizes.

selectable

Boolean or string value. Available values are

  • false, no selection support
  • true, multiple selection, show a checkbox column to the left
  • 'single', single selection, show a radio button column to the left

scrollable

Scroll behavior configurations.

scrollable.virtual

A boolean value telling whether or not the virtualization is turned on.

scrollable.fixedHeader

Fixed header configuration. If it's a truthy value, the grid header will stick to a container when scrolled out of it. The default container is the browser window.

scrollable.fixedHeader.container

A CSS selector specifying the container element the header sticks to.

columnShifter

Column shifter configurations. Column shifter limit the number of visible columns, and provide a pair of control button to shift the columns.

columnShifter.totalColumns

The number of visible columns.

aggregate

Configurations of aggregation rows

aggregate.top

A function returning an array of aggregation row data for the rows showing on top of the grid.

aggregate.bottom

A function returning an array of aggregation row data for the rows showing at the bottom of the grid.

Create accessory views with plugins

The factory.create(...) method not only create the grid view, it can also create accessory views, like pager, and hook them up. The factory plugins are designed to handle this.

Using a plugin

In case we have a pagerView defined in pager-view-plugin.js (Refer to the factory demo). The code using it should be something like

var pgrid = require('projection-grid');
// load the plugin
var pagerViewPlugin = require('./pager-view-plugin');

var grid = pgrid.factory()
  // use the plugin
  .use(pagerViewPlugin)
  .create({
    // the grid configurations
  });

var gridView = grid.gridView;
// get the view
var pagerView = grid.pagerView;

gridView.render();
pagerView.render();

It would be even simpler with ES2015.

import pgrid from 'projection-grid';
import pagerViewPlugin from './pager-view-plugin';

const { gridView, pagerView } = pgrid.factory()
  .use(pagerViewPlugin)
  .create({
    /// the grid configurations
  });

gridView.render();
pagerView.render();

The object returned from factory.create(...) is a map, from plugin name to it's product. Technically, the gridView is the product of a builtin plugin called 'gridView'.

Developing a plugin

To develop a grid factory plugin, you need to understand the projection grid internal concepts like projections, renderers, layouts etc.

A grid factory plugin is a function in form of

function (definePlugin) {
  definePlugin('pluginName', [
    // name of dependent plugins
  ], function (/* product of dependent plugins */) {

    // create and return the product

  });
}

The definePlugin is a function similar to the define of AMD. It's defined by the factory, having the factory context.

For example, the pager plugin is defined like this.

import _ from 'underscore';
import { PaginationView } from 'pagination-control';

export default definePlugin => definePlugin('pagerView', [
  // builtin plugin, returning the configuration object
  'config',
  // builtin plugin, the chained projections of the grid
  'projection',
  // builtin plugin, the final grid view
  'gridView',
], function (config, projection, gridView) {

  // create the pager view
  const pagerView = new PaginationView(_.defaults({
    pageSize: config.pageable.pageSize,
    availablePageSizes: config.pageable.pageSizes,
  }, config.pagerView));

  // hook up the pager view with the grid and the projection chain
  gridView.on('change:data', function (model) {
    pagerView.itemCount = model.get('count');
  });

  pagerView.on('change:page-size', function (pageSize) {
    projection.set('page.size', pageSize);
  });

  pagerView.on('change:page-number', function (pageNumber) {
    projection.set('page.number', pageNumber);
  });

  // return the pager view
  return pagerView;
});

Developer instructions

  1. Create your own fork of the project
  2. Clone your own fork of the project to local
git clone https://github.com/your-github-user-name/projection-grid
  1. Install dependencies
cd projection-grid
npm install
  1. Launch demo server which watch and build your changes automatically
gulp demos
  1. Make changes with your favorite editor
  2. Add unit test cases under spec
  3. If necessary, add your own demo page under demos
  4. Add selenium test cases under demos/your-demo-page/spec
  5. Test your changes with
gulp test
  1. Commit your local changes and push to GitHub
git add .
git commit
git push
  1. Send pull request on GitHub and review it with the management team

projection-grid's People

Contributors

charlesfan88 avatar chunxuli avatar danielmeng avatar dependabot[bot] avatar dmytroua avatar earlycicada avatar ellery0924 avatar haipeng-wang avatar jyc-99 avatar karthicrajakumar avatar knightlinms avatar lesliekim avatar liuxiong332 avatar lyweiwei avatar microsoft-github-policy-service[bot] avatar msftgits avatar qingbolove avatar ravhb avatar shashank291 avatar steins024 avatar taxiahou avatar wanju-ms avatar wewei avatar xiol-ms avatar yaoyao-ict avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

projection-grid's Issues

how can I avoid the row to be checked?

I found that by clicking the blank space the row will be checked, while by clicking the button or the columns with onPrompt the row will not be checked.
How can I avoid the row to be checked?
I tried event.stopPropagation and event.preventDefault in the td level, but they did not work.
Thank you.

Hope the Template Callback Param Contains Row Value

{
  tempalte(...arg) {
    return JSON.stringify(arg);
  }
}

// [{"value":"222222222222"}]

The callback param, I hope it's row value.'
For example, the Account Name column need AccountNumberand BillToCustomerName
image

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.