Remove category selection

This commit is contained in:
Nikola Petrov 2024-01-26 22:25:20 +01:00
parent 2b7caccad4
commit 7d9b7dd0bc
4 changed files with 5 additions and 221 deletions

View File

@ -668,69 +668,6 @@ main {
#PORTFOLIO #PORTFOLIO
\*-----------------------------------*/ \*-----------------------------------*/
.filter-list {
display: none;
}
.filter-select-box {
position: relative;
margin-bottom: 25px;
}
.filter-select {
background: var(--eerie-black-2);
color: var(--light-gray);
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 12px 16px;
border: 1px solid var(--jet);
border-radius: 14px;
font-size: var(--fs-6);
font-weight: var(--fw-300);
}
.filter-select.active .select-icon {
transform: rotate(0.5turn);
}
.select-list {
background: var(--eerie-black-2);
position: absolute;
top: calc(100% + 6px);
width: 100%;
padding: 6px;
border: 1px solid var(--jet);
border-radius: 14px;
z-index: 2;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: 0.15s ease-in-out;
}
.filter-select.active+.select-list {
opacity: 1;
visibility: visible;
pointer-events: all;
}
.select-item button {
background: var(--eerie-black-2);
color: var(--light-gray);
font-size: var(--fs-6);
font-weight: var(--fw-300);
text-transform: capitalize;
width: 100%;
padding: 8px 10px;
border-radius: 8px;
}
.select-item button:hover {
--eerie-black-2: hsl(240, 2%, 20%);
}
.project-list { .project-list {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
@ -856,8 +793,7 @@ main {
* #PORTFOLIO, BLOG * #PORTFOLIO, BLOG
*/ */
.project-img, .project-img {
.blog-banner-box {
height: auto; height: auto;
} }
} }
@ -1058,18 +994,9 @@ main {
* #PORTFOLIO * #PORTFOLIO
*/ */
.project-img, .project-img {
.blog-banner-box {
border-radius: 16px; border-radius: 16px;
} }
.blog-posts-list {
gap: 30px;
}
.blog-content {
padding: 25px;
}
} }
/** /**
@ -1108,45 +1035,10 @@ main {
--fs-8: 15px; --fs-8: 15px;
} }
/**
* PORTFOLIO
*/
.article-title {
padding-bottom: 20px;
}
.filter-select-box {
display: none;
}
.filter-list {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 25px;
padding-left: 5px;
margin-bottom: 30px;
}
.filter-item button {
color: var(--light-gray);
font-size: var(--fs-5);
transition: var(--transition-1);
}
.filter-item button:hover {
color: var(--light-gray-70);
}
.filter-item button.active {
color: var(--orange-yellow-crayola);
}
/* portfolio and blog grid */ /* portfolio and blog grid */
.project-list, .project-list {
.blog-posts-list {
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
} }

View File

@ -15,63 +15,6 @@ const sidebarBtn = document.querySelector("[data-sidebar-btn]");
sidebarBtn.addEventListener("click", function () { elementToggleFunc(sidebar); }); sidebarBtn.addEventListener("click", function () { elementToggleFunc(sidebar); });
// custom select variables
const select = document.querySelector("[data-select]");
const selectItems = document.querySelectorAll("[data-select-item]");
const selectValue = document.querySelector("[data-select-value]");
const filterBtn = document.querySelectorAll("[data-filter-btn]");
select.addEventListener("click", function () { elementToggleFunc(this); });
// add event in all select items
for (let i = 0; i < selectItems.length; i++) {
selectItems[i].addEventListener("click", function () {
let selectedValue = this.innerText.toLowerCase();
selectValue.innerText = this.innerText;
elementToggleFunc(select);
filterFunc(selectedValue);
});
}
// filter variables
const filterItems = document.querySelectorAll("[data-filter-item]");
const filterFunc = function (selectedValue) {
for (let i = 0; i < filterItems.length; i++) {
if (selectedValue === "all") {
filterItems[i].classList.add("active");
} else if (selectedValue === filterItems[i].dataset.category) {
filterItems[i].classList.add("active");
} else {
filterItems[i].classList.remove("active");
}
}
}
// add event in all filter button items for large screen
let lastClickedBtn = filterBtn[0];
for (let i = 0; i < filterBtn.length; i++) {
filterBtn[i].addEventListener("click", function () {
let selectedValue = this.innerText.toLowerCase();
selectValue.innerText = this.innerText;
filterFunc(selectedValue);
lastClickedBtn.classList.remove("active");
this.classList.add("active");
lastClickedBtn = this;
});
}
// page navigation variables // page navigation variables
const navigationLinks = document.querySelectorAll("[data-nav-link]"); const navigationLinks = document.querySelectorAll("[data-nav-link]");

View File

@ -3,61 +3,50 @@ var router = express.Router();
/* GET home page. */ /* GET home page. */
router.get('/', function (req, res, next) { router.get('/', function (req, res, next) {
const categorys = ["cpp", "games", "js", "cs"];
const entry = [ const entry = [
{ {
category: categorys[0],
img: "/images/projects/Advent_Of_Code_Logo.jpg", img: "/images/projects/Advent_Of_Code_Logo.jpg",
title: "Advent of code", title: "Advent of code",
des: "My solutions for AOC", des: "My solutions for AOC",
link: "https://gitlab.com/homep/advent_of_code" link: "https://gitlab.com/homep/advent_of_code"
}, },
{ {
category: categorys[1],
img: "/images/projects/password_manager.jpeg", img: "/images/projects/password_manager.jpeg",
title: "Password manager", title: "Password manager",
des: "CLI app", des: "CLI app",
link: "https://gitlab.com/homep/password_manager" link: "https://gitlab.com/homep/password_manager"
}, },
{ {
category: categorys[3],
img: "/images/projects/media_player.jpeg", img: "/images/projects/media_player.jpeg",
title: "Media player", title: "Media player",
des: "WPF", des: "WPF",
link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki" link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki"
}, },
{ {
category: categorys[3],
img: "/images/logo.png", img: "/images/logo.png",
title: "Server", title: "Server",
des: "Everything running on my server", des: "Everything running on my server",
link: "https://gitlab.com/homep/server" link: "https://gitlab.com/homep/server"
}, },
{ {
category: categorys[3],
img: "/images/projects/projektna_naloga.jpeg", img: "/images/projects/projektna_naloga.jpeg",
title: "Highway Tracker", title: "Highway Tracker",
des: "School project", des: "School project",
link: "https://gitlab.com/school221/projektna_naloga" link: "https://gitlab.com/school221/projektna_naloga"
}, },
{ {
category: categorys[3],
img: "/images/projects/bitshift.jpeg", img: "/images/projects/bitshift.jpeg",
title: "BitShifters", title: "BitShifters",
des: "unity", des: "unity",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters" link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters"
}, },
{ {
category: categorys[3],
img: "/images/projects/tetris.jpeg", img: "/images/projects/tetris.jpeg",
title: "Tetris", title: "Tetris",
des: "WPF", des: "WPF",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps" link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps"
}, },
{ {
category: categorys[3],
img: "/images/projects/games.jpeg", img: "/images/projects/games.jpeg",
title: "Games", title: "Games",
des: "java", des: "java",
@ -65,7 +54,7 @@ router.get('/', function (req, res, next) {
} }
]; ];
res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, categorys, entry }); res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, entry });
}); });
router.get('/old', function (req, res, next) { router.get('/old', function (req, res, next) {

View File

@ -365,50 +365,10 @@
<section class="projects"> <section class="projects">
<ul class="filter-list">
<li class="filter-item">
<button class="active" data-filter-btn>All</button>
</li>
{{#each categorys}}
<li class="filter-item">
<button data-filter-btn>{{this}}</button>
</li>
{{/each}}
</ul>
<div class="filter-select-box">
<button class="filter-select" data-select>
<div class="select-value" data-select-value>Select category</div>
<div class="select-icon">
<ion-icon name="chevron-down"></ion-icon>
</div>
</button>
<ul class="select-list">
<li class="select-item">
<button data-select-item>All</button>
</li>
{{#each categorys}}
<li class="select-item">
<button data-select-item>{{this}}</button>
</li>
{{/each}}
</ul>
</div>
<ul class="project-list"> <ul class="project-list">
{{#each entry}} {{#each entry}}
<li class="project-item active" data-filter-item data-category="{{category}}"> <li class="project-item active">
<a href="{{link}}"> <a href="{{link}}">
<figure class="project-img"> <figure class="project-img">