Compare commits

...

3 Commits

29 changed files with 19509 additions and 1 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

9
.idea/Price_Pulse.iml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Price_Pulse.iml" filepath="$PROJECT_DIR$/.idea/Price_Pulse.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -8,12 +8,13 @@ import io
import joblib
from flask import Flask, request, jsonify, Blueprint, send_file
from flasgger import Swagger
from flask_cors import CORS
app = Flask(__name__)
api = Blueprint('api', __name__)
Swagger(app)
CORS(app)
# Загружаем модель и scaler
model = load_model("my_model_1H.keras")
scaler = MinMaxScaler(feature_range=(0, 1))

23
my-app/.gitignore vendored Normal file
View File

@ -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
my-app/README.md Normal file
View File

@ -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)

18406
my-app/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

51
my-app/package.json Normal file
View File

@ -0,0 +1,51 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"react": "^18.3.1",
"react-datepicker": "^7.4.0",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"react-scripts": "5.0.1",
"recharts": "^2.12.7",
"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"
]
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
}
}

BIN
my-app/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

43
my-app/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
my-app/public/logo192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
my-app/public/logo512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

BIN
my-app/public/main.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 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"
}

3
my-app/public/robots.txt Normal file
View File

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

82
my-app/src/App.css Normal file
View File

@ -0,0 +1,82 @@
.homepage {
}
.title {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
}
.main-image {
max-width: 66%;
border-radius: 10px;
margin-bottom: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}
.datePickerInput {
border-radius: 0.5rem; /* Закругление углов */
background-color: #ffffff; /* Цвет фона */
min-width: 100%; /* Минимальная ширина */
height: 50px; /* Высота */
font-size: 20px; /* Размер шрифта */
border: 1px solid #c2c2bf; /* Цвет рамки */
justify-content: center;
}
.input-field {
margin-bottom: 20px;
}
/*.date-pickers {
display: flex;
gap: 10px;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}*/
.datePicker {
min-width: 46.5%;
justify-content: center;
}
.date-separator {
font-size: 18px;
color: #333;
}
/*.date-picker {
width: 200px;
height: 40px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
cursor: pointer;
background-color: #fff;
font-size: 20px;
color: #333;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}*/
/*.react-datepicker__input-container {
padding: 0;
background-color: transparent;
font-size: inherit;
color: inherit;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}*/
.get-button {
margin-top: 20px;
}

375
my-app/src/App.js Normal file
View File

@ -0,0 +1,375 @@
import React, { useState, useEffect } from 'react';
import { ThemeProvider, createTheme } from '@mui/material/styles';
import DatePicker from 'react-datepicker';
import 'react-datepicker/dist/react-datepicker.css';
import { useNavigate } from "react-router-dom";
import { Grid, Button, Typography, Select, MenuItem, Alert, FormControl, TextField } from '@mui/material';
import axios from 'axios';
import './App.css';
function HomePage() {
const navigate = useNavigate();
const [startDate, setStartDate] = useState(new Date());
const [endDate, setEndDate] = useState(new Date());
const [selectedMarketplace, setSelectedMarketplace] = useState('');
const [categories, setCategories] = useState([]);
const [marketplaces, setMarketplaces] = useState([]);
const [productUrl, setProductUrl] = useState('');
const [showPriceHistoryError, setShowPriceHistoryError] = useState(false);
const [showResultError, setShowResultError] = useState(false);
const [selectedCategory, setSelectedCategory] = useState('');
useEffect(() => {
const fetchMarketplaces = async () => {
try {
const response = await axios.get('https://mgpj3mxm-8080.euw.devtunnels.ms/api/v1/marketplaces');
setMarketplaces(response.data);
} catch (error) {
console.error('Error fetching marketplaces:', error);
}
};
fetchMarketplaces();
}, []);
useEffect(() => {
const fetchCategories = async () => {
try {
if (selectedMarketplace) {
console.log(selectedMarketplace)
const response = await axios.get(`https://mgpj3mxm-8080.euw.devtunnels.ms/api/v1/categories?marketplace=${selectedMarketplace}`);
setCategories(response.data);
}
} catch (error) {
console.error('Error fetching categories:', error);
}
};
fetchCategories();
}, [selectedMarketplace]);
const handleSubmit = () => {
if (selectedCategory !== "" || selectedMarketplace !== "") {
navigate('/result', {
state: { startDate, endDate, selectedMarketplace, selectedCategory }
});
} else {
setShowResultError(true);
}
};
const handleCategoryChange = (event) => {
setSelectedCategory(event.target.value);
};
const handleProductUrlChange = (event) => {
setProductUrl(event.target.value);
};
const handleViewPriceHistory = async () => {
if (!productUrl) {
setShowPriceHistoryError(true);
return;
}
// Проверка существования товара по ссылке
try {
const response = await fetch(`https://mgpj3mxm-8080.euw.devtunnels.ms/api/v1/products/info?productUrl=${productUrl}`);
console.log(response.data);
if (response.ok) {
// Товар найден
navigate('/viewProduct', { state: { productUrl } });
} else {
// Товар не найден
setShowPriceHistoryError(true);
}
} catch (error) {
console.error("Ошибка проверки товара:", error);
setShowPriceHistoryError(true);
}
};
const handleButtonClick = (marketplaceName) => {
if (selectedMarketplace === marketplaceName) {
setSelectedMarketplace('');
} else {
setSelectedMarketplace(marketplaceName);
setSelectedCategory('');
}
};
const handleMarketplaceChange = (event) => {
setSelectedMarketplace(event.target.value);
};
const today = new Date();
const [startDateError, setStartDateError] = useState(false);
const [endDateError, setEndDateError] = useState(false);
const handleStartDateChange = (date) => {
if (date <= today) {
setStartDate(date);
setStartDateError(false);
} else {
setStartDateError(true);
}
};
const handleEndDateChange = (date) => {
if (date <= today && date >= startDate) {
setEndDate(date);
setEndDateError(false);
} else {
setEndDateError(true);
}
};
const theme = createTheme({
palette: {
primary: {
main: '#2a8e9e',
},
secondary: {
main: '#023247',
},
},
typography: {
fontFamily: ['Montserrat', 'sans-serif'].join(','),
h3: {
fontWeight: 700,
fontSize: '2.5rem',
},
body1: {
fontSize: '1.1rem',
},
},
});
return (
<ThemeProvider theme={theme}>
<div className="homepage" style={{ padding: '2rem', backgroundColor: '#d8eaff', height: '95vh', display: 'flex', flexDirection: 'column' }}>
<Grid container spacing={4} style={{ flexGrow: 1 }}>
<Grid item xs={12} md={6}>
<div
style={{
backgroundColor: '#fcfcf8',
borderRadius: '1rem',
padding: '2rem',
height: '90%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center'
}}
>
<Typography variant="h1" gutterBottom style={{ color: '#132a52', marginBottom: '1.5rem', fontWeight: 'bold' }}>
Price Pulse
</Typography>
<div className="description" style={{ color: '#16305e' }}>
<Typography variant="h3" gutterBottom>
<span style={{ fontWeight: 'bold' }}>
Платформа предназначена для сбора, анализа и рекомендаций,
<br></br>
исходя из собранных данных с общедоступных маркетплейсов.
</span>
</Typography>
<br></br>
<Typography variant="h4" gutterBottom>
Выберите маркетплейсы, которые вас интересуют:
</Typography>
<Grid container spacing={2}>
{marketplaces.map((marketplace) => {
if (marketplace === 'WILDBERRIES' || marketplace === 'OZON') {
return (
<Grid item key={marketplace.name}>
<Button
variant="contained"
color="primary"
className="marketplace-button"
style={{
backgroundColor: selectedMarketplace === marketplace ? marketplace.bgColor : '#fcfcf8',
color: selectedMarketplace === marketplace ? marketplace.textColor : '#16305e',
borderRadius: '0.5rem',
padding: '1rem',
display: 'flex',
flexDirection: 'column',
maxHeight: '150px',
alignItems: 'center',
minWidth: '400px',
}}
onClick={() => handleButtonClick(marketplace)}
>
{marketplace === 'WILDBERRIES' ? (
<img src="https://png.klev.club/uploads/posts/2024-04/png-klev-club-dejs-p-wildberries-logotip-png-16.png" alt="Wildberries" style={{ width: '60px', height: '60px', marginBottom: '0.5rem' }} />
) : (
<img src="https://pngimg.com/d/ozon_PNG3.png" alt="Ozon" style={{ width: '60px', height: '60px', marginBottom: '0.5rem' }} />
)}
<Typography variant="h5" gutterBottom style={{ color: selectedMarketplace === marketplace ? marketplace.textColor : '#16305e', marginBottom: '0rem' }}>
{marketplace}
</Typography>
</Button>
</Grid>
);
}
return null; // Для остальных названий, возвращаем null, чтобы не рендерить ничего
})}
</Grid>
<br></br>
{/* Комбобокс */}
<Typography variant="h4" gutterBottom>
Выберите категорию:
</Typography>
<FormControl variant="outlined" style={{ minWidth: '97%' }}>
<Select
labelId="marketplace-select-label"
value={selectedCategory}
onChange={handleCategoryChange}
style={{
color: '#023247',
borderColor: '#4875b2',
borderRadius: '0.5rem', // Цвет текста выпадающего списка
}}
inputProps={{
style: {
borderColor: '#4875b2', // Цвет рамки
},
}}
MenuProps={{
PaperProps: {
style: {
color: '#023247', // Цвет текста выпадающего меню
},
},
}}
>
{categories.map((category) => (
<MenuItem key={category} value={category} onChange={handleCategoryChange}>
{category}
</MenuItem>
))}
</Select>
<br></br>
</FormControl>
<br></br>
<Button
variant="contained"
color="primary"
className="submit-button"
onClick={handleSubmit}
style={{
borderRadius: '0.5rem',
padding: '0.75rem 1.5rem',
backgroundColor: '#4875b2',
marginTop: '1.5rem',
minWidth: '97%', // Можно оставить или изменить на '100%'
}}
>
<Typography variant="h5" gutterBottom style={{ color: '#fcfcfb', marginBottom: '0rem' }}>
Получить рекомендации
</Typography>
</Button>
{showResultError && (
<Alert severity="error" style={{ width: '94%', marginTop: '1rem' }}>
Выберите маркетплейс и категорию
</Alert>
)}
</div>
</div>
</Grid>
<Grid item xs={12} md={6}>
<div
style={{
backgroundColor: '#fcfcf8',
borderRadius: '1rem',
padding: '2rem',
height: '90%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'flex-start',
alignItems: 'center',
}}
>
<div style={{
position: 'relative',
width: '97%',
height: 'auto', // Изменение на auto для высоты
overflow: 'hidden',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
}}>
<img
src="https://cdn.prod.website-files.com/61ebe5f773be1acd620f8208/61fb879dfccdca6a20c66d4a_e-commerce-marketplace.gif"
alt=""
className="main-image"
style={{
borderRadius: '0.5rem',
maxWidth: '66%',
height: 'auto',
}}
/>
</div>
<Typography variant="h4" style={{
color: '#132a52',
width: '80%',
textAlign: 'center',
}}>
Вы можете посмотреть историю изменения цены конкретного товара при помощи его URL.
</Typography>
<Typography variant="h4" style={{
color: '#132a52',
width: '80%',
textAlign: 'center',
marginTop: '1rem',
}}>
Введите ссылку на товар:
</Typography>
<TextField
label="Ссылка на товар"
placeholder="https://www.ozon.ru/..."
variant="outlined"
fullWidth
value={productUrl}
onChange={handleProductUrlChange}
style={{
marginTop: '1rem', // Теперь пространство между текстом и полем ввода
maxWidth: '97%',
}}
/>
<Button
variant="contained"
color="primary"
onClick={handleViewPriceHistory}
style={{
borderRadius: '0.5rem',
padding: '0.75rem 1.5rem',
backgroundColor: '#4875b2',
marginTop: '1.5rem',
minWidth: '97%'
}}
>
<Typography variant="h5" gutterBottom style={{ color: '#fcfcfb', marginBottom: '0rem' }}>
Посмотреть историю цены
</Typography>
</Button>
{showPriceHistoryError && (
<Alert severity="error" style={{ width: '94%', marginTop: '1rem', textAlign: 'center' }}>
Неверный URL товара или товар не найден.
</Alert>
)}
</div>
</Grid>
</Grid>
</div>
</ThemeProvider>
);
}
export default HomePage;

8
my-app/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();
});

19
my-app/src/AppRouter.js Normal file
View File

@ -0,0 +1,19 @@
import React from 'react';
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import App from './App';
import Result from './Result';
import ViewProduct from './ViewProduct';
const AppRouter = () => {
return (
<Router>
<Routes>
<Route path="/" element={<App />} />
<Route path="/result" element={<Result />} />
<Route path="/viewProduct" element={<ViewProduct />} />
</Routes>
</Router>
);
};
export default AppRouter;

136
my-app/src/Result.js Normal file
View File

@ -0,0 +1,136 @@
import React, { useState, useEffect } from 'react';
import { useLocation, useNavigate } from 'react-router-dom';
import { ThemeProvider, createTheme } from '@mui/material/styles';
import { Typography, Box, Grid, Container, Card, CardContent, CardHeader, Button, CircularProgress } from '@mui/material';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
const Result = () => {
const location = useLocation();
const navigate = useNavigate();
const { startDate, endDate, selectedMarketplace, selectedCategory } = location.state || {};
const [predictData, setPredictData] = useState(null);
const [loading, setLoading] = useState(true);
const [imageUrl, setImageUrl] = useState('');
useEffect(() => {
const fetchPredictPrice = async () => {
try {
const response = await fetch('http://localhost:5000/api/predict_price');
if (response.ok) {
const data = await response.json();
console.log(data);
setPredictData(data);
} else {
console.error("Ошибка запроса к API");
}
} catch (error) {
console.error("Ошибка при получении данных:", error);
}
};
const fetchChart = async () => {
try {
const response = await fetch('http://localhost:5000/api/plot');
if (!response.ok) {
throw new Error('Network response was not ok');
}
const blob = await response.blob();
const url = URL.createObjectURL(blob);
setImageUrl(url);
} catch (error) {
console.error('Ошибка при загрузке графика:', error);
} finally {
setLoading(false);
}
};
fetchChart();
fetchPredictPrice();
}, []);
const theme = createTheme({
palette: {
primary: {
main: '#2a8e9e',
},
secondary: {
main: '#023247',
},
},
typography: {
fontFamily: ['Montserrat', 'sans-serif'].join(','),
h3: {
fontWeight: 700,
fontSize: '2.5rem',
},
body1: {
fontSize: '1.1rem',
},
},
});
return (
<ThemeProvider theme={theme}>
<div className="result-page" style={{ padding: '2rem', backgroundColor: '#d8eaff' }}>
<Container maxWidth="md">
<Box mt={4}>
<Typography variant="h3" gutterBottom align="center" style={{ color: '#023247' }}>
Результаты анализа
</Typography>
</Box>
<Button
variant="contained"
onClick={() => navigate(-1)}
sx={{ mb: 2, backgroundColor: '#2a8e9e', color: '#fcfcf8', '&:hover': { backgroundColor: '#023247' } }}
>
Назад
</Button>
<Grid container spacing={3} mt={2}>
<Grid item xs={12}>
<Card style={{ backgroundColor: '#fcfcf8', borderRadius: '1rem' }}>
<CardHeader title="Исходные данные" style={{ color: '#023247' }} />
<CardContent>
<Typography variant="body1" gutterBottom style={{ color: '#023247' }}>
Выбранный маркетплейс: {selectedMarketplace}
</Typography>
<Typography variant="body1" gutterBottom style={{ color: '#023247' }}>
Выбранная категория: {selectedCategory}
</Typography>
</CardContent>
</Card>
</Grid>
<Grid item xs={12}>
<Card style={{ backgroundColor: '#fcfcf8', borderRadius: '1rem' }}>
<CardHeader title="Анализ" style={{ color: '#023247' }} />
<CardContent>
{loading ? (
<CircularProgress />
) : (
<img src={imageUrl} alt="График предсказанных и фактических цен" style={{ width: '100%', borderRadius: '1rem' }} />
)}
</CardContent>
</Card>
</Grid>
<Grid item xs={12}>
<Card style={{ backgroundColor: '#fcfcf8', borderRadius: '1rem' }}>
<CardHeader title="Рекомендации" style={{ color: '#023247' }} />
<CardContent>
<Typography variant="body1" gutterBottom style={{ color: '#023247' }}>
{predictData ? (
`Продукт лучше покупать в ${predictData.min_price_day.date}. Предсказанная цена: ${predictData.min_price_day.price} руб.`
) : (
"Загрузка данных..."
)}
</Typography>
</CardContent>
</Card>
</Grid>
</Grid>
</Container>
</div>
</ThemeProvider>
);
};
export default Result;

185
my-app/src/ViewProduct.js Normal file
View File

@ -0,0 +1,185 @@
import React, { useState, useEffect } from 'react';
import { useLocation, useNavigate } from 'react-router-dom';
import { ThemeProvider, createTheme } from '@mui/material/styles';
import { Typography, Box, Grid, Container, Card, CardContent, CardHeader, Button } from '@mui/material';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
const ViewProduct = () => {
// const productData = {
// marketplaceName: 'OZON',
// link: 'https://www.ozon.ru/product/dt-retail-lt1-11-noutbuk-15-intel-celeron-n5095-ram-16-gb-ssd-512-gb-intel-uhd-graphics-windows-1660307910/?asb=bTlMJ%252Be%252BwTSvSMWf9FdQsDHYHE16shxbl6Wx6jH%252FrSw%253D&asb2=t80whxB1azJcjh95gA5dFGpG5UrhBd0POEAUHfzbXLnsoewHh99YxUCYki71WO2qUajSTcLDQ-A7vhxpFaEp3g&avtc=1&avte=4&avts=1731442704&keywords=%D0%BD%D0%BE%D1%83%D1%82%D0%B1%D1%83%D0%BA',
// brand: 'DT Retail',
// productName: 'DT Retail LT1-11 Ноутбук 15", Intel Celeron N5095, RAM 16 ГБ, SSD 512 ГБ, Intel UHD Graphics, Windows Pro, серый металлик, зеркальный, Русская раскладка',
// image: 'https://static.ru-mi.com/upload/resize_cache/iblock/875/440_440_1/2lip1znmyjfyay047kocswwpjqz71nhk.jpg',
// priceHistory: [
// { date: '2023-10-27', price: 100.00 },
// { date: '2023-10-26', price: 105.00 },
// { date: '2023-10-25', price: 102.00 },
// { date: '2023-10-27', price: 100.00 },
// { date: '2023-10-26', price: 105.00 },
// { date: '2023-10-25', price: 102.00 }
// ],
// };
const location = useLocation();
const navigate = useNavigate();
const date = new Date();
const zoneOffset = date.getTimezoneOffset();
const hours = Math.floor(Math.abs(zoneOffset) / 60);
const minutes = Math.abs(zoneOffset) % 60;
const sign = zoneOffset >= 0 ? '+' : '-';
// Исправлено: использование шаблонных строк для форматирования часового пояса
const formattedZoneOffset = `${sign}${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}`;
// Определение 'to' как текущая дата
const to = date.toISOString().split('T')[0]; // Текущая дата в формате YYYY-MM-DD
const from = new Date(date);
from.setDate(date.getDate() - 30); // Дата минус 30 дней
const formattedFrom = from.toISOString().split('T')[0]; // Дата в формате YYYY-MM-DD
// Извлечение productUrl из состояния location
const { productUrl } = location.state || {};
const [productData, setProductData] = useState(null);
const [chartData, setChartData] = useState([]);
useEffect(() => {
const fetchProductData = async () => {
try {
const response = await fetch(`https://mgpj3mxm-8080.euw.devtunnels.ms/api/v1/products/info?productUrl=${productUrl}`);
if (response.ok) {
const data = await response.json();
setProductData(data);
} else {
console.error("Ошибка запроса к API");
}
} catch (error) {
console.error("Ошибка при получении данных:", error);
}
};
const fetchPriceHistory = async () => {
try {
const response = await fetch(`https://mgpj3mxm-8080.euw.devtunnels.ms/api/v1/products/price-history?productUrl=${productUrl}&from=${formattedFrom}&to=${to}&zoneOffset=${formattedZoneOffset}`);
if (response.ok) {
const priceHistoryData = await response.json();
// Преобразование данных в нужный формат
const priceHistory = Object.entries(priceHistoryData.priceHistory).map(([date, price]) => ({
date: new Date(date), // Преобразование строки даты в объект Date
price: price,
}));
// Сортировка по дате
const sortedPriceHistory = priceHistory.sort((a, b) => a.date - b.date);
setChartData(sortedPriceHistory);
} else {
console.error("Ошибка запроса к API");
}
} catch (error) {
console.error("Ошибка при получении данных:", error);
}
};
fetchProductData();
fetchPriceHistory();
}, [productUrl, formattedFrom, to, formattedZoneOffset]);
const theme = createTheme({
palette: {
primary: {
main: '#2a8e9e',
},
secondary: {
main: '#023247',
},
},
typography: {
fontFamily: ['Montserrat', 'sans-serif'].join(','),
h3: {
fontWeight: 700,
fontSize: '2.5rem',
},
body1: {
fontSize: '1.1rem',
},
},
});
// const chartData = productData.priceHistory.map((entry) => ({
// date: new Date(entry.date).getTime(),
// price: entry.price,
// }));
return (
<ThemeProvider theme={theme}>
<div className="result-page" style={{ padding: '2rem', backgroundColor: '#d8eaff' }}>
<Container maxWidth="md">
<Box mt={4}>
<Typography variant="h3" gutterBottom align="center" style={{ color: theme.palette.secondary.main }}>
Просмотр товара
</Typography>
</Box>
<Button
variant="contained"
onClick={() => navigate(-1)}
sx={{ mb: 2, backgroundColor: theme.palette.primary.main, color: '#fcfcf8', '&:hover': { backgroundColor: theme.palette.secondary.main } }}
>
Назад
</Button>
{productData && (
<Grid container spacing={3} mt={2}>
<Grid item xs={12}>
<Card style={{ backgroundColor: '#fcfcf8', borderRadius: '1rem' }}>
<CardContent>
<Typography variant="h5" gutterBottom style={{ color: theme.palette.secondary.main, fontWeight: 'bold' }}>
{productData.marketplaceName}
</Typography>
<Typography variant="body1" gutterBottom style={{ color: theme.palette.secondary.main }}>
<a href={productUrl} target="_blank" rel="noopener noreferrer" style={{ color: theme.palette.primary.main, textDecoration: 'underline' }}>
Перейти на страницу товара
</a>
</Typography>
<Typography variant="body1" gutterBottom style={{ color: theme.palette.secondary.main, fontWeight: 'bold' }}>
{productData.productName}
</Typography>
<img
src={productData.imageUrl}
alt={productData.productName}
style={{ maxWidth: '500px', maxHeight: '500px', margin: '1rem auto', display: 'block' }}
/>
</CardContent>
</Card>
</Grid>
<Grid item xs={12}>
<Card style={{ backgroundColor: '#fcfcf8', borderRadius: '1rem' }}>
<CardHeader title="История цен" style={{ color: theme.palette.secondary.main }} />
<CardContent>
<LineChart width={600} height={300} data={chartData}>
<XAxis
dataKey="date"
tickFormatter={(unixTime) => new Date(unixTime).toLocaleDateString()}
tickMargin={10}
stroke={theme.palette.secondary.main}
/>
<YAxis stroke={theme.palette.secondary.main} />
<CartesianGrid stroke="#f5f5f5" />
<Tooltip />
<Legend />
<Line type="monotone" dataKey="price" stroke={theme.palette.primary.main} activeDot={{ r: 8 }} />
</LineChart>
</CardContent>
</Card>
</Grid>
</Grid>
)}
</Container>
</div>
</ThemeProvider>
);
};
export default ViewProduct;

BIN
my-app/src/image.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

13
my-app/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
my-app/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 AppRouter from './AppRouter';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<AppRouter />
</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();

1
my-app/src/logo.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

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
my-app/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';