laba3
14
laba3/.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
# ---> VisualStudioCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
2
laba3/README.md
Normal file
@ -0,0 +1,2 @@
|
||||
# PIbd-22_Bulatova_K.R_Internet_Programming
|
||||
|
65
laba3/about.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
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about.html">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="reviews.html">Отзывы</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="application_form.html"
|
||||
>Связаться с нами</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container text-center my-10">
|
||||
<h2>О НАС</h2>
|
||||
<div class="about_text">
|
||||
<ul>
|
||||
<li>
|
||||
Мы команда профессионалов, которая поможет воплотить в жизнь все
|
||||
ваши смелые идеи
|
||||
</li>
|
||||
<li>Мы постоянно совершенствуемся и ищем подход к каждому клиенту</li>
|
||||
<li>
|
||||
Молодые сотрудники с многолетним опытом, которые ответственно
|
||||
относятся к своему делу
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
67
laba3/admin.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>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="applications.html">Заявки</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="page4.html">Режим редактирования</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="about text-center my-20 mx-auto">
|
||||
<h2>ВХОД ДЛЯ АДМИНИСТРАТОРА</h2>
|
||||
</div>
|
||||
<form>
|
||||
<div class="mb-3">
|
||||
<label for="exampleInputEmail1" class="form-label">Логин</label>
|
||||
<input
|
||||
type="email"
|
||||
class="form-control"
|
||||
id="exampleInputEmail1"
|
||||
aria-describedby="emailHelp"
|
||||
/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="exampleInputPassword1" class="form-label">Пароль</label>
|
||||
<input
|
||||
type="password"
|
||||
class="form-control"
|
||||
id="exampleInputPassword1"
|
||||
/>
|
||||
</div>
|
||||
<a href="page4.html" class="btn"> Вход</a>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
96
laba3/application_form.html
Normal file
@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/boo
|
||||
tstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="admin.html">Режим администратора</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about.html">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="reviews.html">Отзывы</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="application_form.html"
|
||||
>Связаться с нами</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="about text-center my-20 mx-auto">
|
||||
<h2>СВЯЗЬ С НАМИ</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<input
|
||||
type="text"
|
||||
name="name"
|
||||
placeholder="Ваше ФИО"
|
||||
required
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input
|
||||
type="text"
|
||||
name="name"
|
||||
placeholder="Желаемая услуга"
|
||||
required
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input
|
||||
type="date"
|
||||
name="data"
|
||||
placeholder="Дата записи: ДД.ММ.ГГ"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input
|
||||
type="text"
|
||||
name="phone"
|
||||
placeholder="Ваш номер телефона"
|
||||
required
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<button type="submit1">Отправить</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
89
laba3/applications.html
Normal file
@ -0,0 +1,89 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="admin.html">Режим администратора</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="page4.html">Режим редактирования</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="about text-center my-20 mx-auto">
|
||||
<h2>ЗАЯВКИ</h2>
|
||||
</div>
|
||||
<table>
|
||||
<thead>
|
||||
<tr bgcolor="#775860">
|
||||
<th scope="col" width="200" height="100">ФИО</th>
|
||||
<th scope="col" width="200">Услуга</th>
|
||||
<th scope="col" width="200">Дата записи</th>
|
||||
<th scope="col" width="200">Номер телефона</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row" height="70"></th>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" height="70"></th>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" height="70"></th>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" height="70"></th>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" height="70"></th>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
249
laba3/css/style.css
Normal file
@ -0,0 +1,249 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
background: #d3b09d;
|
||||
height: 100%;
|
||||
}
|
||||
img {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
}
|
||||
.kartochka {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.navbar {
|
||||
background-color: #775860;
|
||||
font-size: 20px;
|
||||
backdrop-filter: blur(30px);
|
||||
}
|
||||
.navbar-brand {
|
||||
font-size: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
.banner {
|
||||
margin-top: 10px;
|
||||
justify-content: center;
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: #775860;
|
||||
}
|
||||
.container-fluid h1 {
|
||||
font-size: 60px;
|
||||
text-align: center;
|
||||
padding-top: 7%;
|
||||
padding-left: 5%;
|
||||
}
|
||||
.btn-beauty {
|
||||
background-color: #775860;
|
||||
border: 2px solid #775860;
|
||||
font-size: 30px;
|
||||
border-radius: 15px;
|
||||
color: white;
|
||||
}
|
||||
.about_text {
|
||||
text-align: left;
|
||||
color: #775860;
|
||||
font-size: 40px;
|
||||
}
|
||||
h2 {
|
||||
color: #775860;
|
||||
font-size: 60px;
|
||||
}
|
||||
.card {
|
||||
padding: 3em;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
h2 {
|
||||
font-size: 30px;
|
||||
margin: 20px;
|
||||
}
|
||||
.about_text {
|
||||
font-size: 25px;
|
||||
}
|
||||
.navbar-brand {
|
||||
font-size: 15px;
|
||||
}
|
||||
img {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
max-width: 85%;
|
||||
}
|
||||
.img_options {
|
||||
max-width: 250px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.container-fluid h1 {
|
||||
font-size: 30px;
|
||||
}
|
||||
.btn-beauty {
|
||||
max-width: 80%;
|
||||
}
|
||||
.card {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.col p {
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.rounded-img {
|
||||
max-width: 80%;
|
||||
}
|
||||
}
|
||||
p {
|
||||
font-size: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
/* Для экранов шириной 768px и больше */
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="date"],
|
||||
textarea {
|
||||
width: 50%; /* Уменьшенная ширина на больших экранах */
|
||||
margin: 0 auto; /* Центрирует элемент горизонтально */
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* Для экранов шириной 767px и меньше */
|
||||
input[type="password"],
|
||||
input[type="email"],
|
||||
input[type="text"],
|
||||
input[type="date"] {
|
||||
max-width: 90%;
|
||||
}
|
||||
h2 {
|
||||
margin: 20px;
|
||||
font-size: 25px;
|
||||
}
|
||||
}
|
||||
.form-text {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
form div {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
button[type="submit1"] {
|
||||
background-color: #775860;
|
||||
border: 2px solid #775860;
|
||||
margin-top: 15px;
|
||||
width: 150px;
|
||||
height: 70px;
|
||||
color: white;
|
||||
font-size: 25px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
.form-text {
|
||||
border-radius: 15px;
|
||||
}
|
||||
input[type="password"],
|
||||
input[type="email"],
|
||||
input[type="text"],
|
||||
input[type="date"],
|
||||
textarea {
|
||||
border-radius: 15px;
|
||||
padding: 10px;
|
||||
border: 1px solid #775860;
|
||||
width: 90%;
|
||||
margin: 0 auto; /* Центрирует элемент горизонтально */
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
/* Для экранов шириной 768px и больше */
|
||||
input[type="password"],
|
||||
input[type="email"],
|
||||
input[type="text"],
|
||||
input[type="date"],
|
||||
textarea {
|
||||
width: 50%; /* Уменьшенная ширина на больших экранах */
|
||||
margin: 0 auto; /* Центрирует элемент горизонтально*/
|
||||
}
|
||||
}
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
margin: auto;
|
||||
margin-top: 60px;
|
||||
margin-bottom: 30px;
|
||||
border: 3px solid;
|
||||
border-color: black;
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
@media (max-width: 836px) {
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
margin: 20px;
|
||||
}
|
||||
button[type="submit1"] {
|
||||
width: 120px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
.img_options {
|
||||
height: auto;
|
||||
width: 400px;
|
||||
margin-top: 20px;
|
||||
border-radius: 25px;
|
||||
}
|
||||
@media (max-width: 400px) {
|
||||
button[type="submit1"] {
|
||||
width: 140px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
add {
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
add .container {
|
||||
width: 90%;
|
||||
}
|
||||
.btn {
|
||||
color: white;
|
||||
background-color: #775860;
|
||||
border: 2px solid #775860;
|
||||
margin-top: 45px;
|
||||
border-radius: 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.card-text {
|
||||
font-size: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
.rounded rounded-circle {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.modal-footer {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
button.btn.btn-secondary {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
button.btn.btn-primary {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 3px;
|
||||
}
|
98
laba3/data.json
Normal file
BIN
laba3/images/24d0ef5f8b1e3681340ccf80e2226a90.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
laba3/images/centerpicture.jpg
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
laba3/images/circle1.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
laba3/images/circle2.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
laba3/images/eyelashes.jpg
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
laba3/images/haircut.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
laba3/images/nails.jpg
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
laba3/images/reviews_eyelushes.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
laba3/images/reviews_haircut.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
laba3/images/reviews_nails.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
69
laba3/index.html
Normal file
@ -0,0 +1,69 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<style>
|
||||
img {
|
||||
height: auto;
|
||||
width: 550px;
|
||||
margin: 30px 30px;
|
||||
justify-content: center;
|
||||
}
|
||||
button {
|
||||
margin: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about.html">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="reviews.html">Отзывы</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="application_form.html"
|
||||
>Связаться с нами</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-fluid">
|
||||
<img src="images/centerpicture.jpg" alt="beauty" align="left" />
|
||||
<div class="banner">
|
||||
<h1>Наши клиенты заслуживают самого лучшего!</h1>
|
||||
<div class="container text-center my-5 mx-auto">
|
||||
<a href="services.html" class="btn btn-beauty">Посмотреть услуги</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
63
laba3/js/lines-modal.js
Normal file
@ -0,0 +1,63 @@
|
||||
// Модуль для работы с модальным окном
|
||||
|
||||
// импорт компонента 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.title.value = "";
|
||||
cntrls.price.value = parseFloat(0).toFixed(2);
|
||||
cntrls.description.value = "";
|
||||
cntrls.discountsType.value = "";
|
||||
cntrls.image.value = "";
|
||||
cntrls.imagePreview.src = imagePlaceholder;
|
||||
}
|
||||
|
||||
// функция для показа модального окна
|
||||
// перед показом происходит заполнение формы для редактирования
|
||||
// если объект item не пуст
|
||||
export async function showUpdateModal(item) {
|
||||
modalTitle.innerHTML = item === null ? "Добавить" : "Изменить";
|
||||
console.info(item);
|
||||
|
||||
if (item) {
|
||||
cntrls.lineId.value = item.id;
|
||||
cntrls.itemsType.value = item.itemsId;
|
||||
cntrls.title.value = item.title;
|
||||
cntrls.price.value = item.price;
|
||||
cntrls.description.value = item.description;
|
||||
cntrls.discountsType.value = item.discountsId;
|
||||
// заполнение превью
|
||||
// Если пользователь выбрал изображение, то оно загружается
|
||||
// в тэг 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();
|
||||
}
|
149
laba3/js/lines-rest-api.js
Normal file
@ -0,0 +1,149 @@
|
||||
// модуль для работы с REST API сервера
|
||||
|
||||
// адрес сервера
|
||||
const serverUrl = "http://localhost:8081";
|
||||
|
||||
// функция возвращает объект нужной структуры для отправки на сервер
|
||||
function createLineObject(item, title, price, description, discounts, image) {
|
||||
return {
|
||||
itemsId: item,
|
||||
title,
|
||||
price: parseFloat(price).toFixed(2),
|
||||
newPrice: parseFloat(price * (1 - discounts * 0.1)).toFixed(2),
|
||||
description,
|
||||
discountsId: discounts,
|
||||
image,
|
||||
};
|
||||
}
|
||||
|
||||
// обращение к серверу для получения всех типов товара (get)
|
||||
export async function getAllItemTypes() {
|
||||
const response = await fetch(`${serverUrl}/items`);
|
||||
if (!response.ok) {
|
||||
throw response.statusText;
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
export async function getAllDiscountsTypes() {
|
||||
const response = await fetch(`${serverUrl}/discounts`);
|
||||
if (!response.ok) {
|
||||
throw response.statusText;
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
|
||||
// обращение к серверу для получения всех записей (get)
|
||||
export async function getAllLines() {
|
||||
const response = await fetch(
|
||||
`${serverUrl}/lines?_expand=items&_expand=discounts`
|
||||
);
|
||||
if (!response.ok) {
|
||||
throw response.statusText;
|
||||
}
|
||||
console.log(response);
|
||||
return response.json();
|
||||
}
|
||||
|
||||
// обращение к серверу для получения записи по первичному ключу (id) (get)
|
||||
// id передается в качестве части пути URL get-запроса
|
||||
export async function getLine(id) {
|
||||
const response = await fetch(
|
||||
`${serverUrl}/lines/${id}?_expand=items&_expand=discounts`
|
||||
);
|
||||
if (!response.ok) {
|
||||
throw response.statusText;
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
|
||||
// обращение к серверу для создания записи (post)
|
||||
// объект отправляется в теле запроса (body)
|
||||
export async function createLine(
|
||||
item,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
newPrice,
|
||||
image
|
||||
) {
|
||||
const itemObject = createLineObject(
|
||||
item,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
newPrice,
|
||||
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,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
newPrice,
|
||||
image
|
||||
) {
|
||||
const itemObject = createLineObject(
|
||||
item,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
newPrice,
|
||||
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;
|
||||
}
|
||||
await response.json();
|
||||
location.reload();
|
||||
}
|
||||
|
||||
// обращение к серверу для удаления записи по 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;
|
||||
}
|
||||
await response.json();
|
||||
location.reload();
|
||||
}
|
98
laba3/js/lines-ui.js
Normal file
@ -0,0 +1,98 @@
|
||||
// модуль для работы с элементами управления
|
||||
|
||||
// объект для удобного получения элементов
|
||||
// при обращении к атрибуту объекта вызывается
|
||||
// нужная функция для поиска элемента
|
||||
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"),
|
||||
title: document.getElementById("title"),
|
||||
price: document.getElementById("price"),
|
||||
description: document.getElementById("description"),
|
||||
discountsType: document.getElementById("discounts"),
|
||||
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>
|
||||
export 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, 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.title));
|
||||
row.appendChild(createTableColumn(parseFloat(item.price).toFixed(2)));
|
||||
row.appendChild(createTableColumn(item.description));
|
||||
row.appendChild(createTableColumn(item.discounts.name + "%"));
|
||||
row.appendChild(createTableColumn(parseFloat(item.newPrice).toFixed(2)));
|
||||
|
||||
// редактировать в модальном окне
|
||||
row.appendChild(createTableAnchor("fa-pencil", editCallback));
|
||||
// удаление
|
||||
row.appendChild(createTableAnchor("fa-trash", deleteCallback));
|
||||
|
||||
return row;
|
||||
}
|
308
laba3/js/lines.js
Normal file
@ -0,0 +1,308 @@
|
||||
// модуль с логикой
|
||||
|
||||
import { hideUpdateModal, showUpdateModal } from "./lines-modal";
|
||||
import {
|
||||
createLine,
|
||||
deleteLine,
|
||||
getAllDiscountsTypes,
|
||||
getAllItemTypes,
|
||||
getAllLines,
|
||||
getLine,
|
||||
updateLine,
|
||||
} from "./lines-rest-api";
|
||||
import {
|
||||
cntrls,
|
||||
createItemsOption,
|
||||
createTableRow,
|
||||
imagePlaceholder,
|
||||
// createTableAnchor,
|
||||
} from "./lines-ui";
|
||||
|
||||
async function drawItemsSelect() {
|
||||
console.log(111);
|
||||
// вызов метода REST API для получения списка типов товаров
|
||||
const data = await getAllItemTypes();
|
||||
const data2 = await getAllDiscountsTypes();
|
||||
// очистка содержимого select
|
||||
// удаляется все, что находится между тегами <select></select>
|
||||
// но не атрибуты
|
||||
cntrls.itemsType.innerHTML = "";
|
||||
cntrls.discountsType.innerHTML = "";
|
||||
// пустое значение
|
||||
cntrls.itemsType.appendChild(
|
||||
createItemsOption("Выберите значение", "", true)
|
||||
);
|
||||
// цикл по результату ответа от сервера
|
||||
// используется лямбда-выражение
|
||||
// (item) => {} аналогично function(item) {}
|
||||
data.forEach((item) => {
|
||||
cntrls.itemsType.appendChild(createItemsOption(item.name, item.id));
|
||||
});
|
||||
data2.forEach((item) => {
|
||||
cntrls.discountsType.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),
|
||||
() => removeLine(item.id)
|
||||
)
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
async function addLine(item, title, price, description, discounts, image) {
|
||||
console.info("Try to add item");
|
||||
// вызов метода REST API для добавления записи
|
||||
const data = await createLine(
|
||||
item,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
image
|
||||
);
|
||||
console.info("Added");
|
||||
console.info(data);
|
||||
// загрузка и заполнение table
|
||||
drawLinesTable();
|
||||
}
|
||||
|
||||
async function editLine(id, item, title, price, description, discounts, image) {
|
||||
console.info("Try to update item");
|
||||
// вызов метода REST API для обновления записи
|
||||
const data = await updateLine(
|
||||
id,
|
||||
item,
|
||||
title,
|
||||
price,
|
||||
description,
|
||||
discounts,
|
||||
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(isCheckEvent = true) {
|
||||
console.info("linesForm");
|
||||
|
||||
// загрузка и заполнение select со списком товаров
|
||||
drawItemsSelect();
|
||||
// // загрузка и заполнение table
|
||||
drawLinesTable();
|
||||
|
||||
if (isCheckEvent === true) {
|
||||
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()) {
|
||||
console.log("MYsubmit", cntrls);
|
||||
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 не задано,
|
||||
// то необходимо выполнить добавление записи
|
||||
// иначе обновление записи
|
||||
console.log("MYsubmit", cntrls);
|
||||
if (!currentId) {
|
||||
await addLine(
|
||||
cntrls.itemsType.value,
|
||||
cntrls.title.value,
|
||||
cntrls.price.value,
|
||||
cntrls.description.value,
|
||||
cntrls.discountsType.value,
|
||||
imageBase64
|
||||
);
|
||||
} else {
|
||||
await editLine(
|
||||
currentId,
|
||||
cntrls.itemsType.value,
|
||||
cntrls.title.value,
|
||||
cntrls.price.value,
|
||||
cntrls.description.value,
|
||||
cntrls.discountsType.value,
|
||||
imageBase64
|
||||
);
|
||||
}
|
||||
|
||||
// после выполнения добавления/обновления модальное окно скрывается
|
||||
hideUpdateModal();
|
||||
});
|
||||
}
|
||||
|
||||
export async function createCards() {
|
||||
console.info("createCards");
|
||||
try {
|
||||
const container = document.getElementById("cards-container");
|
||||
|
||||
const data = await getAllLines();
|
||||
console.log("data", data);
|
||||
|
||||
data.forEach((line, index) => {
|
||||
console.log("K", line, index);
|
||||
const cardDiv = document.createElement("div");
|
||||
cardDiv.className = "col";
|
||||
|
||||
const card = document.createElement("div");
|
||||
card.className = "card";
|
||||
|
||||
const img = document.createElement("img");
|
||||
img.src = line.image !== "" ? line.image : "images/centerpicture.jpg";
|
||||
img.className = "rounded-img";
|
||||
img.alt = "";
|
||||
img.style.maxHeight = "500px";
|
||||
|
||||
const cardBody = document.createElement("div");
|
||||
cardBody.className = "card-body";
|
||||
|
||||
const title = document.createElement("h5");
|
||||
title.className = "card-title";
|
||||
title.textContent = line.title;
|
||||
|
||||
const price = document.createElement("h5");
|
||||
price.className = "card-title";
|
||||
price.textContent = "Старая цена: " + line.price;
|
||||
|
||||
const discounts = document.createElement("h6");
|
||||
discounts.classList.add("card-text");
|
||||
discounts.innerText = "Скидка: " + line.discounts.name + "%";
|
||||
|
||||
const newPrice = document.createElement("h5");
|
||||
newPrice.className = "card-title";
|
||||
newPrice.textContent = "Новая цена: " + line.newPrice;
|
||||
newPrice.style.color = "red";
|
||||
|
||||
const description = document.createElement("p");
|
||||
description.className = "card-text";
|
||||
description.innerHTML = line.description;
|
||||
|
||||
cardBody.appendChild(title);
|
||||
cardBody.appendChild(price);
|
||||
cardBody.appendChild(discounts);
|
||||
cardBody.appendChild(newPrice);
|
||||
cardBody.appendChild(description);
|
||||
|
||||
card.appendChild(img);
|
||||
card.appendChild(cardBody);
|
||||
|
||||
cardDiv.appendChild(card);
|
||||
|
||||
container.appendChild(cardDiv);
|
||||
});
|
||||
} catch (error) {
|
||||
console.error("Error fetching data:", error);
|
||||
}
|
||||
}
|
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/*"
|
||||
]
|
||||
}
|
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"
|
||||
}
|
||||
}
|
185
laba3/page4.html
Normal file
@ -0,0 +1,185 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link
|
||||
href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="applications.html">Заявки</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="admin.html">Режим администратора</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<main class="container-fluid p-2">
|
||||
<div class="btn-group" role="group">
|
||||
<button id="items-add" class="btn btn-info">Добавить услугу</button>
|
||||
</div>
|
||||
<div>
|
||||
<table id="items-table" class="table 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-20">Цена</th>
|
||||
<th scope="col" class="w-25">Описание</th>
|
||||
<th scope="col" class="w-20">Скидка</th>
|
||||
<th scope="col" class="w-25">Цена со скидкой</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 modal-dialog-scrollable">
|
||||
<form1 id="items-form" class="needs-validation" novalidate>
|
||||
<div class="modal-content">
|
||||
<div class="modal-header fixed-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
|
||||
class="kartochka"
|
||||
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="title"
|
||||
name="title"
|
||||
class="form-control"
|
||||
type="text1"
|
||||
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="description">Описание</label>
|
||||
<input
|
||||
id="description"
|
||||
name="description"
|
||||
class="form-control"
|
||||
type="text1"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div class="mb-2 width_add_object">
|
||||
<label for="item" class="form-label">Скидка, %</label>
|
||||
<select
|
||||
id="discounts"
|
||||
class="form-select"
|
||||
name="selected"
|
||||
required
|
||||
></select>
|
||||
</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 fixed-footer">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-secondary"
|
||||
data-bs-dismiss="modal"
|
||||
>
|
||||
Закрыть
|
||||
</button>
|
||||
<button type="submit" class="btn btn-primary">Сохранить</button>
|
||||
</div>
|
||||
</div>
|
||||
</form1>
|
||||
</div>
|
||||
</div>
|
||||
<script type="module">
|
||||
import validation from "./js/validation";
|
||||
import { linesForm } from "./js/lines";
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
validation();
|
||||
linesForm();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
76
laba3/reviews.html
Normal file
@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about.html">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="reviews.html">Отзывы</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="application_form.html"
|
||||
>Связаться с нами</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="about text-center my-20 mx-auto">
|
||||
<h2>ОТЗЫВЫ</h2>
|
||||
</div>
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<img
|
||||
src="images/reviews_eyelushes.jpg"
|
||||
class="img_options"
|
||||
alt="eye"
|
||||
/>
|
||||
<p>В этом салоне работают настоящие профессионалы!!</p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<img
|
||||
src="images/reviews_haircut.jpg"
|
||||
class="img_options"
|
||||
alt="hair"
|
||||
/>
|
||||
<p>Спасибо мастеру Елене за качественную стрижку!</p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<img src="images/reviews_nails.jpg" class="img_options" alt="nails" />
|
||||
<p>Очень красивые ногти и широкий выбор цветовой палитры :)</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
179
laba3/services.html
Normal file
@ -0,0 +1,179 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Булатова К. Сайт компании</title>
|
||||
<link
|
||||
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.html"
|
||||
>Тяжелый люкс <br />сеть салонов красоты</a
|
||||
>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav"
|
||||
aria-controls="navbarNav"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about.html">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="reviews.html">Отзывы</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="application_form.html"
|
||||
>Связаться с нами</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="about text-center my-20 mx-auto">
|
||||
<h2>
|
||||
НАШИ <br />
|
||||
УСЛУГИ
|
||||
</h2>
|
||||
</div>
|
||||
<div class="container my-5">
|
||||
<div
|
||||
class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-5"
|
||||
id="cards-container"
|
||||
></div>
|
||||
</div>
|
||||
<div
|
||||
id="items-update"
|
||||
class="modal fade"
|
||||
tabindex="-1"
|
||||
data-bs-backdrop="static"
|
||||
data-bs-keyboard="false"
|
||||
>
|
||||
<div class="modal-dialog">
|
||||
<form id="items-form" class="needs-validation" novalidate>
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5" id="items-update-title"></h1>
|
||||
<button
|
||||
type="button"
|
||||
class="btn-close"
|
||||
data-bs-dismiss="modal"
|
||||
aria-label="Close"
|
||||
></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="text-center">
|
||||
<img
|
||||
id="image-preview"
|
||||
style="width: 200px"
|
||||
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="title"
|
||||
name="title"
|
||||
class="form-control"
|
||||
type="text1"
|
||||
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="description">Описание</label>
|
||||
<input
|
||||
id="description"
|
||||
name="description"
|
||||
class="form-control"
|
||||
type="text1"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div class="mb-2 width_add_object">
|
||||
<label for="item" class="form-label">Скидка</label>
|
||||
<select
|
||||
id="discounts"
|
||||
class="form-select"
|
||||
name="selected"
|
||||
required
|
||||
></select>
|
||||
</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="button"
|
||||
class="btn btn-secondary"
|
||||
data-bs-dismiss="modal"
|
||||
>
|
||||
Закрыть
|
||||
</button>
|
||||
<button type="submit" class="btn btn-primary">Сохранить</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script type="module">
|
||||
import { createCards } from "./js/lines";
|
||||
import validation from "./js/validation";
|
||||
import { linesForm } from "./js/lines";
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
validation();
|
||||
// linesForm(false);
|
||||
createCards();
|
||||
});
|
||||
</script>
|
||||
</html>
|
14
laba3/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'),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|