mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
Refactor filtering allowing to link search results via URL hash
This commit is contained in:
parent
b457967d07
commit
125f410e01
@ -23,23 +23,20 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var searchBox = document.querySelector('#bin-search');
|
function filter(query) {
|
||||||
var searchMessage = document.querySelector('#search-message');
|
// consistently update URL and search box
|
||||||
searchMessage.style.display = 'none';
|
var searchBox = document.getElementById('bin-search');
|
||||||
|
searchBox.value = query;
|
||||||
|
location.hash = query;
|
||||||
|
|
||||||
// ensure height during filtering
|
// determine the query type
|
||||||
var binTableWrapper = document.querySelector('#bin-table-wrapper');
|
|
||||||
binTableWrapper.style.height = binTableWrapper.clientHeight + 'px';
|
|
||||||
|
|
||||||
searchBox.addEventListener('input', function () {
|
|
||||||
var query = searchBox.value.toLowerCase().trim();
|
|
||||||
var queryType = query[0];
|
var queryType = query[0];
|
||||||
var noResults = true;
|
|
||||||
|
|
||||||
if (queryType === '/') {
|
if (queryType === '/') {
|
||||||
query = query.slice(1);
|
query = query.slice(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// filter rows
|
||||||
|
var noResults = true;
|
||||||
document.querySelectorAll('#bin-table tbody tr').forEach(function (row) {
|
document.querySelectorAll('#bin-table tbody tr').forEach(function (row) {
|
||||||
var binName = row.children[0].firstElementChild.innerText.toLowerCase();
|
var binName = row.children[0].firstElementChild.innerText.toLowerCase();
|
||||||
var functions = row.children[1].firstElementChild.innerText.toLowerCase();
|
var functions = row.children[1].firstElementChild.innerText.toLowerCase();
|
||||||
@ -53,14 +50,38 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
searchMessage.style.display = noResults ? '' : 'none';
|
// update the search message visibility
|
||||||
});
|
var searchMessage = document.getElementById('search-message');
|
||||||
|
searchMessage.style.display = noResults ? 'initial' : 'none';
|
||||||
|
}
|
||||||
|
|
||||||
addEventListener('keydown', function (event) {
|
(function () {
|
||||||
if (event.key.toLowerCase().match(/^[\/a-z]$/) &&
|
var searchBox = document.getElementById('bin-search');
|
||||||
!(event.ctrlKey || event.altKey || event.metaKey)) {
|
|
||||||
|
// ensure height during filtering
|
||||||
|
var binTableWrapper = document.getElementById('bin-table-wrapper');
|
||||||
|
binTableWrapper.style.height = binTableWrapper.clientHeight + 'px';
|
||||||
|
|
||||||
|
// handle user input
|
||||||
|
searchBox.addEventListener('input', function () {
|
||||||
|
var query = searchBox.value.toLowerCase().trim();
|
||||||
|
filter(query);
|
||||||
|
});
|
||||||
|
|
||||||
|
// focus search box on keydown
|
||||||
|
addEventListener('keydown', function (event) {
|
||||||
|
if (event.key.toLowerCase().match(/^[\/a-z]$/) &&
|
||||||
|
!(event.ctrlKey || event.altKey || event.metaKey)) {
|
||||||
|
searchBox.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// filter on load according to the URL
|
||||||
|
var query = decodeURIComponent(location.hash.slice(1));
|
||||||
|
filter(query);
|
||||||
|
if (query) {
|
||||||
|
searchBox.value = query;
|
||||||
searchBox.focus();
|
searchBox.focus();
|
||||||
}
|
}
|
||||||
});
|
})();
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
@ -95,6 +95,7 @@ h2, h3, h4, h5, h5 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#search-message {
|
#search-message {
|
||||||
|
display: none;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user