astro pagefind
v1.6.0
التكامل الفلكي للبحث في الموقع الثابت Pagefind.
astro dev
ثَبَّتَ:
npm i astro-pagefind
أضف التكامل إلى تكوين Astro:
//astro.config.ts
import { defineConfig } from "astro/config" ;
import pagefind from "astro-pagefind" ;
export default defineConfig ( {
build : {
format : "file" ,
} ,
integrations : [ pagefind ( ) ] ,
} ) ;
إضافة مكون بحث على الصفحة:
---
import Search from " astro-pagefind/components/Search " ;
---
< Search id = " search " className = " pagefind-ui " uiOptions = { { showImages: false } } />
راجع Main.layout للحصول على مثال للاستخدام.
في وضع SSR، يوفر Astro إمكانية الوصول إلى معلمات استعلام URL التي يمكن استخدامها لملء استعلام البحث مسبقًا عبر الخاصية:
---
import Search from " astro-pagefind/components/Search " ;
export const prerender = false ;
const q = Astro . url . searchParams . get ( " q " ) ?? undefined ;
---
< Search query = { q } />
راجع prefilled.astro للحصول على مثال كامل.