Added new branch and bulding multiselect 35-45%
This commit is contained in:
parent
d9cd128fa9
commit
d8b07d2e6c
@ -105,7 +105,7 @@ export class DropDown {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#render(select) {
|
#render(select) {
|
||||||
const { items, styles, url } = this.#options;
|
const { items, styles, url, multiselect } = this.#options;
|
||||||
|
|
||||||
if (select || (select && styles)) {
|
if (select || (select && styles)) {
|
||||||
this.#initSelected(select);
|
this.#initSelected(select);
|
||||||
@ -122,43 +122,52 @@ export class DropDown {
|
|||||||
|
|
||||||
ul.classList.add('list');
|
ul.classList.add('list');
|
||||||
|
|
||||||
if (ul) {
|
if (ul && list) {
|
||||||
if (list) {
|
|
||||||
Object.entries(list).forEach(([key, value]) => {
|
Object.entries(list).forEach(([key, value]) => {
|
||||||
ul.style[key] = value;
|
ul.style[key] = value;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
this.#element.appendChild(ul);
|
this.#element.appendChild(ul);
|
||||||
} else {
|
} else {
|
||||||
ul.classList.add('list');
|
ul.classList.add('list');
|
||||||
this.#element.appendChild(ul);
|
this.#element.appendChild(ul);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!items) {
|
if (!items && url) {
|
||||||
if (url) {
|
|
||||||
this.#renderUrl();
|
this.#renderUrl();
|
||||||
}
|
return;
|
||||||
} else {
|
|
||||||
items.map((item) => {
|
|
||||||
let li = document.createElement('li');
|
|
||||||
|
|
||||||
if (typeof item == 'object') {
|
|
||||||
const text = document.createTextNode(item.title);
|
|
||||||
|
|
||||||
li.classList.add('list__item');
|
|
||||||
li.appendChild(text);
|
|
||||||
} else {
|
|
||||||
const text = document.createTextNode(item);
|
|
||||||
|
|
||||||
li.classList.add('list__item');
|
|
||||||
li.appendChild(text);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
items.forEach((item) => {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
let text = '';
|
||||||
|
|
||||||
|
li.classList.add('list__item');
|
||||||
|
|
||||||
|
if (item && typeof item === 'object' && item.title) {
|
||||||
|
text = item.title;
|
||||||
|
} else {
|
||||||
|
text = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (multiselect) {
|
||||||
|
const checkBox = document.createElement('input');
|
||||||
|
|
||||||
|
checkBox.type = 'checkbox';
|
||||||
|
checkBox.addEventListener('click', (event) => {
|
||||||
|
event.stopPropagation();
|
||||||
|
});
|
||||||
|
|
||||||
|
li.appendChild(checkBox);
|
||||||
|
}
|
||||||
|
|
||||||
|
let textNode = document.createTextNode(text);
|
||||||
|
|
||||||
|
li.appendChild(textNode);
|
||||||
ul.appendChild(li);
|
ul.appendChild(li);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
async #renderUrl() {
|
async #renderUrl() {
|
||||||
const { url } = this.#options;
|
const { url } = this.#options;
|
||||||
@ -172,7 +181,6 @@ export class DropDown {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const response = await fetch(url);
|
const response = await fetch(url);
|
||||||
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
|
|
||||||
//ToDO: fix title(item.title!)
|
//ToDO: fix title(item.title!)
|
||||||
@ -182,11 +190,10 @@ export class DropDown {
|
|||||||
title: item.name,
|
title: item.name,
|
||||||
value: index,
|
value: index,
|
||||||
};
|
};
|
||||||
|
|
||||||
const ul = this.#element.querySelector('.list');
|
const ul = this.#element.querySelector('.list');
|
||||||
|
|
||||||
const li = document.createElement('li');
|
const li = document.createElement('li');
|
||||||
const text = document.createTextNode(items.title);
|
const text = document.createTextNode(items.title);
|
||||||
|
|
||||||
li.classList.add('list__item');
|
li.classList.add('list__item');
|
||||||
li.appendChild(text);
|
li.appendChild(text);
|
||||||
ul.appendChild(li);
|
ul.appendChild(li);
|
||||||
@ -207,17 +214,30 @@ export class DropDown {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#selectItem() {
|
#selectItem() {
|
||||||
|
const { multiselect } = this.#options;
|
||||||
|
|
||||||
const options = this.#element.querySelectorAll('.list__item');
|
const options = this.#element.querySelectorAll('.list__item');
|
||||||
const selected = this.#element.querySelector('.selected');
|
const selected = this.#element.querySelector('.selected');
|
||||||
|
|
||||||
options.forEach((option) => {
|
options.forEach((option) => {
|
||||||
option.addEventListener('click', () => {
|
option.addEventListener('click', (event) => {
|
||||||
selected.innerText = option.innerText;
|
if (multiselect) {
|
||||||
|
event.stopPropagation();
|
||||||
|
option.classList.toggle('active');
|
||||||
|
|
||||||
|
const checkBox = option.querySelector('input[type="checkbox"]');
|
||||||
|
|
||||||
|
if (checkBox) {
|
||||||
|
checkBox.checked = !checkBox.checked;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
selected.innerText = option.innerText;
|
||||||
options.forEach((option) => {
|
options.forEach((option) => {
|
||||||
option.classList.remove('active');
|
option.classList.remove('active');
|
||||||
});
|
});
|
||||||
option.classList.add('active');
|
option.classList.add('active');
|
||||||
|
// this.getValue();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -296,4 +316,11 @@ export class DropDown {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// getValue() {
|
||||||
|
// const selected = this.#element.querySelector('.selected');
|
||||||
|
// const value = selected.innerText;
|
||||||
|
// console.log(value);
|
||||||
|
// return value;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<div class="cg-dropdown2"></div>
|
<div class="cg-dropdown2"></div>
|
||||||
|
|
||||||
<div class="cg-dropdown3"></div>
|
<div class="cg-dropdown3" style="margin-left: 15px"></div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
<script type="module" src="index.js"></script>
|
<script type="module" src="index.js"></script>
|
||||||
|
28
src/index.js
28
src/index.js
@ -4,6 +4,7 @@ const dropdown = new DropDown({
|
|||||||
selector: '.cg-dropdown',
|
selector: '.cg-dropdown',
|
||||||
placeholder: 'Выберите авто',
|
placeholder: 'Выберите авто',
|
||||||
items: ['BMW', 'Opel', 'Mersedes', 'MAN', 'max'],
|
items: ['BMW', 'Opel', 'Mersedes', 'MAN', 'max'],
|
||||||
|
multiselect: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
dropdown.addItem('ZAZ');
|
dropdown.addItem('ZAZ');
|
||||||
@ -11,32 +12,13 @@ dropdown.addItem('LADA');
|
|||||||
|
|
||||||
const dropdown2 = new DropDown({
|
const dropdown2 = new DropDown({
|
||||||
selector: '.cg-dropdown2',
|
selector: '.cg-dropdown2',
|
||||||
placeholder: 'Выберите авто',
|
placeholder: 'SELECT CAR',
|
||||||
items: ['BMW', 'Opel', 'Mersedes', 'MAN', 'Kamaz'],
|
items: ['BMW', 'Opel', 'Mersedes', 'MAN', 'Kamaz'],
|
||||||
event: 'mouseenter',
|
|
||||||
styles: {
|
|
||||||
head: {
|
|
||||||
background: 'red',
|
|
||||||
color: 'black',
|
|
||||||
width: '400px',
|
|
||||||
},
|
|
||||||
placeholder: {
|
|
||||||
color: 'grey',
|
|
||||||
},
|
|
||||||
caret: {
|
|
||||||
'border-top': '6px solid black',
|
|
||||||
},
|
|
||||||
list: {
|
|
||||||
background: 'red',
|
|
||||||
color: 'black',
|
|
||||||
width: '412px',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
// let a = dropdown2.getValue();
|
||||||
dropdown2.addItem('LADA');
|
// console.log(a);
|
||||||
|
|
||||||
//ToDo: paste the desired url;
|
//ToDo: paste the desired url;
|
||||||
|
|
||||||
const dropdown3 = new DropDown({
|
const dropdown3 = new DropDown({
|
||||||
selector: '.cg-dropdown3',
|
selector: '.cg-dropdown3',
|
||||||
placeholder: 'URL',
|
placeholder: 'URL',
|
||||||
|
@ -105,3 +105,16 @@ body {
|
|||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background-color: #4d4d4d;
|
background-color: #4d4d4d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.multiselect {
|
||||||
|
height: 20px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
li {
|
||||||
|
color: red;
|
||||||
|
border: 1px solid #4d4d4d;
|
||||||
|
}
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user