You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the /raw_data and /data_products pages, the datasets table, which is managed by a single component (ui/src/components/dataset/DatasetList.vue), currently lacks pagination. This will cause performance issues when there are a large number of datasets to display. Additionally, the absence of pagination impacts the efficiency of searching and sorting, as these operations are currently performed in the browser on the entire dataset array. With pagination enabled, we would need to make API calls for searching and sorting.
For datasets associated with projects, we need to consider a different approach. If there are 10 datasets or fewer (or some suitable threshold defined), it may be preferable to hide the pagination controls, as a cleaner, no-pagination approach might provide a better user experience. However, if there are more than 10 datasets, we should enable pagination.
Additional Feature:
In the project-associated dataset table, we should also introduce a search feature for cases where there are more than 10 datasets. This search feature will help users quickly locate specific datasets within the larger set of project-associated datasets.
The text was updated successfully, but these errors were encountered:
In the /raw_data and /data_products pages, the datasets table, which is managed by a single component (ui/src/components/dataset/DatasetList.vue), currently lacks pagination. This will cause performance issues when there are a large number of datasets to display. Additionally, the absence of pagination impacts the efficiency of searching and sorting, as these operations are currently performed in the browser on the entire dataset array. With pagination enabled, we would need to make API calls for searching and sorting.
For datasets associated with projects, we need to consider a different approach. If there are 10 datasets or fewer (or some suitable threshold defined), it may be preferable to hide the pagination controls, as a cleaner, no-pagination approach might provide a better user experience. However, if there are more than 10 datasets, we should enable pagination.
Additional Feature:
In the project-associated dataset table, we should also introduce a search feature for cases where there are more than 10 datasets. This search feature will help users quickly locate specific datasets within the larger set of project-associated datasets.
The text was updated successfully, but these errors were encountered: