Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elic4vet/my-rating-app
My rating app - An app built with React that lets users rate a service and the show the selected result on a new component
https://github.com/elic4vet/my-rating-app
app javascript junior-developer junior-frontend reactjs
Last synced: 15 days ago
JSON representation
My rating app - An app built with React that lets users rate a service and the show the selected result on a new component
- Host: GitHub
- URL: https://github.com/elic4vet/my-rating-app
- Owner: elic4vet
- Created: 2023-08-02T18:16:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-27T09:36:41.000Z (3 months ago)
- Last Synced: 2024-10-31T04:25:32.898Z (2 months ago)
- Topics: app, javascript, junior-developer, junior-frontend, reactjs
- Language: JavaScript
- Homepage: https://amazing-donut-de31ff.netlify.app/
- Size: 278 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frontend Mentor - Interactive rating component solution
This is a solution to the [Interactive rating component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/interactive-rating-component-koxpeBUmI). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
## Table of contents
- [Overview](#overview)
- [The challenge](#the-challenge)
- [Screenshot](#screenshot)
- [Links](#links)
- [My process](#my-process)
- [Built with](#built-with)
- [What I learned](#what-i-learned)
- [Continued development](#continued-development)
- [Author](#author)## Overview
### The challenge
Users should be able to:
- View the optimal layout for the app depending on their device's screen size
- See hover states for all interactive elements on the page
- Select and submit a number rating
- See the "Thank you" card state after submitting a rating### Screenshot
Here are some screenshots of my app.
![](./src/assets/images/main_screenshot.png)
![](./src/assets/images/success_screenshot.png)
### Links
- Solution URL: [Github](https://your-solution-url.com)
- Live Site URL: [Netlify](https://your-live-site-url.com)## My process
### Built with
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
- [React](https://reactjs.org/) - JS library
- [Vite] (https://vitejs.dev/)- Build tool
- [Styled Components](https://styled-components.com/) - For styles### What I learned
- I learned how to build an app using Vite and React. The development process was much faster than using create-react-app.
- I learned how to use styled components to create a component that can be reused throughout the app. I also learned how to use the useState hook to update the state of the app when a user clicks on a rating.
- I learned how to render a new component when a user clicks on a submit button and had first selected a rating.
```css
.icon:hover {
filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(
100%
) contrast(100%);
}
``````js
if (success) {
successComponent = (
You selected {selectedNumber.target.value} out of 5
Thank you !
{" "}
We appreciate you taking the time to give a rating. If you ever need more
support, don't hesitate to get in touch!
);
}
```### Continued development
- I will continue to learn how to use complicated CSS properties and how to use React to build more complex apps.
- I will also learn how to use React Router to create a multi-page app.
- Last but not least, I will learn how to use React Context to manage the state of the app.
## Author
- Website - [Elisabeth Erkekoglou ](https://www.linkedin.com/in/eerkekoglou/)
- Frontend Mentor - [@elic4vet](https://www.frontendmentor.io/profile/elic4vet)
- Instagram - [@elisa.codes23](https://www.instagram.com/elisa.codes23/)