11---
22import ButtonLink from " ../button-link/button-link.astro" ;
33import HeaderButton from " ./header-button.astro" ;
4+ import Search from " astro-pagefind/components/Search" ;
45
56export interface Props {
67 mobile? : boolean ;
@@ -12,6 +13,13 @@ const IS_LIVE = false;
1213---
1314
1415<div class =" ml-auto flex items-center space-x-4" >
16+ <Search id =" search" className =" pagefind-ui" uiOptions ={ {
17+
18+ showImages: false ,
19+ translations: {
20+ zero_results: " Couldn't find [SEARCH_TERM]"
21+ }
22+ }} />
1523 {
1624 ! mobile ? (
1725 <>
@@ -34,3 +42,119 @@ const IS_LIVE = false;
3442 </HeaderButton >
3543 </label >
3644</div >
45+ <script >
46+ document.addEventListener("DOMContentLoaded", function () {
47+ const searchContainer = document.querySelector(".pagefind-ui");
48+ const searchInput = searchContainer?.querySelector("input");
49+ let selectedIndex = -1;
50+
51+ function updateSelection() {
52+ const results = searchContainer?.querySelectorAll(".pagefind-ui__result");
53+ if (!results) return;
54+
55+ results.forEach((result, index) => {
56+ if (index === selectedIndex) {
57+ result.classList.add("selected");
58+ result.scrollIntoView({ block: "nearest", behavior: "smooth" });
59+ } else {
60+ result.classList.remove("selected");
61+ }
62+ });
63+ }
64+
65+ document.addEventListener("keydown", function (event) {
66+ if (!searchContainer || !searchInput) return;
67+
68+ const results = searchContainer.querySelectorAll(".pagefind-ui__result");
69+ if (document.activeElement === searchInput) {
70+ if (event.key === "ArrowDown") {
71+ event.preventDefault();
72+ selectedIndex = (selectedIndex + 1) % results.length;
73+ updateSelection();
74+ } else if (event.key === "ArrowUp") {
75+ event.preventDefault();
76+ selectedIndex = (selectedIndex - 1 + results.length) % results.length;
77+ updateSelection();
78+ } else if (event.key === "Enter" && selectedIndex >= 0) {
79+ event.preventDefault();
80+ results[selectedIndex].querySelector("a")?.click();
81+ }
82+ }
83+ });
84+
85+ // Reset selection when the search query changes
86+ searchInput?.addEventListener("input", function () {
87+ selectedIndex = -1;
88+ });
89+
90+ });
91+ </script >
92+ <style is:global >
93+ .pagefind-ui__result.selected {
94+ background-color: #f5f5f5;
95+ background-image: linear-gradient(to right, #3684B6 7px, transparent 5px);
96+ -webkit-transform: translate3d(0, 0, 0);
97+ transform: translate3d(0, 0, 0);
98+ }
99+ .pagefind-ui__drawer {
100+ }
101+ .pagefind-ui__message {
102+ margin: 1em;
103+ }
104+ .pagefind-ui__result mark {
105+ background: #F9EB5D;
106+ background-image: linear-gradient(to right, #F9EB5D 10%, #FCF4A7 100%);
107+ margin: 4px;
108+ padding-right: 6px;
109+ padding-left: 6px;
110+ padding-top: 2px;
111+ padding-bottom: 2px;
112+ color: #000000;
113+ font-family: monospace;
114+ border-radius: 4px;
115+ }
116+ .pagefind-ui {
117+ --pagefind-ui-scale: 1;
118+ --pagefind-ui-primary: #141f36;
119+ --pagefind-ui-text: black;
120+ --pagefind-ui-border: #d8d8d8;
121+ --pagefind-ui-border-width: 2px;
122+ --pagefind-ui-border-radius: 0;
123+ width: 50%;
124+ }
125+ .pagefind-ui.yellow {
126+ --pagefind-ui-background: #efc302;
127+ }
128+ .pagefind-ui.red {
129+ --pagefind-ui-background: #ffb9bb;
130+ width: 50%;
131+ }
132+ .pagefind-ui .pagefind-ui__drawer:not(.pagefind-ui__hidden) {
133+ position: absolute;
134+ left: auto;
135+ right: 0;
136+ margin-top: 0px;
137+ width:50vw;
138+ z-index: 9999;
139+ overflow-y: auto;
140+ box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
141+ border-bottom-right-radius: var(--pagefind-ui-border-radius);
142+ border-bottom-left-radius: var(--pagefind-ui-border-radius);
143+ background-color: var(--pagefind-ui-background);
144+ }
145+ .pagefind-ui__result{
146+ padding: 0 2em 1em !important;
147+ }
148+ .pagefind-ui .pagefind-ui__result-link {
149+ color: var(--pagefind-ui-primary);
150+ }
151+ .pagefind-ui .pagefind-ui__result-excerpt {
152+ color: var(--pagefind-ui-text);
153+ }
154+ @media (max-width: 1280px) {
155+ .pagefind-ui {
156+ display:none;
157+ }
158+ }
159+
160+ </style >
0 commit comments