I know it is possible to show Circular progress over the as-yet-to-be-populated table. How do you do it?
As it stands right now the table says No records to display .... until the server returns with the data.
========= further to @torquan response this is what worked for me in more detail.
const [dataFetched, setDataFetched] = useState(false)
Convert EmployeesTable
into a ponent - then I had to pass props in and it works perfectly.
{!dataFetched ? (
<CircularProgress />
) : (
<EmployeesTable
data={employees}
token={token}
/>
)}
I know it is possible to show Circular progress over the as-yet-to-be-populated table. How do you do it?
As it stands right now the table says No records to display .... until the server returns with the data.
========= further to @torquan response this is what worked for me in more detail.
const [dataFetched, setDataFetched] = useState(false)
Convert EmployeesTable
into a ponent - then I had to pass props in and it works perfectly.
{!dataFetched ? (
<CircularProgress />
) : (
<EmployeesTable
data={employees}
token={token}
/>
)}
Share
Improve this question
edited May 5, 2022 at 2:48
General Grievance
5,04338 gold badges37 silver badges56 bronze badges
asked Apr 3, 2020 at 13:57
Michael NellesMichael Nelles
6,0328 gold badges47 silver badges61 bronze badges
2 Answers
Reset to default 5You could display a spinner until the data is fetched.
That part could look like this:
<table>
{!dataFetched ? <Spinner /> : <YourTableBody>}
</table>
You could use a <Spinner />
from one of the libraries on npm for example or write your own.
You would initialize dataFetched as false and set it to true when your API call finished. If that is too general, you should post your code for the table.
For a plex table, the mui data-grid is the remended ponent, and it has support for loading state built-in:
https://mui./x/react-data-grid/ponents/#loading-overlay