Created
June 5, 2020 08:21
-
-
Save gibbok/326383f2a73975374710bba247d80a61 to your computer and use it in GitHub Desktop.
@actyx/industrial-ui/example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import './App.css'; | |
import { TableData } from '@actyx/industrial-ui' | |
function App() { | |
type Item = Readonly<{ | |
id: string; | |
description: string; | |
value: string; | |
}>; | |
const lorem = 'Lorem ipsum dolor sit amet.'; | |
const data: ReadonlyArray<Item> = [ | |
{ id: 'a', description: `A ${lorem}`, value: '1' }, | |
{ id: 'b', description: `B ${lorem}`, value: '2' }, | |
{ id: 'c', description: `C ${lorem}`, value: '3' } | |
]; | |
function Row({ id, description, value }: Item) { | |
return ( | |
<> | |
<td>{id}</td> | |
<td>{description}</td> | |
<td>{value}</td> | |
</> | |
); | |
} | |
const baseProps = { | |
data, | |
getUniqKey: (datum: Item) => datum.id, | |
header: Object.keys(data[0]).map((x, idx) => ( | |
<td style={{ fontWeight: 'bold' }} key={idx}> | |
{x.toUpperCase()} | |
</td> | |
)), | |
renderRow: ({ id, description, value }: Item) => ( | |
<Row id={id} description={description} value={value} /> | |
) | |
}; | |
return <TableData<Item> {...baseProps} isRowSelected={x => x.id === 'b'} /> | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment