-
Notifications
You must be signed in to change notification settings - Fork 322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project Labyrinth - Camilla #205
Open
camcron
wants to merge
10
commits into
Technigo:master
Choose a base branch
from
camcron:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
62072c4
Started working on game and created reducers
camcron 7d5be05
Worked on functionality and styling
camcron d1780ea
More styling
camcron 650a430
Styled buttons and added glass morphism to background
camcron 3b06fa4
Changes in styling and backgrounds
camcron cc464bb
Updated GlobalStyles and added README
camcron 6160f4c
Added a UUID (Universally Unique Identifier) to fix bugg with shared API
camcron ccf0d10
Changed some colors and moved readme
camcron 5ca97b2
Fixed sidescroll on mobile when showing loader
camcron d4b1de0
Changed Lottie animation
camcron File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"styled-components.vscode-styled-components" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
# Project Labyrinth | ||
|
||
Replace this readme with your own information about your project. | ||
|
||
Start by briefly describing the assignment in a sentence or two. Keep it short and to the point. | ||
This project is a text-based adventure game that allows the user to navigate a maze provided by a backend. It was built using React, Redux, and JavaScript. | ||
|
||
## The problem | ||
|
||
Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next? | ||
The main challenge of this project was building the communication between the frontend and the backend using Redux and thunks. I used the API provided to fetch the current location and its associated actions, and updated the state of the game accordingly. I also displayed the current location description and available actions to the user, and allowed the user to select their next move. | ||
|
||
Technologies used: | ||
React, | ||
Redux Toolkit, | ||
JavaScript, | ||
Styled Components, | ||
TypeIt, | ||
UUID (Universally Unique Identifier). | ||
|
||
Features: | ||
User can navigate a text-based maze. | ||
User can select their next move. | ||
Game state is updated using Redux and thunks. | ||
Styled Components used for styling. | ||
TypeIt used for typewriter-style text animation. | ||
|
||
## View it live | ||
|
||
Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about. | ||
https://redux-labyrinth.netlify.app/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great readme! I really like that you list the technologies and features that you have used.