0.0.14 • Published 7 years ago

atomic-grid v0.0.14

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Atomic grid

Controller and data provider building blocks to create your own very special angular grid without writing any boilerplate code.

Goal

There are several grid component supporting the angular framework, but most of them use the configuration method instead of the template approach. So instead of using simple table, tr and td tags, you have to create a big configuration object with cell renderers and some other stuff.

With this approach you lose the simple way to arrange the part of the grid and design it with simple html and css.

Atomic grid try to solve this problem by giving building blocks for creating your own custom grid component in minutes. Using this component you will get controllers and data providers for your grid without any view restriction.

Install

npm install --save atomic-grid

Basic usage

Angular 1

Import

import * as angular from 'angular';
import { AtomicGridNg1ModuleFactory } from 'atomic-grid/dist/ng1';

angular.module('app', [ AtomicGridNg1ModuleFactory(angular) ]);

Template

<table at-grid="myGrid"
       at-grid-data="..."
       at-grid-url="..."
       at-grid-data-provider="...">
  <tr>
    <th at-grid-sort="...">...</th>
    ...
  </tr>
  <tr ng-repeat="item in myGrid.items">
    <td>{{ item.field }}</td>
    ...
  </tr>
</table>

Angular 2

Import

import { AtomicGridNg2Module } from 'atomic-grid/dist/ng2';

@NgModule({
  imports: [
    ...,
    AtomicGridNg2Module
  ]
})
export class AppModule { }

Template

<table #myGrid="atGrid"
       [atGridData]="..."
       [atGridUrl]="..."
       [atGridDataProvider]="...">
  <tr>
    <th atGridSort="...">...</th>
  </tr>
  <tr *ngFor="let item of myGrid.items">
    <td>{{ item.field }}</td>
    ...
  </tr>
</table>

Example projects

See them under the examples folder

Api

Bindings

Angular 1Angular 2Description
at-grid="myGrid"#mygrid="atGrid"Create a reference for the controller
at-grid-data="anArray"[atGridData]="anArray"Set an array data provider
at-grid-url="api/resource"atGridUrl="api/resource"Set a spring data compatible url data provider
at-grid-data-provider="..."TODOCustom data provider
at-grid-additional-parameters="params"[atGridAdditionalParameters]="params"Additional parameters for the data provider
at-grid-multi-selection="false"[atGridMultiSelection]="false"Turn on/off the multi selection

Basics

Controller method / propertyDescription
search(): Promise<AtomicGridPage<T>>Do a search with the current state of the grid
items: Array<T>Get the content of the actual page

Information

Controller method / propertyDescription
size: numberGet the actual page size
page: numberGet the actual page number
totalElements: numberGet the number of total elements
totalPages: numberGet the number of total pages
pageStart: numberGet the starting record number of the page
pageEnd: numberGet the ending record number of the page
loading: booleanIs grid refreshing in progress

Paging

Controller method / propertyDescription
isPrevEnabled(): booleanIs the previous paging enabled?
isNextEnabled(): booleanIs the next paging enabled?
first(): voidJump to the first page
prev(): voidJump to the previous page
next(): voidJump to the next page
last(): voidJump to the last page
pager: Array<AtomicGridPagerItem>Get a pager object to render paging toolbar for the grid

Sorting

Controller method / propertyDescription
setSort(sortBy: string&#124;Function, reverse: boolean, append?: boolean): voidChange the grid sorting without doing a search.
sort(sortBy: string&#124;Function, append?: boolean)Change the grid sorting and refresh it's content
getSortBy(sortBy: string&#124;Function): AtomicGridSortIs the grid sort by the given field

Paging

Controller method / propertyDescription
setSize(newPageSize: number): voidChange the grid page size without doing a search
size: numberChanging the property will change the page size and refresh the grid's content
setPage(newPageNumber: number): voidChange the grid page number without doing a search
page: numberChanging the property will change the page number and refresh the grid's content

Selection

Controller method / propertyDescription
multiSelection: booleanGetter/setter for is the multiselection enabled for the grid
selectedItem: undefined | TGet the selected item if multiselection is disabled
selectedItem: undefined | ArrayGet the selected items if multiselection is enabled

Events

Controller method / propertyDescription
onBeforeSearch(listener)Trigger before do a search, can be cancelled
onAfterSearch(listener)Trigger after do a search
onBeforeChangeState(listener)Trigger before change state (page, size, sort), can be cancelled
onBeforeChangeSelection(listener)Trigger before change selection (page, size, sort, selection), can be cancelled

Use cases

Initialize grid state with custom paging and sorting parameters

<!-- Create a reference to the grid controller and disable autosearch -->
<table at-grid="$ctrl.myGrid" at-grid-auto-search="false">...</table>
myGrid: AtomicGridNg1Controller<T>

$postLink() {
  this.myGrid.setSort('field1', true); // Reverse sort by the field1
  this.myGrid.setSort('field2', false, true); // Sort by the field2 appended as second sorting
  this.myGrid.setSize(20); // Set page size to 20
  this.myGrid.setPage(2); // Go the the 2nd page
  this.myGrid.search(); // Do a search to fetch data
}

Prevent changing the grid state

myGrid: AtomicGridNg1Controller<T>

$postLink() {
  this.myGrid.onBeforeChangeState((event: CustomEvent) => {
    event.preventDefault();
    confirm('sdfasdf') && event.detail.do();
  });
}

TODO

  • Documentation
  • Live examples
  • Tests
0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago