mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 18:04:12 +03:00
250 lines
8.0 KiB
JavaScript
250 lines
8.0 KiB
JavaScript
(function(document) {
|
||
var $body = document.body,
|
||
$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'),
|
||
$orderByColor = document.getElementById('sort-color'),
|
||
$orderAlphabetically = document.getElementById('sort-alphabetically'),
|
||
$orderByRelevance = document.getElementById('sort-relevance');
|
||
|
||
var queryParameter = 'q',
|
||
orderingPreferenceIdentifier = 'ordering-preference',
|
||
previousQuery = '',
|
||
previousOrdering = $orderByColor;
|
||
|
||
// Remove the "disabled" attribute from the search input
|
||
$searchInput.setAttribute('title', 'Search Simple Icons');
|
||
$searchInput.removeAttribute('disabled');
|
||
$searchInput.focus();
|
||
|
||
// 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 a parameter from the URL's search section (location.search). Based on:
|
||
// - https://davidwalsh.name/query-string-javascript
|
||
// - https://github.com/WebReflection/url-search-params
|
||
// - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
|
||
function getUrlParameter(parameter) {
|
||
var name = parameter.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||
var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
|
||
var results = regex.exec(location.search);
|
||
return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
|
||
}
|
||
|
||
function normalizeSearchTerm(value) {
|
||
return value.toLowerCase()
|
||
.replace(/đ/g, "d")
|
||
.replace(/ħ/g, "h")
|
||
.replace(/ı/g, "i")
|
||
.replace(/ĸ/g, "k")
|
||
.replace(/ŀ/g, "l")
|
||
.replace(/ł/g, "l")
|
||
.replace(/ß/g, "ss")
|
||
.replace(/ŧ/g, "t")
|
||
.normalize("NFD")
|
||
.replace(/[\u0300-\u036f]/g, "");
|
||
}
|
||
|
||
function search(value) {
|
||
var query = normalizeSearchTerm(value)
|
||
queryLetters = query.split('');
|
||
|
||
var matchedIcons = icons.filter(function(iconName, iconIndex) {
|
||
var element = $icons[iconIndex];
|
||
var score = iconName.length - query.length;
|
||
var index = 0;
|
||
|
||
for (var i = 0; i < queryLetters.length; i++) {
|
||
var letter = queryLetters[i];
|
||
index = iconName.indexOf(letter, index);
|
||
|
||
if (index === -1) {
|
||
element.classList.add('hidden');
|
||
return false;
|
||
}
|
||
|
||
score += index;
|
||
index++;
|
||
}
|
||
|
||
element.style.setProperty("--order-relevance", score);
|
||
element.classList.remove('hidden');
|
||
return true;
|
||
});
|
||
|
||
$grid.classList.toggle('search__empty', matchedIcons.length == 0);
|
||
$body.classList.toggle('search__active', matchedIcons.length < icons.length);
|
||
|
||
if (query === '') {
|
||
if ($body.classList.contains('order-by-relevance')) {
|
||
selectOrdering(previousOrdering);
|
||
}
|
||
} else {
|
||
if (previousQuery === '') {
|
||
selectOrdering($orderByRelevance);
|
||
}
|
||
}
|
||
|
||
previousQuery = query;
|
||
}
|
||
function selectOrdering(selected) {
|
||
// Set the ordering type as a class on body
|
||
$body.classList.remove('order-alphabetically', 'order-by-color', 'order-by-relevance');
|
||
if (selected === $orderByColor) {
|
||
$body.classList.add('order-by-color');
|
||
} else if (selected === $orderAlphabetically) {
|
||
$body.classList.add('order-alphabetically');
|
||
} else if (selected === $orderByRelevance) {
|
||
$body.classList.add('order-by-relevance');
|
||
}
|
||
|
||
// Store ordering preference
|
||
var preferenceOptions = [$orderByColor, $orderAlphabetically];
|
||
if (localStorage && preferenceOptions.includes(selected)) {
|
||
localStorage.setItem(orderingPreferenceIdentifier, selected.id);
|
||
}
|
||
if (selected !== $orderByRelevance) {
|
||
previousOrdering = selected;
|
||
}
|
||
}
|
||
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
// Restore ordering preference of the user. This should be performed before
|
||
// applying the search query as it would overwrite "order by relevance"
|
||
if (localStorage) {
|
||
var storedOrderingId = localStorage.getItem(orderingPreferenceIdentifier);
|
||
var ordering = document.getElementById(storedOrderingId);
|
||
if (ordering) selectOrdering(ordering);
|
||
}
|
||
|
||
// 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);
|
||
}, 200), false);
|
||
$searchClose.addEventListener('click', function(e) {
|
||
e.stopPropagation();
|
||
|
||
$searchInput.value = '';
|
||
$search.classList.remove('search--active');
|
||
window.history.replaceState(null, '', '/');
|
||
search('');
|
||
}, false);
|
||
|
||
$orderByColor.addEventListener('click', function() {
|
||
selectOrdering($orderByColor);
|
||
});
|
||
$orderAlphabetically.addEventListener('click', function() {
|
||
selectOrdering($orderAlphabetically);
|
||
});
|
||
$orderByRelevance.addEventListener('click', function() {
|
||
selectOrdering($orderByRelevance);
|
||
});
|
||
|
||
/* Redesign */
|
||
|
||
var $banner = document.querySelector('.redesign-banner'),
|
||
$redirectAutomatically = document.getElementById('redirect-to-redesign'),
|
||
$hideOnce = document.getElementById('hide-feedback-request-once'),
|
||
$hideAlways = document.getElementById('hide-feedback-request');
|
||
|
||
var redesignUrl = 'https://simple-icons.github.io/simple-icons-website/',
|
||
redesignRootDomain = 'simple-icons.github.io',
|
||
hideBannerAlwaysIdentifier = 'hide-banner',
|
||
redirectAutomaticallyIdentifier = 'redirect-to-redesign';
|
||
|
||
$redirectAutomatically.addEventListener('click', function() {
|
||
var redirect = true;
|
||
if (localStorage) {
|
||
var currentVal = localStorage.getItem(redirectAutomaticallyIdentifier);
|
||
if (currentVal === 'true') {
|
||
redirect = false;
|
||
}
|
||
|
||
localStorage.setItem(redirectAutomaticallyIdentifier, redirect);
|
||
}
|
||
|
||
if (redirect) {
|
||
window.location.replace(redesignUrl);
|
||
} else {
|
||
$redirectAutomatically.innerHTML = "Redirect automatically";
|
||
}
|
||
});
|
||
$hideOnce.addEventListener('click', function () {
|
||
$banner.classList.add('hidden');
|
||
});
|
||
$hideAlways.addEventListener('click', function () {
|
||
if (localStorage) {
|
||
localStorage.setItem(hideBannerAlwaysIdentifier, true);
|
||
}
|
||
|
||
$banner.classList.add('hidden');
|
||
});
|
||
|
||
if (localStorage) {
|
||
var redirect = localStorage.getItem(redirectAutomaticallyIdentifier);
|
||
if (redirect === 'true') {
|
||
$redirectAutomatically.innerHTML = "Disable redirect";
|
||
if (document.referrer.split('/')[2] !== redesignRootDomain) {
|
||
window.location.replace(redesignUrl);
|
||
}
|
||
}
|
||
|
||
var hide = localStorage.getItem(hideBannerAlwaysIdentifier);
|
||
if (hide) {
|
||
$banner.classList.add('hidden');
|
||
}
|
||
}
|
||
})( document );
|