Added methods in initSelected and methods for utils

This commit is contained in:
MaxOvs
2023-01-05 19:56:07 +03:00
parent ce3b928635
commit 55c4bfaa7c
6 changed files with 133 additions and 54 deletions

View File

@ -0,0 +1,5 @@
export interface IDataItem{
category?: string;
categoryItems?: string;
ItemValue: object | string | number;
}

View File

@ -0,0 +1,81 @@
import { IItems } from '../../interfaces/items.interface';
import { IDataItem } from './urils.interface';
/**
* Преобразование каждого елемента полученного из поля Items;
* @param {IDataItem} dataItem полученный елемент переданный при создании селекта может быть как object / string
* @param {number} index индекс этого элемента
* @returns {IDataItem | IItems} возвращает сформированный объект
*/
export function getFormatItem(dataItem:IDataItem , index: number):IDataItem | IItems {
const random = Math.random().toString(36).substring(2, 10);
let item: IItems;
if(checkItemStruct(dataItem)){
return dataItem;
} else{
item = {
id: random,
title: dataItem,
value: index
}
return item;
}
}
/**
* Проверка содержит ли item указанные свойства,
* @param {object} item проверяемый на определенную структуру элемент
* @returns {boolean} возвращает true/false если item содержит указанные свойства
*/
export function checkItemStruct(item: object): boolean {
if (item && typeof item !== 'object') {
return false;
}
return item.hasOwnProperty('id') && item.hasOwnProperty('title') && item.hasOwnProperty('value');
}
/**
* Создание кнопки выбора элементов
* @param {HTMLElement} element созданный экземпляр класса DropDown
* @param {string} content placeholer передаваемый из настроек селекта
* @param {object} styles не обязательный параметр. Объект в котором находяться настройки кастомизации частей селекта
*/
export function createSelected(element: Element|null, content?: string, styles?: object) {
const select = document.createElement('div');
const selected = document.createElement('p');
const caret = document.createElement('div');
select.classList.add('cg-select');
selected.classList.add('selected');
caret.classList.add('caret');
select.appendChild(selected);
select.appendChild(caret);
if(content){
const text = document.createTextNode(content);
selected.appendChild(text);
element?.appendChild(select)
} else if(styles){
// customStyles(element, styles);
select.setAttribute('style', `${styles}`)
selected.setAttribute('style', `${styles}`)
caret.setAttribute('style', `${styles}`)
}
// if (styles) {
// customStyles(element, styles);
// element.innerHTML = `
// <div class="cg-select" style = "${styles}">
// <p class="selected" style = "${styles}">${content}</p>
// <div class="caret" style = "${styles}"></div>
// </div>
// `;
// }
}

View File

@ -1,48 +0,0 @@
import { IItems } from '../interfaces/items.interface';
interface IDataItem{
category?: string;
categoryItems?: string;
ItemValue: IItems | string | number;
}
/**
* Преобразование каждого елемента полученного из поля Items;
* @param {object | string} dataItem полученный елемент переданный при создании селекта может быть как object/string
* @param {number} index индекс этого элемента
* @returns {object} возвращает сформированный объект
*/
export function getFormatItem(dataItem:IDataItem, index: number) {
const random = Math.random().toString(36).substring(2, 10);
let item: IItems;
// if (checkItemStruct(dataItem)) {
// item = {
// id: dataItem.id,
// title: dataItem.title,
// value: index,
// };
// } else {
// item = {
// id: random,
// title: dataItem,
// value: index,
// };
// }
// return item;
}
/**
* Проверка содержит ли item указанные свойства,
* @param {object} item проверяемый на определенную структуру элемент
* @returns {boolean} возвращает true/false если item содержит указанные свойства
*/
export function checkItemStruct(item: object): boolean {
if (item && typeof item !== 'object') {
return false;
}
return item.hasOwnProperty('id') && item.hasOwnProperty('title') && item.hasOwnProperty('value');
}