DataViews: keep old data while new data is loading #69194
Labels
[Feature] DataViews
Work surrounding upgrading and evolving views in the site editor and beyond
[Type] Feature
New feature to highlight in changelogs.
What
The DataViews component has a
isLoading
prop that enables consumers to build this user experience (displays spinner when data is loading):Screen.Recording.2025-02-13.at.23.22.39.mov
In certain scenarios, consumers want to build this other experience (keep old data until new data has been loaded):
Screen.Recording.2025-02-13.at.23.19.55.mov
Discussion
There's an existing
aria-busy
attribute attached to the table to communicate the loading state to Assistive Technologies. However, it's not used or can't be configured to communicate the same to visual users.The second experience can be built today doing the following:
aria-busy
attribute to set a visual indication (e.g., lower opacity). This is hacky because the classes are not public API. It'd be best if we had an API-first way to do this:Goal
It'd be good to enable consumers to build the second experience as a first-class citizen in DataViews.
The text was updated successfully, but these errors were encountered: