This commit is contained in:
QkoSad
2023-08-08 16:02:54 +03:00
commit 0a7a469d56
315 changed files with 426907 additions and 0 deletions
+29501
View File
File diff suppressed because it is too large Load Diff
+43
View File
@@ -0,0 +1,43 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.37",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.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"
]
}
}
+43
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>
+25
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"
}
+64
View File
@@ -0,0 +1,64 @@
import Content from "./components/Content";
import Header from "./components/Header";
import Total from "./components/Total";
import { CoursePart } from "./types";
const App = () => {
const courseName = "Half Stack application development";
const courseParts: CoursePart[] = [
{
name: "Fundamentals",
exerciseCount: 10,
description: "This is an awesome course part",
kind: "basic",
},
{
name: "Using props to pass data",
exerciseCount: 7,
groupProjectCount: 3,
kind: "group",
},
{
name: "Basics of type Narrowing",
exerciseCount: 7,
description: "How to go from unknown to string",
kind: "basic",
},
{
name: "Deeper type usage",
exerciseCount: 14,
description: "Confusing description",
backgroundMaterial:
"https://type-level-typescript.com/template-literal-types",
kind: "background",
},
{
name: "TypeScript in frontend",
exerciseCount: 10,
description: "a hard part",
kind: "basic",
},
{
name: "Backend development",
exerciseCount: 21,
description: "Typing the backend",
requirements: ["nodejs", "jest"],
kind: "special",
},
];
return (
<div>
<Header courseName={courseName} />
<Content courseParts={courseParts} />
<Total
total={courseParts.reduce(
(carry, part) => carry + part.exerciseCount,
0
)}
/>
</div>
);
};
export default App;
@@ -0,0 +1,21 @@
import Part from "./Part";
import { CoursePart } from "../types";
interface ContentProps {
courseParts: CoursePart[];
}
const Content = ({ courseParts }: ContentProps): JSX.Element => {
return (
<ul>
{courseParts.map((course, index) => {
return (
<li key={index}>
<Part course={course} />
</li>
);
})}
</ul>
);
};
export default Content;
@@ -0,0 +1,12 @@
interface HeaderProps {
courseName: string;
}
const Header = ({ courseName }: HeaderProps): JSX.Element => {
return (
<div>
<h1>{courseName}</h1>
</div>
);
};
export default Header;
+48
View File
@@ -0,0 +1,48 @@
import { CoursePart } from "../types";
const Part = ({ course }: { course: CoursePart }): JSX.Element => {
switch (course.kind) {
case "basic":
return (
<p>
{course.name} {course.exerciseCount} {course.description}
</p>
);
case "group":
return (
<p>
Course name {course.name}
Exercise Count {course.exerciseCount}
Group prject Count {course.groupProjectCount}
</p>
);
case "background":
return (
<p>
Course name {course.name}
Exercise Count {course.exerciseCount}
Description
{course.description}
Background material
{course.backgroundMaterial}
</p>
);
case "special":
return (
<p>
Course name {course.name}
Exercise Count {course.exerciseCount}
Description
{course.description}
Requirments{" "}
{course.requirements.map((el, inx) => (
<li key={inx}>{el}</li>
))}
</p>
);
default:
const exhausetiveCheck: never = course;
return exhausetiveCheck;
}
};
export default Part;
@@ -0,0 +1,8 @@
interface TotalProps {
total: number;
}
const Total = ({ total }: TotalProps): JSX.Element => {
return <p>Number of exercises {total}</p>;
};
export default Total;
+6
View File
@@ -0,0 +1,6 @@
import ReactDOM from 'react-dom/client'
import App from './App';
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<App />
)
+31
View File
@@ -0,0 +1,31 @@
interface CoursePartBase {
name: string;
exerciseCount: number;
}
interface CoursePartDescription extends CoursePartBase {
description: string;
}
interface CoursePartBasic extends CoursePartDescription {
kind: "basic";
}
interface CoursePartGroup extends CoursePartBase {
groupProjectCount: number;
kind: "group";
}
interface CoursePartBackground extends CoursePartDescription {
backgroundMaterial: string;
kind: "background";
}
interface CourseRequiriment extends CoursePartDescription {
requirements: string[];
kind: "special";
}
export type CoursePart =
| CoursePartBasic
| CoursePartGroup
| CoursePartBackground
| CourseRequiriment;
+26
View File
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}