Skip to content
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
12 changes: 12 additions & 0 deletions modulo6/rodada-cases-numero1/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
23 changes: 23 additions & 0 deletions modulo6/rodada-cases-numero1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
70 changes: 70 additions & 0 deletions modulo6/rodada-cases-numero1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

The page will reload when you make changes.\
You may also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
41 changes: 41 additions & 0 deletions modulo6/rodada-cases-numero1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "astromatch",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"styled-components": "^5.3.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
20 changes: 20 additions & 0 deletions modulo6/rodada-cases-numero1/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
/>

<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
16 changes: 16 additions & 0 deletions modulo6/rodada-cases-numero1/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Router from "./router/routes";
import { MainContainer, GlobalStyle } from "./global/globalStyles";
import { GameProvider } from "./context";

function App() {
return (
<GameProvider>
<MainContainer>
<GlobalStyle />
<Router />
</MainContainer>
</GameProvider>
);
}

export default App;
52 changes: 52 additions & 0 deletions modulo6/rodada-cases-numero1/src/components/TarotCard/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import React, { useEffect } from 'react'
import { useState } from 'react';
import { useGameContext } from '../../context';
import { FullCardContainer, CardContainer } from './styles'

const TarotCard = ({ card }) => {
const [active, setActive] = useState(false);
const { count, handleAddCount } = useGameContext()

const frontImage = card.front + card.card.image;
const backImage = card.back;

const handleShowCard = () => {
setActive(!active)

handleAddCount(1)
}

useEffect(() => {

}, [active])

return (
<>
{
count === 1 && !active ? (
<></>
) : (
<FullCardContainer>
<CardContainer onClick={count === 0 ? () => handleShowCard() : {}}
>
<div className={`flipper ${!active && "desactive"}`}>
<div className='front'>
<img src={frontImage} alt="Frente" />
</div>
<div className='back'>
<img src={backImage} alt="Verso" />
</div>
</div>
</CardContainer>
<section className={`informations ${(count === 1 && active) && "show"}`}>
<h4>{card.card.name}</h4>
<p>Accusam voluptua consetetur accusam lorem vero.</p>
</section>
</FullCardContainer>
)
}
</>
)
}

export default TarotCard;
80 changes: 80 additions & 0 deletions modulo6/rodada-cases-numero1/src/components/TarotCard/styles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import styled from 'styled-components';

export const FullCardContainer = styled.div `
width: auto;
height: auto;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

aside.hide {
display: none;
}

.informations {
display: none;
}

.informations.show {
width: 150px;

display: block;

text-align: center;

margin: 20px 0 0;

h4 {
margin: 0 0 10px;
height: 40px;
}
}
`

export const CardContainer = styled.aside`
width: 120px;
height: 200px;
display: inline-block;

perspective: 1000px;

cursor: pointer;


.flipper {
position: relative;

width: 100%;
height: 100%;

transition: transform 0.8s;

transform-style: preserve-3d;

.front, .back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;

img {
width: 100%;
height: 100%;

border-radius: 5px;

box-shadow: 0 1px 5px #0e0e0e;
}
}

.back {
transform: rotateY(180deg);
}
}

.flipper.desactive {
transform: rotateY(180deg);
}
`
39 changes: 39 additions & 0 deletions modulo6/rodada-cases-numero1/src/context/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { createContext, useContext, useState } from 'react'

const GameContext = createContext({});

export const GameProvider = ({ children }) => {
const [cards, setCards] = useState({});
const [count, setCount] = useState(0);
const [activeAll, setActiveAll] = useState(true)

const handleSaveCards = (newCards) => {
setCards(newCards);
}

const handleAddCount = () => {
setCount(count + 1);
}

const handleActiveAll = (status) => {
setActiveAll(status);
}

return (
<GameContext.Provider value={{
cards, handleSaveCards,
count, handleAddCount,
activeAll, handleActiveAll
}}>
{children}
</GameContext.Provider>
)
}

export const useGameContext = () => {
const context = useContext(GameContext);

if (!context) throw new Error('usePriceRange must be within an GameProvider');

return context;
}
24 changes: 24 additions & 0 deletions modulo6/rodada-cases-numero1/src/global/globalStyles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import styled, { createGlobalStyle } from 'styled-components';

export const GlobalStyle = createGlobalStyle`
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}

body, html {
width: 100%;
height: 100vh;
}
`;

export const MainContainer = styled.div `
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
`
Loading