Endpoint URL: https://retoolapi.dev/zu9TVE/jokes
{
"id": 19,
"Title": "Mountaineering",
"Body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"Author": "crubery6s@simplemachines.org",
"Views": 98,
"CreatedAt": 1670164409747
}
Method Type | Endpoint |
---|---|
GET | zu9TVE/jokes |
GET filter | zu9TVE/jokes?Views=84 |
GET by id | zu9TVE/jokes/1 |
GET paginate | zu9TVE/jokes/?_page=2&_limit=10 |
POST | zu9TVE/jokes |
PUT | zu9TVE/jokes/1 |
PATCH | zu9TVE/jokes/1 |
DELETE | zu9TVE/jokes/1 |
You can see more routes here
In the main page a table should list all the jokes paginated with options for 5 and 10 items per page selected by the user in the very bottom of the table with two buttons for next (>) and previous (<) page and one dropdown to select the 5 or 10 item limit.
The user should also be able to filter and sort the results by the number of views or by created date.
The information shown in the table should have the following columns:
Title | Author | Created Date | Views |
---|---|---|---|
JokeTitle | crubery6s@***.org | 23 Feb 2022 | 65 |
Author's and Date format should be exactly as in the example above
Columns has gaps and a vertical line between them like in the image bellow
In the views column every number has to be one of the following colors following the rules:
- if the number of views is between 0 and 25,inclusive the number must be tomato
- if the number of views is between 26 and 50,inclusive the number must be orange
- if the number of views is between 51 and 75,inclusive the number must be yellow
- if the number of views is between 76 and 100,inclusive the number must be green
- Title should be a link leading to another page where the user should have a prefilled form with all the fields and a button to submit any changes for the specific item. There should be also a close button to go back if the user does not want to make any changes as well as a delete button to delete the item.
- In the home page it should be also a add new joke button that leads to the same form as above but with all the form fields empty.
- A dark mode toggle should switch background and text color.
- In order for the user to have access to the application, a "token" should exist in cookies or local storage. If there is no "token" a login screen prompts the user to click a button that stores a "token". Also a logout button should displayed in the home page.
To start developing, create a git repository and add this file as Readme.md in the main branch. Then start developing the application in another branch.
The above app needs to be implemented using ReactJS and Typescript. The choices of frameworks, starters and libraries are up to the developer.
This assignment is designed to gauge your skills as a Frontend Developer. Such skills would be good choices in library selection, code structuring, quality of code, proper abstractions and component composability to name a few.