2022-09-16 23:32:54 +03:00
|
|
|
|
<!-- Package Grid -->
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
|
|
|
|
|
<!-- Package Grid Header -->
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="container package-grid-header">
|
2022-10-24 11:59:38 +03:00
|
|
|
|
<section class="flex">
|
|
|
|
|
<h3>packages</h3>
|
|
|
|
|
{{- partial "sort-dropdown.html" -}}
|
|
|
|
|
</section>
|
2022-10-19 20:50:00 +03:00
|
|
|
|
<p>There are already plenty of packages available through tea. As the communi’tea builds the library, contributions will live here.</p>
|
2022-09-16 23:32:54 +03:00
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="container package-grid">
|
|
|
|
|
|
|
|
|
|
<!-- Start Package Grid -->
|
|
|
|
|
|
|
|
|
|
<div class="row package-row black-bg g-0">
|
2022-10-21 10:56:04 +03:00
|
|
|
|
<div id="packageGrid" class="package-grid">
|
2022-10-13 08:48:14 +03:00
|
|
|
|
{{ range $.Site.Data.packages }}
|
2022-10-12 09:04:13 +03:00
|
|
|
|
{{- partial "package-thumbnail.html" .}}
|
|
|
|
|
{{ end }}
|
2022-09-16 23:32:54 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-10-15 16:07:54 +03:00
|
|
|
|
<hr>
|
|
|
|
|
<div id="loadMoreSection" class="container small">
|
|
|
|
|
<div id="loadMorePackagesBtn"><i class="icon-enter-arrow"></i> SHOW MORE</div>
|
|
|
|
|
</div>
|
2022-09-16 23:32:54 +03:00
|
|
|
|
</section>
|
2022-10-12 09:04:13 +03:00
|
|
|
|
|
|
|
|
|
<style>
|
2022-10-15 16:07:54 +03:00
|
|
|
|
.container.small {
|
|
|
|
|
padding-top: 1em;
|
|
|
|
|
padding-bottom: 1em;
|
|
|
|
|
}
|
2022-10-12 09:04:13 +03:00
|
|
|
|
.package-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
|
}
|
2022-10-15 16:07:54 +03:00
|
|
|
|
#loadMorePackagesBtn {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
font-family: "pp-neue-machina", sans-serif;
|
|
|
|
|
background-color: #1a1a1a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding-top: 0.279vw;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
transition: 0.1s linear;
|
|
|
|
|
}
|
|
|
|
|
#loadMorePackagesBtn .icon-enter-arrow {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relaitve;
|
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
#loadMorePackagesBtn:hover .icon-enter-arrow{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
transform: rotate(-45deg) !important;
|
|
|
|
|
}
|
|
|
|
|
#loadMoreSection.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
@media only screen and (max-width: 576px) {
|
|
|
|
|
#loadMoreSection {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-12 09:04:13 +03:00
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 576px) {
|
|
|
|
|
.package-grid {
|
|
|
|
|
/* changes to 3 column thumbs */
|
|
|
|
|
grid-template-columns: auto auto auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
|
|
|
.package-grid {
|
|
|
|
|
/* changes to 4 column thumbs */
|
|
|
|
|
grid-template-columns: auto auto auto auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-15 16:07:54 +03:00
|
|
|
|
|
|
|
|
|
.card-thumbnail.hidden {
|
|
|
|
|
height: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
border: 0px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2022-10-14 23:23:32 +03:00
|
|
|
|
</style>
|
2022-10-15 16:07:54 +03:00
|
|
|
|
|
|
|
|
|
<script language="javascript" type="text/javascript">
|
2022-10-24 11:59:38 +03:00
|
|
|
|
const sortOptions = {
|
|
|
|
|
popularity: 'popularity',
|
|
|
|
|
last_modified: 'last_modified',
|
|
|
|
|
}
|
2022-10-24 14:40:19 +03:00
|
|
|
|
let sortBy = sortOptions.popularity; // last_modified
|
2022-10-21 10:56:04 +03:00
|
|
|
|
let sortDirection = 'desc'; // asc
|
2022-10-15 16:07:54 +03:00
|
|
|
|
let limit = 16;
|
2022-10-24 11:59:38 +03:00
|
|
|
|
|
|
|
|
|
function getPackageThumbs() {
|
|
|
|
|
const grid = document.getElementById('packageGrid');
|
2022-10-24 14:40:19 +03:00
|
|
|
|
return Array.from(grid.children).filter((e) => e.dataset && e.dataset.name);
|
2022-10-24 11:59:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const packagesCount = getPackageThumbs().length;
|
2022-10-15 16:07:54 +03:00
|
|
|
|
|
2022-10-21 10:56:04 +03:00
|
|
|
|
function sortPackages() {
|
2022-10-24 11:59:38 +03:00
|
|
|
|
const packages = getPackageThumbs();
|
|
|
|
|
|
|
|
|
|
const sortedPackages = packages.sort((a, b) => {
|
|
|
|
|
if (sortBy === sortOptions.popularity) {
|
2022-10-21 10:56:04 +03:00
|
|
|
|
const aPop = +a.dataset.popularity;
|
|
|
|
|
const bPop = +b.dataset.popularity;
|
|
|
|
|
return sortDirection === 'asc' ? aPop-bPop : bPop - aPop;
|
|
|
|
|
} else { // last_modified
|
|
|
|
|
const aDate = new Date(a.dataset.last_modified);
|
|
|
|
|
const bDate = new Date(b.dataset.last_modified);
|
|
|
|
|
return sortDirection === 'asc' ? aDate-bDate : bDate - aDate;
|
|
|
|
|
}
|
|
|
|
|
});
|
2022-10-24 11:59:38 +03:00
|
|
|
|
|
2022-10-21 10:56:04 +03:00
|
|
|
|
const grid = document.getElementById('packageGrid');
|
2022-10-24 11:59:38 +03:00
|
|
|
|
grid.textContent = '';
|
|
|
|
|
|
2022-10-21 10:56:04 +03:00
|
|
|
|
for(const sp of sortedPackages) {
|
|
|
|
|
grid.appendChild(sp);
|
|
|
|
|
}
|
2022-10-24 14:40:19 +03:00
|
|
|
|
|
|
|
|
|
const isPopularity = sortBy === sortOptions.popularity;
|
|
|
|
|
|
|
|
|
|
setBtnStyles(sortOptions.popularity, isPopularity);
|
|
|
|
|
setBtnStyles(sortOptions.last_modified, !isPopularity);
|
2022-10-21 10:56:04 +03:00
|
|
|
|
refreshDisplayedPackages();
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-15 16:07:54 +03:00
|
|
|
|
function refreshDisplayedPackages() {
|
2022-10-24 11:59:38 +03:00
|
|
|
|
const packages = getPackageThumbs();
|
2022-10-21 10:56:04 +03:00
|
|
|
|
let i = 0;
|
|
|
|
|
for(const sp of packages) {
|
2022-10-15 16:07:54 +03:00
|
|
|
|
if (i >= limit) {
|
2022-10-21 10:56:04 +03:00
|
|
|
|
sp.classList.add('hidden');
|
2022-10-15 16:07:54 +03:00
|
|
|
|
} else {
|
2022-10-21 10:56:04 +03:00
|
|
|
|
sp.classList.remove('hidden');
|
2022-10-15 16:07:54 +03:00
|
|
|
|
}
|
2022-10-21 10:56:04 +03:00
|
|
|
|
i++;
|
2022-10-15 16:07:54 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const loadMoreButton = document.getElementById('loadMorePackagesBtn');
|
|
|
|
|
loadMoreButton.addEventListener('click',() => {
|
|
|
|
|
limit += 16;
|
|
|
|
|
refreshDisplayedPackages();
|
|
|
|
|
if (limit >= packagesCount) {
|
|
|
|
|
const loadMoreSection = document.getElementById('loadMoreSection');
|
|
|
|
|
loadMoreSection.classList.add('hidden');
|
|
|
|
|
}
|
2022-10-24 11:59:38 +03:00
|
|
|
|
}, false);
|
|
|
|
|
|
2022-10-24 14:40:19 +03:00
|
|
|
|
function getSortBtns(type) {
|
|
|
|
|
const typeBtn = document.getElementById(`dropdown-${type}-btn`);
|
|
|
|
|
const typeDownBtn = document.getElementById(`${type}-down-btn`);
|
|
|
|
|
const typeUpBtn = document.getElementById(`${type}-up-btn`);
|
|
|
|
|
return { typeBtn, typeDownBtn, typeUpBtn };
|
|
|
|
|
}
|
2022-10-24 11:59:38 +03:00
|
|
|
|
|
2022-10-24 14:40:19 +03:00
|
|
|
|
function setBtnStyles(type, active) {
|
|
|
|
|
const { typeBtn, typeDownBtn, typeUpBtn } = getSortBtns(type);
|
|
|
|
|
if (active) {
|
|
|
|
|
typeBtn.classList.add('active');
|
|
|
|
|
if (sortDirection === 'asc') {
|
|
|
|
|
typeUpBtn.classList.add('active');
|
|
|
|
|
typeDownBtn.classList.remove('active');
|
|
|
|
|
} else {
|
|
|
|
|
typeDownBtn.classList.add('active');
|
|
|
|
|
typeUpBtn.classList.remove('active');
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
typeBtn.classList.remove('active');
|
|
|
|
|
typeDownBtn.classList.remove('active');
|
|
|
|
|
typeUpBtn.classList.remove('active');
|
2022-10-24 11:59:38 +03:00
|
|
|
|
}
|
2022-10-24 14:40:19 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function configureSortButton(type) {
|
|
|
|
|
const { typeBtn, typeDownBtn, typeUpBtn } = getSortBtns(type);
|
|
|
|
|
typeBtn.addEventListener('click',() => {
|
|
|
|
|
if (sortBy != type) {
|
|
|
|
|
sortBy = type;
|
|
|
|
|
sortPackages();
|
|
|
|
|
}
|
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
|
|
typeDownBtn.addEventListener('click',() => {
|
|
|
|
|
if (sortBy != type || sortDirection != 'desc') {
|
|
|
|
|
sortBy = type;
|
|
|
|
|
sortDirection = 'desc';
|
|
|
|
|
sortPackages();
|
|
|
|
|
}
|
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
|
|
typeUpBtn.addEventListener('click',() => {
|
|
|
|
|
if (sortBy != type || sortDirection != 'asc') {
|
|
|
|
|
sortBy = type;
|
|
|
|
|
sortDirection = 'asc';
|
|
|
|
|
sortPackages();
|
|
|
|
|
}
|
|
|
|
|
}, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
configureSortButton(sortOptions.popularity);
|
|
|
|
|
configureSortButton(sortOptions.last_modified);
|
2022-10-24 11:59:38 +03:00
|
|
|
|
|
2022-10-21 10:56:04 +03:00
|
|
|
|
sortPackages();
|
2022-10-15 16:07:54 +03:00
|
|
|
|
</script>
|