74 lines
2.7 KiB
JavaScript
74 lines
2.7 KiB
JavaScript
|
// модуль для работы с элементами управления
|
|||
|
|
|||
|
// объект для удобного получения элементов
|
|||
|
// при обращении к атрибуту объекта вызывается
|
|||
|
// нужная функция для поиска элемента
|
|||
|
|
|||
|
export const cntrls = {
|
|||
|
table: document.querySelector("#items-table tbody"),
|
|||
|
form: document.getElementById("add-news-form"),
|
|||
|
list: document.getElementById("list-news"),
|
|||
|
title: document.getElementById("title"),
|
|||
|
date: document.getElementById("date"),
|
|||
|
text: document.getElementById("text"),
|
|||
|
tage: document.getElementById("tage"),
|
|||
|
image: document.getElementById("image"),
|
|||
|
imagePreview: document.getElementById("image-preview"),
|
|||
|
};
|
|||
|
|
|||
|
// Дефолтное превью
|
|||
|
export const imagePlaceholder = "https://via.placeholder.com/200";
|
|||
|
|
|||
|
// функция создает ссылку (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;
|
|||
|
}
|
|||
|
|
|||
|
// функция создает строку таблицы
|
|||
|
export function createTableRow(item, index, 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.title));
|
|||
|
row.appendChild(createTableColumn(item.date));
|
|||
|
row.appendChild(createTableColumn(item.text));
|
|||
|
row.appendChild(createTableColumn(item.tage));
|
|||
|
// редактировать на странице page-edit
|
|||
|
row.appendChild(createTableAnchor("fa-pen-to-square", editPageCallback));
|
|||
|
// удаление
|
|||
|
row.appendChild(createTableAnchor("fa-trash", deleteCallback));
|
|||
|
return row;
|
|||
|
}
|