Skip to content
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

Adicionando Firebase como base de dados. #95

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 8 additions & 1 deletion frontend/.env
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
REACT_APP_DEVCHALLENGE_API=http://localhost:3333
REACT_APP_DEVCHALLENGE_API=http://localhost:3333
REACT_APP_FIREBASE_APIKEY=AIzaSyDlSDvVRBTuEBULLJ7F1Zny9uEKvm34U8I
REACT_APP_FIREBASE_AUTHDOMAIN=devchallenge-16edf.firebaseapp.com
REACT_APP_FIREBASE_PROJECTID=devchallenge-16edf
REACT_APP_FIREBASE_STORAGEBUCKET=devchallenge-16edf.appspot.com
REACT_APP_FIREBASE_MESSAGINGSENDERID=457450543508
REACT_APP_FIREBASE_APPID=1:457450543508:web:6afbe9416f72e9830b5781
REACT_APP_FIREBASE_MEASUREMENTID=G-KKVZ30J836
Comment on lines +1 to +8

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

acho que isso está aqui por engano!

8 changes: 8 additions & 0 deletions frontend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
REACT_APP_DEVCHALLENGE_API=http://localhost:3333
REACT_APP_FIREBASE_APIKEY=
REACT_APP_FIREBASE_AUTHDOMAIN=
REACT_APP_FIREBASE_PROJECTID=
REACT_APP_FIREBASE_STORAGEBUCKET=
REACT_APP_FIREBASE_MESSAGINGSENDERID=
REACT_APP_FIREBASE_APPID=
REACT_APP_FIREBASE_MEASUREMENTID=
2 changes: 2 additions & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
Expand All @@ -21,3 +22,4 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.vscode
yarn.lock
121 changes: 62 additions & 59 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,64 @@
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@lottiefiles/react-lottie-player": "^1.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.21.2",
"dotenv": "^8.2.0",
"react": "^16.13.1",
"react-awesome-slider": "^4.1.0",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-loading-skeleton": "^2.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-toastify": "^6.0.5",
"react-web-vector-icons": "^1.0.2",
"styled-components": "^5.1.1",
"styled-media-query": "^2.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.5"
}
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@lottiefiles/react-lottie-player": "^1.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.21.2",
"dotenv": "^8.2.0",
"firebase": "^10.4.0",
"formik": "^2.4.4",
"react": "^16.13.1",
"react-awesome-slider": "^4.1.0",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-loading-skeleton": "^2.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-toastify": "^6.0.5",
"react-web-vector-icons": "^1.0.2",
"styled-components": "^5.1.1",
"styled-media-query": "^2.1.2",
"yup": "^1.2.0"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start ",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.5"
}
}
11 changes: 10 additions & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import './services/firebase-config';
import React from 'react';
import Routes from './routes';
import { ChallengesContextProvider } from './contexts/ChallengesContext';
import { AuthContextProvider } from './contexts/AuthContext';

function App() {
return <Routes />;
return (
<AuthContextProvider>
<ChallengesContextProvider>
<Routes />
</ChallengesContextProvider>
</AuthContextProvider>
);
}

export default App;
1 change: 1 addition & 0 deletions frontend/src/components/CategoriesList/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ export const Techs = styled.section`
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 16px;
`;
3 changes: 1 addition & 2 deletions frontend/src/components/CategoryListItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ import Icon from 'react-web-vector-icons';
import * as S from './styled';

export default function CategoryListItem({ category }) {
const type = category.name.replace('-', '').toLowerCase();
return (
<S.Anchor
className="challenge-link"
to={{
pathname: `/challenges`,
search: `?type=${type}`,
search: `?type=${category.name}`,
}}
>
<S.Card>
Expand Down
8 changes: 1 addition & 7 deletions frontend/src/components/CategoryListItem/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@ import { Link } from 'react-router-dom';

export const Anchor = styled(Link)`
text-decoration: none;
margin: 0 25px 0 25px;

${media.lessThan('medium')`
margin: 15px 0px 10px 0px;
`}
`;

export const Card = styled.div`
width: 300px;
height: 300px;
background-color: var(--secondary);
border-radius: 20px;

cursor: pointer;
display: flex;
flex-direction: column;
Expand All @@ -38,5 +34,3 @@ export const Title = styled.h2`
margin-top: 0.6em;
`}
`;


45 changes: 28 additions & 17 deletions frontend/src/components/ChallengeCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@ import React, { useState, useEffect } from 'react';

import * as S from './styled';

const colorMatch = {
beginner: 'nephritis',
intermediate: 'pumpkin',
advanced: 'pomegranate',
Mobile: 'blue',
Frontend: 'red',
Backend: 'light-purple',
const colorMatch = (option) => {
switch (option) {
case 'Iniciante':
return 'nephritis';
case 'Intermediário':
return 'pumpkin';
case 'Avançado':
return 'pomegranate';
case 'Mobile':
return 'blue';
case 'Front-end':
return 'red';
case 'Back-end':
return 'light-purple';
default:
return 'green';
}
Comment on lines +5 to +21

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Acho que seria uma boa manter o objeto para fazer o matching, apenas para fins de simplicidade, já que podemos acessar com colorMatch[option]

};

function ChallengeCard({ challenge, progress, redirect, buttonText }) {
Expand All @@ -34,24 +44,21 @@ function ChallengeCard({ challenge, progress, redirect, buttonText }) {
}, [challenge.techs]);

return (
<S.ChallengeCard key={challenge._id}>
<S.Anchor to={`/challenges/${challenge._id}/details`}>
<S.ChallengeCard key={challenge.id}>
<S.Anchor to={`/challenges/${challenge.id}/details`}>
<S.CardImage>
<S.CardTechs>
{techs.map((item) => (
<p
className="tech"
key={`${item}-${challenge._id}`}
>
<p className="tech" key={`${item}-${challenge.id}`}>
{item}
</p>
))}
</S.CardTechs>
<S.CardPlatforms>
<S.Level color={colorMatch[challenge.type]}>
<S.Level color={colorMatch(challenge.type)}>
{challenge.type}
</S.Level>
<S.Level color={colorMatch[challenge.level]}>
<S.Level color={colorMatch(challenge.level)}>
{challenge.level}
</S.Level>
</S.CardPlatforms>
Expand All @@ -60,10 +67,14 @@ function ChallengeCard({ challenge, progress, redirect, buttonText }) {
{progress && <S.ProgressBar progress={progress} />}
</S.Anchor>
<S.CardContent>
<S.Anchor to={`/challenges/${challenge._id}/details`}>
<S.Anchor to={`/challenges/${challenge.id}/details`}>
<h1>{challenge.name}</h1>
</S.Anchor>
<p>{challenge.description}</p>{' '}
<p>
{challenge.description.length > 120
? challenge.description.substr(0, 120) + '...'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

String.substr está depreciado pela linguagem (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr), contudo, você pode usar substring ou slice para mesma finalidade

: challenge.description}
</p>{' '}
</S.CardContent>
<S.Anchor to={`${redirect}`}>
<S.Button>{buttonText}</S.Button>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/ChallengeCard/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export const CardImage = styled.div`
img {
transition: 0.3s;
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
}
img:hover {
transform: scale(1.1);
Expand Down
Loading