assignment5 Code

This commit is contained in:
veerjot_dm 2025-01-06 18:03:17 +05:30
parent a3ddd2518b
commit 919263ee9d
22 changed files with 17678 additions and 0 deletions

17395
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

37
package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "blog_app",
"version": "0.1.0",
"private": true,
"dependencies": {
"cra-template": "1.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"react-scripts": "5.0.1",
"web-vitals": "^4.2.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"
]
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

43
public/index.html Normal file
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>

BIN
public/logo192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
public/logo512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

25
public/manifest.json Normal file
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"
}

3
public/robots.txt Normal file
View file

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

1
src/App.css Normal file
View file

@ -0,0 +1 @@

13
src/App.js Normal file
View file

@ -0,0 +1,13 @@
import './App.css';
import React from 'react';
import Layout from './Component/Layout';
function App() {
return (
<div className="App">
<Layout />
</div>
);
}
export default App;

8
src/App.test.js Normal file
View file

@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});

42
src/Component/Body.js Normal file
View file

@ -0,0 +1,42 @@
import React, { useState, useEffect } from 'react';
import { api_url } from '../env';
import "/Users/dml-veerjot/Documents/development/html/blog_app/src/styleing/body.css";
function Body() {
const [data, setData] = useState([]);
const [error, setError] = useState(null);
const fetchData = async () => {
try {
const res = await fetch(api_url);
const d = await res.json();
setData(d);
} catch (e) {
setError(e);
}
};
useEffect(() => {
fetchData();
}, []);
if (error) {
return <div>Error: {error.message}</div>;
}
return (
<div className="App">
<ul>
{data.map((post) => (
<li key={post?.id}>
<h1> Title :{post?.title}</h1>
<p> <b>Content :</b>{post?.body}</p>
</li>
))}
</ul>
</div>
);
}
export default Body;

24
src/Component/Layout.js Normal file
View file

@ -0,0 +1,24 @@
import React from "react";
import Body from "./Body";
import "/Users/dml-veerjot/Documents/development/html/blog_app/src/styleing/layout.css";
const Layout = () => {
return (
<div className="contentPage">
<div className="header">
<h2 className="heading"> Latest Blogs</h2>
<input
className="search"
type="text"
name="searchBlog"
placeholder="Search Blog here"
/>
</div>
<div className="body">
<Body />
</div>
</div>
);
};
export default Layout;

View file

0
src/Component/addPost.js Normal file
View file

1
src/env.js Normal file
View file

@ -0,0 +1 @@
export const api_url = "https://jsonplaceholder.typicode.com/posts";

13
src/index.css Normal file
View file

@ -0,0 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

17
src/index.js Normal file
View file

@ -0,0 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();

13
src/reportWebVitals.js Normal file
View file

@ -0,0 +1,13 @@
const reportWebVitals = onPerfEntry => {
if (onPerfEntry && onPerfEntry instanceof Function) {
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
getCLS(onPerfEntry);
getFID(onPerfEntry);
getFCP(onPerfEntry);
getLCP(onPerfEntry);
getTTFB(onPerfEntry);
});
}
};
export default reportWebVitals;

5
src/setupTests.js Normal file
View file

@ -0,0 +1,5 @@
// jest-dom adds custom jest matchers for asserting on DOM nodes.
// allows you to do things like:
// expect(element).toHaveTextContent(/react/i)
// learn more: https://github.com/testing-library/jest-dom
import '@testing-library/jest-dom';

17
src/styleing/body.css Normal file
View file

@ -0,0 +1,17 @@
.App{
/* background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255, 0, 0, 0.163)); */
}
ul{
list-style-type: none;
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
}
li{
border: 2px solid black;
}

21
src/styleing/layout.css Normal file
View file

@ -0,0 +1,21 @@
.header{
background-image:linear-gradient(skyblue,rgb(230, 116, 116)) ;
height: auto;
width: 100%;
padding: 5px;
margin-top: -16px;
}
.heading{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: xx-large;
color: black;
}
.search{
display: flex;
margin-left: 125cap;
padding: 10px;
border: 1px solid black;
border-radius: 10px ;
}