Added description in methods

This commit is contained in:
Макс Овсяников 2022-10-17 19:49:06 +03:00
parent 15fb4d9606
commit 49223343cf
3 changed files with 25 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import {
import { createBreadcrumb } from './components/create-element'; import { createBreadcrumb } from './components/create-element';
export class DropDown { export class DropDown {
// Глобальные переменные класса
#element; #element;
#list; #list;
#options; #options;
@ -16,20 +17,24 @@ export class DropDown {
#selectedItems; #selectedItems;
#indexes = []; #indexes = [];
// Геттер возвращающий выбранные элементы
get value() { get value() {
return this.#selectedItems ?? null; return this.#selectedItems ?? null;
} }
// Геттер возвращающий индексы выбранных элементов
get indexes() { get indexes() {
return this.#indexes ?? []; return this.#indexes ?? [];
} }
// Конструктор принимающий настройки селекта
constructor(options = {}) { constructor(options = {}) {
this.#init(options); this.#init(options);
this.#render(); this.#render();
this.#initEvent(); this.#initEvent();
} }
// Метод добавления елемента в список index == string/object
addItem(item) { addItem(item) {
if (this.#category) { if (this.#category) {
console.log('can`t add item to category'); console.log('can`t add item to category');
@ -46,6 +51,7 @@ export class DropDown {
this.#render(); this.#render();
} }
// Метод удаления елемента из спискаindex == number
deleteItem(index) { deleteItem(index) {
if (this.#category) { if (this.#category) {
console.log('can`t add item to category'); console.log('can`t add item to category');
@ -58,11 +64,13 @@ export class DropDown {
this.#render(); this.#render();
} }
// Метод удаляющий все элементы списка.
deleteItemAll() { deleteItemAll() {
this.#items.splice(0, this.#items.length); this.#items.splice(0, this.#items.length);
this.#render(); this.#render();
} }
// Метод позволяющий в селекте выбрать элемент который будет изначально отрисовывать, index == number
selectIndex(index) { selectIndex(index) {
if (this.#category) { if (this.#category) {
console.log('can`t add item to category'); console.log('can`t add item to category');
@ -79,10 +87,12 @@ export class DropDown {
this.#render(select); this.#render(select);
} }
// Метод возвращающий елемент по номеру, number == number
getElement(number) { getElement(number) {
return this.#items[number]; return this.#items[number];
} }
// Метод позволяющий сделать селект disabled, value == boolean;
disabled(value) { disabled(value) {
if (typeof value !== 'boolean') { if (typeof value !== 'boolean') {
return; return;
@ -98,6 +108,7 @@ export class DropDown {
} }
} }
// Метод позволяющий открывать/закрывать селект с помощью кнопок, button == внешняя кнопка(HTMLElement); method == string;
buttonControl(button, method) { buttonControl(button, method) {
button.addEventListener('click', () => { button.addEventListener('click', () => {
if (method === 'open') { if (method === 'open') {
@ -110,6 +121,7 @@ export class DropDown {
}); });
} }
// Общая инициализация селекта и формирование элементов
#init(options) { #init(options) {
this.#options = options; this.#options = options;
const { items, multiselect, url } = this.#options; const { items, multiselect, url } = this.#options;
@ -151,6 +163,7 @@ export class DropDown {
}); });
} }
// Метод отрисовывающий кнопку селекта и каретку
#initSelected(select) { #initSelected(select) {
const { styles, selected, placeholder } = this.#options; const { styles, selected, placeholder } = this.#options;
@ -171,6 +184,7 @@ export class DropDown {
} }
} }
// Общий рендер элементов в список и их настойка
#render(select) { #render(select) {
const { styles, multiselect } = this.#options; const { styles, multiselect } = this.#options;
@ -230,6 +244,7 @@ export class DropDown {
this.#addOptionsBehaviour(); this.#addOptionsBehaviour();
} }
// Общий рендер элементов в список и их настойка с получением данных с URL
async #renderUrl() { async #renderUrl() {
const { url, items, multiselect } = this.#options; const { url, items, multiselect } = this.#options;
@ -280,6 +295,7 @@ export class DropDown {
this.#addOptionsBehaviour(); this.#addOptionsBehaviour();
} }
// Метод открывающий список
#open(oneClick) { #open(oneClick) {
this.#list = this.#element.querySelector('.list'); this.#list = this.#element.querySelector('.list');
this.#caret = this.#element.querySelector('.caret'); this.#caret = this.#element.querySelector('.caret');
@ -293,11 +309,13 @@ export class DropDown {
} }
} }
// Метод закрывающий список
#close() { #close() {
this.#list.classList.remove('open'); this.#list.classList.remove('open');
this.#caret.classList.remove('caret_rotate'); this.#caret.classList.remove('caret_rotate');
} }
// Метод реализовывающий выбор элементов в разных режимах. Обычный/Мультиселект/Мультиселект + мультиселект таг.
#addOptionsBehaviour() { #addOptionsBehaviour() {
const { multiselect, placeholder, selected, multiselectTag } = this.#options; const { multiselect, placeholder, selected, multiselectTag } = this.#options;
@ -387,6 +405,7 @@ export class DropDown {
}); });
} }
// Метод позволяющий открывать/закрывать список по переданному эвенту.
#initEvent() { #initEvent() {
const { event } = this.#options; const { event } = this.#options;
if (!event) { if (!event) {

View File

@ -1,5 +1,6 @@
import { customStylesFormat } from './utils'; import { customStylesFormat } from './utils';
// Метод который создает и отвечает за поведение chips
export function createBreadcrumb(data, title, index, id) { export function createBreadcrumb(data, title, index, id) {
const { element, option, indexes, selectedItems } = data; const { element, option, indexes, selectedItems } = data;
const { placeholder, styles } = option; const { placeholder, styles } = option;

View File

@ -1,3 +1,4 @@
// Создание селектора
export function createSelected(element, content, styles) { export function createSelected(element, content, styles) {
if (content) { if (content) {
element.innerHTML = ` element.innerHTML = `
@ -20,6 +21,7 @@ export function createSelected(element, content, styles) {
} }
} }
// Метод ищет и стилизует полученные елементы из styles
export function customStyles(element, styles) { export function customStyles(element, styles) {
if (!styles) { if (!styles) {
return; return;
@ -40,6 +42,7 @@ export function customStyles(element, styles) {
} }
} }
// Метод checkItemStruct возвращает true/false если item содержит указанные свойства,
export function checkItemStruct(item) { export function checkItemStruct(item) {
if (item && typeof item !== 'object') { if (item && typeof item !== 'object') {
return false; return false;
@ -48,6 +51,7 @@ export function checkItemStruct(item) {
return item.hasOwnProperty('id') && item.hasOwnProperty('title') && item.hasOwnProperty('value'); return item.hasOwnProperty('id') && item.hasOwnProperty('title') && item.hasOwnProperty('value');
} }
// Метод getFormatItem преобразовывает каждый елемент полученный из поля Items;
export function getFormatItem(dataItem, index) { export function getFormatItem(dataItem, index) {
const random = Math.random().toString(36).substring(2, 10); const random = Math.random().toString(36).substring(2, 10);
let item = {}; let item = {};
@ -69,6 +73,7 @@ export function getFormatItem(dataItem, index) {
return item; return item;
} }
// Универсальный метод для стилизации селекта
export function customStylesFormat(elemOption, selector) { export function customStylesFormat(elemOption, selector) {
if (elemOption) { if (elemOption) {
Object.entries(elemOption).forEach(([key, value]) => { Object.entries(elemOption).forEach(([key, value]) => {