Compare commits

..

1 Commits

Author SHA1 Message Date
Sean Landsman
839457ceda Release 20.1.0 dist files added and license key updated 2019-02-20 17:36:11 +00:00
26 changed files with 207 additions and 189 deletions

View File

@@ -35,9 +35,8 @@ module.exports = {
}, },
resolve: { resolve: {
alias: { alias: {
// "@ag-grid-community/core/modules": path.resolve('./node_modules/@ag-grid-community/core/dist/es2015/modules'), "ag-grid-community": path.resolve('./node_modules/ag-grid-community'),
"@ag-grid-community/core": path.resolve('./node_modules/@ag-grid-community/core'), "ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'),
// "ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'),
react: path.resolve('./node_modules/react') react: path.resolve('./node_modules/react')
}, },
extensions: ['.js', '.jsx'] extensions: ['.js', '.jsx']
@@ -49,4 +48,4 @@ module.exports = {
port: 8080, port: 8080,
historyApiFallback: true historyApiFallback: true
} }
}; };

View File

@@ -31,7 +31,7 @@ module.exports = {
}, },
resolve: { resolve: {
alias: { alias: {
"@ag-grid-community/core": path.resolve('./node_modules/@ag-grid-community/core'), "ag-grid-community": path.resolve('./node_modules/ag-grid-community'),
"ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'), "ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'),
react: path.resolve('./node_modules/react') react: path.resolve('./node_modules/react')
}, },
@@ -43,4 +43,4 @@ module.exports = {
devServer: { devServer: {
port: 8080, port: 8080,
} }
}; };

View File

@@ -31,7 +31,7 @@ module.exports = {
}, },
resolve: { resolve: {
alias: { alias: {
"@ag-grid-community/core": path.resolve('./node_modules/@ag-grid-community/core'), "ag-grid-community": path.resolve('./node_modules/ag-grid-community'),
"ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'), "ag-grid-enterprise": path.resolve('./node_modules/ag-grid-enterprise'),
react: path.resolve('./node_modules/react') react: path.resolve('./node_modules/react')
}, },
@@ -43,4 +43,4 @@ module.exports = {
devServer: { devServer: {
port: 8080, port: 8080,
} }
}; };

View File

@@ -1,6 +1,6 @@
{ {
"name": "ag-grid-react-example", "name": "ag-grid-react-example",
"version": "22.1.1", "version": "20.1.0",
"description": "Example Reach applicaiton using ag-Grid.", "description": "Example Reach applicaiton using ag-Grid.",
"main": "dist/ag-grid-react-example.js", "main": "dist/ag-grid-react-example.js",
"scripts": { "scripts": {
@@ -17,8 +17,7 @@
"build-dashboard": "webpack --config config/webpack.config.trader.js --progress --profile --bail", "build-dashboard": "webpack --config config/webpack.config.trader.js --progress --profile --bail",
"build-all": "npm run build-examples && npm run build-dashboard", "build-all": "npm run build-examples && npm run build-dashboard",
"build": "npm run clean && npm run mkdirs && npm run build-all && npm run copy", "build": "npm run clean && npm run mkdirs && npm run build-all && npm run copy",
"start": "npm run examples", "start": "npm run examples"
"test": "./ts-tests/runTsTests.sh"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -38,16 +37,13 @@
}, },
"homepage": "http://www.ag-grid.com/", "homepage": "http://www.ag-grid.com/",
"devDependencies": { "devDependencies": {
"@ag-grid-community/core": "~22.1.1", "@babel/core": "7.3.3",
"@babel/core": "7.4.4", "babel-loader": "8.0.5",
"@babel/plugin-proposal-class-properties": "7.4.4", "@babel/preset-env": "7.3.1",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0", "@babel/preset-react": "7.0.0",
"@types/react": "16.9.2", "@babel/plugin-proposal-class-properties": "7.3.3",
"@types/react-dom": "16.9.0", "@babel/plugin-proposal-function-bind": "7.2.0",
"babel-loader": "8.0.6", "css-loader": "2.1.0",
"css-loader": "2.1.1",
"file-loader": "3.0.1", "file-loader": "3.0.1",
"gulp": "3.9.1", "gulp": "3.9.1",
"merge2": "1.2.3", "merge2": "1.2.3",
@@ -56,21 +52,21 @@
"prop-types": "15.7.2", "prop-types": "15.7.2",
"rimraf": "2.6.3", "rimraf": "2.6.3",
"style-loader": "0.23.1", "style-loader": "0.23.1",
"typescript": "3.4.5", "webpack": "4.29.5",
"webpack": "4.31.0", "webpack-cli": "3.2.3",
"webpack-cli": "3.3.2", "webpack-dev-server": "3.2.0"
"webpack-dev-server": "3.4.1"
}, },
"dependencies": { "dependencies": {
"@ag-grid-enterprise/all-modules": "~22.1.1", "ag-grid-community": "^20.1.0",
"@ag-grid-community/react": "~22.1.1", "ag-grid-enterprise": "^20.1.0",
"ag-grid-react": "^20.1.0",
"bootstrap": "4.3.1", "bootstrap": "4.3.1",
"d3": "4.9.1", "d3": "4.9.1",
"lodash": "4.17.11", "lodash": "4.17.11",
"react": "16.8.6", "react": "16.8.2",
"react-dom": "16.8.6", "react-dom": "16.8.2",
"react-redux": "7.0.3", "react-redux": "6.0.1",
"react-router-dom": "5.0.0", "react-router-dom": "4.3.1",
"redux": "4.0.1" "redux": "4.0.1"
} }
} }

View File

@@ -2,6 +2,7 @@ import React, {Component} from "react";
import {Redirect, Route, Switch} from "react-router-dom"; import {Redirect, Route, Switch} from "react-router-dom";
import NavItem from "./NavItem"; import NavItem from "./NavItem";
import RichGridDeclarativeExample from "./richGridDeclarativeExample/RichGridDeclarativeExample"; import RichGridDeclarativeExample from "./richGridDeclarativeExample/RichGridDeclarativeExample";
import SimpleReduxDynamicExample from "./simpleReduxDynamicComponentExample/SimpleReduxExample"; import SimpleReduxDynamicExample from "./simpleReduxDynamicComponentExample/SimpleReduxExample";
import SimpleReduxHookExample from "./simpleReduxHooksExample/SimpleReduxHookExample"; import SimpleReduxHookExample from "./simpleReduxHooksExample/SimpleReduxHookExample";

View File

@@ -4,14 +4,14 @@ import React from "react";
import {render} from "react-dom"; import {render} from "react-dom";
import {BrowserRouter} from "react-router-dom"; import {BrowserRouter} from "react-router-dom";
import "@ag-grid-enterprise/all-modules/dist/styles/ag-grid.css"; import "ag-grid-community/dist/styles/ag-grid.css";
import "@ag-grid-enterprise/all-modules/dist/styles/ag-theme-balham.css"; import "ag-grid-community/dist/styles/ag-theme-balham.css";
import "../node_modules/bootstrap/dist/css/bootstrap.css"; import "../node_modules/bootstrap/dist/css/bootstrap.css";
import App from "./App"; import App from "./App";
// only required when using enterprise features // only required when using enterprise features
// import {LicenseManager} from "@ag-grid-enterprise/all-modules"; // import {LicenseManager} from "ag-grid-enterprise/main";
// LicenseManager.setLicenseKey("<your license key>"); // LicenseManager.setLicenseKey("<your license key>");
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {

View File

@@ -1,5 +1,5 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {AgGridColumn, AgGridReact} from "@ag-grid-community/react"; import {AgGridColumn, AgGridReact} from "ag-grid-react";
import RowDataFactory from "./RowDataFactory"; import RowDataFactory from "./RowDataFactory";
import DateComponent from "./DateComponent.jsx"; import DateComponent from "./DateComponent.jsx";
import SkillsCellRenderer from './SkillsCellRenderer.jsx'; import SkillsCellRenderer from './SkillsCellRenderer.jsx';
@@ -12,22 +12,18 @@ import HeaderGroupComponent from './HeaderGroupComponent.jsx';
import SortableHeaderComponent from './SortableHeaderComponent.jsx'; import SortableHeaderComponent from './SortableHeaderComponent.jsx';
import "./RichGridDeclarativeExample.css"; import "./RichGridDeclarativeExample.css";
// take this line out if you do not want to use ag-Grid-Enterprise
// for community features import "ag-grid-enterprise";
// import {AllCommunityModules} from "@ag-grid-community/all-modules";
// for enterprise features
import {AllModules} from "@ag-grid-enterprise/all-modules";
export default class RichGridDeclarativeExample extends Component { export default class RichGridDeclarativeExample extends Component {
constructor(props) {
super(props); constructor() {
super();
this.state = { this.state = {
quickFilterText: null, quickFilterText: null,
sideBar: false, sideBar: false,
rowData: new RowDataFactory().createRowData(), rowData: new RowDataFactory().createRowData(),
rowCount: null,
icons: { icons: {
columnRemoveFromGroup: '<i class="fa fa-remove"/>', columnRemoveFromGroup: '<i class="fa fa-remove"/>',
filter: '<i class="fa fa-filter"/>', filter: '<i class="fa fa-filter"/>',
@@ -43,8 +39,6 @@ export default class RichGridDeclarativeExample extends Component {
onGridReady = (params) => { onGridReady = (params) => {
this.api = params.api; this.api = params.api;
this.columnApi = params.columnApi; this.columnApi = params.columnApi;
this.calculateRowCount();
}; };
onCellClicked = (event) => { onCellClicked = (event) => {
@@ -92,18 +86,7 @@ export default class RichGridDeclarativeExample extends Component {
// simply wait for the next tick // simply wait for the next tick
setTimeout(() => { setTimeout(() => {
this.api.onFilterChanged(); this.api.onFilterChanged();
}); }, 0)
};
calculateRowCount = () => {
if (this.api && this.state.rowData) {
const model = this.api.getModel();
const totalRows = this.state.rowData.length;
const processedRows = model.getRowCount();
this.setState({
rowCount: processedRows.toLocaleString() + ' / ' + totalRows.toLocaleString()
});
}
}; };
static countryCellRenderer(params) { static countryCellRenderer(params) {
@@ -132,7 +115,7 @@ export default class RichGridDeclarativeExample extends Component {
<h1>Rich Grid with Declarative Markup Example</h1> <h1>Rich Grid with Declarative Markup Example</h1>
<div style={{display: "inline-block", width: "100%"}}> <div style={{display: "inline-block", width: "100%"}}>
<div style={{float: "left"}}> <div style={{float: "left"}}>
<b>Employees Skills and Contact Details: </b>{ this.state.rowCount } <b>Employees Skills and Contact Details</b><span id="rowCount"/>
</div> </div>
</div> </div>
<div style={{marginTop: 10}}> <div style={{marginTop: 10}}>
@@ -169,14 +152,15 @@ export default class RichGridDeclarativeExample extends Component {
</button> </button>
</div> </div>
</div> </div>
<div style={{display: "inline-block", width: "100%", marginTop: 10, marginBottom: 10}}> <div style={{display: "inline-block", width: "100%", marginTop: 10, marginBottom: 10}}>
<div style={{float: "left"}}> <div style={{float: "left"}}>
<label htmlFor="sideBarToggle">Show Side Bar&nbsp;</label> <label>
<input type="checkbox" id="sideBarToggle" onChange={this.onToggleSidebar} style={{marginRight: 5}}/> <input type="checkbox" onChange={this.onToggleSidebar} style={{marginRight: 5}}/>
Show Side Bar
</label>
</div> </div>
<div style={{float: "right", marginLeft: 20}}> <div style={{float: "left", marginLeft: 20}}>
<label htmlFor="quickFilter">Quick Filter:&nbsp;</label> <input type="text" onChange={this.onQuickFilterText} placeholder="Type text to filter..."/>
<input type="text" id="quickFilter" onChange={this.onQuickFilterText} placeholder="Type text to filter..."/>
</div> </div>
</div> </div>
<div style={{height: 400, width: 900}} className="ag-theme-balham"> <div style={{height: 400, width: 900}} className="ag-theme-balham">
@@ -185,7 +169,6 @@ export default class RichGridDeclarativeExample extends Component {
onGridReady={this.onGridReady} onGridReady={this.onGridReady}
onRowSelected={this.onRowSelected} onRowSelected={this.onRowSelected}
onCellClicked={this.onCellClicked} onCellClicked={this.onCellClicked}
onModelUpdated={this.calculateRowCount}
// binding to simple properties // binding to simple properties
sideBar={this.state.sideBar} sideBar={this.state.sideBar}
@@ -197,13 +180,11 @@ export default class RichGridDeclarativeExample extends Component {
// binding to array properties // binding to array properties
rowData={this.state.rowData} rowData={this.state.rowData}
// register all modules (row model, csv/excel, row grouping etc)
modules={AllModules}
// no binding, just providing hard coded strings for the properties // no binding, just providing hard coded strings for the properties
// boolean properties will default to true if provided (ie suppressRowClickSelection => suppressRowClickSelection="true") // boolean properties will default to true if provided (ie suppressRowClickSelection => suppressRowClickSelection="true")
suppressRowClickSelection suppressRowClickSelection
rowSelection="multiple" rowSelection="multiple"
floatingFilter
groupHeaders groupHeaders
// setting grid wide date component // setting grid wide date component
@@ -218,7 +199,8 @@ export default class RichGridDeclarativeExample extends Component {
headerComponentParams: { headerComponentParams: {
menuIcon: 'fa-bars' menuIcon: 'fa-bars'
} }
}}> }}
>
<AgGridColumn headerName="#" width={30} <AgGridColumn headerName="#" width={30}
checkboxSelection sortable={false} suppressMenu filter={false} pinned> checkboxSelection sortable={false} suppressMenu filter={false} pinned>
</AgGridColumn> </AgGridColumn>
@@ -252,6 +234,130 @@ export default class RichGridDeclarativeExample extends Component {
</AgGridColumn> </AgGridColumn>
</AgGridReact> </AgGridReact>
</div> </div>
<div style={{marginTop: 10}}>
<div className="row">
<div className="col-sm-12"><h1>Rich Grid with Declarative Markup Example</h1></div>
</div>
<div className="row">
<div className="col-sm-12">
<h5>This example demonstrates many features of ag-Grid, with Grid and Column Definition
defined declaratively (i.e. with markup).</h5>
<p><span style={{fontWeight: 500}}>Select All/Clear Selection</span>: Select or Deselect
All
Rows</p>
<p><span style={{fontWeight: 500}}>Hide/Show Country Column</span>: Select or Deselect
All
Rows
(expand the Employee column to show the Country column first)</p>
<p><span style={{fontWeight: 500}}>Toggle The Side Bar</span>: Let your users Pivot,
Group
and
Aggregate using the Side Bar</p>
<p><span style={{fontWeight: 500}}>Refresh Data</span>: Dynamically Update Grid Data</p>
<p><span style={{fontWeight: 500}}>Quick Filter</span>: Perform Quick Grid Wide
Filtering
with
the Quick Filter</p>
<p><span style={{fontWeight: 500}}>DOB Filter</span>: Set the DOB filter to 01/01/2000
using
the
Filter API (expand the Employee column to show the DOB column)</p>
<p><span style={{fontWeight: 500}}>Custom Headers</span>: Sort, Filter and Render
Headers
using
Header Components</p>
</div>
</div>
<div className="row">
<div className="col-sm-4">
<div className="card">
<div className="card-body">
<h4 className="card-title">Grid & Column API</h4>
<p className="card-text">Utilise Grid Features Programmatically Using the APIs
Available</p>
<a target="_blank" href="https://www.ag-grid.com/javascript-grid-api/"
className="btn btn-primary">Grid API</a>
<a target="_blank" href="https://www.ag-grid.com//javascript-grid-column-api/"
className="btn btn-primary">Column API</a>
</div>
</div>
</div>
<div className="col-sm-4">
<div className="card">
<div className="card-body">
<h4 className="card-title">Header Components</h4>
<p className="card-text">Customer the Header with React Components</p>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-header-rendering/#headerComponent"
className="btn btn-primary">Header Component</a>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-header-rendering/#headerGroupComponent"
className="btn btn-primary">Header Group Component</a>
</div>
</div>
</div>
<div className="col-sm-4">
<div className="card">
<div className="card-body">
<h4 className="card-title">Filters</h4>
<p className="card-text">Filter with Quick Filters, Floating Filters, Built In
Filters
or Using the
Filter API</p>
<a target="_blank" href="https://www.ag-grid.com//javascript-grid-filter-quick/"
className="btn btn-primary">Quick
Filter</a>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-floating-filter-component/"
className="btn btn-primary">Floating Filters</a>
<a target="_blank" href="https://www.ag-grid.com//javascript-grid-filtering/"
className="btn btn-primary">Built in
Filters</a>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-filtering/#accessing-filter-component-instances"
className="btn btn-primary">Filter API</a>
</div>
</div>
</div>
</div>
<div className="row">
<div className="col-sm-4">
<div className="card">
<div className="card-body">
<h4 className="card-title">Side Bar</h4>
<p className="card-text">Let your users Pivot, Group and Aggregate using the
Side Bar</p>
<a target="_blank" href="https://www.ag-grid.com//javascript-grid-side-bar/"
className="btn btn-primary">Side Bar</a>
</div>
</div>
</div>
<div className="col-sm-8">
<div className="card">
<div className="card-body">
<h4 className="card-title">The Rest</h4>
<p className="card-text">Pinned Columns, Checkbox Selection, Customer Renderers,
Data
Updates</p>
<a target="_blank"
href="https://www.ag-grid.com/best-react-data-grid/?framework=react"
className="btn btn-primary">React with ag-Grid</a>
<a target="_blank" href="https://www.ag-grid.com//javascript-grid-pinning/"
className="btn btn-primary">Pinned Column</a>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-selection/#checkboxSelection"
className="btn btn-primary">Checkbox Selection</a>
<a target="_blank"
href="https://www.ag-grid.com//javascript-grid-cell-rendering/"
className="btn btn-primary">Cell
Renderers</a>
<a target="_blank" href="https://www.ag-grid.com/javascript-grid-data-update/"
className="btn btn-primary">Updating Data</a>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div> </div>
); );

View File

@@ -56,7 +56,7 @@ export default class SkillsFilter extends React.Component {
return passed; return passed;
}; };
getModelAsString() { getModel() {
return '' return ''
} }
@@ -83,6 +83,7 @@ export default class SkillsFilter extends React.Component {
const skillsTemplates = []; const skillsTemplates = [];
RefData.IT_SKILLS.forEach((skill, index) => { RefData.IT_SKILLS.forEach((skill, index) => {
const skillName = RefData.IT_SKILLS_NAMES[index]; const skillName = RefData.IT_SKILLS_NAMES[index];
const template = ( const template = (
<label key={skill} <label key={skill}

View File

@@ -1,7 +1,7 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {connect} from "react-redux"; import {connect} from "react-redux";
import {AgGridReact} from "@ag-grid-community/react";
import {AllModules} from "@ag-grid-enterprise/all-modules"; import {AgGridReact} from "ag-grid-react";
import PriceRenderer from "./PriceRenderer"; import PriceRenderer from "./PriceRenderer";
@@ -44,7 +44,8 @@ class GridComponent extends Component {
// properties // properties
columnDefs={this.state.columnDefs} columnDefs={this.state.columnDefs}
rowData={this.props.rowData} rowData={this.props.rowData}
modules={AllModules}
reactNext={true}
// events // events
onGridReady={this.onGridReady}> onGridReady={this.onGridReady}>
@@ -61,4 +62,4 @@ export default connect(
rowData: state.rowData rowData: state.rowData
} }
} }
)(GridComponent); )(GridComponent);

View File

@@ -1,5 +1,7 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {connect} from "react-redux"; import {connect} from "react-redux";
// take this line out if you do not want to use ag-Grid-Enterprise
import "ag-grid-enterprise";
import {setCurrency, updateRowData} from "./gridDataActions"; import {setCurrency, updateRowData} from "./gridDataActions";
@@ -23,8 +25,8 @@ class HeaderComponent extends Component {
render() { render() {
return ( return (
<div style={{marginTop: 15}}> <div style={{marginTop: 15}}>
<button onClick={this.setCurrency.bind(this, '£', 1)} className="btn btn-primary">Set Currency to GBP</button> <button onClick={this.setCurrency.bind(this, '£', 1)}>Set Currency to GBP</button>
<button onClick={this.setCurrency.bind(this, '$', 1.29)} className="btn btn-primary">Set Currency to USD</button> <button onClick={this.setCurrency.bind(this, '$', 1.29)}>Set Currency to USD</button>
</div> </div>
) )
} }
@@ -80,4 +82,4 @@ export default connect(
rowData: state.rowData rowData: state.rowData
} }
} }
)(HeaderComponent); )(HeaderComponent);

View File

@@ -41,5 +41,5 @@ export default connect(
}, },
null, null,
null, null,
{forwardRef: true} // must be supplied for react/redux when using AgGridReact {forwardRef: true} // must be supplied for react/redux when using GridOptions.reactNext
)(PriceRenderer); )(PriceRenderer);

View File

@@ -1,6 +1,8 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {Provider} from "react-redux"; import {Provider} from "react-redux";
import {createStore} from "redux"; import {createStore} from "redux";
// take this line out if you do not want to use ag-Grid-Enterprise
import "ag-grid-enterprise";
import HeaderComponent from "./HeaderComponent"; import HeaderComponent from "./HeaderComponent";
import GridComponent from "./GridComponent"; import GridComponent from "./GridComponent";

View File

@@ -1,7 +1,6 @@
import React, {useContext} from "react"; import React, { useContext } from "react";
import {Context} from "./store"; import {Context} from "./store";
import {AgGridReact} from "@ag-grid-community/react"; import {AgGridReact} from "ag-grid-react";
import {AllModules} from "@ag-grid-enterprise/all-modules";
/* /*
* This component serves to display the row data (provided by redux) * This component serves to display the row data (provided by redux)
@@ -22,9 +21,8 @@ export default function GridComponent() {
// properties // properties
columnDefs={columnDefs} columnDefs={columnDefs}
rowData={rowData} rowData={rowData}
modules={AllModules}
defaultColDef={{filter: true}} reactNext={true}
// events // events
onGridReady={onGridReady}> onGridReady={onGridReady}>

View File

@@ -1,18 +0,0 @@
import React, {useEffect, forwardRef, useImperativeHandle, useRef} from "react";
export default forwardRef((props, ref) => {
const inputRef = useRef();
useImperativeHandle(ref, () => {
return {
getValue: () => {
return inputRef.current.value;
}
};
});
useEffect(() => {
// https://github.com/facebook/react/issues/7835#issuecomment-395504863
setTimeout(() => inputRef.current.focus(), 10)
}, []);
return <input type="text" ref={inputRef} defaultValue={props.value}/>;
})

View File

@@ -1,18 +0,0 @@
import React, {forwardRef, useImperativeHandle, useRef} from "react";
export default forwardRef((props, ref) => {
const inputRef = useRef();
useImperativeHandle(ref, () => {
return {
isFilterActive() {
return inputRef.current.value !== '';
},
doesFilterPass: (params) => {
return params.data.price.toString() === inputRef.current.value;
}
};
});
return <input type="text" ref={inputRef} onChange={() => props.filterChangedCallback()}/>;
})

View File

@@ -10,7 +10,7 @@ export default function SimpleReduxHookExample() {
<Context.Provider value={{store, dispatch}}> <Context.Provider value={{store, dispatch}}>
<div> <div>
<h1>Simple Example using Hooks (with useContext and useReducer)</h1> <h1>Simple Example using Hooks (with useContext and useReducer)</h1>
<button onClick={() => dispatch({type: "SET_ROW_DATA"})} className="btn btn-primary">Populate Row Data</button> <button onClick={() => dispatch({type: "SET_ROW_DATA"})}>Populate Row Data</button>
<GridComponent/> <GridComponent/>
</div> </div>
</Context.Provider> </Context.Provider>

View File

@@ -1,21 +1,15 @@
import React from "react"; import React from "react";
import PriceRenderer from "./PriceRenderer"; import PriceRenderer from "./PriceRenderer";
import PriceEditor from "./PriceEditor";
import PriceFilter from "./PriceFilter";
export const initialState = { export const initialState = {
rowData: [], rowData: [],
columnDefs: [ columnDefs: [
{ {
field: 'symbol', field: 'symbol'
editable: true
}, },
{ {
field: 'price', field: 'price',
cellClass: 'align-right', cellClass: 'align-right',
editable: true,
cellEditorFramework: PriceEditor,
filterFramework: PriceFilter,
cellRendererFramework: PriceRenderer cellRendererFramework: PriceRenderer
} }
] ]

View File

@@ -4,8 +4,8 @@ import ReactDOM from 'react-dom';
import React from 'react'; import React from 'react';
import LargeGrid from './largeGrid.jsx'; import LargeGrid from './largeGrid.jsx';
import '@ag-grid-community/core/dist/styles/ag-grid.css'; import 'ag-grid-community/dist/styles/ag-grid.css';
import '@ag-grid-community/core/dist/styles/ag-theme-fresh.css'; import 'ag-grid-community/dist/styles/ag-theme-fresh.css';
// waiting for dom to load before booting react. we could alternatively // 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. // put the index.js reference at the end fo the index.html, but i prefer this way.

View File

@@ -1,12 +1,10 @@
import React, {Component} from 'react'; import React, {Component} from 'react';
import SimpleCellRenderer from './simpleCellRenderer.jsx'; import SimpleCellRenderer from './simpleCellRenderer.jsx';
import {AgGridReact} from '@ag-grid-community/react';
// for community features import {AgGridReact} from 'ag-grid-react';
import {AllModules} from "@ag-grid-enterprise/all-modules";
// for enterprise features // put this line in to use ag-Grid enterprise
// import {AllModules} from "@ag-grid-enterprise/all-modules"; // import 'ag-grid-enterprise';
export default class MyApp extends Component { export default class MyApp extends Component {
@@ -64,7 +62,7 @@ export default class MyApp extends Component {
render() { render() {
return ( return (
<div style={{height: '100%'}} className="ag-theme-fresh"> <div style={{height: '100%'}} className="ag-theme-fresh">
<AgGridReact columnDefs={this.state.columnDefs} rowData={this.state.rowData} modules={AllModules}/> <AgGridReact columnDefs={this.state.columnDefs} rowData={this.state.rowData}/>
</div> </div>
); );
} }

View File

@@ -1,9 +1,7 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {connect} from "react-redux"; import {connect} from "react-redux";
import {AgGridReact} from "@ag-grid-community/react"; import {AgGridReact} from "ag-grid-react";
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
class FxQuoteMatrix extends Component { class FxQuoteMatrix extends Component {
constructor(props) { constructor(props) {
@@ -73,8 +71,6 @@ class FxQuoteMatrix extends Component {
// callbacks // callbacks
getRowNodeId={this.getRowNodeId} getRowNodeId={this.getRowNodeId}
modules={[ClientSideRowModelModule]}
// events // events
onGridReady={this.onGridReady}> onGridReady={this.onGridReady}>
</AgGridReact> </AgGridReact>
@@ -89,4 +85,4 @@ export default connect(
rowData: state ? state.fxData : null rowData: state ? state.fxData : null
} }
} }
)(FxQuoteMatrix); )(FxQuoteMatrix);

View File

@@ -1,7 +1,6 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {AgGridReact} from "@ag-grid-community/react"; import {AgGridReact} from "ag-grid-react";
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
import map from "lodash/map"; import map from "lodash/map";
import difference from "lodash/difference"; import difference from "lodash/difference";
@@ -161,8 +160,6 @@ export default class extends Component {
}} }}
rowSelection="single" rowSelection="single"
modules={[ClientSideRowModelModule]}
// callbacks // callbacks
getRowNodeId={this.getRowNodeId} getRowNodeId={this.getRowNodeId}
@@ -173,4 +170,4 @@ export default class extends Component {
</div> </div>
); );
} }
} }

View File

@@ -1,8 +1,7 @@
import React, {Component} from "react"; import React, {Component} from "react";
import {connect} from "react-redux"; import {connect} from "react-redux";
import {AgGridReact} from "@ag-grid-community/react"; import {AgGridReact} from "ag-grid-react";
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
class TopMoversGrid extends Component { class TopMoversGrid extends Component {
constructor(props) { constructor(props) {
@@ -76,8 +75,6 @@ class TopMoversGrid extends Component {
deltaRowDataMode deltaRowDataMode
getRowNodeId={this.getRowNodeId} getRowNodeId={this.getRowNodeId}
modules={[ClientSideRowModelModule]}
// events // events
onGridReady={this.onGridReady}> onGridReady={this.onGridReady}>
</AgGridReact> </AgGridReact>
@@ -92,4 +89,4 @@ export default connect(
rowData: state ? state.fxTopMovers : null rowData: state ? state.fxTopMovers : null
} }
} }
)(TopMoversGrid); )(TopMoversGrid);

View File

@@ -5,12 +5,12 @@ import {render} from "react-dom";
import {Provider} from "react-redux"; import {Provider} from "react-redux";
import "ag-grid-community/dist/styles/ag-grid.css";
import "ag-grid-community/dist/styles/ag-theme-fresh.css";
import StoreService from './services/StoreService'; import StoreService from './services/StoreService';
import TraderDashboard from "./components/TraderDashboard.jsx"; import TraderDashboard from "./components/TraderDashboard.jsx";
import "@ag-grid-enterprise/all-modules/dist/styles/ag-grid.css";
import "@ag-grid-enterprise/all-modules/dist/styles/ag-theme-fresh.css";
let store = StoreService.STORE; let store = StoreService.STORE;
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {

View File

@@ -1,4 +0,0 @@
import React from 'react';
import {AgGridReact} from '@ag-grid-community/react';
export const App: React.FunctionComponent = () => <AgGridReact invalidProperty columnDefs={[]} rowData={[]}/>;

View File

@@ -1,4 +0,0 @@
import React from 'react';
import {AgGridReact} from '@ag-grid-community/react';
export const App: React.FunctionComponent = () => <AgGridReact columnDefs={[]} rowData={[]}/>;

View File

@@ -1,26 +0,0 @@
#!/usr/bin/env bash
# here as a quick ts test for use in the CI
# in time this will be removed the full battery of tests be moved to a centralised location
error_found=false
# has an invalid property - should complain
./node_modules/.bin/tsc --target "ES5" --module 'commonjs' --lib esnext,dom --allowSyntheticDefaultImports --jsx 'preserve' --noEmit --strict ts-tests/InvalidGridProperty.tsx &> /dev/null
if [ $? -ne 1 ]; then
echo "ag-grid-react grid with invalid property should throw a compiler error"
error_found=true
fi
# a valid grid - no errors should be emitted
./node_modules/.bin/tsc --target "ES5" --module 'commonjs' --lib esnext,dom --allowSyntheticDefaultImports --jsx 'preserve' --noEmit --strict ts-tests/SimpleFunctionalGrid.tsx &> /dev/null
if [ $? -ne 0 ]; then
echo "valid ag-grid-react grid should compile"
error_found=true
fi
if [ "$error_found" = true ]; then
exit 1
fi
exit 0