4_1
@ -12,6 +12,9 @@ header{
|
|||||||
background: #c03000;
|
background: #c03000;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
border-radius: 4% / 60%;
|
border-radius: 4% / 60%;
|
||||||
|
font-family: "ITCErasStd-Bold";
|
||||||
|
font-size: 25px;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
.logo {
|
.logo {
|
||||||
height: 45px;
|
height: 45px;
|
||||||
@ -120,8 +123,3 @@ header{
|
|||||||
background-color: white;
|
background-color: white;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
@media(max-width: 400px){
|
|
||||||
.logo{
|
|
||||||
height: 30px;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,33 +1,24 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
'env': {
|
root: true,
|
||||||
'browser': true,
|
env: { browser: true, es2020: true },
|
||||||
'es2021': true,
|
extends: [
|
||||||
'node': true,
|
'airbnb-base',
|
||||||
},
|
|
||||||
'extends': [
|
|
||||||
'google',
|
|
||||||
'plugin:react/recommended',
|
'plugin:react/recommended',
|
||||||
|
'plugin:react/jsx-runtime',
|
||||||
|
'plugin:react-hooks/recommended',
|
||||||
],
|
],
|
||||||
'overrides': [
|
ignorePatterns: ['dist', '.eslintrc.cjs'],
|
||||||
{
|
parserOptions: { ecmaVersion: 12, sourceType: 'module' },
|
||||||
'env': {
|
settings: { react: { version: '18.2' } },
|
||||||
'node': true,
|
plugins: ['react-refresh'],
|
||||||
},
|
rules: {
|
||||||
'files': [
|
'react-refresh/only-export-components': [
|
||||||
'.eslintrc.{js,cjs}',
|
'warn',
|
||||||
],
|
{ allowConstantExport: true },
|
||||||
'parserOptions': {
|
],
|
||||||
'sourceType': 'script',
|
'indent': 'off',
|
||||||
},
|
'no-console': 'off',
|
||||||
},
|
'arrow-body-style': 'off',
|
||||||
],
|
'implicit-arrow-linebreak': 'off',
|
||||||
'parserOptions': {
|
|
||||||
'ecmaVersion': 'latest',
|
|
||||||
'sourceType': 'module',
|
|
||||||
},
|
},
|
||||||
'plugins': [
|
}
|
||||||
'react',
|
|
||||||
],
|
|
||||||
'rules': {
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"env": {
|
|
||||||
"browser": true,
|
|
||||||
"es2021": true
|
|
||||||
},
|
|
||||||
"extends": "airbnb-base",
|
|
||||||
"parserOptions": {
|
|
||||||
"ecmaVersion": 12,
|
|
||||||
"sourceType": "module"
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"quotes": "off",
|
|
||||||
"indent": "off",
|
|
||||||
"no-console": "off",
|
|
||||||
"no-use-before-define": "off",
|
|
||||||
"no-alert": "off",
|
|
||||||
"no-restricted-globals": "off",
|
|
||||||
"quote-props": "off"
|
|
||||||
}
|
|
||||||
}
|
|
59
Lab4/PrBookfill/.gitignore
vendored
@ -1,45 +1,24 @@
|
|||||||
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
# Compiled output
|
node_modules
|
||||||
/dist
|
dist
|
||||||
/tmp
|
dist-ssr
|
||||||
/out-tsc
|
*.local
|
||||||
/bazel-out
|
|
||||||
|
|
||||||
# Node
|
# Editor directories and files
|
||||||
/node_modules
|
|
||||||
npm-debug.log
|
|
||||||
yarn-error.log
|
|
||||||
|
|
||||||
# IDEs and editors
|
|
||||||
.idea/
|
|
||||||
.project
|
|
||||||
.classpath
|
|
||||||
.c9/
|
|
||||||
*.launch
|
|
||||||
.settings/
|
|
||||||
*.sublime-workspace
|
|
||||||
|
|
||||||
# Visual Studio Code
|
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
.history/*
|
.idea
|
||||||
|
|
||||||
# Miscellaneous
|
|
||||||
/.angular/cache
|
|
||||||
.sass-cache/
|
|
||||||
/connect.lock
|
|
||||||
/coverage
|
|
||||||
/libpeerconnection.log
|
|
||||||
testem.log
|
|
||||||
/typings
|
|
||||||
|
|
||||||
# System files
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
# Ignore dist
|
*.njsproj
|
||||||
dist/
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
11
Lab4/PrBookfill/.vscode/launch.json
vendored
@ -7,8 +7,15 @@
|
|||||||
{
|
{
|
||||||
"type": "chrome",
|
"type": "chrome",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Chrome against localhost",
|
"name": "Launch Chrome",
|
||||||
"url": "http://localhost:8080",
|
"url": "http://localhost:5173",
|
||||||
|
"webRoot": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch Edge",
|
||||||
|
"url": "http://localhost:5173",
|
||||||
"webRoot": "${workspaceFolder}"
|
"webRoot": "${workspaceFolder}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
29
Lab4/PrBookfill/README.md
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#### Окружение:
|
||||||
|
- nodejs 18;
|
||||||
|
- VSCode;
|
||||||
|
- ESLint плагин для VSCode;
|
||||||
|
- для отладки необходимы бразузеры Chrome или Edge.
|
||||||
|
|
||||||
|
#### Создание пустого проекта:
|
||||||
|
|
||||||
|
```commandline
|
||||||
|
npm create vite@latest ./ -- --template react
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Установка зависимостей:
|
||||||
|
|
||||||
|
```commandline
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Запуск проекта:
|
||||||
|
|
||||||
|
```commandline
|
||||||
|
npm run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Сборка проекта:
|
||||||
|
|
||||||
|
```commandline
|
||||||
|
npm run build
|
||||||
|
```
|
@ -1,166 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<div class="btn-group mt-2" role="group">
|
|
||||||
<button id="items-add" class="btn btn-info">Add book</button>
|
|
||||||
</div>
|
|
||||||
<form class="form-inlinecustom-search mx-auto mt-2">
|
|
||||||
|
|
||||||
<main class="container-fluid">
|
|
||||||
<div class="scroll-panel-favour">
|
|
||||||
<table id="items-table" class="table table-striped">
|
|
||||||
|
|
||||||
<tbody>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col">#</th>
|
|
||||||
<th scope="col">Category</th>
|
|
||||||
<th scope="col">Name</th>
|
|
||||||
<th scope="col">Author</th>
|
|
||||||
<th scope="col">ISBN</th>
|
|
||||||
<th scope="col">Price</th>
|
|
||||||
<th scope="col">Image</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="items-update" class="modal fade" tabindex="-1" data-bs-backdrop="static" data-bs-keyboard="false">
|
|
||||||
<div class="modal-dialog ">
|
|
||||||
<form id="items-form" class="needs-validation" novalidate>
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-header">
|
|
||||||
<h1 class="modal-title fs-5" id="items-update-title"></h1>
|
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body modal-dialog-scrollable">
|
|
||||||
<div class="text-center">
|
|
||||||
<img id="image-preview" src="https://via.placeholder.com/200"
|
|
||||||
class="rounded rounded-square" alt="placeholder">
|
|
||||||
</div>
|
|
||||||
<input id="items-line-id" type="number" hidden>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label for="item" class="form-label">Category</label>
|
|
||||||
<select id="item" class="form-select" name="selected" required>
|
|
||||||
<option>Book</option>
|
|
||||||
<option>Audio</option>
|
|
||||||
<option>Comics</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="name_book" name="name_book" class="form-control" type="text"
|
|
||||||
placeholder="Name" required />
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="author" name="author" class="form-control" type="text" placeholder="Author"
|
|
||||||
required />
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="price">Price</label>
|
|
||||||
<input id="price" name="price" class="form-control" type="number" value="0.00"
|
|
||||||
min="100.00" step="0.50" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="count">ISBN</label>
|
|
||||||
<input id="isbn" name="count" class="form-control" type="isbn" value="0" min="100"
|
|
||||||
step="1" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="image">Image</label>
|
|
||||||
<input id="image" type="file" name="image" class="form-control" accept="image/*">
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="file">File</label>
|
|
||||||
<input id="text" type="file" name="file" class="form-control" accept="file/*">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
||||||
<button type="submit" class="btn btn-primary but-cust">Save</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mt-4">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип" />
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script type="module">
|
|
||||||
import validation from "./js/validation";
|
|
||||||
import { linesForm } from "./js/lines";
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
validation();
|
|
||||||
linesForm();
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,100 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="carousel container-fluid p-0 mt-5" id="small-car">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active p-4">
|
|
||||||
<img src="png/books/capital.jpg" class="w-100 img-fluid ml-4 p-5" id="el_car">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="carousel container-fluid p-0 mt-3" id="small-car">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active p-4">
|
|
||||||
<img src="png/books/capital.jpg" class="w-100 img-fluid ml-4 p-5" id="el_car">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
</div>
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,100 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="carousel container-fluid p-0 mt-5" id="small-car">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active p-4">
|
|
||||||
<img src="png/books/capital.jpg" class="w-100 img-fluid ml-4 p-5" id="el_car">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="carousel container-fluid p-0 mt-3" id="small-car">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active p-4">
|
|
||||||
<img src="png/books/capital.jpg" class="w-100 img-fluid ml-4 p-5" id="el_car">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
</div>
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,28 +0,0 @@
|
|||||||
#banner {
|
|
||||||
margin: 5px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: row;
|
|
||||||
|
|
||||||
justify-content: space-around; /* распределяет элементы равномерно по горизонтали */
|
|
||||||
flex-wrap: nowrap; /* если вы хотите, чтобы все элементы были в одной линии и не переходили на новую линию. Если нужно переход на новую линию при нехватке места, укажите 'wrap' */
|
|
||||||
}
|
|
||||||
|
|
||||||
#banner img {
|
|
||||||
border: 1px solid #3c3c3f;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#banner img.banner-show {
|
|
||||||
width: 20%;
|
|
||||||
opacity: 1;
|
|
||||||
transition: opacity 1s, visibility 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#banner img.banner-hide {
|
|
||||||
height: 0;
|
|
||||||
width: 0;
|
|
||||||
opacity: 0;
|
|
||||||
visibility: hidden;
|
|
||||||
transition: opacity 1s, visibility 0s 1s;
|
|
||||||
}
|
|
@ -1,127 +0,0 @@
|
|||||||
@import url("/fonts/style.css");
|
|
||||||
@font-face {
|
|
||||||
font-family: "ITCErasStd-Bold";
|
|
||||||
src: url('/fonts/ITCErasStd-Bold.woff2') format('woff2'),
|
|
||||||
url('/fonts/ITCErasStd-Bold.woff') format('woff');
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
header{
|
|
||||||
width: 100%;
|
|
||||||
background: #c03000;
|
|
||||||
height: 70px;
|
|
||||||
border-radius: 4% / 60%;
|
|
||||||
}
|
|
||||||
.logo {
|
|
||||||
height: 45px;
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
.logos {
|
|
||||||
height: 100px;
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
.navbar-nav{
|
|
||||||
font-family: "ITCErasStd-Bold";
|
|
||||||
font-size: 25px;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.nav-link {
|
|
||||||
text-decoration: none;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.nav-link:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.btn.btn-outline-success {
|
|
||||||
border-color: rgba(255, 0, 0, 0);
|
|
||||||
color: white;
|
|
||||||
background-color: rgba(255, 0, 0, 0);
|
|
||||||
}
|
|
||||||
.modal-dialog-scrollable {
|
|
||||||
max-height: calc(85vh - 60px);
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
#profile {
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
.carousel {
|
|
||||||
width: 80%;
|
|
||||||
background: #c03000;
|
|
||||||
height: 400px;
|
|
||||||
border-radius: 17% / 60%;
|
|
||||||
}
|
|
||||||
.modal-dialog img {
|
|
||||||
width: 200px;
|
|
||||||
height: 200px;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
.small-image {
|
|
||||||
max-width: 200px;
|
|
||||||
max-height: 100px;
|
|
||||||
}
|
|
||||||
#small-car{
|
|
||||||
width: 80%;
|
|
||||||
background: #c03000;
|
|
||||||
height: 250px;
|
|
||||||
border-radius: 10% / 60%;
|
|
||||||
}
|
|
||||||
#big-search {
|
|
||||||
width: 80%;
|
|
||||||
background: white;
|
|
||||||
height: 600px;
|
|
||||||
border-radius: 10% / 60%;
|
|
||||||
}
|
|
||||||
#reg-back{
|
|
||||||
width: 60%;
|
|
||||||
background: #c03000;
|
|
||||||
height: 400px;
|
|
||||||
border-radius: 10% / 60%;
|
|
||||||
}
|
|
||||||
.footer {
|
|
||||||
background-color: #c03000;
|
|
||||||
}
|
|
||||||
.scroll-panel-search {
|
|
||||||
height: 100px;
|
|
||||||
background-color: white;
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
#navbarSupportedContent{
|
|
||||||
background-color: #c03000;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
.collapse{
|
|
||||||
background-color: #c03000;
|
|
||||||
}
|
|
||||||
.but-cust{
|
|
||||||
background-color: #c03000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn{
|
|
||||||
background-color: #c03000;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#el_car{
|
|
||||||
max-width: 200px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
#tabel_car{
|
|
||||||
max-width: 100px;
|
|
||||||
}
|
|
||||||
.scroll-panel-favour {
|
|
||||||
height: 500px;
|
|
||||||
background-color: white;
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
@media(max-width: 400px){
|
|
||||||
.logo{
|
|
||||||
height: 30px;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,113 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<form class="form-inlinecustom-search mx-auto mt-3 pt-5" id="big-search">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<div class="form-group">
|
|
||||||
<select id="category" class="form-control mt-1">
|
|
||||||
<option>Choose category...</option>
|
|
||||||
<option>Категория 1</option>
|
|
||||||
<option>Категория 2</option>
|
|
||||||
<option>Категория 3</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="scroll-panel-favour">
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col">#</th>
|
|
||||||
<th scope="col">Book</th>
|
|
||||||
<th scope="col">Author</th>
|
|
||||||
<th scope="col">Gener</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id="tabel_car">
|
|
||||||
</th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id="tabel_car">
|
|
||||||
</th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id="tabel_car">
|
|
||||||
</th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,99 +1,15 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<title>Boolfill</title>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>My shop</title>
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="container-fluid px-4">
|
<div id="root" class="h-100 d-flex flex-column"></div>
|
||||||
<div class="row">
|
<script type="module" src="/src/main.jsx"></script>
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="carousel container-fluid p-0 mt-5">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active p-4">
|
|
||||||
<div id="banner">
|
|
||||||
<img class="banner-hide" src="png/books/capital.jpg" alt="banner1">
|
|
||||||
<img class="banner-hide" src="png/books/filosofy.jpg" alt="banner1">
|
|
||||||
<img class="banner-hide" src="png/books/hideger.jpg" alt="banner1">
|
|
||||||
<img class="banner-hide" src="png/books/metro.jpg" alt="banner1">
|
|
||||||
<img class="banner-hide" src="png/books/platon.jpg" alt="banner1">
|
|
||||||
<img class="banner-hide" src="png/books/blev.jpg" alt="banner1">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script type="module">
|
|
||||||
import myBanner from "./js/banner";
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
myBanner("#banner");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,63 +0,0 @@
|
|||||||
// модуль для смены изображения в баннере по таймеру
|
|
||||||
|
|
||||||
import '../css/banner.css';
|
|
||||||
|
|
||||||
// указывается блок, в котором будет баннер
|
|
||||||
// блок должен содержать изображения
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function myBanner(root) {
|
|
||||||
console.info('Loaded');
|
|
||||||
|
|
||||||
// получение всех изображений внутри баннера
|
|
||||||
const banners = document.querySelectorAll(`${root} img`);
|
|
||||||
|
|
||||||
// всем изображениям устанавливается класс banner-hide
|
|
||||||
// если были другие классы, то они будут удалены
|
|
||||||
for (let i = 0; i < banners.length; i += 1) {
|
|
||||||
banners[i].setAttribute('class', 'banner-hide');
|
|
||||||
}
|
|
||||||
|
|
||||||
let old = banners.length - 3;
|
|
||||||
let current = 0;
|
|
||||||
let current2 = 1;
|
|
||||||
let current3 = 2;
|
|
||||||
|
|
||||||
// функция меняет изображения в цикле
|
|
||||||
// изображение с классом banner-show будет показано
|
|
||||||
// изображение с классом banner-hide будет скрыто
|
|
||||||
// функция запускает таймер, который через 5 секунд
|
|
||||||
// запускает функцию, снова создается таймер и т. д.
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function loop() {
|
|
||||||
banners[current].setAttribute('class', 'banner-show');
|
|
||||||
banners[current2].setAttribute('class', 'banner-show');
|
|
||||||
banners[current3].setAttribute('class', 'banner-show');
|
|
||||||
banners[old].setAttribute('class', 'banner-hide');
|
|
||||||
|
|
||||||
// eslint-disable-next-line quotes
|
|
||||||
console.info("Banner changed");
|
|
||||||
|
|
||||||
old = current;
|
|
||||||
current = current2;
|
|
||||||
current2 = current3;
|
|
||||||
current3 += 1;
|
|
||||||
|
|
||||||
if (current + 2 === banners.length) {
|
|
||||||
current = 0;
|
|
||||||
current2 = 1;
|
|
||||||
current3 = 2;
|
|
||||||
banners[old].setAttribute('class', 'banner-hide');
|
|
||||||
banners[old + 1].setAttribute('class', 'banner-hide');
|
|
||||||
banners[old + 2].setAttribute('class', 'banner-hide');
|
|
||||||
banners[current].setAttribute('class', 'banner-show');
|
|
||||||
banners[current + 1].setAttribute('class', 'banner-show');
|
|
||||||
banners[current + 2].setAttribute('class', 'banner-show');
|
|
||||||
}
|
|
||||||
|
|
||||||
setTimeout(loop, 5000);
|
|
||||||
}
|
|
||||||
|
|
||||||
loop();
|
|
||||||
}
|
|
||||||
|
|
||||||
export default myBanner;
|
|
@ -1,67 +0,0 @@
|
|||||||
// Модуль для работы с модальным окном
|
|
||||||
|
|
||||||
// импорт компонента Modal из bootstrap
|
|
||||||
import {Modal} from 'bootstrap';
|
|
||||||
import {cntrls, imagePlaceholder} from './lines-ui';
|
|
||||||
|
|
||||||
// поиск модального окна на странице
|
|
||||||
const modal = document.getElementById('items-update');
|
|
||||||
// если он найден, то создается экземпляр компонента Modal
|
|
||||||
// для программного управления модальным окном
|
|
||||||
const myModal = modal ? new Modal(modal, {}) : null;
|
|
||||||
|
|
||||||
// поиск тега с заголовком модального кона для его смены
|
|
||||||
const modalTitle = document.getElementById('items-update-title');
|
|
||||||
|
|
||||||
// обнуление значений модального окна, т. к.
|
|
||||||
// используется одно окно для всех операций
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function resetValues() {
|
|
||||||
cntrls.lineId.value = '';
|
|
||||||
cntrls.itemsType.value = '';
|
|
||||||
cntrls.name_book.value = '';
|
|
||||||
cntrls.author.value = '';
|
|
||||||
cntrls.price.value = parseFloat(0).toFixed(2);
|
|
||||||
cntrls.isbn.value = 0;
|
|
||||||
cntrls.image.value = '';
|
|
||||||
cntrls.text.value = '';
|
|
||||||
cntrls.imagePreview.src = imagePlaceholder;
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция для показа модального окна
|
|
||||||
// перед показом происходит заполнение формы для редактирования
|
|
||||||
// если объект item не пуст
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export function showUpdateModal(item) {
|
|
||||||
modalTitle.innerHTML = item === null ? 'Добавить' : 'Изменить';
|
|
||||||
console.info(item);
|
|
||||||
|
|
||||||
if (item) {
|
|
||||||
cntrls.lineId.value = item.id;
|
|
||||||
cntrls.itemsType.value = item.itemsId;
|
|
||||||
cntrls.name_book.value = item.name_book;
|
|
||||||
cntrls.author.value = item.author;
|
|
||||||
cntrls.price.value = item.price;
|
|
||||||
cntrls.isbn.value = item.isbn;
|
|
||||||
// заполнение превью
|
|
||||||
// Если пользователь выбрал изображение, то оно загружается
|
|
||||||
// в тэг image с id image - preview
|
|
||||||
// иначе устанавливается заглушка, адрес которой указан в imagePlaceholder
|
|
||||||
cntrls.imagePreview.src = item.image ? item.image : imagePlaceholder;
|
|
||||||
} else {
|
|
||||||
resetValues();
|
|
||||||
}
|
|
||||||
|
|
||||||
myModal.show();
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция для скрытия модального окна
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export function hideUpdateModal() {
|
|
||||||
resetValues();
|
|
||||||
|
|
||||||
// удаление класса was-validated для скрытия результатов валидации
|
|
||||||
cntrls.form.classList.remove('was-validated');
|
|
||||||
|
|
||||||
myModal.hide();
|
|
||||||
}
|
|
@ -1,109 +0,0 @@
|
|||||||
// модуль для работы с REST API сервера
|
|
||||||
|
|
||||||
// адрес сервера
|
|
||||||
const serverUrl = 'http://localhost:8081';
|
|
||||||
|
|
||||||
// функция возвращает объект нужной структуры для отправки на сервер
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function createLineObject(item, name_book, author, price, isbn, image, text) {
|
|
||||||
return {
|
|
||||||
itemsId: item,
|
|
||||||
name_book,
|
|
||||||
author,
|
|
||||||
isbn,
|
|
||||||
price: parseFloat(price).toFixed(2),
|
|
||||||
image,
|
|
||||||
text,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для получения всех типов товара (get)
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function getAllItemTypes() {
|
|
||||||
const response = await fetch(`${serverUrl}/items`);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для получения всех записей (get)
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function getAllLines() {
|
|
||||||
const response = await fetch(`${serverUrl}/lines?_expand=items`);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для получения записи по первичному ключу (id) (get)
|
|
||||||
// id передается в качестве части пути URL get-запроса
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function getLine(id) {
|
|
||||||
const response = await fetch(`${serverUrl}/lines/${id}?_expand=items`);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для создания записи (post)
|
|
||||||
// объект отправляется в теле запроса (body)
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function createLine(item, name_book, author, price, isbn, image, text) {
|
|
||||||
const itemObject = createLineObject(item, name_book, author, price, isbn, image, text);
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
method: 'POST',
|
|
||||||
body: JSON.stringify(itemObject),
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const response = await fetch(`${serverUrl}/lines`, options);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для обновления записи по id (put)
|
|
||||||
// объект отправляется в теле запроса (body)
|
|
||||||
// id передается в качестве части пути URL get-запроса
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function updateLine(id, item, name_book, author, price, isbn, image, text) {
|
|
||||||
const itemObject = createLineObject(item, name_book, author, price, isbn, image, text);
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
method: 'PUT',
|
|
||||||
body: JSON.stringify(itemObject),
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const response = await fetch(`${serverUrl}/lines/${id}`, options);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
|
|
||||||
// обращение к серверу для удаления записи по id (delete)
|
|
||||||
// id передается в качестве части пути URL get-запроса
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function deleteLine(id) {
|
|
||||||
const options = {
|
|
||||||
method: 'DELETE',
|
|
||||||
};
|
|
||||||
|
|
||||||
const response = await fetch(`${serverUrl}/lines/${id}`, options);
|
|
||||||
if (!response.ok) {
|
|
||||||
throw response.statusText;
|
|
||||||
}
|
|
||||||
return response.json();
|
|
||||||
}
|
|
@ -1,119 +0,0 @@
|
|||||||
// модуль для работы с элементами управления
|
|
||||||
|
|
||||||
// объект для удобного получения элементов
|
|
||||||
// при обращении к атрибуту объекта вызывается
|
|
||||||
// нужная функция для поиска элемента
|
|
||||||
export const cntrls = {
|
|
||||||
button: document.getElementById('items-add'),
|
|
||||||
table: document.querySelector('#items-table tbody'),
|
|
||||||
form: document.getElementById('items-form'),
|
|
||||||
lineId: document.getElementById('items-line-id'),
|
|
||||||
itemsType: document.getElementById('item'),
|
|
||||||
author: document.getElementById('author'),
|
|
||||||
name: document.getElementById('name'),
|
|
||||||
name_book: document.getElementById('name_book'),
|
|
||||||
price: document.getElementById('price'),
|
|
||||||
isbn: document.getElementById('isbn'),
|
|
||||||
image: document.getElementById('image'),
|
|
||||||
text: document.getElementById('text'),
|
|
||||||
imagePreview: document.getElementById('image-preview'),
|
|
||||||
};
|
|
||||||
|
|
||||||
// Дефолтное превью
|
|
||||||
export const imagePlaceholder = 'https://via.placeholder.com/200';
|
|
||||||
|
|
||||||
// функция создает тег option для select
|
|
||||||
// <option value="" selected>name</option>
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export function createItemsOption(name, value = '', isSelected = false) {
|
|
||||||
const option = document.createElement('option');
|
|
||||||
option.value = value || '';
|
|
||||||
option.selected = isSelected;
|
|
||||||
option.text = name;
|
|
||||||
return option;
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция создает ссылку (a) для таблицы
|
|
||||||
// содержимое тега a заполняется необходимой иконкой (icon)
|
|
||||||
// при нажатии вызывается callback
|
|
||||||
// ссылка "оборачивается" тегом td
|
|
||||||
// <td><a href="#" onclick="callback()"><i class="fa-solid icon"></i></a></td>
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function createTableAnchor(icon, callback) {
|
|
||||||
const i = document.createElement('i');
|
|
||||||
i.classList.add('fa-solid', icon);
|
|
||||||
|
|
||||||
const a = document.createElement('a');
|
|
||||||
a.href = '#';
|
|
||||||
a.appendChild(i);
|
|
||||||
a.onclick = (event) => {
|
|
||||||
// чтобы в URL не добавлялась решетка
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
callback();
|
|
||||||
};
|
|
||||||
|
|
||||||
const td = document.createElement('td');
|
|
||||||
td.appendChild(a);
|
|
||||||
return td;
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция создает колонку таблицы с текстом value
|
|
||||||
// <td>value</td>
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function createTableColumn(value) {
|
|
||||||
const td = document.createElement('td');
|
|
||||||
td.textContent = value;
|
|
||||||
return td;
|
|
||||||
}
|
|
||||||
function createTableColumnImg(value) {
|
|
||||||
const td = document.createElement('td');
|
|
||||||
td.appendChild(value);
|
|
||||||
return td;
|
|
||||||
}
|
|
||||||
// функция создает строку таблицы
|
|
||||||
// <tr>
|
|
||||||
// <th scope="row">index + 1</th>
|
|
||||||
// <td>item.items.name</td>
|
|
||||||
// <td>parseFloat(item.price).toFixed(2))</td>
|
|
||||||
// <td>item.count</td>
|
|
||||||
// <td>parseFloat(item.sum).toFixed(2))</td>
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
// <td><a href="#" onclick="editCallback()"><i class="fa-solid fa-pencil"></i></a></td>
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
// <td><a href="#" onclick="editPageCallback()"><i class="fa-solid fa-pen-to-square"></i></a></td>
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
// <td><a href="#" onclick="deleteCallback()"><i class="fa-solid fa-trash"></i></a></td>
|
|
||||||
// </tr>
|
|
||||||
// eslint-disable-next-line max-len, require-jsdoc
|
|
||||||
export function createTableRow(item, index, editCallback, editPageCallback, deleteCallback) {
|
|
||||||
const rowNumber = document.createElement('th');
|
|
||||||
rowNumber.scope = 'row';
|
|
||||||
rowNumber.textContent = index + 1;
|
|
||||||
|
|
||||||
const row = document.createElement('tr');
|
|
||||||
row.id = `line-${item.id}`;
|
|
||||||
|
|
||||||
row.appendChild(rowNumber);
|
|
||||||
row.appendChild(createTableColumn(item.items.name));
|
|
||||||
row.appendChild(createTableColumn(item.name_book));
|
|
||||||
row.appendChild(createTableColumn(item.author));
|
|
||||||
row.appendChild(createTableColumn(item.isbn));
|
|
||||||
row.appendChild(createTableColumn(parseFloat(item.price).toFixed(2)));
|
|
||||||
|
|
||||||
// Добавляем картинку в таблицу
|
|
||||||
const img = document.createElement('img');
|
|
||||||
img.src = item.image;
|
|
||||||
img.classList.add('small-image');
|
|
||||||
row.appendChild(createTableColumnImg(img));
|
|
||||||
|
|
||||||
|
|
||||||
// редактировать в модальном окне
|
|
||||||
row.appendChild(createTableAnchor('fa-pencil', editCallback));
|
|
||||||
// редактировать на странице page-edit
|
|
||||||
//row.appendChild(createTableAnchor('fa-pen-to-square', editPageCallback));
|
|
||||||
// удаление
|
|
||||||
row.appendChild(createTableAnchor('fa-trash', deleteCallback));
|
|
||||||
return row;
|
|
||||||
}
|
|
||||||
|
|
@ -1,345 +0,0 @@
|
|||||||
// модуль с логикой
|
|
||||||
|
|
||||||
import {hideUpdateModal, showUpdateModal} from './lines-modal';
|
|
||||||
import {
|
|
||||||
createLine, deleteLine, getAllItemTypes, getAllLines, getLine, updateLine,
|
|
||||||
} from './lines-rest-api';
|
|
||||||
import {
|
|
||||||
cntrls, createItemsOption, createTableRow, imagePlaceholder,
|
|
||||||
} from './lines-ui';
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function drawItemsSelect() {
|
|
||||||
// вызов метода REST API для получения списка типов товаров
|
|
||||||
const data = await getAllItemTypes();
|
|
||||||
// очистка содержимого select
|
|
||||||
// удаляется все, что находится между тегами <select></select>
|
|
||||||
// но не атрибуты
|
|
||||||
cntrls.itemsType.innerHTML = '';
|
|
||||||
// пустое значение
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
cntrls.itemsType.appendChild(createItemsOption('Choose category', '', true));
|
|
||||||
// цикл по результату ответа от сервера
|
|
||||||
// используется лямбда-выражение
|
|
||||||
// (item) => {} аналогично function(item) {}
|
|
||||||
data.forEach((item) => {
|
|
||||||
cntrls.itemsType.appendChild(createItemsOption(item.name, item.id));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function drawLinesTable() {
|
|
||||||
console.info('Try to load data');
|
|
||||||
if (!cntrls.table) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// вызов метода REST API для получения всех записей
|
|
||||||
const data = await getAllLines();
|
|
||||||
// очистка содержимого table
|
|
||||||
// удаляется все, что находится между тегами <table></table>
|
|
||||||
// но не атрибуты
|
|
||||||
cntrls.table.innerHTML = '';
|
|
||||||
// цикл по результату ответа от сервера
|
|
||||||
// используется лямбда-выражение
|
|
||||||
// (item, index) => {} аналогично function(item, index) {}
|
|
||||||
data.forEach((item, index) => {
|
|
||||||
cntrls.table.appendChild(
|
|
||||||
createTableRow(
|
|
||||||
item,
|
|
||||||
index,
|
|
||||||
// функции передаются в качестве параметра
|
|
||||||
// это очень удобно, так как аргументы функций доступны только
|
|
||||||
// в данном месте кода и не передаются в сервисные модули
|
|
||||||
() => showUpdateModal(item),
|
|
||||||
() => location.assign(`page-edit.html?id=${item.id}`),
|
|
||||||
() => removeLine(item.id),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function addLine(item, name_book, author, price, isbn, image, text) {
|
|
||||||
console.info('Try to add item');
|
|
||||||
// вызов метода REST API для добавления записи
|
|
||||||
const data = await createLine(item, name_book, author, price, isbn, image, text);
|
|
||||||
console.info('Added');
|
|
||||||
console.info(data);
|
|
||||||
// загрузка и заполнение table
|
|
||||||
drawLinesTable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function editLine(id, item, name_book, author, price, isbn, image, text) {
|
|
||||||
console.info('Try to update item');
|
|
||||||
// вызов метода REST API для обновления записи
|
|
||||||
const data = await updateLine(id, item, name_book, author, price, isbn, image, text);
|
|
||||||
console.info('Updated');
|
|
||||||
console.info(data);
|
|
||||||
// загрузка и заполнение table
|
|
||||||
drawLinesTable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function removeLine(id) {
|
|
||||||
if (!confirm('Do you really want to remove this item?')) {
|
|
||||||
console.info('Canceled');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
console.info('Try to remove item');
|
|
||||||
// вызов метода REST API для удаления записи
|
|
||||||
const data = await deleteLine(id);
|
|
||||||
console.info(data);
|
|
||||||
// загрузка и заполнение table
|
|
||||||
drawLinesTable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция для получения содержимого файла в виде base64 строки
|
|
||||||
// https://ru.wikipedia.org/wiki/Base64
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function readFile(file) {
|
|
||||||
const reader = new FileReader();
|
|
||||||
|
|
||||||
// создание Promise-объекта для использования функции
|
|
||||||
// с помощью await (асинхронно) без коллбэков (callback)
|
|
||||||
// https://learn.javascript.ru/promise
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
// 2. "Возвращаем" содержимое когда файл прочитан
|
|
||||||
// через вызов resolve
|
|
||||||
// Если не использовать Promise, то всю работу по взаимодействию
|
|
||||||
// с REST API пришлось бы делать в обработчике (callback) функции
|
|
||||||
// onloadend
|
|
||||||
reader.onloadend = () => {
|
|
||||||
const fileContent = reader.result;
|
|
||||||
// Здесь могла бы быть работа с REST API
|
|
||||||
// Чтение заканчивает выполняться здесь
|
|
||||||
resolve(fileContent);
|
|
||||||
};
|
|
||||||
// 3. Возвращаем ошибку
|
|
||||||
reader.onerror = () => {
|
|
||||||
// Или здесь в случае ошибки
|
|
||||||
reject(new Error('oops, something went wrong with the file reader.'));
|
|
||||||
};
|
|
||||||
// Шаг 1. Сначала читаем файл
|
|
||||||
// Чтение начинает выполняться здесь
|
|
||||||
reader.readAsDataURL(file);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// функция для обновления блока с превью выбранного изображения
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
async function updateImagePreview() {
|
|
||||||
// получение выбранного файла
|
|
||||||
// возможен выбор нескольких файлов, поэтому необходимо получить только первый
|
|
||||||
const file = cntrls.image.files[0];
|
|
||||||
// чтение содержимого файла в виде base64 строки
|
|
||||||
const fileContent = await readFile(file);
|
|
||||||
console.info('base64 ', fileContent);
|
|
||||||
// обновление атрибута src для тега img с id image-preview
|
|
||||||
cntrls.imagePreview.src = fileContent;
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
// Функция для обработки создания и редактирования элементов таблицы через модальное окно
|
|
||||||
// Если хотите делать через страницу, то удалите эту функцию
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export function linesForm() {
|
|
||||||
console.info('linesForm');
|
|
||||||
|
|
||||||
// загрузка и заполнение select со списком товаров
|
|
||||||
drawItemsSelect();
|
|
||||||
// загрузка и заполнение table
|
|
||||||
drawLinesTable();
|
|
||||||
|
|
||||||
// Вызов функции обновления превью изображения при возникновении
|
|
||||||
// события oncahnge в тэге input с id image
|
|
||||||
cntrls.image.addEventListener('change', () => updateImagePreview());
|
|
||||||
|
|
||||||
// обработчик события нажатия на кнопку для показа модального окна
|
|
||||||
cntrls.button.addEventListener('click', () => showUpdateModal(null));
|
|
||||||
|
|
||||||
// обработчик события отправки формы
|
|
||||||
// возникает при нажатии на кнопку (button) с типом submit
|
|
||||||
// кнопка должна находится внутри тега form
|
|
||||||
cntrls.form.addEventListener('submit', async (event) => {
|
|
||||||
console.info('Form onSubmit');
|
|
||||||
// отключение стандартного поведения формы при отправке
|
|
||||||
// при отправке страница обновляется и JS перестает работать
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
// если форма не прошла валидацию, то ничего делать не нужно
|
|
||||||
if (!cntrls.form.checkValidity()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let imageBase64 = '';
|
|
||||||
// Получение выбранного пользователем изображения в виде base64 строки
|
|
||||||
// Если пользователь ничего не выбрал, то не нужно сохранять в БД
|
|
||||||
// дефолтное изображение
|
|
||||||
if (cntrls.imagePreview.src !== imagePlaceholder) {
|
|
||||||
// Загрузка содержимого атрибута src тэга img с id image-preview
|
|
||||||
// Здесь выполняется HTTP запрос с типом GET
|
|
||||||
const result = await fetch(cntrls.imagePreview.src);
|
|
||||||
// Получение из HTTP-ответа бинарного содержимого
|
|
||||||
const blob = await result.blob();
|
|
||||||
// Получение base64 строки для файла
|
|
||||||
// Здесь выполняется Promise из функции readFile
|
|
||||||
// Promise позволяет писать линейный код для
|
|
||||||
// работы с асинхронными методами
|
|
||||||
// без использования обработчиков (callback) с помощью await
|
|
||||||
imageBase64 = await readFile(blob);
|
|
||||||
}
|
|
||||||
//TEXT
|
|
||||||
let textBase64 = '';
|
|
||||||
const result = await fetch(cntrls.text.src);
|
|
||||||
const blob = await result.blob();
|
|
||||||
textBase64 = await readFile(blob);
|
|
||||||
|
|
||||||
|
|
||||||
// получение id строки для редактирования
|
|
||||||
// это значение содержится в скрытом input
|
|
||||||
const currentId = cntrls.lineId.value;
|
|
||||||
// если значение id не задано,
|
|
||||||
// то необходимо выполнить добавление записи
|
|
||||||
// иначе обновление записи
|
|
||||||
if (!currentId) {
|
|
||||||
await addLine(
|
|
||||||
cntrls.itemsType.value,
|
|
||||||
cntrls.name_book.value,
|
|
||||||
cntrls.author.value,
|
|
||||||
cntrls.price.value,
|
|
||||||
cntrls.isbn.value,
|
|
||||||
imageBase64,
|
|
||||||
textBase64,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
await editLine(
|
|
||||||
currentId,
|
|
||||||
cntrls.itemsType.value,
|
|
||||||
cntrls.name_book.value,
|
|
||||||
cntrls.author.value,
|
|
||||||
cntrls.price.value,
|
|
||||||
cntrls.isbn.value,
|
|
||||||
imageBase64,
|
|
||||||
textBase64,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// после выполнения добавления/обновления модальное окно скрывается
|
|
||||||
hideUpdateModal();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Функция для обработки создания и
|
|
||||||
// редактирования элементов таблицы через страницу page-edit.html
|
|
||||||
// Если хотите делать через модальное окно, то удалите эту функцию
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
export async function linesPageForm() {
|
|
||||||
console.info('linesPageForm');
|
|
||||||
|
|
||||||
// загрузка и заполнение select со списком товаров
|
|
||||||
drawItemsSelect();
|
|
||||||
|
|
||||||
// func1 = (id) => {} аналогично function func1(id) {}
|
|
||||||
const goBack = () => location.assign('/admin.html');
|
|
||||||
|
|
||||||
// Вызов функции обновления превью изображения при возникновении
|
|
||||||
// события onchange в тэге input с id image
|
|
||||||
cntrls.image.addEventListener('change', () => updateImagePreview());
|
|
||||||
|
|
||||||
// получение параметров GET-запроса из URL
|
|
||||||
// параметры перечислены после символа ? (?id=1&color=black&...)
|
|
||||||
const urlParams = new URLSearchParams(location.search);
|
|
||||||
|
|
||||||
// получение значения конкретного параметра (id)
|
|
||||||
// указан только при редактировании
|
|
||||||
const currentId = urlParams.get('id');
|
|
||||||
// если id задан
|
|
||||||
if (currentId) {
|
|
||||||
try {
|
|
||||||
// вызов метода REST API для получения записи по первичному ключу(id)
|
|
||||||
const line = await getLine(currentId);
|
|
||||||
// заполнение формы для редактирования
|
|
||||||
cntrls.itemsType.value = line.itemsId;
|
|
||||||
cntrls.name_book.value = line.name_book;
|
|
||||||
cntrls.author.value = line.author;
|
|
||||||
cntrls.price.value = line.price;
|
|
||||||
cntrls.isbn.value = line.isbn;
|
|
||||||
// заполнение превью
|
|
||||||
// Если пользователь выбрал изображение, то оно загружается
|
|
||||||
// в тэг image с id image - preview
|
|
||||||
// иначе устанавливается заглушка, адрес которой указан в imagePlaceholder
|
|
||||||
cntrls.imagePreview.src = line.image ? line.image : imagePlaceholder;
|
|
||||||
} catch {
|
|
||||||
// в случае ошибки происходит возврат к page4
|
|
||||||
goBack();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// обработчик события отправки формы
|
|
||||||
// возникает при нажатии на кнопку (button) с типом submit
|
|
||||||
// кнопка должна находится внутри тега form
|
|
||||||
cntrls.form.addEventListener('submit', async (event) => {
|
|
||||||
console.info('Form onSubmit');
|
|
||||||
// отключение стандартного поведения формы при отправке
|
|
||||||
// при отправке страница обновляется и JS перестает работать
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
// если форма не прошла валидацию, то ничего делать не нужно
|
|
||||||
if (!cntrls.form.checkValidity()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let imageBase64 = '';
|
|
||||||
// Получение выбранного пользователем изображения в виде base64 строки
|
|
||||||
// Если пользователь ничего не выбрал, то не нужно сохранять в БД
|
|
||||||
// дефолтное изображение
|
|
||||||
if (cntrls.imagePreview.src !== imagePlaceholder) {
|
|
||||||
// Загрузка содержимого атрибута src тэга img с id image-preview
|
|
||||||
// Здесь выполняется HTTP запрос с типом GET
|
|
||||||
const result = await fetch(cntrls.imagePreview.src);
|
|
||||||
// Получение из HTTP-ответа бинарного содержимого
|
|
||||||
const blob = await result.blob();
|
|
||||||
// Получение base64 строки для файла
|
|
||||||
// Здесь выполняется Promise из функции readFile
|
|
||||||
// Promise позволяет писать линейный
|
|
||||||
// код для работы с асинхронными методами
|
|
||||||
// без использования обработчиков (callback) с помощью await
|
|
||||||
imageBase64 = await readFile(blob);
|
|
||||||
}
|
|
||||||
//TEXT
|
|
||||||
let textBase64 = '';
|
|
||||||
const result = await fetch(cntrls.text.src);
|
|
||||||
const blob = await result.blob();
|
|
||||||
textBase64 = await readFile(blob);
|
|
||||||
|
|
||||||
// если значение параметра запроса не задано,
|
|
||||||
// то необходимо выполнить добавление записи
|
|
||||||
// иначе обновление записи
|
|
||||||
if (!currentId) {
|
|
||||||
await addLine(
|
|
||||||
cntrls.itemsType.value,
|
|
||||||
cntrls.name_book.value,
|
|
||||||
cntrls.author.value,
|
|
||||||
cntrls.price.value,
|
|
||||||
cntrls.isbn.value,
|
|
||||||
imageBase64,
|
|
||||||
textBase64,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
await editLine(
|
|
||||||
currentId,
|
|
||||||
cntrls.itemsType.value,
|
|
||||||
cntrls.name_book.value,
|
|
||||||
cntrls.author.value,
|
|
||||||
cntrls.price.value,
|
|
||||||
cntrls.isbn.value,
|
|
||||||
imageBase64,
|
|
||||||
textBase64,
|
|
||||||
|
|
||||||
);
|
|
||||||
}
|
|
||||||
// возврат к странице page4
|
|
||||||
goBack();
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
// модуль используется для валидации форма на странице
|
|
||||||
|
|
||||||
// eslint-disable-next-line require-jsdoc
|
|
||||||
function validation() {
|
|
||||||
// поиск всех форма с классом .needs-validation
|
|
||||||
const forms = document.querySelectorAll('form.needs-validation');
|
|
||||||
|
|
||||||
for (let i = 0; i < forms.length; i += 1) {
|
|
||||||
const form = forms[i];
|
|
||||||
// для каждой формы добавляется обработчик события отправки
|
|
||||||
form.addEventListener('submit', (event) => {
|
|
||||||
// если форма не прошла валидацию
|
|
||||||
// то выключить стандартное действие
|
|
||||||
if (!form.checkValidity()) {
|
|
||||||
event.preventDefault();
|
|
||||||
// предотвращает распространение preventDefault
|
|
||||||
// на другие объекты
|
|
||||||
event.stopPropagation();
|
|
||||||
}
|
|
||||||
// добавляет к форме класс was-validated
|
|
||||||
form.classList.add('was-validated');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default validation;
|
|
@ -3,7 +3,7 @@
|
|||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "Node",
|
"moduleResolution": "Node",
|
||||||
"target": "ES2020",
|
"target": "ES2020",
|
||||||
"jsx": "preserve",
|
"jsx": "react",
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"strictFunctionTypes": true
|
"strictFunctionTypes": true
|
||||||
},
|
},
|
||||||
|
@ -1,88 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<main class="container-fluid p-0 mt-5" id="reg-back">
|
|
||||||
<form class="col-md-6 mr-sm-10 mx-auto mt-3 pt-5 " action="./page3.html" method="get">
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="firstname" name="firstname" class="form-control" type="text" placeholder="name"
|
|
||||||
required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="email" name="email" class="form-control" type="email" placeholder="mail@example.ru"
|
|
||||||
required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="password" name="password" class="form-control" type="password" name="password"
|
|
||||||
placeholder="password" required>
|
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<button id="subut" class="btn btn-primary w-50" type="submit">Submit</button>
|
|
||||||
<button id="subut" class="btn btn-primary w-50" type="submit"
|
|
||||||
onclick="location.href='admin.html';">Admin</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
3377
Lab4/PrBookfill/package-lock.json
generated
@ -1,26 +1,33 @@
|
|||||||
{
|
{
|
||||||
"name": "int-prog",
|
"name": "lec4",
|
||||||
"version": "1.0.0",
|
"private": true,
|
||||||
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"vite": "vite",
|
"dev": "vite",
|
||||||
"serve": "http-server -p 3000 ./dist/",
|
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"rest": "json-server --watch data.json -p 8081",
|
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
||||||
"dev": "npm-run-all --parallel rest vite",
|
"preview": "vite preview"
|
||||||
"prod": "npm-run-all build --parallel serve rest"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bootstrap": "5.3.2",
|
"bootstrap": "^5.3.2",
|
||||||
"@fortawesome/fontawesome-free": "6.4.2"
|
"prop-types": "^15.8.1",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"react-bootstrap": "^2.9.1",
|
||||||
|
"react-bootstrap-icons": "^1.10.3",
|
||||||
|
"react-dom": "^18.2.0",
|
||||||
|
"react-icons": "^4.12.0",
|
||||||
|
"react-router-dom": "^6.18.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"vite": "4.4.9",
|
"@types/react": "^18.2.15",
|
||||||
"eslint": "8.50.0",
|
"@types/react-dom": "^18.2.7",
|
||||||
"eslint-config-airbnb-base": "15.0.0",
|
"@vitejs/plugin-react": "^4.0.3",
|
||||||
"eslint-plugin-import": "2.28.1",
|
"eslint": "^8.45.0",
|
||||||
"http-server": "14.1.1",
|
"eslint-config-airbnb-base": "^15.0.0",
|
||||||
"json-server": "0.17.4",
|
"eslint-plugin-react": "^7.32.2",
|
||||||
"npm-run-all": "4.1.5"
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
|
"eslint-plugin-react-refresh": "^0.4.3",
|
||||||
|
"vite": "^4.4.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,121 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent py-0">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-5">
|
|
||||||
<main class="container-fluid p-3 mb-5">
|
|
||||||
<div class="text-center">
|
|
||||||
<img id="image-preview" src="https://via.placeholder.com/200" class="rounded rounded-square"
|
|
||||||
alt="placeholder">
|
|
||||||
</div>
|
|
||||||
<form id="items-form" class="needs-validation" novalidate>
|
|
||||||
<input id="items-line-id" type="number" hidden>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label for="item" class="form-label">Category</label>
|
|
||||||
<select id="item" class="form-select" name="selected" required>
|
|
||||||
<option>Book</option>
|
|
||||||
<option>Audio</option>
|
|
||||||
<option>Comics</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="name_book" name="name_book" class="form-control" type="text" placeholder="Name"
|
|
||||||
required />
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<input id="author" name="author" class="form-control" type="text" placeholder="Author"
|
|
||||||
required />
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="price">Price</label>
|
|
||||||
<input id="price" name="price" class="form-control" type="number" value="0.00" min="100.00"
|
|
||||||
step="0.50" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="count">ISBN</label>
|
|
||||||
<input id="isbn" name="count" class="form-control" type="isbn" value="0" min="100" step="1"
|
|
||||||
required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="image">Image</label>
|
|
||||||
<input id="image" type="file" name="image" class="form-control" accept="image/*">
|
|
||||||
</div>
|
|
||||||
<div class="mb-2">
|
|
||||||
<label class="form-label" for="file">File</label>
|
|
||||||
<input id="text" type="file" name="file" class="form-control" accept="file/*">
|
|
||||||
</div>
|
|
||||||
<a href="/admin.html" class="btn btn-secondary">Back</a>
|
|
||||||
<button type="submit" class="btn btn-primary but-cust">Save</button>
|
|
||||||
</form>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип" />
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script type="module">
|
|
||||||
import validation from "./js/validation";
|
|
||||||
import { linesPageForm } from "./js/lines"
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
validation();
|
|
||||||
linesPageForm();
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
3
Lab4/PrBookfill/public/favicon.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-cart2" viewBox="0 0 16 16">
|
||||||
|
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 463 B |
@ -1,115 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="ru">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<title>Boolfill</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous">
|
|
||||||
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" />
|
|
||||||
<link rel="stylesheet" href="./css/style.css">
|
|
||||||
|
|
||||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
||||||
<script src="js/script.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-4">
|
|
||||||
<div class="row">
|
|
||||||
<header class="col-12">
|
|
||||||
<div class="collapse navbar-collapse me-5" id="navbarSupportedContent">
|
|
||||||
<a class="navbar-brand" href="index.html">
|
|
||||||
<img class="logo mb-2" src="png/logo.png" alt="Логотип">
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
<div class="collapse navbar-collapse bg-transparent" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mt-2">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
<button class="btn btn-outline-success my-2 my-sm-0" type="button"
|
|
||||||
onclick="location.href='search.html';"><i class="fas fa-search"></i></button>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="favour.html">Favourite</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="audio.html">Audio</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link h5 h-sm-4" href="comics.html">Comics</a>
|
|
||||||
</li>
|
|
||||||
<a class="nav-item mb-3" href="login.html">
|
|
||||||
<img id="profile" class="user-photo mt-1 ml-4 mr-3">
|
|
||||||
</a>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<form class="form-inlinecustom-search mx-auto mt-3 pt-5 px-5" id="big-search">
|
|
||||||
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="form-group ">
|
|
||||||
<input type="text" class="form-control mt-2" id="keyword" placeholder="Keyword">
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<select id="category" class="form-control">
|
|
||||||
<option>Choose category...</option>
|
|
||||||
<option>Категория 1</option>
|
|
||||||
<option>Категория 2</option>
|
|
||||||
<option>Категория 3</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="scroll-panel-favour">
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col">#</th>
|
|
||||||
<th scope="col">Book</th>
|
|
||||||
<th scope="col">Author</th>
|
|
||||||
<th scope="col">Gener</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id = "tabel_car" ></th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id = "tabel_car" ></th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row"><img src="png/books/capital.jpg" class="w-100 img-fluid" id = "tabel_car" ></th>
|
|
||||||
<td>Capital</td>
|
|
||||||
<td>Marks K.</td>
|
|
||||||
<td>Philosofy</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<footer class="footer fixed-bottom w-100">
|
|
||||||
<div class="container">
|
|
||||||
<img class="logos ml-0" src="png/logos.png" alt="Логотип">
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
24
Lab4/PrBookfill/src/App.jsx
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { Container } from 'react-bootstrap';
|
||||||
|
import { Outlet } from 'react-router-dom';
|
||||||
|
import './App.css';
|
||||||
|
import Footer from './components/footer/Footer.jsx';
|
||||||
|
import Navigation from './components/navigation/Navigation.jsx';
|
||||||
|
|
||||||
|
const App = ({ routes }) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Navigation routes={routes}></Navigation>
|
||||||
|
<Container className='p-2' as="main" fluid>
|
||||||
|
<Outlet />
|
||||||
|
</Container>
|
||||||
|
<Footer />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
App.propTypes = {
|
||||||
|
routes: PropTypes.array,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
BIN
Lab4/PrBookfill/src/assets/banner1.png
Normal file
After Width: | Height: | Size: 640 KiB |
BIN
Lab4/PrBookfill/src/assets/banner2.png
Normal file
After Width: | Height: | Size: 812 KiB |
BIN
Lab4/PrBookfill/src/assets/banner3.png
Normal file
After Width: | Height: | Size: 767 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 545 KiB After Width: | Height: | Size: 545 KiB |
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 149 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 258 KiB After Width: | Height: | Size: 258 KiB |
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
25
Lab4/PrBookfill/src/components/banner/Banner.css
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#banner {
|
||||||
|
margin: 2px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
#banner img {
|
||||||
|
border: 1px solid #3c3c3f;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#banner img.banner-show {
|
||||||
|
width: 100%;
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 1s, visibility 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#banner img.banner-hide {
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
opacity: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
transition: opacity 1s, visibility 0s 1s;
|
||||||
|
}
|
40
Lab4/PrBookfill/src/components/banner/Banner.jsx
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import { useEffect, useState } from 'react';
|
||||||
|
import banner1 from '../../assets/banner1.png';
|
||||||
|
import banner2 from '../../assets/banner2.png';
|
||||||
|
import banner3 from '../../assets/banner3.png';
|
||||||
|
import './Banner.css';
|
||||||
|
|
||||||
|
const Banner = () => {
|
||||||
|
const [currentBanner, setCurrentBanner] = useState(0);
|
||||||
|
const banners = [banner1, banner2, banner3];
|
||||||
|
|
||||||
|
const getBannerClass = (index) => {
|
||||||
|
return currentBanner === index ? 'banner-show' : 'banner-hide';
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const bannerInterval = setInterval(
|
||||||
|
() => {
|
||||||
|
console.info('Banner changed');
|
||||||
|
let current = currentBanner + 1;
|
||||||
|
if (current === banners.length) {
|
||||||
|
current = 0;
|
||||||
|
}
|
||||||
|
setCurrentBanner(current);
|
||||||
|
},
|
||||||
|
5000,
|
||||||
|
);
|
||||||
|
return () => clearInterval(bannerInterval);
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div id="banner" >
|
||||||
|
{
|
||||||
|
banners.map((banner, index) =>
|
||||||
|
<img key={index} className={getBannerClass(index)} src={banner} alt={`banner${index}`} />)
|
||||||
|
}
|
||||||
|
</div >
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Banner;
|
5
Lab4/PrBookfill/src/components/footer/Footer.css
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.my-footer {
|
||||||
|
background-color: #9c9c9c;
|
||||||
|
height: 32px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
13
Lab4/PrBookfill/src/components/footer/Footer.jsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import './Footer.css';
|
||||||
|
|
||||||
|
const Footer = () => {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<footer className="my-footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
||||||
|
Автор, {year}
|
||||||
|
</footer>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Footer;
|
41
Lab4/PrBookfill/src/components/navigation/Navigation.css
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
.my-navbar {
|
||||||
|
width: 100%;
|
||||||
|
background-color: #c03000 !important;
|
||||||
|
height: 70px;
|
||||||
|
border-radius: 4% / 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-navbar .link a:hover {
|
||||||
|
text-decoration: underline !important;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-navbar .logo {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-collapse.show{
|
||||||
|
background-color: #c03000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-photo {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
height: 45px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.navbar-nav {
|
||||||
|
font-family: "ITCErasStd-Bold";
|
||||||
|
font-size: 25px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.nav-link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
}
|
43
Lab4/PrBookfill/src/components/navigation/Navigation.jsx
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import {
|
||||||
|
Navbar, Container, Nav, Form, FormControl, Button,
|
||||||
|
} from 'react-bootstrap';
|
||||||
|
import './Navigation.css';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
|
import { FaSearch } from 'react-icons/fa';
|
||||||
|
|
||||||
|
const Header = () => {
|
||||||
|
return (
|
||||||
|
<Navbar expand='lg' bg='dark' variant='dark' className='my-navbar'>
|
||||||
|
<Container fluid>
|
||||||
|
<Navbar.Brand as={Link} to='/'>
|
||||||
|
<img className='logo pb-2' src='src/assets/big-logo.png' alt='Логотип' />
|
||||||
|
</Navbar.Brand>
|
||||||
|
<Navbar.Toggle aria-controls='navbarSupportedContent' />
|
||||||
|
<Navbar.Collapse id='navbarSupportedContent'>
|
||||||
|
<Nav className='me-auto'>
|
||||||
|
<Form className='d-flex mr-4 mt-4'>
|
||||||
|
<FormControl
|
||||||
|
type='search'
|
||||||
|
placeholder='Search'
|
||||||
|
className='m-1'
|
||||||
|
aria-label='Search'
|
||||||
|
/>
|
||||||
|
<Button variant='outline-success' type='submit'>
|
||||||
|
<FaSearch />
|
||||||
|
</Button>
|
||||||
|
</Form>
|
||||||
|
<Nav.Link as={Link} to='/favour.html'>Favourite</Nav.Link>
|
||||||
|
<Nav.Link as={Link} to='/audio.html'>Audio</Nav.Link>
|
||||||
|
<Nav.Link as={Link} to='/comics.html'>Comics</Nav.Link>
|
||||||
|
<Nav.Link as={Link} to='/login.html'>
|
||||||
|
<img id='profile' className='user-photo mt-1 ml-4 mr-3' />
|
||||||
|
</Nav.Link>
|
||||||
|
</Nav>
|
||||||
|
</Navbar.Collapse>
|
||||||
|
</Container>
|
||||||
|
</Navbar>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Header;
|
36
Lab4/PrBookfill/src/index.css
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
@import url("/src/fonts/style.css");
|
||||||
|
@font-face {
|
||||||
|
font-family: "ITCErasStd-Bold";
|
||||||
|
src: url('/src/fonts/ITCErasStd-Bold.woff2') format('woff2'),
|
||||||
|
url('/src/fonts/ITCErasStd-Bold.woff') format('woff');
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-mw {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.btn-mw {
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.btn-mw {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
}
|
55
Lab4/PrBookfill/src/main.jsx
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
|
import React from 'react';
|
||||||
|
import ReactDOM from 'react-dom/client';
|
||||||
|
import { RouterProvider, createBrowserRouter } from 'react-router-dom';
|
||||||
|
import App from './App.jsx';
|
||||||
|
import './index.css';
|
||||||
|
import ErrorPage from './pages/ErrorPage.jsx';
|
||||||
|
import Page1 from './pages/Page1.jsx';
|
||||||
|
import Page2 from './pages/Page2.jsx';
|
||||||
|
import Page3 from './pages/Page3.jsx';
|
||||||
|
import Page4 from './pages/Page4.jsx';
|
||||||
|
import PageEdit from './pages/PageEdit.jsx';
|
||||||
|
|
||||||
|
const routes = [
|
||||||
|
{
|
||||||
|
index: true,
|
||||||
|
path: '/',
|
||||||
|
element: <Page1 />,
|
||||||
|
title: 'Главная страница',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/page2',
|
||||||
|
element: <Page2 />,
|
||||||
|
title: 'Вторая страница',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/page3',
|
||||||
|
element: <Page3 />,
|
||||||
|
title: 'Третья страница',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/page4',
|
||||||
|
element: <Page4 />,
|
||||||
|
title: 'Четвертая страница',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/page-edit',
|
||||||
|
element: <PageEdit />,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const router = createBrowserRouter([
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
element: <App routes={routes} />,
|
||||||
|
children: routes,
|
||||||
|
errorElement: <ErrorPage />,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||||
|
<React.StrictMode>
|
||||||
|
<RouterProvider router={router} />
|
||||||
|
</React.StrictMode>,
|
||||||
|
);
|
19
Lab4/PrBookfill/src/pages/ErrorPage.jsx
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { Alert, Button, Container } from 'react-bootstrap';
|
||||||
|
import { useNavigate } from 'react-router-dom';
|
||||||
|
|
||||||
|
const ErrorPage = () => {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container fluid className="p-2 row justify-content-center">
|
||||||
|
<Container className='col-md-6'>
|
||||||
|
<Alert variant="danger">
|
||||||
|
Страница не найдена
|
||||||
|
</Alert>
|
||||||
|
<Button className="w-25 mt-2" variant="primary" onClick={() => navigate(-1)}>Назад</Button>
|
||||||
|
</Container>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ErrorPage;
|
36
Lab4/PrBookfill/src/pages/Page1.jsx
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
import Banner from '../components/banner/Banner.jsx';
|
||||||
|
|
||||||
|
const Page1 = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Banner />
|
||||||
|
<>
|
||||||
|
<h1>Пример web-страницы.</h1>
|
||||||
|
<h2>1. Структурные элементы</h2>
|
||||||
|
<p><b>Полужирное начертание <i>курсив</i></b></p>
|
||||||
|
<p>Абзац 2 <Link to="/page2">Ссылка</Link></p>
|
||||||
|
<h3>1.1. Списки</h3>
|
||||||
|
<p>
|
||||||
|
Список маркированный:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/page2" target="_blank">
|
||||||
|
Элемент списка 1</a></li>
|
||||||
|
<li>Элемент списка 2</li>
|
||||||
|
<li>...</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
Список нумерованный:
|
||||||
|
</p>
|
||||||
|
<ol>
|
||||||
|
<li>Элемент списка 1</li>
|
||||||
|
<li>Элемент списка 2</li>
|
||||||
|
<li>...</li>
|
||||||
|
</ol>
|
||||||
|
</>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Page1;
|
43
Lab4/PrBookfill/src/pages/Page2.jsx
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { Table } from 'react-bootstrap';
|
||||||
|
import ulstuLogo from '../assets/logo.png';
|
||||||
|
|
||||||
|
const Page2 = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<p className="text-center">
|
||||||
|
Вторая страница содержит пример рисунка (рис. 1) и таблицы (таб. 1).
|
||||||
|
</p>
|
||||||
|
<div className="text-center">
|
||||||
|
<img src={ulstuLogo} alt="logo" width="128" />
|
||||||
|
<br />
|
||||||
|
Рис. 1. Пример рисунка.
|
||||||
|
</div>
|
||||||
|
<div className="mt-3 row justify-content-center">
|
||||||
|
<Table className="w-50" bordered>
|
||||||
|
<caption>Таблица 1. Пример таблицы.</caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th className="w-25">Номер</th>
|
||||||
|
<th>ФИО</th>
|
||||||
|
<th className="w-25">Телефон</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Иванов</td>
|
||||||
|
<td>89999999999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Петров</td>
|
||||||
|
<td>89999999991</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Page2;
|
78
Lab4/PrBookfill/src/pages/Page3.jsx
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import { Button, Form } from 'react-bootstrap';
|
||||||
|
|
||||||
|
const Page3 = () => {
|
||||||
|
const [validated, setValidated] = useState(false);
|
||||||
|
|
||||||
|
const handleSubmit = (event) => {
|
||||||
|
const form = event.currentTarget;
|
||||||
|
if (form.checkValidity() === false) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
}
|
||||||
|
|
||||||
|
setValidated(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="row justify-content-center">
|
||||||
|
<Form className="col-md-6 m-0" noValidate validated={validated} onSubmit={handleSubmit}>
|
||||||
|
<Form.Group className="mb-2" controlId="lastname">
|
||||||
|
<Form.Label>Фамилия</Form.Label>
|
||||||
|
<Form.Control type="text" name="lastname" required />
|
||||||
|
<Form.Control.Feedback>Фамилия заполнена</Form.Control.Feedback>
|
||||||
|
<Form.Control.Feedback type="invalid">Фамилия не заполнена</Form.Control.Feedback>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="firstname">
|
||||||
|
<Form.Label>Имя</Form.Label>
|
||||||
|
<Form.Control type="text" name="firstname" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="email">
|
||||||
|
<Form.Label>E-mail</Form.Label>
|
||||||
|
<Form.Control type="email" name="email" placeholder="name@example.ru" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="password">
|
||||||
|
<Form.Label>Пароль</Form.Label>
|
||||||
|
<Form.Control type="password" name="password" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="date">
|
||||||
|
<Form.Label>Дата</Form.Label>
|
||||||
|
<Form.Control type="date" name="date" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="disabled">
|
||||||
|
<Form.Label>Выключенный компонент</Form.Label>
|
||||||
|
<Form.Control type="text" name="disabled" value="Некоторое значение" disabled />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="readonly">
|
||||||
|
<Form.Label>Компонент только для чтения</Form.Label>
|
||||||
|
<Form.Control type="text" name="readonly" value="Некоторое значение" readOnly />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="color">
|
||||||
|
<Form.Label>Выбор цвета</Form.Label>
|
||||||
|
<Form.Control type="color" name="color" defaultValue='#ff0055' />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2 d-md-flex flex-md-row">
|
||||||
|
<Form.Check className="me-md-3" type='checkbox' name='checkbox1' label='Флажок 1' />
|
||||||
|
<Form.Check className="me-md-3" type='checkbox' name='checkbox2' label='Флажок 2' />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2 d-md-flex flex-md-row">
|
||||||
|
<Form.Check className="me-md-3" type='radio' name='radio1' label='Переключатель 1' />
|
||||||
|
<Form.Check className="me-md-3" type='switch' name='radio2' label='Переключатель 2' />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2">
|
||||||
|
<Form.Select name='selected' required>
|
||||||
|
<option value="" selected>Выберите значение</option>
|
||||||
|
<option value="1">Один</option>
|
||||||
|
<option value="2">Два</option>
|
||||||
|
<option value="3">Три</option>
|
||||||
|
</Form.Select>
|
||||||
|
</Form.Group>
|
||||||
|
<div className="text-center">
|
||||||
|
<Button className="w-50" variant="primary" type="submit">Отправить</Button>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Page3;
|
28
Lab4/PrBookfill/src/pages/Page4.jsx
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import { Button, ButtonGroup, Table } from 'react-bootstrap';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
const Page4 = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ButtonGroup>
|
||||||
|
<Button id="items-add" variant="info">Добавить товар (диалог)</Button>
|
||||||
|
<Button as={Link} to="/page-edit" variant="success">Добавить товар (страница)</Button>
|
||||||
|
</ButtonGroup>
|
||||||
|
<Table className="mt-2" striped>
|
||||||
|
<thead>
|
||||||
|
<th scope="col">№</th>
|
||||||
|
<th scope="col" className="w-25">Товар</th>
|
||||||
|
<th scope="col" className="w-25">Цена</th>
|
||||||
|
<th scope="col" className="w-25">Количество</th>
|
||||||
|
<th scope="col" className="w-25">Сумма</th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
</thead>
|
||||||
|
<tbody></tbody>
|
||||||
|
</Table>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Page4;
|
53
Lab4/PrBookfill/src/pages/PageEdit.jsx
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import { Button, Form } from 'react-bootstrap';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
const PageEdit = () => {
|
||||||
|
const [validated, setValidated] = useState(false);
|
||||||
|
|
||||||
|
const handleSubmit = (event) => {
|
||||||
|
const form = event.currentTarget;
|
||||||
|
if (form.checkValidity() === false) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
}
|
||||||
|
|
||||||
|
setValidated(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="text-center">
|
||||||
|
<img id="image-preview" src="https://via.placeholder.com/200" className="rounded rounded-circle"
|
||||||
|
alt="placeholder" />
|
||||||
|
</div>
|
||||||
|
<Form id="items-form" noValidate validated={validated} onSubmit={handleSubmit}>
|
||||||
|
<Form.Group className="mb-2" controlId="item">
|
||||||
|
<Form.Label htmlFor="item" className="form-label">Товары</Form.Label>
|
||||||
|
<Form.Select name='selected' required>
|
||||||
|
</Form.Select>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="price">
|
||||||
|
<Form.Label>Цена</Form.Label>
|
||||||
|
<Form.Control type="number" name="price"
|
||||||
|
value="0.00" min="1000.00" step="0.50" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="count">
|
||||||
|
<Form.Label>Количество</Form.Label>
|
||||||
|
<Form.Control type="number" name="count"
|
||||||
|
value="0" min="1" step="1" required />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="mb-2" controlId="file">
|
||||||
|
<Form.Label>Изображение</Form.Label>
|
||||||
|
<Form.Control type="file" name="image" accept="image/*" />
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group className="d-flex flex-md-row flex-column justify-content-center">
|
||||||
|
<Button className="btn-mw me-md-3 mb-md-0 mb-2" as={Link} to="/page4" variant="secondary">Назад</Button>
|
||||||
|
<Button className="btn-mw me-md-3" type="submit" variant="primary">Сохранить</Button>
|
||||||
|
</Form.Group>
|
||||||
|
</Form>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default PageEdit;
|
@ -1,18 +1,13 @@
|
|||||||
import { resolve } from 'path'
|
/* eslint-disable import/no-extraneous-dependencies */
|
||||||
import { defineConfig } from 'vite'
|
import react from '@vitejs/plugin-react';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
build: {
|
plugins: [react()],
|
||||||
rollupOptions: {
|
build: {
|
||||||
input: {
|
sourcemap: true,
|
||||||
main: resolve(__dirname, 'index.html'),
|
chunkSizeWarningLimit: 1024,
|
||||||
page2: resolve(__dirname, 'search.html'),
|
emptyOutDir: true,
|
||||||
page3: resolve(__dirname, 'audio.html'),
|
},
|
||||||
page4: resolve(__dirname, 'comics.html'),
|
});
|
||||||
page5: resolve(__dirname, 'favour.html'),
|
|
||||||
page6: resolve(__dirname, 'login.html'),
|
|
||||||
page7: resolve(__dirname, 'admin.html'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|