Compare commits

...

3 Commits

7 changed files with 31 additions and 42 deletions

View File

@ -27,24 +27,19 @@ type ButtonProps = {
| (JSX.IntrinsicElements["a"] & { href: string }) | (JSX.IntrinsicElements["a"] & { href: string })
); );
export function Button({ export function Button(props: ButtonProps) {
variant = "primary", const className = clsx(
size = "md", variantStyles[props.variant ?? "primary"],
className, sizeStyles[props.size ?? "md"],
...props
}: ButtonProps) {
className = clsx(
variantStyles[variant],
sizeStyles[size],
"cursor-pointer", "cursor-pointer",
className, props.className,
); );
return "href" in props && props.href ? ( return "href" in props && props.href ? (
<Link <Link
{...(props as JSX.IntrinsicElements["a"])}
class={className} class={className}
href={props.href} href={props.href}
{...(props as JSX.IntrinsicElements["a"])}
/> />
) : ( ) : (
<button class={className} {...(props as JSX.IntrinsicElements["button"])} /> <button class={className} {...(props as JSX.IntrinsicElements["button"])} />

View File

@ -31,25 +31,20 @@ const icons = {
), ),
}; };
export default function Callout({ export default function Callout(props: {
title,
children,
type = "note",
collapsible = false,
}: {
title: string; title: string;
children: JSX.Element; children: JSX.Element;
type?: keyof typeof styles; type?: keyof typeof styles;
collapsible?: boolean; collapsible?: boolean;
}) { }) {
const IconComponent = icons[type]; const IconComponent = icons[props.type || "note"];
return ( return (
<div <div
class={clsx( class={clsx(
"my-8 flex flex-col rounded-3xl p-6", "my-8 flex flex-col rounded-3xl p-6",
styles[type].container, styles[props.type || "note"].container,
{ "cursor-pointer": collapsible }, { "cursor-pointer": props.collapsible },
)} )}
> >
<div class="flex items-center gap-6"> <div class="flex items-center gap-6">
@ -57,14 +52,16 @@ export default function Callout({
<p <p
class={clsx( class={clsx(
"!m-0 font-display text-xl text-balance", "!m-0 font-display text-xl text-balance",
styles[type].title, styles[props.type || "note"].title,
)} )}
> >
{title} {props.title}
</p> </p>
</div> </div>
<div class="mt-4 flex-auto"> <div class="mt-4 flex-auto">
<div class={clsx("prose mt-2.5", styles[type].body)}>{children}</div> <div class={clsx("prose mt-2.5", styles[props.type || "note"].body)}>
{props.children}
</div>
</div> </div>
</div> </div>
); );

View File

@ -63,7 +63,7 @@ function PageLink(props: PageLinkProps) {
} }
export function PrevNextLinks() { export function PrevNextLinks() {
const { urlPathname } = usePageContext(); const pageContext = usePageContext();
const allLinks = navigation const allLinks = navigation
.flatMap((section) => section.links) .flatMap((section) => section.links)
@ -72,13 +72,15 @@ export function PrevNextLinks() {
}); });
const getNeighboringLinks = () => { const getNeighboringLinks = () => {
const linkIndex = allLinks.findIndex((link) => link.href === urlPathname); const linkIndex = allLinks.findIndex(
(link) => link.href === pageContext.urlPathname,
);
if (linkIndex === -1) return [null, null]; if (linkIndex === -1) return [null, null];
const previousPage = allLinks[linkIndex - 1] || null; const previousPage = allLinks[linkIndex - 1] || null;
let nextPage = allLinks[linkIndex + 1] || null; let nextPage = allLinks[linkIndex + 1] || null;
if (nextPage?.href === urlPathname) { if (nextPage?.href === pageContext.urlPathname) {
nextPage = allLinks[linkIndex + 2] || null; nextPage = allLinks[linkIndex + 2] || null;
} }

View File

@ -114,13 +114,13 @@ function SearchInput() {
); );
} }
function HighlightQuery({ text, query }: { text: string; query: string }) { function HighlightQuery(props: { text: string; query: string }) {
return ( return (
<Highlighter <Highlighter
highlightClass="group-aria-selected:underline bg-transparent text-violet-600" highlightClass="group-aria-selected:underline bg-transparent text-violet-600"
searchWords={[query]} searchWords={[props.query]}
autoEscape={true} autoEscape={true}
textToHighlight={text} textToHighlight={props.text}
/> />
); );
} }

View File

@ -3,7 +3,6 @@ import type { JSXElement } from "solid-js";
import { TableOfContents } from "@/partials/TableOfContents"; import { TableOfContents } from "@/partials/TableOfContents";
import { PrevNextLinks } from "@/components/PrevNextLinks"; import { PrevNextLinks } from "@/components/PrevNextLinks";
import { usePageContext } from "vike-solid/usePageContext"; import { usePageContext } from "vike-solid/usePageContext";
import { clientOnly } from "vike-solid/clientOnly";
import { clock } from "solid-heroicons/outline"; import { clock } from "solid-heroicons/outline";
import { navigation } from "@/libs/navigation"; import { navigation } from "@/libs/navigation";
import { Prose } from "@/components/Prose"; import { Prose } from "@/components/Prose";
@ -13,10 +12,6 @@ type DocsLayoutProps = {
children: JSXElement; children: JSXElement;
}; };
// const TableOfContents = clientOnly(() =>
// import("@/partials/TableOfContents").then((m) => m.TableOfContents),
// );
export function DocsLayout(props: DocsLayoutProps) { export function DocsLayout(props: DocsLayoutProps) {
const pageContext = usePageContext(); const pageContext = usePageContext();

View File

@ -25,24 +25,24 @@ function MenuIcon(props: JSX.IntrinsicElements["svg"]) {
function CloseIcon(props: JSX.IntrinsicElements["svg"]) { function CloseIcon(props: JSX.IntrinsicElements["svg"]) {
return ( return (
<svg <svg
{...props}
aria-hidden="true" aria-hidden="true"
viewBox="0 0 24 24" viewBox="0 0 24 24"
fill="none" fill="none"
stroke-width="2" stroke-width="2"
stroke-linecap="round" stroke-linecap="round"
{...props}
> >
<path d="M5 5l14 14M19 5l-14 14" /> <path d="M5 5l14 14M19 5l-14 14" />
</svg> </svg>
); );
} }
function CloseOnNavigation({ close }: { close: () => void }) { function CloseOnNavigation(props: { close: () => void }) {
const { urlPathname } = usePageContext(); const pageContext = usePageContext();
createEffect(() => { createEffect(() => {
close(); props.close();
}, [urlPathname, close]); }, [pageContext.urlPathname, props.close]);
return null; return null;
} }

View File

@ -26,7 +26,7 @@ function NavigationItem(props: NavigationItemProps) {
return ( return (
<> <>
<h2 <h3
class={clsx( class={clsx(
"font-display font-medium cursor-pointer", "font-display font-medium cursor-pointer",
isOpened() ? "text-violet-600" : "text-slate-900", isOpened() ? "text-violet-600" : "text-slate-900",
@ -56,9 +56,9 @@ function NavigationItem(props: NavigationItemProps) {
<span class="text-slate-400"> ({props.section.links.length})</span> <span class="text-slate-400"> ({props.section.links.length})</span>
</button> </button>
</h2> </h3>
{isOpened() && ( {isOpened() && (
<ul class="!mt-0 ml-2 space-y-1 border-l-2 border-slate-100 lg:mt-4 lg:space-y-2 lg:border-slate-200"> <ul class="!mt-0 ml-2 space-y-1 border-l-2 border-slate-100 lg:mt-4 lg:space-y-2 lg:border-slate-200 mb-2">
<For each={props.section.links}> <For each={props.section.links}>
{(link) => ( {(link) => (
<li class="relative"> <li class="relative">