Merge pull request #4 from apuc/feat/add-multiselect
Feat/add multiselect
This commit is contained in:
commit
525c484de4
@ -4,6 +4,16 @@ export class DropDown {
|
|||||||
#options;
|
#options;
|
||||||
#caret;
|
#caret;
|
||||||
#items;
|
#items;
|
||||||
|
#value;
|
||||||
|
#indexes = [];
|
||||||
|
|
||||||
|
get value() {
|
||||||
|
return this.#value ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
|
get indexes() {
|
||||||
|
return this.#indexes ?? [];
|
||||||
|
}
|
||||||
|
|
||||||
constructor(options = {}) {
|
constructor(options = {}) {
|
||||||
this.#init(options);
|
this.#init(options);
|
||||||
@ -53,15 +63,18 @@ export class DropDown {
|
|||||||
this.#element = elem;
|
this.#element = elem;
|
||||||
|
|
||||||
this.#element.addEventListener('click', () => {
|
this.#element.addEventListener('click', () => {
|
||||||
this.#selectItem();
|
|
||||||
this.#open();
|
this.#open();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.#list = this.#element.querySelector('.list');
|
this.#list = this.#element.querySelector('.list');
|
||||||
this.#caret = this.#element.querySelector('.caret');
|
this.#caret = this.#element.querySelector('.caret');
|
||||||
|
|
||||||
const { items } = this.#options;
|
const { items, multiselect } = this.#options;
|
||||||
this.#items = items;
|
this.#items = items;
|
||||||
|
|
||||||
|
if (multiselect) {
|
||||||
|
this.#value = [];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#initSelected(select) {
|
#initSelected(select) {
|
||||||
@ -105,7 +118,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,42 +135,49 @@ 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();
|
||||||
}
|
|
||||||
} else {
|
|
||||||
items.map((item) => {
|
|
||||||
let li = document.createElement('li');
|
|
||||||
|
|
||||||
if (typeof item == 'object') {
|
return;
|
||||||
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 (this.#checkItemStruct(item)) {
|
||||||
|
text = item.title;
|
||||||
|
} else {
|
||||||
|
text = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (multiselect) {
|
||||||
|
const checkBox = document.createElement('input');
|
||||||
|
checkBox.type = 'checkbox';
|
||||||
|
li.appendChild(checkBox);
|
||||||
|
}
|
||||||
|
|
||||||
|
let textNode = document.createTextNode(text);
|
||||||
|
|
||||||
|
li.appendChild(textNode);
|
||||||
ul.appendChild(li);
|
ul.appendChild(li);
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
this.#addOptionsBehaviour();
|
||||||
}
|
}
|
||||||
|
|
||||||
async #renderUrl() {
|
async #renderUrl() {
|
||||||
@ -172,25 +192,33 @@ 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!)
|
||||||
data.forEach((item, index) => {
|
this.#items = [];
|
||||||
const items = {
|
|
||||||
id: item.id,
|
data.forEach((dataItem, index) => {
|
||||||
title: item.name,
|
const item = {
|
||||||
|
id: dataItem.id,
|
||||||
|
title: dataItem.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(item.title);
|
||||||
|
|
||||||
|
const checkBox = document.createElement('input');
|
||||||
|
checkBox.type = 'checkbox';
|
||||||
|
li.appendChild(checkBox);
|
||||||
|
|
||||||
li.classList.add('list__item');
|
li.classList.add('list__item');
|
||||||
li.appendChild(text);
|
li.appendChild(text);
|
||||||
ul.appendChild(li);
|
ul.appendChild(li);
|
||||||
|
|
||||||
|
this.#items.push(item);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.#addOptionsBehaviour();
|
||||||
}
|
}
|
||||||
|
|
||||||
#open() {
|
#open() {
|
||||||
@ -206,18 +234,92 @@ export class DropDown {
|
|||||||
this.#caret.classList.remove('caret_rotate');
|
this.#caret.classList.remove('caret_rotate');
|
||||||
}
|
}
|
||||||
|
|
||||||
#selectItem() {
|
#addOptionsBehaviour() {
|
||||||
|
const { multiselect, placeholder, multiselectTag } = 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) => {
|
// const ul = document.createElement('ul');
|
||||||
option.addEventListener('click', () => {
|
|
||||||
selected.innerText = option.innerText;
|
// ul.classList.add('multiselectTag');
|
||||||
|
|
||||||
|
options.forEach((option, index) => {
|
||||||
|
option.addEventListener('click', (event) => {
|
||||||
|
const item = this.#items[index];
|
||||||
|
|
||||||
|
if (multiselect) {
|
||||||
|
event.stopPropagation();
|
||||||
|
option.classList.toggle('active');
|
||||||
|
|
||||||
|
const checkBox = option.querySelector('input[type="checkbox"]');
|
||||||
|
|
||||||
|
if (checkBox) {
|
||||||
|
if (!(event.target instanceof HTMLInputElement)) {
|
||||||
|
checkBox.checked = !checkBox.checked;
|
||||||
|
}
|
||||||
|
|
||||||
|
const checkIndex = this.#indexes.indexOf(index);
|
||||||
|
|
||||||
|
let templete = '';
|
||||||
|
if (checkIndex === -1) {
|
||||||
|
this.#indexes.push(index);
|
||||||
|
|
||||||
|
if (this.#checkItemStruct(item)) {
|
||||||
|
this.#value.push(item.title);
|
||||||
|
} else {
|
||||||
|
this.#value.push(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO refactoring code!!!!
|
||||||
|
if (multiselectTag) {
|
||||||
|
for (let i = 0; i < this.#value.length; i++) {
|
||||||
|
templete += `<li>${this.#value[i]}<button>X</button></li>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
selected.innerHTML = `<ul class="multiselectTag">${templete}</ul>`;
|
||||||
|
} else {
|
||||||
|
selected.innerText = this.#value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#indexes.splice(checkIndex, 1);
|
||||||
|
this.#value.splice(checkIndex, 1);
|
||||||
|
|
||||||
|
if (multiselectTag) {
|
||||||
|
for (let i = 0; i < this.#value.length; i++) {
|
||||||
|
templete += `<li>${this.#value[i]} <button>X</button></li>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
selected.innerHTML = `<ul class="multiselectTag">${templete}</ul>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.#value.length) {
|
||||||
|
selected.innerText = placeholder;
|
||||||
|
} else {
|
||||||
|
if (multiselectTag) {
|
||||||
|
selected.innerHTML = `<ul class="multiselectTag">${templete}</ul>`;
|
||||||
|
} else {
|
||||||
|
selected.innerText = this.#value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.#checkItemStruct(item)) {
|
||||||
|
selected.innerText = item.title;
|
||||||
|
} else {
|
||||||
|
selected.innerText = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#value = item;
|
||||||
|
|
||||||
options.forEach((option) => {
|
options.forEach((option) => {
|
||||||
option.classList.remove('active');
|
option.classList.remove('active');
|
||||||
});
|
});
|
||||||
option.classList.add('active');
|
option.classList.add('active');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -296,4 +398,14 @@ export class DropDown {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#checkItemStruct(item) {
|
||||||
|
if (item && typeof item !== 'object') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
item.hasOwnProperty('id') && item.hasOwnProperty('title') && item.hasOwnProperty('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>
|
||||||
|
51
src/index.js
51
src/index.js
@ -4,6 +4,8 @@ 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,
|
||||||
|
multiselectTag: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
dropdown.addItem('ZAZ');
|
dropdown.addItem('ZAZ');
|
||||||
@ -11,36 +13,51 @@ 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: [
|
||||||
event: 'mouseenter',
|
{
|
||||||
styles: {
|
id: 'addaw21',
|
||||||
head: {
|
title: 'BMW',
|
||||||
background: 'red',
|
value: '1',
|
||||||
color: 'black',
|
|
||||||
width: '400px',
|
|
||||||
},
|
},
|
||||||
placeholder: {
|
{
|
||||||
color: 'grey',
|
id: '2414q',
|
||||||
|
title: 'Opel',
|
||||||
|
value: '2',
|
||||||
},
|
},
|
||||||
caret: {
|
{
|
||||||
'border-top': '6px solid black',
|
id: '24qwds',
|
||||||
|
title: 'Kamaz 258',
|
||||||
|
value: '3',
|
||||||
},
|
},
|
||||||
list: {
|
{
|
||||||
background: 'red',
|
id: '28wds',
|
||||||
color: 'black',
|
title: 'MAN',
|
||||||
width: '412px',
|
value: '4',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: '28qwds',
|
||||||
|
title: 'BOOT',
|
||||||
|
value: '5',
|
||||||
},
|
},
|
||||||
|
],
|
||||||
|
multiselect: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
dropdown2.addItem('LADA');
|
setTimeout(() => {
|
||||||
|
console.log(dropdown.value);
|
||||||
|
}, 10000);
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log(dropdown.indexes);
|
||||||
|
}, 10000);
|
||||||
|
|
||||||
//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',
|
||||||
url: 'http://jsonplaceholder.typicode.com/users',
|
url: 'http://jsonplaceholder.typicode.com/users',
|
||||||
|
multiselect: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
// const dropdown3 = new DropDown({
|
// const dropdown3 = new DropDown({
|
||||||
|
@ -21,17 +21,26 @@ body {
|
|||||||
.cg-select {
|
.cg-select {
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
|
max-width: 200px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
background: #2a2f3b;
|
background: #2a2f3b;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
transition: 0.5s;
|
transition: 0.5s;
|
||||||
|
|
||||||
|
.selected {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
transition: 0.5s;
|
transition: 0.5s;
|
||||||
background: #394050;
|
background: #394050;
|
||||||
@ -105,3 +114,28 @@ 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.multiselectTag {
|
||||||
|
display: flex;
|
||||||
|
text-decoration: none;
|
||||||
|
flex-direction: row;
|
||||||
|
height: 15px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type='checkbox'] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user