litle rewiev

main
Tulyaganov Shuhrat 2023-03-09 02:19:52 +03:00
parent f5656d5b21
commit 5c65782eef
8 changed files with 150 additions and 88 deletions

3
package-lock.json generated
View File

@ -15,9 +15,10 @@
"@testing-library/jest-dom": "^5.16.5", "@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0", "@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-scripts": "5.0.1", "react-scripts": "^5.0.1",
"web-vitals": "^2.1.4" "web-vitals": "^2.1.4"
}, },
"devDependencies": { "devDependencies": {

View File

@ -10,9 +10,10 @@
"@testing-library/jest-dom": "^5.16.5", "@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0", "@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-scripts": "5.0.1", "react-scripts": "^5.0.1",
"web-vitals": "^2.1.4" "web-vitals": "^2.1.4"
}, },
"scripts": { "scripts": {

View File

@ -21,7 +21,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: calc(10px + 2vmin); font-size: calc(10px + 2vmin);
color: white; color: rgb(255, 255, 255);
} }
.App-link { .App-link {

View File

@ -1,13 +1,12 @@
import './css/style.css' import './css/style.css'
import Main from './Pages/Main'; import Main from './Pages/Main'
function App() { function App() {
return ( return (
<div> <div>
<Main></Main> <Main />
</div> </div>
)
);
} }
export default App; export default App

View File

@ -5,10 +5,17 @@ import Typography from '@mui/material/Typography'
import styles from './GridComp.module.css' import styles from './GridComp.module.css'
const Rand = (min, max) => Math.floor(Math.random() * (max - min + 1) + min) const Rand = (min, max) => Math.floor(Math.random() * (max - min + 1) + min)
export default function GridComp() { export default function GridComp({ name }) {
return ( return (
<div>
<Typography
component="h1"
sx={{ fontSize: 25, fontFamily: 'Montserrat' }}
>
{name}
</Typography>
<Grid container spacing={2} sx={{ width: '100%' }} xs={9}> <Grid container spacing={2} sx={{ width: '100%' }} xs={9}>
{Array.from(Array(1000)).map(() => ( {Array.from(Array(8)).map(() => (
<Grid item xs={12} sm={3}> <Grid item xs={12} sm={3}>
<Card sx={{ height: '100%' }}> <Card sx={{ height: '100%' }}>
<a href="/" className={styles.aboximg}> <a href="/" className={styles.aboximg}>
@ -23,7 +30,9 @@ export default function GridComp() {
/> />
<img <img
alt="" alt=""
className={styles.imgPreViev} className={
styles.imgPreViev
}
src="https://avatars.mds.yandex.net/get-kinopoisk-image/4303601/1003770f-bc50-4ad5-b951-ea2b954a5300/360" src="https://avatars.mds.yandex.net/get-kinopoisk-image/4303601/1003770f-bc50-4ad5-b951-ea2b954a5300/360"
/> />
</div> </div>
@ -34,10 +43,16 @@ export default function GridComp() {
</a> </a>
<CardContent> <CardContent>
<Typography component="h5" className={styles.title}> <Typography
component="h5"
className={styles.title}
>
asdasdsasddasdasdasdasdasdasdas asdasdsasddasdasdasdasdasdasdas
</Typography> </Typography>
<Typography variant="body2" color="text.secondary"> <Typography
variant="body2"
color="text.secondary"
>
asfasfaasfasfa asfasfaasfasfa
</Typography> </Typography>
<Typography <Typography
@ -55,5 +70,6 @@ export default function GridComp() {
</Grid> </Grid>
))} ))}
</Grid> </Grid>
</div>
) )
} }

View File

@ -1,8 +1,22 @@
import React from 'react' import React from 'react'
import { AppBar, Toolbar, Typography, Button, IconButton } from '@mui/material' import {
AppBar,
Toolbar,
Typography,
Button,
IconButton,
Autocomplete,
TextField,
Stack,
} from '@mui/material'
import MenuIcon from '@mui/icons-material/Menu' import MenuIcon from '@mui/icons-material/Menu'
import { useState } from 'react'
const top100Films = []
export default function HeaderComp() { export default function HeaderComp() {
const [value, setValue] = useState('')
console.log(value)
return ( return (
<header> <header>
<AppBar position="static"> <AppBar position="static">
@ -23,6 +37,31 @@ export default function HeaderComp() {
> >
News News
</Typography> </Typography>
<Stack
spacing={2}
sx={{
width: 500,
maxWidth: '100%',
marginRight: '40%',
}}
>
<Autocomplete
id="free-solo-demo"
freeSolo
options={top100Films.map((option) => option.title)}
onInputChange={(event, newImputValue) => {
setValue(newImputValue)
}}
renderInput={(params) => (
// eslint-disable-next-line react/jsx-props-no-spreading
<TextField
// eslint-disable-next-line react/jsx-props-no-spreading
{...params}
label="freeSolo"
/>
)}
/>
</Stack>
<Button color="inherit">Login</Button> <Button color="inherit">Login</Button>
</Toolbar> </Toolbar>
</AppBar> </AppBar>

View File

@ -6,9 +6,14 @@ import HeaderComp from '../Components/HeaderComp/HeaderComp'
export default function Main() { export default function Main() {
return ( return (
<div> <div>
<Container>
<HeaderComp /> <HeaderComp />
<GridComp />
<Container>
<GridComp name="Новое" />
<div style={{ marginTop: '10%' }}>
<GridComp name="Новое" />
</div>
{/* <TestMedia></TestMedia> */} {/* <TestMedia></TestMedia> */}
</Container> </Container>
</div> </div>

View File

@ -1,8 +1,9 @@
body { body {
margin: 0; margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', background-color: #f2f2f2;
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
sans-serif; 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }