103 lines
4.0 KiB
JavaScript
103 lines
4.0 KiB
JavaScript
// модуль для работы с элементами управления
|
||
|
||
// объект для удобного получения элементов
|
||
// при обращении к атрибуту объекта вызывается
|
||
// нужная функция для поиска элемента
|
||
export const cntrls = {
|
||
table: document.querySelector("#items-table tbody"),
|
||
form: document.getElementById("items-form"),
|
||
lineId: document.getElementById("items-line-id"),
|
||
itemsType: document.getElementById("item"),
|
||
price: document.getElementById("price"),
|
||
count: document.getElementById("count"),
|
||
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 = "", basePriceIn = "", isSelected = false) {
|
||
var basePrice = "";
|
||
if(basePriceIn != "")
|
||
basePrice = basePriceIn + " рублей";
|
||
const option = document.createElement("option");
|
||
option.value = value || "";
|
||
option.selected = isSelected;
|
||
option.text = name + " " + basePrice;
|
||
option.setAttribute('basePrice', basePriceIn);
|
||
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 img = document.createElement("img");
|
||
img.src = "./img/" + icon + ".png";
|
||
img.height = 20;
|
||
img.alt = "img";
|
||
|
||
const a = document.createElement("a");
|
||
a.href = "#";
|
||
a.appendChild(img);
|
||
a.onclick = (event) => {
|
||
// чтобы в URL не добавлялась решетка
|
||
event.preventDefault();
|
||
event.stopPropagation();
|
||
callback();
|
||
};
|
||
|
||
const td = document.createElement("td");
|
||
td.setAttribute('class', 'align-middle text-center');
|
||
td.appendChild(a);
|
||
return td;
|
||
}
|
||
|
||
// функция создает колонку таблицы с текстом value
|
||
// <td>value</td>
|
||
function createTableColumn(value) {
|
||
const td = document.createElement("td");
|
||
td.setAttribute('class', 'align-middle text-center');
|
||
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, editPageCallback, deleteCallback) {
|
||
const rowNumber = document.createElement("th");
|
||
rowNumber.scope = "row";
|
||
rowNumber.textContent = index + 1;
|
||
rowNumber.setAttribute('class', 'fw-bold align-middle text-center')
|
||
|
||
const row = document.createElement("tr");
|
||
row.id = `line-${item.id}`;
|
||
|
||
row.appendChild(rowNumber);
|
||
row.appendChild(createTableColumn(item.items.name ));
|
||
row.appendChild(createTableColumn(parseFloat(item.price).toFixed(2)));
|
||
row.appendChild(createTableColumn(item.count));
|
||
row.appendChild(createTableColumn(parseFloat(item.sum).toFixed(2)));
|
||
row.appendChild(createTableColumn(item.benefit));
|
||
|
||
// редактировать на странице page-edit
|
||
row.appendChild(createTableAnchor("pen-to-square", editPageCallback));
|
||
// удаление
|
||
row.appendChild(createTableAnchor("trash", deleteCallback));
|
||
return row;
|
||
}
|