-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Astro Headless UI is a collection of headless components and utilities for Astro
This library contains four components types, each type implements a different headless pattern
HTML Element with an attached stylesheet
<NoScriptProperty>
<AnimatedSpriteSheet>
<IconSwitcher>
HTML Element generator, mostly takes advantage of Astro's slot API
<When>
<Switch>
<For>
<Wrap>
<Link>
<Navigation>
<TableOfContents>
<Breadcrumb>
<Paginate>
<Pagination>
<Rating>
Interactive HTML Element using vanilla js
<DarkThemeToggle>
<MultiThemeToggle>
<CodeCopy>
A client script that is does not include any HTML
<ScrollProperty>
<MouseProperty>
Components take advantage of Astro's slots API to give complete control over rendering
Pass an element to a slot using the slot
attribute
<Rating total="5" active="2.5">
<Icon slot="active" name="codicon:star-full"></Icon>
<Icon slot="half" name="codicon:star-half"></Icon>
<Icon slot="disabled" name="codicon:star-empty"></Icon>
</Rating>
Components can pass arguments to slot functions
<Pagination>
{page => <a href={page.href}>{page.number}</a>}
</Pagination>
To pass a slot function to a named slot the function must be wrapped in a valid HTML element and a slot
attribute, this 'wrapper' element does not get rendered in the final output.
<Pagination>
<active slot="active">
{page => <a href={page.href}>{page.number}</a>}
</active>
</Pagination>
Animated Spritesheet:
<AnimatedSpriteSheet
url="/boom.png"
name="boom"
height={605}
width={1207}
cols={8}
rows={4}
/>
Product Rating:
---
import { Rating } from 'astro-headless-ui';
import { Icon } from 'astro-icon';
---
<Rating total="5" active="2.5">
<Icon slot="active" name="codicon:star-full"></Icon>
<Icon slot="half" name="codicon:star-half"></Icon>
<Icon slot="disabled" name="codicon:star-empty"></Icon>
</Rating>
Breadcrumb:
// "src/pages/posts/categories/javascript/tutorial"
---
import { Breadcrumb } from 'astro-headless-ui';
---
<nav>
<Breadcrumb />
</nav>
Page navigation:
// src/pages/posts/[...page].astro
---
import { Pagination } from 'astro-headless-ui';
export async function getStaticPaths({ paginate }) {
const posts = await fetch('https://jsonplaceholder.typicode.com/posts').then(response => response.json())
return paginate(posts , { pageSize: 10 })
}
const { page } = Astro.props
---
<nav style="display:flex;gap:.25rem;">
<Pagination index url="/posts" total={page.last} current={page.current}>
<active slot="active">{page => <span>{page.number}</span>}</active>
<span slot="disabled">...</span>
{page => <a href={page.href}>{page.number}</a>}
</Pagination>
</nav>
<nav style="display:flex;gap:0.25rem;">
<a href="/posts/">1</a>
<a href="/posts/2">2</a>
<span>...</span>
<a href="/posts/4">4</a>
<span>5</span>
<a href="/posts/6">6</a>
<span>...</span>
<a href="/posts/9">9</a>
<a href="/posts/10">10</a>
</nav>