Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ee31916
first fetch to spawn the episodes
LuisMM24 Feb 23, 2022
90417ce
iterate in pagination render
LuisMM24 Feb 23, 2022
a634289
episode component rendering with characters
LuisMM24 Feb 23, 2022
34b5cd5
spinner while loading components
LuisMM24 Feb 24, 2022
1321c55
character working
LuisMM24 Feb 24, 2022
f9a9d8d
rendering characterCard component in character page
LuisMM24 Feb 24, 2022
88e2698
route for location
LuisMM24 Feb 24, 2022
b40af4e
location working, added layout in character and location pages
LuisMM24 Feb 24, 2022
6c4323b
error gestion in location
LuisMM24 Feb 24, 2022
2b5c0d9
pagination working
LuisMM24 Feb 24, 2022
6dc177f
epsiodes pages working with query params
LuisMM24 Feb 25, 2022
aad90b1
moved promise functions out of classes(episode and Character)
LuisMM24 Feb 25, 2022
e112dff
Postman file
LuisMM24 Feb 25, 2022
632a49c
Add files via upload
LuisMM24 Feb 25, 2022
fcb1517
Delete Rick and Morty API.postman_collection.json
LuisMM24 Feb 25, 2022
df55ec9
fixed location id error
LuisMM24 Feb 25, 2022
3478c4d
Merge branch 'main' of https://github.com/LuisMM24/react-rick-morty
LuisMM24 Feb 25, 2022
c87b205
trying testing in app component
LuisMM24 Feb 28, 2022
5ba5bd4
location url get from origin
LuisMM24 Feb 28, 2022
5884cac
react HOC implemented in character
LuisMM24 Mar 1, 2022
e68cafd
useReducer, functional component in home
LuisMM24 Mar 4, 2022
00927d9
including custom hooks in home
LuisMM24 Mar 4, 2022
65fce12
link instead LI
LuisMM24 Mar 4, 2022
661fca7
using custom hook with home
LuisMM24 Mar 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions Rick and Morty API.postman_collection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"info": {
"_postman_id": "26788566-ec0f-4cba-b835-ea2137f56489",
"name": "Rick and Morty API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Get episodes",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode?page=1",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "page",
"value": "2",
"disabled": true
},
{
"key": "page",
"value": "3",
"disabled": true
}
]
}
},
"response": []
},
{
"name": "Get character",
"request": {
"method": "GET",
"header": []
},
"response": []
},
{
"name": "Get location",
"request": {
"method": "GET",
"header": []
},
"response": []
},
{
"name": "Get data of certain episode",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode/2",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode",
"2"
]
}
},
"response": []
}
]
}
Loading