mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03:00
0747029205
* Disable sort buttons when there is a search query * Restore sorting order when search query is removed * Update comment * Add button to sort by relevance (non-functional) As discussed in #949. Relatedly also removed the functionality that disabled the "sort by color" and "sort alphabetically" buttons (and related styling). * Update sorting behaviour Refactored to sorting algorithms into a single function and updated relevant code. The "sort by relenvance" button is now functional, and is automatically actived when the user starts searching, but not when updating their search query. * Restore sorting ordre when search query is removed * Only sort when needed * Refactor activing a sorting button/selecting a soring order * Renaming variables and functions * Add colors to "order by relevance" button on hover
191 lines
5.8 KiB
JavaScript
191 lines
5.8 KiB
JavaScript
(function(document) {
|
|
var $grid = document.querySelector('.grid'),
|
|
$icons = $grid.querySelectorAll('.grid-item:not(.grid-item--ad)'),
|
|
$search = document.querySelector('.search'),
|
|
$searchClose = $search.querySelector('.search__close'),
|
|
$searchInput = $search.querySelector('input'),
|
|
$sortColor = document.getElementById('sort-color'),
|
|
$sortAlphabetically = document.getElementById('sort-alphabetically'),
|
|
$sortRelevance = document.getElementById('sort-relevance');
|
|
|
|
var queryParameter = 'q',
|
|
previousQuery = null,
|
|
previousOrder = $sortColor;
|
|
|
|
// Remove the "disabled" attribute from the search input
|
|
$searchInput.setAttribute('title', 'Search Simple Icons');
|
|
$searchInput.removeAttribute('disabled');
|
|
|
|
// include a modified debounce underscorejs helper function.
|
|
// see
|
|
// - http://underscorejs.org/docs/underscore.html#section-83
|
|
// - http://underscorejs.org/#debounce
|
|
function debounce(func, wait, immediate) {
|
|
var timeout, args, context, timestamp, result;
|
|
|
|
var later = function() {
|
|
var last = +new Date - timestamp;
|
|
|
|
if (last < wait && last >= 0) {
|
|
timeout = setTimeout(later, wait - last);
|
|
} else {
|
|
timeout = null;
|
|
if (!immediate) {
|
|
result = func.apply(context, args);
|
|
if (!timeout) context = args = null;
|
|
}
|
|
}
|
|
};
|
|
|
|
return function() {
|
|
context = this;
|
|
args = arguments;
|
|
timestamp = +new Date;
|
|
var callNow = immediate && !timeout;
|
|
if (!timeout) timeout = setTimeout(later, wait);
|
|
if (callNow) {
|
|
result = func.apply(context, args);
|
|
context = args = null;
|
|
}
|
|
|
|
return result;
|
|
};
|
|
}
|
|
|
|
// Get any parameter from the URL's search section (location.search).
|
|
// see
|
|
// - https://davidwalsh.name/query-string-javascript
|
|
// - https://github.com/WebReflection/url-search-params
|
|
function getUrlParameter(parameter) {
|
|
name = parameter.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
|
|
var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
|
|
var results = regex.exec(location.search);
|
|
return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
|
|
}
|
|
|
|
function search(value) {
|
|
var hiddenCounter = 0,
|
|
query = normalizeSearchTerm(value);
|
|
|
|
icons.map(function(icon, iconIndex) {
|
|
var letters = query.split(''),
|
|
indexes = [],
|
|
index = 0;
|
|
|
|
if (icon === query) {
|
|
return {element: $icons[iconIndex], score: 1};
|
|
}
|
|
|
|
for (var i = 0; i < letters.length; i++) {
|
|
var letter = letters[i];
|
|
index = icon.indexOf(letter, index);
|
|
|
|
if (index === -1) {
|
|
$icons[iconIndex].classList.add('hidden');
|
|
return null;
|
|
}
|
|
|
|
indexes.push(index);
|
|
index++;
|
|
}
|
|
|
|
return {
|
|
element: $icons[iconIndex],
|
|
score: indexes.reduce(function(a, b) {
|
|
return a + b;
|
|
}, 2)
|
|
};
|
|
}).filter(function(item) {
|
|
return item !== null;
|
|
}).sort(function(a, b) {
|
|
return a.score - b.score;
|
|
}).forEach(function(item, index) {
|
|
var element = item.element;
|
|
element.setAttribute('data-relevance', index);
|
|
element.classList.remove('hidden');
|
|
});
|
|
|
|
$grid.classList.toggle('search__empty', hiddenCounter == icons.length);
|
|
if (query === '') {
|
|
if ($sortRelevance.classList.contains('active')) {
|
|
selectSortingOrder(previousOrder);
|
|
}
|
|
|
|
$sortRelevance.setAttribute('display', 'none');
|
|
previousQuery = null;
|
|
} else {
|
|
if (previousQuery === null) {
|
|
selectSortingOrder($sortRelevance);
|
|
}
|
|
|
|
previousQuery = query;
|
|
}
|
|
}
|
|
function sort() {
|
|
if ($sortColor.classList.contains('active')) {
|
|
$icons.forEach(icon => { icon.style.order = null; });
|
|
} else if ($sortAlphabetically.classList.contains('active')) {
|
|
$icons.forEach(icon => { icon.style.order = icon.getAttribute('order'); });
|
|
} else if ($sortRelevance.classList.contains('active')) {
|
|
$icons.forEach(icon => { icon.style.order = icon.getAttribute('data-relevance'); });
|
|
}
|
|
}
|
|
function selectSortingOrder(selected) {
|
|
selected.classList.add('active');
|
|
|
|
var options = [$sortColor, $sortAlphabetically, $sortRelevance];
|
|
for (var option of options.filter(option => option !== selected)) {
|
|
option.classList.remove('active');
|
|
}
|
|
|
|
if (selected !== $sortRelevance) {
|
|
previousOrder = selected;
|
|
} else {
|
|
$sortRelevance.removeAttribute('display');
|
|
}
|
|
|
|
sort();
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// Load search query if present
|
|
var query = getUrlParameter(queryParameter);
|
|
if (query) {
|
|
$search.classList.add('search--active');
|
|
$searchInput.value = query;
|
|
search(query);
|
|
}
|
|
});
|
|
$search.addEventListener('input', debounce(function(e) {
|
|
e.preventDefault();
|
|
|
|
var value = e.target.value;
|
|
if (value) {
|
|
$search.classList.add('search--active');
|
|
window.history.replaceState(null, '', '?' + queryParameter + '=' + value);
|
|
} else {
|
|
$search.classList.remove('search--active');
|
|
window.history.replaceState(null, '', '/');
|
|
}
|
|
search(value);
|
|
}, 50), false);
|
|
$searchClose.addEventListener('click', function(e) {
|
|
e.stopPropagation();
|
|
|
|
$searchInput.value = '';
|
|
$search.classList.remove('search--active');
|
|
window.history.replaceState(null, '', '/');
|
|
search('');
|
|
}, false);
|
|
|
|
$sortColor.addEventListener('click', function() {
|
|
selectSortingOrder($sortColor);
|
|
});
|
|
$sortAlphabetically.addEventListener('click', function() {
|
|
selectSortingOrder($sortAlphabetically);
|
|
});
|
|
$sortRelevance.addEventListener('click', function() {
|
|
selectSortingOrder($sortRelevance);
|
|
});
|
|
})( document );
|