commit1
0
.gitignore → laba1/.gitignore
vendored
BIN
laba1/01_отчет.pdf
Normal file
2
laba1/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# PIbd-22_Puchkina_A.A_Internet_Programming
|
||||||
|
|
BIN
laba1/Авторизация.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
laba1/Главная страница.png
Normal file
After Width: | Height: | Size: 722 KiB |
BIN
laba1/Каталог.png
Normal file
After Width: | Height: | Size: 204 KiB |
BIN
laba1/Корзина.png
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
laba1/Страница товара.png
Normal file
After Width: | Height: | Size: 85 KiB |
45
laba2/.gitignore
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# Compiled output
|
||||||
|
/dist
|
||||||
|
/tmp
|
||||||
|
/out-tsc
|
||||||
|
/bazel-out
|
||||||
|
|
||||||
|
# Node
|
||||||
|
/node_modules
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
|
# IDEs and editors
|
||||||
|
.idea/
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.c9/
|
||||||
|
*.launch
|
||||||
|
.settings/
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.history/*
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
/.angular/cache
|
||||||
|
.sass-cache/
|
||||||
|
/connect.lock
|
||||||
|
/coverage
|
||||||
|
/libpeerconnection.log
|
||||||
|
testem.log
|
||||||
|
/typings
|
||||||
|
|
||||||
|
# System files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Ignore dist
|
||||||
|
dist/
|
72
laba2/account.html
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Аккаунт</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<account>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="form-text">
|
||||||
|
<h1>АВТОРИЗАЦИЯ</h1>
|
||||||
|
</div>
|
||||||
|
<form method="post">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email">E-mail</label>
|
||||||
|
<input type="email" name="email" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<a href="addProduct.html" class="btn">Войти</a>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="form-text">
|
||||||
|
<h1>РЕГИСТРАЦИЯ</h1>
|
||||||
|
</div>
|
||||||
|
<form method="post">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email">E-mail</label>
|
||||||
|
<input type="email" name="email" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Повторите пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<button type="submit">Зарегистрироваться</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</account>
|
||||||
|
</body>
|
||||||
|
</html>
|
68
laba2/addProduct.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Добавить товар</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<add>
|
||||||
|
<h1>Добавить товар</h1>
|
||||||
|
<div class="container">
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<span class="input-group-text">$</span>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="form-control"
|
||||||
|
aria-label="Amount (to the nearest dollar)"
|
||||||
|
/>
|
||||||
|
<span class="input-group-text">.00</span>
|
||||||
|
</div>
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="form-control"
|
||||||
|
placeholder="Название"
|
||||||
|
aria-label="Username"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group">
|
||||||
|
<span class="input-group-text">Добавьте текст</span>
|
||||||
|
<textarea class="form-control" aria-label="With textarea"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="input-group">
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
class="form-control"
|
||||||
|
id="inputGroupFile04"
|
||||||
|
aria-describedby="inputGroupFileAddon04"
|
||||||
|
aria-label="Upload"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<button type="submit">Добавить товар</button>
|
||||||
|
<a href="orders.html" class="btn">Просмотреть заказы</a>
|
||||||
|
</div>
|
||||||
|
</add>
|
||||||
|
</body>
|
||||||
|
</html>
|
70
laba2/cart.html
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Корзина</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<cart>
|
||||||
|
<p class="title">КОРЗИНА</p>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Ваша корзина</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</cart>
|
||||||
|
</body>
|
||||||
|
</html>
|
65
laba2/catalog.html
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Каталог</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<catalog>
|
||||||
|
<p class="title">КАТАЛОГ</p>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Столы</p>
|
||||||
|
<a href="productTable1.html"
|
||||||
|
><img src="images/table1.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/table2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/table3.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Стулья</p>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/chair1.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/chair2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/chair3.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Диваны</p>
|
||||||
|
<a href="#"><img src="images/sofa1.png" class="rounded" alt="..." /></a>
|
||||||
|
<a href="#"
|
||||||
|
><img src="images/sofa2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="#"><img src="images/sofa3.png" class="rounded" alt="..." /></a>
|
||||||
|
</div>
|
||||||
|
</catalog>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
laba2/images/Chairs.png
Normal file
After Width: | Height: | Size: 286 KiB |
BIN
laba2/images/Sofas.png
Normal file
After Width: | Height: | Size: 367 KiB |
BIN
laba2/images/chair1.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
laba2/images/chair2.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
laba2/images/chair3.png
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
laba2/images/iconCatalog.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
laba2/images/iconDelete.png
Normal file
After Width: | Height: | Size: 513 B |
BIN
laba2/images/iconsAcc.png
Normal file
After Width: | Height: | Size: 770 B |
BIN
laba2/images/iconsCor.png
Normal file
After Width: | Height: | Size: 748 B |
BIN
laba2/images/shop.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
laba2/images/sofa1.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
laba2/images/sofa2.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
laba2/images/sofa3.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
laba2/images/table1.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
laba2/images/table2.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
laba2/images/table3.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
laba2/images/tables.png
Normal file
After Width: | Height: | Size: 296 KiB |
67
laba2/index.html
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>ANNA shop</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="#">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<div class="container-fluid">
|
||||||
|
<img src="images/shop.png" alt="ANNA" />
|
||||||
|
<h1>ANNA</h1>
|
||||||
|
<p1>Магазин дизайнерской мебели</p1>
|
||||||
|
<p2>Неповторимый стиль вашего дома</p2>
|
||||||
|
</div>
|
||||||
|
<p class="text-assortment">Большой ассортимент</p>
|
||||||
|
<div class="container text-center my-2">
|
||||||
|
<div class="row row-cols-1 row-cols-md-3 row-col-lg-3 g-5">
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/Sofas.png" s="card-img" alt="" />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis">Диваны</p3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/tables.png" class="card-img" alt="..." />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis">Столы</p3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/Chairs.png" class="card-img" alt="..." />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis"
|
||||||
|
>Стулья и кресла</p3
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
107
laba2/orders.html
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Заказы</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<orders>
|
||||||
|
<p class="title">ЗАКАЗЫ</p>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Заказ №1</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Заказ №2</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</orders>
|
||||||
|
</body>
|
||||||
|
</html>
|
3684
laba2/package-lock.json
generated
Normal file
20
laba2/package.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "int-prog",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"start": "vite",
|
||||||
|
"serve": "http-server -p 3000 ./dist/",
|
||||||
|
"build": "vite build",
|
||||||
|
"prod": "npm-run-all build serve"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"bootstrap": "5.3.2",
|
||||||
|
"@fortawesome/fontawesome-free": "6.4.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"http-server": "14.1.1",
|
||||||
|
"vite": "4.4.9",
|
||||||
|
"npm-run-all": "4.1.5"
|
||||||
|
}
|
||||||
|
}
|
53
laba2/productTable1.html
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<link rel="stylesheet" href="styles.css" />
|
||||||
|
<link
|
||||||
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Стол журнальный</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="images/table1.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-коричневый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">55 * 55 * 45 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">22 998 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
417
laba2/styles.css
Normal file
@ -0,0 +1,417 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;300;400;500;600;700&display=swap");
|
||||||
|
|
||||||
|
header {
|
||||||
|
font-size: 32px;
|
||||||
|
border-bottom: #533908 solid 2px;
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
color: #533908;
|
||||||
|
padding: 0.5em;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
header nav {
|
||||||
|
justify-content: flex-end important;
|
||||||
|
display: flex important;
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
header .nav-link {
|
||||||
|
padding-left: 1%;
|
||||||
|
}
|
||||||
|
.container-fluid {
|
||||||
|
position: relative;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
.container-fluid img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
position: absolute;
|
||||||
|
align-items: center;
|
||||||
|
top: 7%;
|
||||||
|
left: 40%;
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 500;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.container-fluid p1 {
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 200;
|
||||||
|
left: 25%;
|
||||||
|
right: 5%;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
position: absolute;
|
||||||
|
top: 30%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
left: 25%;
|
||||||
|
right: 5%;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 1427px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 60px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 90px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p5 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
font-size: 20px;
|
||||||
|
padding-left: 35%;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1120px) and (max-width: 1426px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 45px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 75px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p5 {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 15%;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 23px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 720px) and (max-width: 1119px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 60%;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 415px) and (max-width: 719px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 40%;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 100px) and (max-width: 414px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 8px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 5px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
right: 50%;
|
||||||
|
padding-top: 4%;
|
||||||
|
}
|
||||||
|
p3 {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
.text-catalog {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 36px;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.text-center {
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
catalog img {
|
||||||
|
padding-bottom: 25px;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 40px;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 3%;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
border: 3px solid;
|
||||||
|
border-radius: 30%;
|
||||||
|
}
|
||||||
|
cart .container-products,
|
||||||
|
orders .container-products {
|
||||||
|
background-color: rgba(210, 202, 188, 0.64);
|
||||||
|
position: relative;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-products .title-product,
|
||||||
|
.container-products .price,
|
||||||
|
.container-products .articuL,
|
||||||
|
.container-products a {
|
||||||
|
margin-left: 10%;
|
||||||
|
position: absolute;
|
||||||
|
padding: 3%;
|
||||||
|
}
|
||||||
|
.container-products .title-product {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.container-products .price {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.container-products .title-product,
|
||||||
|
.container-products .price {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.container-products .articul {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
padding-left: 35%;
|
||||||
|
padding-bottom: 3%;
|
||||||
|
}
|
||||||
|
.container-products a {
|
||||||
|
width: 20%;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
.container-products img {
|
||||||
|
width: 30%;
|
||||||
|
padding: 2%;
|
||||||
|
}
|
||||||
|
cart .card,
|
||||||
|
orders .card {
|
||||||
|
background-color: rgba(191, 180, 161, 1);
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
padding-left: 4%;
|
||||||
|
text-align: left;
|
||||||
|
margin-left: 3%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 500;
|
||||||
|
padding-bottom: 10%;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
text-align: left;
|
||||||
|
margin-left: 3%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
text-align: right;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-right: 3%;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
position: relative;
|
||||||
|
top: 60%;
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 3%;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
color: white;
|
||||||
|
background-color: #533908;
|
||||||
|
}
|
||||||
|
product .btn {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 150px;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
color: white;
|
||||||
|
background-color: #533908;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-pageproduct {
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #533908;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-top: 5%;
|
||||||
|
margin-left: 10%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
product img {
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
|
product .card {
|
||||||
|
background-color: rgba(191, 180, 161, 1);
|
||||||
|
margin-right: 5%;
|
||||||
|
margin-left: 5%;
|
||||||
|
}
|
||||||
|
product .title-card {
|
||||||
|
font-size: 24px;
|
||||||
|
margin: 20px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #533908;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .size,
|
||||||
|
product .price,
|
||||||
|
product .color-info,
|
||||||
|
product .size-info,
|
||||||
|
product .price-info {
|
||||||
|
margin-top: 60px;
|
||||||
|
padding: 5%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .size,
|
||||||
|
product .price {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
product .color-info,
|
||||||
|
product .size-info,
|
||||||
|
product .price-info {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .color-info {
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
product .size,
|
||||||
|
product .size-info {
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
product .price,
|
||||||
|
product .price-info {
|
||||||
|
padding-top: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
account .container {
|
||||||
|
padding: 20%;
|
||||||
|
padding-top: 5%;
|
||||||
|
}
|
||||||
|
account .title {
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
}
|
||||||
|
.form-text {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
}
|
||||||
|
.form-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 3%;
|
||||||
|
}
|
||||||
|
button[type="submit"],
|
||||||
|
account .btn {
|
||||||
|
background-color: #d4c8ba;
|
||||||
|
border: 7px solid #d4c8ba;
|
||||||
|
color: #533908;
|
||||||
|
margin-top: 15px;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
border-radius: 25px;
|
||||||
|
}
|
||||||
|
add {
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
add .container {
|
||||||
|
width: 80%;
|
||||||
|
}
|
14
laba2/vite.config.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { resolve } from 'path'
|
||||||
|
import { defineConfig } from 'vite'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
build: {
|
||||||
|
rollupOptions: {
|
||||||
|
input: {
|
||||||
|
main: resolve(__dirname, 'index.html'),
|
||||||
|
page2: resolve(__dirname, 'page2.html'),
|
||||||
|
page3: resolve(__dirname, 'page3.html'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
20
laba3/.eslintrc.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
}
|
||||||
|
}
|
45
laba3/.gitignore
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# Compiled output
|
||||||
|
/dist
|
||||||
|
/tmp
|
||||||
|
/out-tsc
|
||||||
|
/bazel-out
|
||||||
|
|
||||||
|
# Node
|
||||||
|
/node_modules
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
|
# IDEs and editors
|
||||||
|
.idea/
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.c9/
|
||||||
|
*.launch
|
||||||
|
.settings/
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.history/*
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
/.angular/cache
|
||||||
|
.sass-cache/
|
||||||
|
/connect.lock
|
||||||
|
/coverage
|
||||||
|
/libpeerconnection.log
|
||||||
|
testem.log
|
||||||
|
/typings
|
||||||
|
|
||||||
|
# System files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Ignore dist
|
||||||
|
dist/
|
21
laba3/README.md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
### Окружение
|
||||||
|
|
||||||
|
В VSCode необходимо установить плагин (расширение) ESLint:
|
||||||
|
|
||||||
|
https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
|
||||||
|
|
||||||
|
ESLint уже настроен (см. конфиг .eslintrc.json), но для справки можно почитать материал по ссылке
|
||||||
|
|
||||||
|
https://www.digitalocean.com/community/tutorials/linting-and-formatting-with-eslint-in-vs-code
|
||||||
|
|
||||||
|
### Установка зависимостей
|
||||||
|
|
||||||
|
npm install
|
||||||
|
|
||||||
|
### Запуск в режиме разработки
|
||||||
|
|
||||||
|
npm run dev
|
||||||
|
|
||||||
|
### Запуск продуктовой версии (production)
|
||||||
|
|
||||||
|
npm run prod
|
78
laba3/account.html
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Аккаунт</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<account>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="form-text">
|
||||||
|
<h1>АВТОРИЗАЦИЯ</h1>
|
||||||
|
</div>
|
||||||
|
<form method="post">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email">E-mail</label>
|
||||||
|
<input type="email" name="email" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<a href="page4.html" class="btn">Войти</a>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="form-text">
|
||||||
|
<h1>РЕГИСТРАЦИЯ</h1>
|
||||||
|
</div>
|
||||||
|
<form method="post">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email">E-mail</label>
|
||||||
|
<input type="email" name="email" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password">Повторите пароль</label>
|
||||||
|
<input type="password" name="password" required />
|
||||||
|
</div>
|
||||||
|
<button type="submit">Зарегистрироваться</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</account>
|
||||||
|
</body>
|
||||||
|
</html>
|
74
laba3/addProduct.html
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Добавить товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<add>
|
||||||
|
<h1>Добавить товар</h1>
|
||||||
|
<div class="container">
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<span class="input-group-text">$</span>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="form-control"
|
||||||
|
aria-label="Amount (to the nearest dollar)"
|
||||||
|
/>
|
||||||
|
<span class="input-group-text">.00</span>
|
||||||
|
</div>
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="form-control"
|
||||||
|
placeholder="Название"
|
||||||
|
aria-label="Username"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group">
|
||||||
|
<span class="input-group-text">Добавьте текст</span>
|
||||||
|
<textarea class="form-control" aria-label="With textarea"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="input-group">
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
class="form-control"
|
||||||
|
id="inputGroupFile04"
|
||||||
|
aria-describedby="inputGroupFileAddon04"
|
||||||
|
aria-label="Upload"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<button type="submit">Добавить товар</button>
|
||||||
|
<a href="orders.html" class="btn">Просмотреть заказы</a>
|
||||||
|
</div>
|
||||||
|
</add>
|
||||||
|
</body>
|
||||||
|
</html>
|
76
laba3/cart.html
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Корзина</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<cart>
|
||||||
|
<p class="title">КОРЗИНА</p>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Ваша корзина</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</cart>
|
||||||
|
</body>
|
||||||
|
</html>
|
75
laba3/catalog.html
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Каталог</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<catalog>
|
||||||
|
<p class="title">КАТАЛОГ</p>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Столы</p>
|
||||||
|
<a href="products/productTable1.html"
|
||||||
|
><img src="images/table1.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
<a href="products/productTable2.html"
|
||||||
|
><img src="images/table2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="products/productTable3.html"
|
||||||
|
><img src="images/table3.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Стулья</p>
|
||||||
|
<a href="products/productChair1.html"
|
||||||
|
><img src="images/chair1.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
<a href="products/productChair2.html"
|
||||||
|
><img src="images/chair2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="products/productChair3.html"
|
||||||
|
><img src="images/chair3.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="text-catalog">Диваны</p>
|
||||||
|
<a href="products/productSofa1.html"
|
||||||
|
><img src="images/sofa1.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
<a href="products/productSofa2.html"
|
||||||
|
><img src="images/sofa2.png" class="rounded" alt="..." />
|
||||||
|
</a>
|
||||||
|
<a href="products/productSofa3.html"
|
||||||
|
><img src="images/sofa3.png" class="rounded" alt="..."
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
</catalog>
|
||||||
|
</body>
|
||||||
|
</html>
|
428
laba3/css/style.css
Normal file
@ -0,0 +1,428 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;300;400;500;600;700&display=swap");
|
||||||
|
|
||||||
|
header {
|
||||||
|
font-size: 32px;
|
||||||
|
border-bottom: #533908 solid 2px;
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
color: #533908;
|
||||||
|
padding: 0.5em;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
header nav {
|
||||||
|
justify-content: flex-end important;
|
||||||
|
display: flex important;
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
header .nav-link {
|
||||||
|
padding-left: 1%;
|
||||||
|
}
|
||||||
|
.container-fluid {
|
||||||
|
position: relative;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
.container-fluid img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
position: absolute;
|
||||||
|
align-items: center;
|
||||||
|
top: 7%;
|
||||||
|
left: 40%;
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 500;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.container-fluid p1 {
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 200;
|
||||||
|
left: 25%;
|
||||||
|
right: 5%;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
position: absolute;
|
||||||
|
top: 30%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
left: 25%;
|
||||||
|
right: 5%;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 1427px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 60px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 90px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p5 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
font-size: 20px;
|
||||||
|
padding-left: 35%;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1120px) and (max-width: 1426px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 45px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 75px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p5 {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 15%;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 23px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 720px) and (max-width: 1119px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 60%;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 415px) and (max-width: 719px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
padding-left: 40%;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 100px) and (max-width: 414px) {
|
||||||
|
.container-fluid p1 {
|
||||||
|
font-size: 8px;
|
||||||
|
}
|
||||||
|
.container-fluid p2 {
|
||||||
|
font-size: 5px;
|
||||||
|
}
|
||||||
|
.container-fluid h1 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.text-assortment {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
right: 50%;
|
||||||
|
padding-top: 4%;
|
||||||
|
}
|
||||||
|
p3 {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
.text-catalog {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 36px;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.text-center {
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
catalog img {
|
||||||
|
padding-bottom: 25px;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 40px;
|
||||||
|
color: #533908;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 3%;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
border: 3px solid;
|
||||||
|
border-radius: 30%;
|
||||||
|
}
|
||||||
|
cart .container-products,
|
||||||
|
orders .container-products {
|
||||||
|
background-color: rgba(210, 202, 188, 0.64);
|
||||||
|
position: relative;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-products .title-product,
|
||||||
|
.container-products .price,
|
||||||
|
.container-products .articuL,
|
||||||
|
.container-products a {
|
||||||
|
margin-left: 30%;
|
||||||
|
position: absolute;
|
||||||
|
padding: 3%;
|
||||||
|
}
|
||||||
|
.container-products .title-product {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.container-products .price {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.container-products .title-product,
|
||||||
|
.container-products .price {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.container-products .articul {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
padding-bottom: 3%;
|
||||||
|
}
|
||||||
|
.container-products a {
|
||||||
|
width: 20%;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
}
|
||||||
|
.container-products img {
|
||||||
|
width: 30%;
|
||||||
|
padding: 2%;
|
||||||
|
}
|
||||||
|
cart .card,
|
||||||
|
orders .card {
|
||||||
|
background-color: rgba(191, 180, 161, 1);
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
cart u,
|
||||||
|
orders u {
|
||||||
|
padding-left: 4%;
|
||||||
|
text-align: left;
|
||||||
|
margin-left: 3%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 500;
|
||||||
|
padding-bottom: 10%;
|
||||||
|
}
|
||||||
|
p5 {
|
||||||
|
text-align: left;
|
||||||
|
margin-left: 3%;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
p6 {
|
||||||
|
text-align: right;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-right: 3%;
|
||||||
|
}
|
||||||
|
cart .btn,
|
||||||
|
orders .btn {
|
||||||
|
position: relative;
|
||||||
|
top: 60%;
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 3%;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
color: white;
|
||||||
|
background-color: #533908;
|
||||||
|
}
|
||||||
|
product .btn {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
font-weight: 100;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 150px;
|
||||||
|
margin-bottom: 3%;
|
||||||
|
width: fit-content;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
color: white;
|
||||||
|
background-color: #533908;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-pageproduct {
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #533908;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
margin-top: 5%;
|
||||||
|
margin-left: 10%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
product img {
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
|
product .card {
|
||||||
|
background-color: rgba(191, 180, 161, 1);
|
||||||
|
margin-right: 5%;
|
||||||
|
margin-left: 5%;
|
||||||
|
}
|
||||||
|
product .title-card {
|
||||||
|
font-size: 24px;
|
||||||
|
margin: 20px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #533908;
|
||||||
|
font-family: "Montserrat Alternates";
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .size,
|
||||||
|
product .price,
|
||||||
|
product .color-info,
|
||||||
|
product .size-info,
|
||||||
|
product .price-info {
|
||||||
|
margin-top: 60px;
|
||||||
|
padding: 5%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .size,
|
||||||
|
product .price {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
product .color-info,
|
||||||
|
product .size-info,
|
||||||
|
product .price-info {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
product .color,
|
||||||
|
product .color-info {
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
product .size,
|
||||||
|
product .size-info {
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
product .price,
|
||||||
|
product .price-info {
|
||||||
|
padding-top: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
account .container {
|
||||||
|
padding: 20%;
|
||||||
|
padding-top: 5%;
|
||||||
|
}
|
||||||
|
account .title {
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
}
|
||||||
|
.form-text {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Montserrat Alternates", sans-serif;
|
||||||
|
}
|
||||||
|
.form-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 3%;
|
||||||
|
}
|
||||||
|
button[type="submit"],
|
||||||
|
account .btn {
|
||||||
|
background-color: #d4c8ba;
|
||||||
|
border: 7px solid #d4c8ba;
|
||||||
|
color: #533908;
|
||||||
|
margin-top: 15px;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
border-radius: 25px;
|
||||||
|
}
|
||||||
|
button[type="submit-grey"],
|
||||||
|
main .btn-secondary {
|
||||||
|
background-color: grey;
|
||||||
|
border: 7px solid grey;
|
||||||
|
color: white;
|
||||||
|
margin-top: 15px;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
border-radius: 25px;
|
||||||
|
}
|
||||||
|
add {
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
add .container {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
#image-preview {
|
||||||
|
width: 200px;
|
||||||
|
}
|
117
laba3/data.json
Normal file
BIN
laba3/images/Chairs.png
Normal file
After Width: | Height: | Size: 286 KiB |
BIN
laba3/images/Sofas.png
Normal file
After Width: | Height: | Size: 367 KiB |
BIN
laba3/images/chair1.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
laba3/images/chair2.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
laba3/images/chair3.png
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
laba3/images/iconCatalog.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
laba3/images/iconDelete.png
Normal file
After Width: | Height: | Size: 513 B |
BIN
laba3/images/iconsAcc.png
Normal file
After Width: | Height: | Size: 770 B |
BIN
laba3/images/iconsCor.png
Normal file
After Width: | Height: | Size: 748 B |
BIN
laba3/images/shop.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
laba3/images/sofa1.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
laba3/images/sofa2.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
laba3/images/sofa3.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
laba3/images/table1.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
laba3/images/table2.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
laba3/images/table3.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
laba3/images/tables.png
Normal file
After Width: | Height: | Size: 296 KiB |
74
laba3/index.html
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>ANNA</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="#">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<div class="container-fluid">
|
||||||
|
<img src="images/shop.png" alt="ANNA" />
|
||||||
|
<h1>ANNA</h1>
|
||||||
|
<p1>Магазин дизайнерской мебели</p1>
|
||||||
|
<p2>Неповторимый стиль вашего дома</p2>
|
||||||
|
</div>
|
||||||
|
<p class="text-assortment">Большой ассортимент</p>
|
||||||
|
<div class="container text-center my-2">
|
||||||
|
<div class="row row-cols-1 row-cols-md-3 row-col-lg-3 g-5">
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/Sofas.png" s="card-img" alt="" />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis">Диваны</p3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/tables.png" class="card-img" alt="..." />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis">Столы</p3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<img src="images/Chairs.png" class="card-img" alt="..." />
|
||||||
|
<div class="card-img-overlay">
|
||||||
|
<p3 class="badge bg-light text-warning-emphasis"
|
||||||
|
>Стулья и кресла</p3
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
65
laba3/js/lines-modal.js
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
// Модуль для работы с модальным окном
|
||||||
|
|
||||||
|
// импорт компонента 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");
|
||||||
|
|
||||||
|
// обнуление значений модального окна, т. к.
|
||||||
|
// используется одно окно для всех операций
|
||||||
|
function resetValues() {
|
||||||
|
cntrls.lineId.value = "";
|
||||||
|
cntrls.itemsType.value = "";
|
||||||
|
cntrls.name.value = "";
|
||||||
|
cntrls.price.value = parseFloat(0).toFixed(2);
|
||||||
|
cntrls.count.value = 0;
|
||||||
|
cntrls.color.value = "";
|
||||||
|
cntrls.size.value = "";
|
||||||
|
cntrls.image.value = "";
|
||||||
|
cntrls.imagePreview.src = imagePlaceholder;
|
||||||
|
}
|
||||||
|
|
||||||
|
// функция для показа модального окна
|
||||||
|
// перед показом происходит заполнение формы для редактирования
|
||||||
|
// если объект item не пуст
|
||||||
|
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.value = item.name;
|
||||||
|
cntrls.price.value = item.price;
|
||||||
|
cntrls.count.value = item.count;
|
||||||
|
cntrls.color.value = item.color;
|
||||||
|
cntrls.size.value = item.size;
|
||||||
|
// заполнение превью
|
||||||
|
// Если пользователь выбрал изображение, то оно загружается
|
||||||
|
// в тэг image с id image - preview
|
||||||
|
// иначе устанавливается заглушка, адрес которой указан в imagePlaceholder
|
||||||
|
cntrls.imagePreview.src = item.image ? item.image : imagePlaceholder;
|
||||||
|
} else {
|
||||||
|
resetValues();
|
||||||
|
}
|
||||||
|
|
||||||
|
myModal.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
// функция для скрытия модального окна
|
||||||
|
export function hideUpdateModal() {
|
||||||
|
resetValues();
|
||||||
|
|
||||||
|
// удаление класса was-validated для скрытия результатов валидации
|
||||||
|
cntrls.form.classList.remove("was-validated");
|
||||||
|
|
||||||
|
myModal.hide();
|
||||||
|
}
|
128
laba3/js/lines-rest-api.js
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
// модуль для работы с REST API сервера
|
||||||
|
|
||||||
|
// адрес сервера
|
||||||
|
const serverUrl = "http://localhost:8081";
|
||||||
|
|
||||||
|
// функция возвращает объект нужной структуры для отправки на сервер
|
||||||
|
function createLineObject(item, name, price, count, color, size, image) {
|
||||||
|
return {
|
||||||
|
itemsId: item,
|
||||||
|
name,
|
||||||
|
price: parseFloat(price).toFixed(2),
|
||||||
|
count,
|
||||||
|
color,
|
||||||
|
size,
|
||||||
|
sum: parseFloat(price * count).toFixed(2),
|
||||||
|
image,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// обращение к серверу для получения всех типов товара (get)
|
||||||
|
export async function getAllItemTypes() {
|
||||||
|
const response = await fetch(`${serverUrl}/items`);
|
||||||
|
if (!response.ok) {
|
||||||
|
throw response.statusText;
|
||||||
|
}
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
// обращение к серверу для получения всех записей (get)
|
||||||
|
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-запроса
|
||||||
|
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)
|
||||||
|
export async function createLine(item, name, price, count, color, size, image) {
|
||||||
|
const itemObject = createLineObject(
|
||||||
|
item,
|
||||||
|
name,
|
||||||
|
price,
|
||||||
|
count,
|
||||||
|
color,
|
||||||
|
size,
|
||||||
|
image
|
||||||
|
);
|
||||||
|
|
||||||
|
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-запроса
|
||||||
|
export async function updateLine(
|
||||||
|
id,
|
||||||
|
item,
|
||||||
|
name,
|
||||||
|
price,
|
||||||
|
count,
|
||||||
|
color,
|
||||||
|
size,
|
||||||
|
image
|
||||||
|
) {
|
||||||
|
const itemObject = createLineObject(
|
||||||
|
item,
|
||||||
|
name,
|
||||||
|
price,
|
||||||
|
count,
|
||||||
|
color,
|
||||||
|
size,
|
||||||
|
image
|
||||||
|
);
|
||||||
|
|
||||||
|
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-запроса
|
||||||
|
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();
|
||||||
|
}
|
106
laba3/js/lines-ui.js
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
// модуль для работы с элементами управления
|
||||||
|
|
||||||
|
// объект для удобного получения элементов
|
||||||
|
// при обращении к атрибуту объекта вызывается
|
||||||
|
// нужная функция для поиска элемента
|
||||||
|
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"),
|
||||||
|
name: document.getElementById("name"),
|
||||||
|
price: document.getElementById("price"),
|
||||||
|
count: document.getElementById("count"),
|
||||||
|
color: document.getElementById("color"),
|
||||||
|
size: document.getElementById("size"),
|
||||||
|
image: document.getElementById("image"),
|
||||||
|
imagePreview: document.getElementById("image-preview"),
|
||||||
|
};
|
||||||
|
|
||||||
|
// Дефолтное превью
|
||||||
|
export const imagePlaceholder = "https://via.placeholder.com/200";
|
||||||
|
|
||||||
|
// функция создает тег option для select
|
||||||
|
// <option value="" selected>name</option>
|
||||||
|
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>
|
||||||
|
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>
|
||||||
|
function createTableColumn(value) {
|
||||||
|
const td = document.createElement("td");
|
||||||
|
td.textContent = 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>
|
||||||
|
// <td><a href="#" onclick="editCallback()"><i class="fa-solid fa-pencil"></i></a></td>
|
||||||
|
// <td><a href="#" onclick="editPageCallback()"><i class="fa-solid fa-pen-to-square"></i></a></td>
|
||||||
|
// <td><a href="#" onclick="deleteCallback()"><i class="fa-solid fa-trash"></i></a></td>
|
||||||
|
// </tr>
|
||||||
|
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));
|
||||||
|
row.appendChild(createTableColumn(parseFloat(item.price).toFixed(2)));
|
||||||
|
row.appendChild(createTableColumn(item.count));
|
||||||
|
row.appendChild(createTableColumn(item.color));
|
||||||
|
row.appendChild(createTableColumn(item.size));
|
||||||
|
row.appendChild(createTableColumn(parseFloat(item.sum).toFixed(2)));
|
||||||
|
// редактировать в модальном окне
|
||||||
|
row.appendChild(createTableAnchor("fa-pencil", editCallback));
|
||||||
|
// редактировать на странице page-edit
|
||||||
|
row.appendChild(createTableAnchor("fa-pen-to-square", editPageCallback));
|
||||||
|
// удаление
|
||||||
|
row.appendChild(createTableAnchor("fa-trash", deleteCallback));
|
||||||
|
return row;
|
||||||
|
}
|
339
laba3/js/lines.js
Normal file
@ -0,0 +1,339 @@
|
|||||||
|
// модуль с логикой
|
||||||
|
|
||||||
|
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";
|
||||||
|
|
||||||
|
async function drawItemsSelect() {
|
||||||
|
// вызов метода REST API для получения списка типов товаров
|
||||||
|
const data = await getAllItemTypes();
|
||||||
|
// очистка содержимого select
|
||||||
|
// удаляется все, что находится между тегами <select></select>
|
||||||
|
// но не атрибуты
|
||||||
|
cntrls.itemsType.innerHTML = "";
|
||||||
|
// пустое значение
|
||||||
|
cntrls.itemsType.appendChild(
|
||||||
|
createItemsOption("Выберите значение", "", true)
|
||||||
|
);
|
||||||
|
// цикл по результату ответа от сервера
|
||||||
|
// используется лямбда-выражение
|
||||||
|
// (item) => {} аналогично function(item) {}
|
||||||
|
data.forEach((item) => {
|
||||||
|
cntrls.itemsType.appendChild(createItemsOption(item.name, item.id));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function addLine(item, name, price, count, color, size, image) {
|
||||||
|
console.info("Try to add item");
|
||||||
|
// вызов метода REST API для добавления записи
|
||||||
|
const data = await createLine(item, name, price, count, color, size, image);
|
||||||
|
console.info("Added");
|
||||||
|
console.info(data);
|
||||||
|
// загрузка и заполнение table
|
||||||
|
drawLinesTable();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function editLine(id, item, name, price, count, color, size, image) {
|
||||||
|
console.info("Try to update item");
|
||||||
|
// вызов метода REST API для обновления записи
|
||||||
|
const data = await updateLine(
|
||||||
|
id,
|
||||||
|
item,
|
||||||
|
name,
|
||||||
|
price,
|
||||||
|
count,
|
||||||
|
color,
|
||||||
|
size,
|
||||||
|
image
|
||||||
|
);
|
||||||
|
console.info("Updated");
|
||||||
|
console.info(data);
|
||||||
|
// загрузка и заполнение table
|
||||||
|
drawLinesTable();
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
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);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// функция для обновления блока с превью выбранного изображения
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для обработки создания и редактирования элементов таблицы через модальное окно
|
||||||
|
// Если хотите делать через страницу, то удалите эту функцию
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
// получение id строки для редактирования
|
||||||
|
// это значение содержится в скрытом input
|
||||||
|
const currentId = cntrls.lineId.value;
|
||||||
|
// если значение id не задано,
|
||||||
|
// то необходимо выполнить добавление записи
|
||||||
|
// иначе обновление записи
|
||||||
|
if (!currentId) {
|
||||||
|
await addLine(
|
||||||
|
cntrls.itemsType.value,
|
||||||
|
cntrls.name.value,
|
||||||
|
cntrls.price.value,
|
||||||
|
cntrls.count.value,
|
||||||
|
cntrls.color.value,
|
||||||
|
cntrls.size.value,
|
||||||
|
imageBase64
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
await editLine(
|
||||||
|
currentId,
|
||||||
|
cntrls.itemsType.value,
|
||||||
|
cntrls.name.value,
|
||||||
|
cntrls.price.value,
|
||||||
|
cntrls.count.value,
|
||||||
|
cntrls.color.value,
|
||||||
|
cntrls.size.value,
|
||||||
|
imageBase64
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// после выполнения добавления/обновления модальное окно скрывается
|
||||||
|
hideUpdateModal();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для обработки создания и редактирования элементов таблицы через страницу page-edit.html
|
||||||
|
// Если хотите делать через модальное окно, то удалите эту функцию
|
||||||
|
export async function linesPageForm() {
|
||||||
|
console.info("linesPageForm");
|
||||||
|
|
||||||
|
// загрузка и заполнение select со списком товаров
|
||||||
|
drawItemsSelect();
|
||||||
|
|
||||||
|
// func1 = (id) => {} аналогично function func1(id) {}
|
||||||
|
const goBack = () => location.assign("/page4.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.value = line.name;
|
||||||
|
cntrls.price.value = line.price;
|
||||||
|
cntrls.count.value = line.count;
|
||||||
|
cntrls.color.value = line.color;
|
||||||
|
cntrls.size.value = line.size;
|
||||||
|
// заполнение превью
|
||||||
|
// Если пользователь выбрал изображение, то оно загружается
|
||||||
|
// в тэг 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
// если значение параметра запроса не задано,
|
||||||
|
// то необходимо выполнить добавление записи
|
||||||
|
// иначе обновление записи
|
||||||
|
if (!currentId) {
|
||||||
|
await addLine(
|
||||||
|
cntrls.itemsType.value,
|
||||||
|
cntrls.name.value,
|
||||||
|
cntrls.price.value,
|
||||||
|
cntrls.count.value,
|
||||||
|
cntrls.color.value,
|
||||||
|
cntrls.size.value,
|
||||||
|
imageBase64
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
await editLine(
|
||||||
|
currentId,
|
||||||
|
cntrls.itemsType.value,
|
||||||
|
cntrls.name.value,
|
||||||
|
cntrls.price.value,
|
||||||
|
cntrls.count.value,
|
||||||
|
cntrls.color.value,
|
||||||
|
cntrls.size.value,
|
||||||
|
imageBase64
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// возврат к странице page4
|
||||||
|
goBack();
|
||||||
|
});
|
||||||
|
}
|
25
laba3/js/validation.js
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
// модуль используется для валидации форма на странице
|
||||||
|
|
||||||
|
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;
|
14
laba3/jsconfig.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "ESNext",
|
||||||
|
"moduleResolution": "Node",
|
||||||
|
"target": "ES2020",
|
||||||
|
"jsx": "preserve",
|
||||||
|
"strictNullChecks": true,
|
||||||
|
"strictFunctionTypes": true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"**/node_modules/*"
|
||||||
|
]
|
||||||
|
}
|
113
laba3/orders.html
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Заказы</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<orders>
|
||||||
|
<p class="title">ЗАКАЗЫ</p>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Заказ №1</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/sofa3.png" />
|
||||||
|
<p class="title-product">Диван 3</p>
|
||||||
|
<p class="articul">Артикул 2352788</p>
|
||||||
|
<p class="price">14 999 руб.</p>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="container-products">
|
||||||
|
<img src="images/chair3.png" />
|
||||||
|
<div class="title-product">Кресло</div>
|
||||||
|
<div class="articul">Артикул 6488268</div>
|
||||||
|
<div class="price">7 999 руб.</div>
|
||||||
|
<a class="navbar-brand p-0" href="#">
|
||||||
|
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="row">
|
||||||
|
<u>Заказ №2</u>
|
||||||
|
</div>
|
||||||
|
<p5>Общая цена</p5>
|
||||||
|
<p6>22 998 руб.</p6>
|
||||||
|
<div class="row">
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Перейти <br />
|
||||||
|
к оформлению
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</orders>
|
||||||
|
</body>
|
||||||
|
</html>
|
7950
laba3/package-lock.json
generated
Normal file
26
laba3/package.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "int-prog",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"vite": "vite",
|
||||||
|
"serve": "http-server -p 3000 ./dist/",
|
||||||
|
"build": "vite build",
|
||||||
|
"rest": "json-server --watch data.json -p 8081",
|
||||||
|
"dev": "npm-run-all --parallel rest vite",
|
||||||
|
"prod": "npm-run-all build --parallel serve rest"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"bootstrap": "5.3.2",
|
||||||
|
"@fortawesome/fontawesome-free": "6.4.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"vite": "4.4.9",
|
||||||
|
"eslint": "8.50.0",
|
||||||
|
"eslint-config-airbnb-base": "15.0.0",
|
||||||
|
"eslint-plugin-import": "2.28.1",
|
||||||
|
"http-server": "14.1.1",
|
||||||
|
"json-server": "0.17.4",
|
||||||
|
"npm-run-all": "4.1.5"
|
||||||
|
}
|
||||||
|
}
|
138
laba3/page-edit.html
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Добавить товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="h-100 d-flex flex-column">
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="container-fluid p-2">
|
||||||
|
<div class="text-center">
|
||||||
|
<img
|
||||||
|
id="image-preview"
|
||||||
|
src="https://via.placeholder.com/200"
|
||||||
|
class="rounded rounded-circle"
|
||||||
|
alt="placeholder"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<form id="items-form" class="needs-validation" novalidate>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label for="item" class="form-label">Категория</label>
|
||||||
|
<select
|
||||||
|
id="item"
|
||||||
|
class="form-select"
|
||||||
|
name="selected"
|
||||||
|
required
|
||||||
|
></select>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="description">Название</label>
|
||||||
|
<input
|
||||||
|
id="name"
|
||||||
|
name="name"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="price">Цена</label>
|
||||||
|
<input
|
||||||
|
id="price"
|
||||||
|
name="price"
|
||||||
|
class="form-control"
|
||||||
|
type="number"
|
||||||
|
value="0.00"
|
||||||
|
min="1000.00"
|
||||||
|
step="0.50"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="count">Количество</label>
|
||||||
|
<input
|
||||||
|
id="count"
|
||||||
|
name="count"
|
||||||
|
class="form-control"
|
||||||
|
type="number"
|
||||||
|
value="0"
|
||||||
|
min="1"
|
||||||
|
step="1"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="color">Цвет</label>
|
||||||
|
<input
|
||||||
|
id="color"
|
||||||
|
name="color"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="size">Размеры</label>
|
||||||
|
<input
|
||||||
|
id="size"
|
||||||
|
name="size"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="image">Изображение</label>
|
||||||
|
<input
|
||||||
|
id="image"
|
||||||
|
type="file"
|
||||||
|
name="image"
|
||||||
|
class="form-control"
|
||||||
|
accept="image/*"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<a href="/page4.html" class="btn btn-secondary">Назад</a>
|
||||||
|
<button type="submit" class="btn btn-primary">Сохранить</button>
|
||||||
|
</form>
|
||||||
|
</main>
|
||||||
|
<script type="module">
|
||||||
|
import validation from "./js/validation";
|
||||||
|
import { linesPageForm } from "./js/lines";
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
validation();
|
||||||
|
linesPageForm();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
194
laba3/page4.html
Normal file
@ -0,0 +1,194 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Список товаров</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="./node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="./css/style.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="h-100 d-flex flex-column">
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="catalog.html">
|
||||||
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="cart.html">
|
||||||
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="account.html">
|
||||||
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="container-fluid p-2">
|
||||||
|
<button id="items-add" type="submit" class="btn btn-success">
|
||||||
|
Добавить товар (диалог)
|
||||||
|
</button>
|
||||||
|
<a class="btn btn-secondary" href="/page-edit.html"
|
||||||
|
>Добавить товар (страница)</a
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<table id="items-table" class="table table-light table-striped">
|
||||||
|
<thead>
|
||||||
|
<th scope="col">№</th>
|
||||||
|
<th scope="col" class="w-25">Категория</th>
|
||||||
|
<th scope="col" class="w-25">Название</th>
|
||||||
|
<th scope="col" class="w-25">Цена</th>
|
||||||
|
<th scope="col" class="w-25">Количество</th>
|
||||||
|
<th scope="col" class="w-25">Цвет</th>
|
||||||
|
<th scope="col" class="w-25">Размеры</th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
<th scope="col"></th>
|
||||||
|
</thead>
|
||||||
|
<tbody></tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<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">
|
||||||
|
<div class="text-center">
|
||||||
|
<img
|
||||||
|
id="image-preview"
|
||||||
|
src="https://via.placeholder.com/200"
|
||||||
|
class="rounded rounded-circle"
|
||||||
|
alt="placeholder"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<input id="items-line-id" type="number" hidden />
|
||||||
|
<div class="mb-2">
|
||||||
|
<label for="item" class="form-label">Категория</label>
|
||||||
|
<select
|
||||||
|
id="item"
|
||||||
|
class="form-select"
|
||||||
|
name="selected"
|
||||||
|
required
|
||||||
|
></select>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="description">Название</label>
|
||||||
|
<input
|
||||||
|
id="name"
|
||||||
|
name="name"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="price">Цена</label>
|
||||||
|
<input
|
||||||
|
id="price"
|
||||||
|
name="price"
|
||||||
|
class="form-control"
|
||||||
|
type="number"
|
||||||
|
value="0.00"
|
||||||
|
min="1000.00"
|
||||||
|
step="0.50"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="count">Количество</label>
|
||||||
|
<input
|
||||||
|
id="count"
|
||||||
|
name="count"
|
||||||
|
class="form-control"
|
||||||
|
type="number"
|
||||||
|
value="0"
|
||||||
|
min="1"
|
||||||
|
step="1"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="color">Цвет</label>
|
||||||
|
<input
|
||||||
|
id="color"
|
||||||
|
name="color"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="size">Размеры</label>
|
||||||
|
<input
|
||||||
|
id="size"
|
||||||
|
name="size"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
maxlength="100"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-2">
|
||||||
|
<label class="form-label" for="image">Изображение</label>
|
||||||
|
<input
|
||||||
|
id="image"
|
||||||
|
type="file"
|
||||||
|
name="image"
|
||||||
|
class="form-control"
|
||||||
|
accept="image/*"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button
|
||||||
|
type="submit-grey"
|
||||||
|
class="btn btn-secondary"
|
||||||
|
data-bs-dismiss="modal"
|
||||||
|
>
|
||||||
|
Закрыть
|
||||||
|
</button>
|
||||||
|
<button type="submit" class="btn btn-success">Сохранить</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="module">
|
||||||
|
import validation from "./js/validation";
|
||||||
|
import { linesForm } from "./js/lines";
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
validation();
|
||||||
|
linesForm();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productChair1.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Стул обеденный</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/chair1.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-коричневый, темно-зеленый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">45 * 45 * 86 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">5 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productChair2.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Барный стул</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/chair2.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Бежевый, черный</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">47 * 35 * 75 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">3 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productChair3.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Кресло</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/chair3.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Светло-бежевый, белый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">82 * 92 * 92 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">19 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productSofa1.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Диван</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/sofa1.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-коричневый, светло-бежевый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">250 * 90 * 92 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">47 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productSofa2.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Диван</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/sofa2.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-серый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">190 * 100 * 80 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">23 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productSofa3.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Диван</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/sofa3.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-коричневый, темно-зеленый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">220 * 90 * 92 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">35 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productTable1.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Стол журнальный</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/table1.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Темно-коричневый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">55 * 55 * 45 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">9 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productTable2.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Рабочий стол</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/table2.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Бежевый</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">140 * 60 * 80 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">12 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
61
laba3/products/productTable3.html
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Товар</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<script
|
||||||
|
type="module"
|
||||||
|
src="../node_modules/bootstrap/dist/js/bootstrap.min.js"
|
||||||
|
></script>
|
||||||
|
<link
|
||||||
|
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="../css/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a class="navbar-brand p-0" href="../catalog.html">
|
||||||
|
<img src="../images/iconCatalog.png" alt="Каталог" width="45" />
|
||||||
|
</a>
|
||||||
|
<a class="nav-link active" aria-current="page" href="../index.html"
|
||||||
|
>ANNA</a
|
||||||
|
>
|
||||||
|
<nav>
|
||||||
|
<a class="navbar-brand p-0" href="../cart.html">
|
||||||
|
<img src="../images/iconsCor.png" alt="Корзина" width="37" />
|
||||||
|
</a>
|
||||||
|
<a class="navbar-brand p-0" href="../account.html">
|
||||||
|
<img src="../images/iconsAcc.png" alt="Аккаунт" width="38" />
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<product>
|
||||||
|
<div class="title-pageproduct">Кухонный стол</div>
|
||||||
|
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||||
|
<div class="col text-center">
|
||||||
|
<img class="rounded" src="../images/table3.png" alt="..." />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card">
|
||||||
|
<div class="title-card">Характеристики</div>
|
||||||
|
<div class="color">Цвет</div>
|
||||||
|
<div class="color-info">Бежевый, черный</div>
|
||||||
|
<div class="size">Размеры</div>
|
||||||
|
<div class="size-info">120 * 80 * 75 см</div>
|
||||||
|
<div class="price">Общая цена</div>
|
||||||
|
<div class="price-info">19 999 руб.</div>
|
||||||
|
<button type="button" class="btn">
|
||||||
|
Добавить <br />
|
||||||
|
в корзину
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</product>
|
||||||
|
</body>
|
||||||
|
</html>
|
18
laba3/vite.config.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import { resolve } from "path";
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
|
import { defineConfig } from "vite";
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
build: {
|
||||||
|
sourcemap: true,
|
||||||
|
emptyOutDir: true,
|
||||||
|
rollupOptions: {
|
||||||
|
input: {
|
||||||
|
main: resolve(__dirname, "index.html"),
|
||||||
|
page2: resolve(__dirname, "page2.html"),
|
||||||
|
page3: resolve(__dirname, "page3.html"),
|
||||||
|
page4: resolve(__dirname, "page4.html"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|