remote-jobs/site/assets/companies-table.js

53 lines
1.6 KiB
JavaScript
Raw Normal View History

2018-05-28 20:46:25 +00:00
function setupFilters() {
var table = document.querySelector( 'table#companies-table' );
2018-05-28 20:46:25 +00:00
var headerCells = table.querySelectorAll( 'thead tr th' );
headerCells[ 0 ].innerHTML =
'<button class="sort" data-sort="company-name">Name</button>';
headerCells[ 1 ].innerHTML =
'<button class="sort" data-sort="company-website">Website</button>';
headerCells[ 2 ].innerHTML =
'<button class="sort" data-sort="company-region">Region</button>';
var tbody = table.querySelector( 'tbody' );
tbody.setAttribute( 'class', 'list' );
var filterInput = document.createElement( 'input' );
filterInput.type = 'text';
filterInput.placeholder = 'Filter Companies';
filterInput.id = 'company-filter';
filterInput.setAttribute( 'class', 'company-filter' );
var companiesHeading = document.querySelector( 'h2#companies' );
companiesHeading.appendChild( filterInput );
2018-05-28 20:46:25 +00:00
var filtersExplanation = document.createElement( 'p' );
filtersExplanation.id = 'filters-explanation';
filtersExplanation.innerHTML = (
'Use the text box above to filter the list of companies, '
+ 'or click a column heading to sort by that column.'
);
table.parentNode.insertBefore( filtersExplanation, table );
2018-05-28 20:46:25 +00:00
window.tableFilter = new List(
'main', // element ID that contains everything
2018-05-28 20:46:25 +00:00
{
valueNames: [
'company-name',
'company-website',
'company-region'
],
searchClass: 'company-filter',
}
);
document.body.setAttribute(
'class',
document.body.getAttribute( 'class' ) + ' filters-enabled'
);
2018-05-28 20:46:25 +00:00
}
document.addEventListener( 'DOMContentLoaded', function( event ) {
setupFilters();
} );