最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Material UI show progress in Table while waiting on data - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 5

You 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

发布评论

评论列表(0)

  1. 暂无评论