Skip to content

Commit

Permalink
docs: custom client directives
Browse files Browse the repository at this point in the history
  • Loading branch information
GiyoMoon committed Nov 15, 2024
1 parent e87c758 commit b22bec0
Show file tree
Hide file tree
Showing 11 changed files with 83 additions and 7 deletions.
4 changes: 4 additions & 0 deletions web/astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import sitemap, { ChangeFreqEnum } from '@astrojs/sitemap'
import clickDirective from './src/lib/directives/click/register'
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import searchDirective from './src/lib/directives/search/register'
import solid from '@astrojs/solid-js'
import tailwind from '@astrojs/tailwind'

// https://astro.build/config
export default defineConfig({
integrations: [
clickDirective(),
searchDirective(),
mdx(),
sitemap({
serialize(item) {
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import HeaderLogoLight from '@assets/header_logo_light.svg'

const NavDrawer: FlowComponent = (props) => {
return (
<Drawer side="left" breakPoints={[0.75]}>
<Drawer initialOpen={true} side="left" breakPoints={[0.75]}>
{(drawerProps) => (
<>
<Drawer.Trigger class="p-1.5 md:hidden">
Expand Down
8 changes: 4 additions & 4 deletions web/src/components/Topbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ const { inDocs } = Astro.props
{
inDocs === true && (
<>
<SearchDialog client:media="(min-width: 768px)" />
<SearchDrawer client:media="(max-width: 767px)" />
<SearchDialog client:search="(min-width: 768px)" />
<SearchDrawer client:search="(max-width: 767px)" />
</>
)
}
<ThemeSelect client:idle />
<ThemeSelect client:click />
<a href="https://github.com/corvudev/corvu/" target="_blank" class="p-2">
<span class="sr-only">GitHub repository</span>
<svg
Expand All @@ -73,7 +73,7 @@ const { inDocs } = Astro.props
clip-rule="evenodd"></path>
</svg>
</a>
<Drawer client:media="(max-width: 767px)">
<Drawer client:click>
<Navigation />
</Drawer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/docs/code/Code.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ const trimmedCode = code.trim()
class="not-prose relative mb-6 mt-4 grid rounded-md border-2 border-corvu-200"
>
<RawCode code={trimmedCode} lang={lang} />
{copyButton === true && <CopyToClipboard code={trimmedCode} client:visible />}
{copyButton === true && <CopyToClipboard code={trimmedCode} client:click />}
</div>
2 changes: 1 addition & 1 deletion web/src/components/docs/code/RawCode.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ const codeHtml = await codeToHtml(trimmedCode, {
class="contents [&>pre]:overflow-auto [&>pre]:rounded-md [&>pre]:py-2 [&>pre]:pl-2 [&>pre]:pr-12 [&>pre]:md:pr-2"
set:html={codeHtml}
/>
{copyButton === true && <CopyToClipboard code={trimmedCode} client:visible />}
{copyButton === true && <CopyToClipboard code={trimmedCode} client:click />}
13 changes: 13 additions & 0 deletions web/src/lib/directives/click/click.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { ClientDirective } from 'astro'

export default ((load, _opts, el) => {
el.addEventListener(
'click',
async (e) => {
e.preventDefault()
const hydrate = await load()
await hydrate()
},
{ once: true },
)
}) satisfies ClientDirective
6 changes: 6 additions & 0 deletions web/src/lib/directives/click/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import 'astro'
declare module 'astro' {
interface AstroClientDirectives {
'client:click'?: boolean
}
}
14 changes: 14 additions & 0 deletions web/src/lib/directives/click/register.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { AstroIntegration } from 'astro'

export default () =>
({
name: 'client:click',
hooks: {
'astro:config:setup': ({ addClientDirective }) => {
addClientDirective({
name: 'click',
entrypoint: './src/lib/directives/click/click.ts',
})
},
},
}) satisfies AstroIntegration
6 changes: 6 additions & 0 deletions web/src/lib/directives/search/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import 'astro'
declare module 'astro' {
interface AstroClientDirectives {
'client:search'?: string
}
}
14 changes: 14 additions & 0 deletions web/src/lib/directives/search/register.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { AstroIntegration } from 'astro'

export default () =>
({
name: 'client:search',
hooks: {
'astro:config:setup': ({ addClientDirective }) => {
addClientDirective({
name: 'search',
entrypoint: './src/lib/directives/search/search.ts',
})
},
},
}) satisfies AstroIntegration
19 changes: 19 additions & 0 deletions web/src/lib/directives/search/search.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import type { ClientDirective } from 'astro'

export default ((load, opts, el) => {
const mql = matchMedia(opts.value)
const init = async () => {
if (!mql.matches) return
window.removeEventListener('keydown', onKeydown)
const hydrate = await load()
await hydrate()
}
const onKeydown = async (e: KeyboardEvent) => {
if (e.metaKey && e.key === 'k') {
// el.setAttribute('data-key-init', '')
init()
}
}
window.addEventListener('keydown', onKeydown)
el.addEventListener('pointerover', init, { once: true })
}) satisfies ClientDirective

0 comments on commit b22bec0

Please sign in to comment.