forked from backstage/backstage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request backstage#146 from spotify/nikek/fetch-example
add async data fetching & rendering to example page
- Loading branch information
Showing
6 changed files
with
142 additions
and
17 deletions.
There are no files selected for viewing
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
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
10 changes: 10 additions & 0 deletions
10
...es/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.test.tsx.hbs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from 'react'; | ||
import { render } from '@testing-library/react'; | ||
import ExampleFetchComponent from './ExampleFetchComponent'; | ||
|
||
describe('ExampleFetchComponent', () => { | ||
it('should render', () => { | ||
const rendered = render(<ExampleFetchComponent />); | ||
expect(rendered.getByTestId('progress')).toBeInTheDocument(); | ||
}); | ||
}); |
90 changes: 90 additions & 0 deletions
90
...mplates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.tsx.hbs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import React, { FC } from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import Table from '@material-ui/core/Table'; | ||
import TableBody from '@material-ui/core/TableBody'; | ||
import TableCell from '@material-ui/core/TableCell'; | ||
import TableContainer from '@material-ui/core/TableContainer'; | ||
import TableHead from '@material-ui/core/TableHead'; | ||
import TableRow from '@material-ui/core/TableRow'; | ||
import LinearProgress from '@material-ui/core/LinearProgress'; | ||
import Alert from '@material-ui/lab/Alert'; | ||
import { useAsync } from 'react-use'; | ||
|
||
const useStyles = makeStyles({ | ||
table: { | ||
minWidth: 650, | ||
}, | ||
}); | ||
|
||
type User = { | ||
gender: string; // "male" | ||
name: { | ||
title: string; //"Mr", | ||
first: string; // "Duane", | ||
last: string; //"Reed" | ||
}; | ||
location: object; // {street: {number: 5060, name: "Hickory Creek Dr"}, city: "Albany", state: "New South Wales",…} | ||
email: string; // "duane.reed@example.com" | ||
login: object; // {uuid: "4b785022-9a23-4ab9-8a23-cb3fb43969a9", username: "blackdog796", password: "patch",…} | ||
dob: object; // {date: "1983-06-22T12:30:23.016Z", age: 37} | ||
registered: object; // {date: "2006-06-13T18:48:28.037Z", age: 14} | ||
phone: string; //"07-2154-5651" | ||
cell: string; // "0405-592-879" | ||
id: { | ||
name: string; // "TFN", | ||
value: string; // "796260432" | ||
}; | ||
picture: object; //{large: "https://randomuser.me/api/portraits/men/95.jpg",…} | ||
nat: string; // "AU" | ||
}; | ||
|
||
type DenseTableProps = { | ||
users: User[]; | ||
}; | ||
|
||
export const DenseTable: FC<DenseTableProps> = ({ users }) => { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<TableContainer> | ||
<Table className={classes.table} size="small" aria-label="a dense table"> | ||
<TableHead> | ||
<TableRow> | ||
<TableCell>Name</TableCell> | ||
<TableCell>Email</TableCell> | ||
<TableCell>Nationality</TableCell> | ||
</TableRow> | ||
</TableHead> | ||
<TableBody> | ||
{users.map(user => ( | ||
<TableRow key={user.email}> | ||
<TableCell> | ||
{user.name.first} {user.name.last} | ||
</TableCell> | ||
<TableCell>{user.email}</TableCell> | ||
<TableCell>{user.nat}</TableCell> | ||
</TableRow> | ||
))} | ||
</TableBody> | ||
</Table> | ||
</TableContainer> | ||
); | ||
}; | ||
|
||
const ExampleFetchComponent: FC<{}> = () => { | ||
const { value, loading, error } = useAsync(async (): Promise<User[]> => { | ||
const response = await fetch('https://randomuser.me/api/?results=100'); | ||
const data = await response.json(); | ||
return data.results; | ||
}, []); | ||
|
||
if (loading) { | ||
return <LinearProgress data-testid="progress" />; | ||
} else if (error) { | ||
return <Alert severity="error">{error.message}</Alert>; | ||
} else { | ||
return <DenseTable users={value || []} />; | ||
} | ||
}; | ||
|
||
export default ExampleFetchComponent; |
1 change: 1 addition & 0 deletions
1
frontend/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/index.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from './ExampleFetchComponent'; |
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