Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/archielicious/admin-ui

Admin UI is a Admin's dashboard to edit or delete the data of the users. This UI doesn't require the changes made to be persisted to the DB. A dynamic pagination component allows the long data set to be displayed on different pages.
https://github.com/archielicious/admin-ui

css3 javascript mui reactjs

Last synced: 4 days ago
JSON representation

Admin UI is a Admin's dashboard to edit or delete the data of the users. This UI doesn't require the changes made to be persisted to the DB. A dynamic pagination component allows the long data set to be displayed on different pages.

Awesome Lists containing this project

README

        

# Admin-UI

Represent a group of admin usersas a display of rows.

You work at a startup that is building an interface for admins to see and delete users.
The users will be provided via an API.
Your job is to build out a working UI.

These are the requirements :-

1. Column titles must stand out from the entries.

2. There should be a search bar that can filter on any property.

3. You should be able to edit or delete rows in place.(There is no expectation of persistence. Edit and delete are expected to only happen in memory.) (No need to persist changes. No DB required.)

4. You need to implement pagination: Each page contains 10 rows. Buttons at the bottom allow you to jump to any page including special buttons for first page, previous page, next page and last page. Pagination must update based on search/filtering. If there are 25 records for example that match a search query, then pagination buttons should only go till 3.

5. You should be able to select one or more rows. A selected row is highlighted with a grayish background color. Multiple selected rows can be deleted at once using the 'Delete Selected' button at the bottom left.

6. Checkbox on the top left is a shortcut to select or deselect all displayed rows. This should only apply to the ten rows displayed in the current page, and not all 50 rows.