diff --git a/package.json b/package.json index 3f4379d..66a67b5 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "@types/react-dom": "^15.5.0", "@types/react-router-dom": "^4.0.4", "@types/react-tap-event-plugin": "^0.0.30", + "@types/lodash": "^4.14.69", "awesome-typescript-loader": "^3.1.3", "css-loader": "^0.28.2", "copy-webpack-plugin": "^4.0.1", @@ -34,6 +35,7 @@ "react-dom": "15.5.4", "react-router-dom": "^4.1.1", "react-tap-event-plugin": "^2.0.1", - "semantic-ui-react": "^0.70.0" + "semantic-ui-react": "^0.70.0", + "lodash": "^4.17.4" } } diff --git a/src/ts/Routes.tsx b/src/ts/Routes.tsx index 08d6d0a..6a772a7 100644 --- a/src/ts/Routes.tsx +++ b/src/ts/Routes.tsx @@ -12,6 +12,7 @@ import { Components } from './containers/test/Components'; import { Sensors } from './containers/test/Sensors'; // import { Layout } from './containers/test/layout/Layout' import { Tree } from './containers/test/commons/Tree'; +import { TableExampleSortable } from './containers/test/TableExampleSortable' export class Blank extends React.Component { render() { @@ -52,6 +53,7 @@ export class Routes extends React.Component { + diff --git a/src/ts/containers/test/TableExampleSortable.tsx b/src/ts/containers/test/TableExampleSortable.tsx new file mode 100644 index 0000000..d20a7e3 --- /dev/null +++ b/src/ts/containers/test/TableExampleSortable.tsx @@ -0,0 +1,74 @@ +import * as _ from 'lodash'; +import * as React from 'react'; +import { Table } from 'semantic-ui-react'; + +const tableData = [ + { name: 'John', age: 15, gender: 'Male' }, + { name: 'Amber', age: 40, gender: 'Female' }, + { name: 'Leslie', age: 25, gender: 'Female' }, + { name: 'Ben', age: 70, gender: 'Male' }, +]; + +export class TableExampleSortable extends React.Component { + + constructor(props: any, context: any) { + super(props, context); + + this.state = { + column: null, + data: tableData, + direction: null, + }; + } + + + handleSort = (clickedColumn:any) => () => { + const { column, data, direction } = this.state + + if (column !== clickedColumn) { + this.setState({ + column: clickedColumn, + data: _.sortBy(data, [clickedColumn]), + direction: 'ascending', + }); + + return + } + + this.setState({ + data: data.reverse(), + direction: direction === 'ascending' ? 'descending' : 'ascending', + }) + }; + + render() { + const { column, data, direction } = this.state; + + return ( + + + + + Name + + + Age + + + Gender + + + + + {_.map(data, ({ age, gender, name }) => ( + + {name} + {age} + {gender} + + ))} + +
+ ) + } +} \ No newline at end of file diff --git a/src/ts/containers/test/layout/LeftMenu.tsx b/src/ts/containers/test/layout/LeftMenu.tsx index 49e0b47..5662da5 100644 --- a/src/ts/containers/test/layout/LeftMenu.tsx +++ b/src/ts/containers/test/layout/LeftMenu.tsx @@ -88,6 +88,7 @@ export class LeftMenu extends React.Component { Insanity DiscoveryDetails Tree + TableExampleSortable