release 5.3.2
This commit is contained in:
@@ -2,10 +2,13 @@
|
||||
ag-Grid React Example
|
||||
==============
|
||||
|
||||
Example of running ag-Grid inside React application.
|
||||
Examples of running ag-Grid inside React application.
|
||||
|
||||
See the [www.ag-grid.com](http://www.ag-grid.com).
|
||||
|
||||
There are two examples:
|
||||
standard - shows a typical grid demonstrating many ag-Grid features
|
||||
large - shows a very large grid (767 columns and 1,000 rows) using React cell renderers
|
||||
|
||||
Building
|
||||
==============
|
||||
@@ -13,6 +16,5 @@ Building
|
||||
To build:
|
||||
- `npm install`
|
||||
- `npm install webpack -g`
|
||||
- `npm start`
|
||||
- `npm run standard` or `npm run large`
|
||||
- navigate to localhost:8080
|
||||
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
<html>
|
||||
|
||||
<!-- This index file is common for both the standard and large examples. As to which project you are running
|
||||
depends on whether you use 'npm run standard' or 'npm run large' -->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script type="text/javascript" src="dist/bundle.js" charset="utf-8"></script>
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
{
|
||||
"name": "ag-grid-react-example",
|
||||
"version": "5.3.0",
|
||||
"version": "5.3.2",
|
||||
"description": "Example Reach applicaiton using ag-Grid.",
|
||||
"main": "dist/ag-grid-react-example.js",
|
||||
"scripts": {
|
||||
"start": "webpack-dev-server --progress --colors --hot --inline"
|
||||
"standard": "webpack-dev-server --config webpack.config.standard.js --progress --colors --hot --inline",
|
||||
"large": "webpack-dev-server --config webpack.config.large.js --progress --colors --hot --inline"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
18
src-large/index.js
Normal file
18
src-large/index.js
Normal file
@@ -0,0 +1,18 @@
|
||||
'use strict';
|
||||
|
||||
import ReactDOM from 'react-dom';
|
||||
import React from 'react';
|
||||
import LargeGrid from './largeGrid.jsx';
|
||||
// is there a better way of doing this?
|
||||
import 'ag-grid-root/dist/styles/ag-grid.css';
|
||||
import 'ag-grid-root/dist/styles/theme-fresh.css';
|
||||
|
||||
// waiting for dom to load before booting react. we could alternatively
|
||||
// put the index.js reference at the end fo the index.html, but i prefer this way.
|
||||
document.addEventListener('DOMContentLoaded', ()=> {
|
||||
var container = document.getElementById('myAppContainer');
|
||||
ReactDOM.render(
|
||||
React.createElement(LargeGrid),
|
||||
container
|
||||
);
|
||||
});
|
||||
75
src-large/largeGrid.jsx
Normal file
75
src-large/largeGrid.jsx
Normal file
@@ -0,0 +1,75 @@
|
||||
import React from 'react';
|
||||
import {reactCellRendererFactory} from 'ag-grid-react';
|
||||
import SimpleCellRenderer from './simpleCellRenderer.jsx';
|
||||
|
||||
import {AgGridReact} from 'ag-grid-react';
|
||||
|
||||
// put this line in to use ag-Grid enterprise
|
||||
// import 'ag-grid-enterprise';
|
||||
|
||||
export default class MyApp extends React.Component {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.createColumnNames();
|
||||
|
||||
this.state = {
|
||||
columnDefs: this.createColumnDefs(),
|
||||
rowData: this.createRowData()
|
||||
};
|
||||
}
|
||||
|
||||
createColumnNames() {
|
||||
// creates column names by iterating the alphabet twice, eg {'aa','ab','ac',.....'zz'}
|
||||
var alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('');
|
||||
this.columnNames = [];
|
||||
alphabet.forEach( letter1 => {
|
||||
alphabet.forEach( letter2 => {
|
||||
this.columnNames.push(letter1 + letter2);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
createRowData() {
|
||||
var rowData = [];
|
||||
|
||||
for (var i = 0; i<1000; i++) {
|
||||
var item = {};
|
||||
this.columnNames.forEach( colName => {
|
||||
item[colName] = '('+colName.toUpperCase()+','+i+')'
|
||||
});
|
||||
rowData.push(item);
|
||||
}
|
||||
|
||||
return rowData;
|
||||
}
|
||||
|
||||
createColumnDefs() {
|
||||
var columnDefs = [];
|
||||
|
||||
// pass in the parent component to use for React component to the cellRenderer.
|
||||
// this is optional. if missing, then react router will not work.
|
||||
var cellRenderer = reactCellRendererFactory(SimpleCellRenderer, this);
|
||||
|
||||
this.columnNames.forEach( colName => {
|
||||
columnDefs.push({
|
||||
headerName: colName.toUpperCase(),
|
||||
field: colName,
|
||||
cellRenderer: cellRenderer,
|
||||
width: 100
|
||||
});
|
||||
});
|
||||
|
||||
return columnDefs;
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div style={{height: '100%'}} className="ag-fresh">
|
||||
<AgGridReact columnDefs={this.state.columnDefs} rowData={this.state.rowData} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
17
src-large/simpleCellRenderer.jsx
Normal file
17
src-large/simpleCellRenderer.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React from 'react';
|
||||
|
||||
export default class SimpleCellRenderer extends React.Component {
|
||||
render() {
|
||||
var params = this.props.params;
|
||||
|
||||
// the class below does nothing, it's just for testing, so we can inspect the dom of
|
||||
// the result and looking for it, to validate that this cellRenderer is actually getting used.
|
||||
return (
|
||||
<span className="simple-cell-renderer">{params.value}</span>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
SimpleCellRenderer.propTypes = {
|
||||
params: React.PropTypes.object
|
||||
};
|
||||
@@ -8,7 +8,7 @@ import ProficiencyFilter from './ProficiencyFilter.jsx';
|
||||
|
||||
export default class ColDefFactory {
|
||||
|
||||
createColDefs() {
|
||||
createColDefs(parentReactComponent) {
|
||||
|
||||
var columnDefs = [
|
||||
{headerName: '#', width: 30, checkboxSelection: true, suppressSorting: true,
|
||||
@@ -29,15 +29,15 @@ export default class ColDefFactory {
|
||||
children: [
|
||||
{headerName: "Skills", width: 125, suppressSorting: true, field: 'skills', enableRowGroup: true, enablePivot: true,
|
||||
// using ag-Grid's React cellRenderer factory
|
||||
cellRenderer: reactCellRendererFactory(SkillsCellRenderer),
|
||||
cellRenderer: reactCellRendererFactory(SkillsCellRenderer, parentReactComponent),
|
||||
// using ag-Grid's React filter factory
|
||||
filter: reactFilterFactory(SkillsFilter)
|
||||
filter: reactFilterFactory(SkillsFilter, parentReactComponent)
|
||||
},
|
||||
{headerName: "Proficiency", field: "proficiency", filter: 'number', width: 120, enableValue: true,
|
||||
// using ag-Grid's React cellRenderer factory
|
||||
cellRenderer: reactCellRendererFactory(ProficiencyCellRenderer),
|
||||
cellRenderer: reactCellRendererFactory(ProficiencyCellRenderer, parentReactComponent),
|
||||
// using ag-Grid's React filter factory
|
||||
filter: reactFilterFactory(ProficiencyFilter)}
|
||||
filter: reactFilterFactory(ProficiencyFilter, parentReactComponent)}
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -18,8 +18,8 @@ export default class MyApp extends React.Component {
|
||||
quickFilterText: null,
|
||||
showGrid: true,
|
||||
showToolPanel: false,
|
||||
columnDefs: new ColDefFactory().createColDefs(),
|
||||
rowData: new RowDataFactory().createRowData(),
|
||||
columnDefs: new ColDefFactory().createColDefs(this),
|
||||
rowData: new RowDataFactory().createRowData(this),
|
||||
icons: {
|
||||
columnRemoveFromGroup: '<i class="fa fa-remove"/>',
|
||||
filter: '<i class="fa fa-filter"/>',
|
||||
@@ -1,5 +1,5 @@
|
||||
module.exports = {
|
||||
entry: "./src/index.js",
|
||||
entry: "./src-large/index.js",
|
||||
output: {
|
||||
path: __dirname,
|
||||
filename: "dist/bundle.js"
|
||||
27
webpack.config.standard.js
Normal file
27
webpack.config.standard.js
Normal file
@@ -0,0 +1,27 @@
|
||||
module.exports = {
|
||||
entry: "./src-standard/index.js",
|
||||
output: {
|
||||
path: __dirname,
|
||||
filename: "dist/bundle.js"
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{
|
||||
test: /\.css$/,
|
||||
loader: "style!css"
|
||||
},
|
||||
{
|
||||
test: /\.js$|\.jsx$/,
|
||||
loader: 'babel-loader',
|
||||
query: {
|
||||
presets: ['react', 'es2015']
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
"ag-grid-root" : __dirname + "/node_modules/ag-grid"
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user