classes starting

This commit is contained in:
Tyrel Souza 2022-09-26 15:09:43 -04:00
parent 2c39f2b8d8
commit 3aea048750
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
15 changed files with 36784 additions and 0 deletions

36552
component_updates/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,34 @@
{
"name": "react-the-complete-guide",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.1",
"@testing-library/user-event": "^7.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "4.0.3"
},
"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"
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

View File

@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

View File

@ -0,0 +1,14 @@
.app {
margin: 3rem auto;
width: 30rem;
padding: 1rem;
background: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
border-radius: 10px;
text-align: center;
}
.app h1 {
margin: 0;
text-align: center;
}

View File

@ -0,0 +1,32 @@
import React, { useState, useCallback } from "react";
import Button from "./components/UI/Button/Button";
import "./App.css";
import DemoOutput from "./components/Demo/DemoOutput";
function App() {
const [showParagraph, setShowParagraph] = useState(false);
const [allowToggle, setAllowtoggle] = useState(false);
console.log("App Running");
const toggleParagraphHandler = useCallback(() => {
if (allowToggle) {
setShowParagraph((prevShow) => !prevShow);
}
}, [allowToggle]);
const allowToggleHandler = () => {
setAllowtoggle(true);
};
return (
<div className="app">
<h1>Hi there!</h1>
<Button onClick={allowToggleHandler}>Allow Toggling</Button>
<Button onClick={toggleParagraphHandler}>Toggle Paragraph</Button>
<DemoOutput show={showParagraph} />
</div>
);
}
export default App;

View File

@ -0,0 +1,8 @@
import React from "react";
function DemoOutput(props) {
console.log("demo")
return <p>{props.show ? "This is New" : ""}</p>;
}
export default React.memo(DemoOutput);

View File

@ -0,0 +1,19 @@
import React from 'react';
import classes from './Button.module.css';
const Button = (props) => {
console.log("button")
return (
<button
type={props.type || 'button'}
className={`${classes.button} ${props.className}`}
onClick={props.onClick}
disabled={props.disabled}
>
{props.children}
</button>
);
};
export default React.memo(Button);

View File

@ -0,0 +1,30 @@
.button {
font: inherit;
border: 1px solid #4f005f;
background: #4f005f;
color: white;
padding: 0.75rem 3.5rem;
cursor: pointer;
font-size: 1.15rem;
border-radius: 30px;
}
.button:hover,
.button:active {
background: #741188;
border-color: #741188;
}
.button:focus {
outline: none;
}
button:disabled,
button:focus:disabled,
button:hover:disabled,
button:active:disabled {
background: #ccc;
border-color: #ccc;
color: #666666;
cursor: not-allowed;
}

View File

@ -0,0 +1,16 @@
* {
box-sizing: border-box;
}
html {
font-family: sans-serif;
background: #fff;
}
body {
margin: 0;
}
main {
margin-top: 6rem;
}

View File

@ -0,0 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);