@assetsart/nylon-mesh 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +98 -0
- package/Cargo.lock +2965 -0
- package/Cargo.toml +33 -0
- package/README.md +104 -0
- package/bin/nylon-mesh.js +213 -0
- package/bun.lock +360 -0
- package/docs/content/docs/caching.mdx +85 -0
- package/docs/content/docs/configuration.mdx +115 -0
- package/docs/content/docs/index.mdx +58 -0
- package/docs/content/docs/load-balancing.mdx +69 -0
- package/docs/content/docs/meta.json +9 -0
- package/docs/next.config.mjs +11 -0
- package/docs/package-lock.json +6099 -0
- package/docs/package.json +32 -0
- package/docs/postcss.config.mjs +7 -0
- package/docs/source.config.ts +23 -0
- package/docs/src/app/(home)/layout.tsx +6 -0
- package/docs/src/app/(home)/page.tsx +125 -0
- package/docs/src/app/api/search/route.ts +9 -0
- package/docs/src/app/docs/[[...slug]]/page.tsx +46 -0
- package/docs/src/app/docs/layout.tsx +11 -0
- package/docs/src/app/global.css +7 -0
- package/docs/src/app/layout.tsx +31 -0
- package/docs/src/app/llms-full.txt/route.ts +10 -0
- package/docs/src/app/llms.txt/route.ts +13 -0
- package/docs/src/app/og/docs/[...slug]/route.tsx +27 -0
- package/docs/src/components/ai/page-actions.tsx +240 -0
- package/docs/src/components/architecture-diagram.tsx +88 -0
- package/docs/src/components/benchmark.tsx +129 -0
- package/docs/src/components/configuration.tsx +107 -0
- package/docs/src/components/copy-button.tsx +29 -0
- package/docs/src/components/footer.tsx +37 -0
- package/docs/src/components/framework-logos.tsx +35 -0
- package/docs/src/lib/cn.ts +1 -0
- package/docs/src/lib/layout.shared.tsx +23 -0
- package/docs/src/lib/source.ts +27 -0
- package/docs/src/mdx-components.tsx +9 -0
- package/docs/tsconfig.json +46 -0
- package/nylon-mesh.yaml +41 -0
- package/package.json +23 -0
- package/scripts/publish.mjs +18 -0
- package/scripts/release.mjs +52 -0
- package/src/config.rs +91 -0
- package/src/main.rs +214 -0
- package/src/proxy/cache.rs +304 -0
- package/src/proxy/handlers.rs +76 -0
- package/src/proxy/load_balancer.rs +23 -0
- package/src/proxy/mod.rs +232 -0
- package/src/tls_accept.rs +119 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "docs",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "next build",
|
|
7
|
+
"dev": "next dev",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
|
|
10
|
+
"postinstall": "fumadocs-mdx"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"fumadocs-core": "16.6.4",
|
|
14
|
+
"fumadocs-mdx": "14.2.7",
|
|
15
|
+
"fumadocs-ui": "16.6.4",
|
|
16
|
+
"lucide-react": "^0.570.0",
|
|
17
|
+
"next": "16.1.6",
|
|
18
|
+
"react": "^19.2.4",
|
|
19
|
+
"react-dom": "^19.2.4",
|
|
20
|
+
"tailwind-merge": "^3.4.1"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
24
|
+
"@types/mdx": "^2.0.13",
|
|
25
|
+
"@types/node": "^25.2.3",
|
|
26
|
+
"@types/react": "^19.2.14",
|
|
27
|
+
"@types/react-dom": "^19.2.3",
|
|
28
|
+
"postcss": "^8.5.6",
|
|
29
|
+
"tailwindcss": "^4.1.18",
|
|
30
|
+
"typescript": "^5.9.3"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineConfig, defineDocs } from 'fumadocs-mdx/config';
|
|
2
|
+
import { metaSchema, pageSchema } from 'fumadocs-core/source/schema';
|
|
3
|
+
|
|
4
|
+
// You can customise Zod schemas for frontmatter and `meta.json` here
|
|
5
|
+
// see https://fumadocs.dev/docs/mdx/collections
|
|
6
|
+
export const docs = defineDocs({
|
|
7
|
+
dir: 'content/docs',
|
|
8
|
+
docs: {
|
|
9
|
+
schema: pageSchema,
|
|
10
|
+
postprocess: {
|
|
11
|
+
includeProcessedMarkdown: true,
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
meta: {
|
|
15
|
+
schema: metaSchema,
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
export default defineConfig({
|
|
20
|
+
mdxOptions: {
|
|
21
|
+
// MDX options
|
|
22
|
+
},
|
|
23
|
+
});
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import Link from 'next/link';
|
|
2
|
+
import { FrameworkLogos } from '@/components/framework-logos';
|
|
3
|
+
import { ArchitectureDiagram } from '@/components/architecture-diagram';
|
|
4
|
+
import { Benchmark } from '@/components/benchmark';
|
|
5
|
+
import { Configuration } from '@/components/configuration';
|
|
6
|
+
import { Footer } from '@/components/footer';
|
|
7
|
+
import { CopyButton } from '@/components/copy-button';
|
|
8
|
+
import { Zap, Layers, Network, Blocks, ChevronRight } from 'lucide-react';
|
|
9
|
+
|
|
10
|
+
const features = [
|
|
11
|
+
{
|
|
12
|
+
icon: <Zap className="w-6 h-6 text-emerald-400" />,
|
|
13
|
+
title: 'Drop-in Caching',
|
|
14
|
+
description: 'Automatically intercepts and caches SSR HTML and static assets. Acts as a reverse proxy in front of your app, eliminating the need for complex internal caching logic.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
icon: <Layers className="w-6 h-6 text-blue-400" />,
|
|
18
|
+
title: '2-Tier Architecture',
|
|
19
|
+
description: 'Tier 1 (in-memory RAM via Moka) responds in microseconds. Tier 2 (Redis/DragonflyDB) handles persistent, distributed cache. Your backend only renders once.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
icon: <Network className="w-6 h-6 text-purple-400" />,
|
|
23
|
+
title: 'Smart Load Balancing',
|
|
24
|
+
description: "Built on Cloudflare's Pingora engine. Round-robin and random selection with weighted upstreams, health probes, and graceful shutdown.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
icon: <Blocks className="w-6 h-6 text-pink-400" />,
|
|
28
|
+
title: 'Framework Agnostic',
|
|
29
|
+
description: 'Works out of the box with Next.js, Nuxt, React SSR, Angular Universal, and Vue SSR. No framework-specific plugins required.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
export default function HomePage() {
|
|
34
|
+
return (
|
|
35
|
+
<div className="flex flex-col min-h-screen selection:bg-emerald-500/30">
|
|
36
|
+
{/* Hero Background Effects */}
|
|
37
|
+
<div className="absolute inset-0 -z-10 h-full w-full bg-fd-background bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-size-[24px_24px]">
|
|
38
|
+
<div className="absolute left-0 right-0 top-0 -z-10 m-auto h-[310px] w-[310px] rounded-full bg-emerald-500 opacity-20 blur-[100px]"></div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
{/* Hero Section */}
|
|
42
|
+
<section className="flex flex-col items-center justify-center pt-16 pb-16 px-4 text-center">
|
|
43
|
+
<div className="inline-flex items-center rounded-full border border-emerald-500/30 bg-emerald-500/10 px-3 py-1 text-sm text-emerald-600 dark:text-emerald-400 mb-8 backdrop-blur-sm">
|
|
44
|
+
<span className="flex h-2 w-2 rounded-full bg-emerald-500 mr-2 animate-pulse"></span>
|
|
45
|
+
Nylon Mesh v1.0.1 is out
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
<h1 className="text-6xl md:text-8xl font-black tracking-tight mb-6 max-w-5xl">
|
|
49
|
+
<span className="text-fd-foreground">Cache Everything.</span>
|
|
50
|
+
<br />
|
|
51
|
+
<span className="bg-linear-to-r from-emerald-400 via-teal-400 to-cyan-500 bg-clip-text text-transparent">
|
|
52
|
+
Scale Instantly.
|
|
53
|
+
</span>
|
|
54
|
+
</h1>
|
|
55
|
+
|
|
56
|
+
<p className="text-xl md:text-2xl text-fd-muted-foreground max-w-2xl mb-12 font-medium">
|
|
57
|
+
A high-performance edge proxy that sits in front of your Next.js, Nuxt, or any SSR app, dropping your backend load to near zero.
|
|
58
|
+
</p>
|
|
59
|
+
|
|
60
|
+
<div className="flex flex-col sm:flex-row items-center justify-center gap-4 w-full max-w-md mx-auto">
|
|
61
|
+
<Link
|
|
62
|
+
href="/docs"
|
|
63
|
+
className="group flex w-full sm:w-auto items-center justify-center gap-2 rounded-xl bg-emerald-500 px-8 py-4 text-white font-semibold transition-all hover:bg-emerald-600 hover:scale-105 active:scale-95 no-underline shadow-[0_0_40px_-5px_#10b981]"
|
|
64
|
+
>
|
|
65
|
+
Get Started
|
|
66
|
+
<ChevronRight className="w-5 h-5 transition-transform group-hover:translate-x-1" />
|
|
67
|
+
</Link>
|
|
68
|
+
<div className="flex w-full sm:w-auto items-center justify-between rounded-xl border border-fd-border bg-fd-card px-4 py-4 text-sm font-mono text-fd-muted-foreground shadow-sm group hover:border-emerald-500/50 transition-colors">
|
|
69
|
+
<span className="mr-8 select-all">bunx nylon-mesh init</span>
|
|
70
|
+
<CopyButton text="bunx nylon-mesh init" />
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</section>
|
|
74
|
+
|
|
75
|
+
{/* Benchmark Section */}
|
|
76
|
+
<section className="mx-auto w-full max-w-5xl px-4 py-6 relative z-10">
|
|
77
|
+
<Benchmark />
|
|
78
|
+
</section>
|
|
79
|
+
|
|
80
|
+
{/* Features Grid (Bento Box Style) */}
|
|
81
|
+
<section className="max-w-6xl mx-auto px-4 py-6 relative z-10">
|
|
82
|
+
<div className="text-center mb-16">
|
|
83
|
+
<h2 className="text-3xl md:text-5xl font-bold tracking-tight mb-4">Why Nylon Mesh?</h2>
|
|
84
|
+
<p className="text-xl text-fd-muted-foreground">Built for modern web frameworks.</p>
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
88
|
+
{features.map((feature, i) => (
|
|
89
|
+
<div
|
|
90
|
+
key={i}
|
|
91
|
+
className="group relative overflow-hidden rounded-3xl border border-fd-border bg-fd-card p-8 transition-all hover:border-emerald-500/50 hover:shadow-2xl hover:shadow-emerald-500/10"
|
|
92
|
+
>
|
|
93
|
+
<div className="absolute inset-0 bg-linear-to-br from-emerald-500/5 to-transparent opacity-0 group-hover:opacity-100 transition-opacity" />
|
|
94
|
+
<div className="relative z-10">
|
|
95
|
+
<div className="mb-6 inline-flex rounded-2xl bg-fd-background p-4 shadow-sm ring-1 ring-fd-border group-hover:scale-110 transition-transform duration-300">
|
|
96
|
+
{feature.icon}
|
|
97
|
+
</div>
|
|
98
|
+
<h3 className="mb-3 text-2xl font-bold text-fd-foreground">{feature.title}</h3>
|
|
99
|
+
<p className="text-fd-muted-foreground leading-relaxed">
|
|
100
|
+
{feature.description}
|
|
101
|
+
</p>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
))}
|
|
105
|
+
</div>
|
|
106
|
+
</section>
|
|
107
|
+
|
|
108
|
+
{/* Integration components */}
|
|
109
|
+
<div className="relative z-10 bg-fd-card border-t border-fd-border/50 py-24 mt-12 shadow-[inset_0_40px_80px_rgba(0,0,0,0.02)] dark:shadow-[inset_0_40px_80px_rgba(0,0,0,0.2)]">
|
|
110
|
+
<div className="max-w-6xl mx-auto px-4 space-y-32">
|
|
111
|
+
<FrameworkLogos />
|
|
112
|
+
<ArchitectureDiagram />
|
|
113
|
+
</div>
|
|
114
|
+
</div>
|
|
115
|
+
|
|
116
|
+
{/* Configuration Section */}
|
|
117
|
+
<section className="mx-auto w-full max-w-6xl px-4 pb-24 relative z-10">
|
|
118
|
+
<Configuration />
|
|
119
|
+
</section>
|
|
120
|
+
|
|
121
|
+
{/* Footer */}
|
|
122
|
+
<Footer />
|
|
123
|
+
</div>
|
|
124
|
+
);
|
|
125
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { source } from '@/lib/source';
|
|
2
|
+
import { createFromSource } from 'fumadocs-core/search/server';
|
|
3
|
+
|
|
4
|
+
export const { staticGET: GET } = createFromSource(source, {
|
|
5
|
+
// https://docs.orama.com/docs/orama-js/supported-languages
|
|
6
|
+
language: 'english',
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export const dynamic = 'force-static';
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { getPageImage, source } from '@/lib/source';
|
|
2
|
+
import { DocsBody, DocsDescription, DocsPage, DocsTitle } from 'fumadocs-ui/layouts/docs/page';
|
|
3
|
+
import { notFound } from 'next/navigation';
|
|
4
|
+
import { getMDXComponents } from '@/mdx-components';
|
|
5
|
+
import type { Metadata } from 'next';
|
|
6
|
+
import { createRelativeLink } from 'fumadocs-ui/mdx';
|
|
7
|
+
|
|
8
|
+
export default async function Page(props: PageProps<'/docs/[[...slug]]'>) {
|
|
9
|
+
const params = await props.params;
|
|
10
|
+
const page = source.getPage(params.slug);
|
|
11
|
+
if (!page) notFound();
|
|
12
|
+
|
|
13
|
+
const MDX = page.data.body;
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<DocsPage toc={page.data.toc} full={page.data.full}>
|
|
17
|
+
<DocsTitle>{page.data.title}</DocsTitle>
|
|
18
|
+
<DocsDescription>{page.data.description}</DocsDescription>
|
|
19
|
+
<DocsBody>
|
|
20
|
+
<MDX
|
|
21
|
+
components={getMDXComponents({
|
|
22
|
+
a: createRelativeLink(source, page),
|
|
23
|
+
})}
|
|
24
|
+
/>
|
|
25
|
+
</DocsBody>
|
|
26
|
+
</DocsPage>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export async function generateStaticParams() {
|
|
31
|
+
return source.generateParams();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export async function generateMetadata(props: PageProps<'/docs/[[...slug]]'>): Promise<Metadata> {
|
|
35
|
+
const params = await props.params;
|
|
36
|
+
const page = source.getPage(params.slug);
|
|
37
|
+
if (!page) notFound();
|
|
38
|
+
|
|
39
|
+
return {
|
|
40
|
+
title: page.data.title,
|
|
41
|
+
description: page.data.description,
|
|
42
|
+
openGraph: {
|
|
43
|
+
images: getPageImage(page).url,
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { source } from '@/lib/source';
|
|
2
|
+
import { DocsLayout } from 'fumadocs-ui/layouts/docs';
|
|
3
|
+
import { baseOptions } from '@/lib/layout.shared';
|
|
4
|
+
|
|
5
|
+
export default function Layout({ children }: LayoutProps<'/docs'>) {
|
|
6
|
+
return (
|
|
7
|
+
<DocsLayout tree={source.getPageTree()} {...baseOptions()}>
|
|
8
|
+
{children}
|
|
9
|
+
</DocsLayout>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { RootProvider } from 'fumadocs-ui/provider/next';
|
|
2
|
+
import './global.css';
|
|
3
|
+
import { Inter, JetBrains_Mono } from 'next/font/google';
|
|
4
|
+
import type { Metadata } from 'next';
|
|
5
|
+
|
|
6
|
+
const inter = Inter({
|
|
7
|
+
subsets: ['latin'],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
const jetbrainsMono = JetBrains_Mono({
|
|
11
|
+
subsets: ['latin'],
|
|
12
|
+
variable: '--font-mono',
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export const metadata: Metadata = {
|
|
16
|
+
title: {
|
|
17
|
+
template: '%s | Nylon Mesh',
|
|
18
|
+
default: 'Nylon Mesh — Cache Everything. Scale Instantly.',
|
|
19
|
+
},
|
|
20
|
+
description: 'A high-performance edge proxy built on Cloudflare Pingora. 2-tier caching (RAM + Redis) drops your backend load to near zero.',
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
24
|
+
return (
|
|
25
|
+
<html lang="en" className={`${inter.className} ${jetbrainsMono.variable}`} suppressHydrationWarning>
|
|
26
|
+
<body className="flex flex-col min-h-screen" suppressHydrationWarning>
|
|
27
|
+
<RootProvider>{children}</RootProvider>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { getLLMText, source } from '@/lib/source';
|
|
2
|
+
|
|
3
|
+
export const revalidate = false;
|
|
4
|
+
|
|
5
|
+
export async function GET() {
|
|
6
|
+
const scan = source.getPages().map(getLLMText);
|
|
7
|
+
const scanned = await Promise.all(scan);
|
|
8
|
+
|
|
9
|
+
return new Response(scanned.join('\n\n'));
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { source } from '@/lib/source';
|
|
2
|
+
|
|
3
|
+
export const revalidate = false;
|
|
4
|
+
|
|
5
|
+
export async function GET() {
|
|
6
|
+
const lines: string[] = [];
|
|
7
|
+
lines.push('# Documentation');
|
|
8
|
+
lines.push('');
|
|
9
|
+
for (const page of source.getPages()) {
|
|
10
|
+
lines.push(`- [${page.data.title}](${page.url}): ${page.data.description}`);
|
|
11
|
+
}
|
|
12
|
+
return new Response(lines.join('\n'));
|
|
13
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { getPageImage, source } from '@/lib/source';
|
|
2
|
+
import { notFound } from 'next/navigation';
|
|
3
|
+
import { ImageResponse } from 'next/og';
|
|
4
|
+
import { generate as DefaultImage } from 'fumadocs-ui/og';
|
|
5
|
+
|
|
6
|
+
export const revalidate = false;
|
|
7
|
+
|
|
8
|
+
export async function GET(_req: Request, { params }: RouteContext<'/og/docs/[...slug]'>) {
|
|
9
|
+
const { slug } = await params;
|
|
10
|
+
const page = source.getPage(slug.slice(0, -1));
|
|
11
|
+
if (!page) notFound();
|
|
12
|
+
|
|
13
|
+
return new ImageResponse(
|
|
14
|
+
<DefaultImage title={page.data.title} description={page.data.description} site="My App" />,
|
|
15
|
+
{
|
|
16
|
+
width: 1200,
|
|
17
|
+
height: 630,
|
|
18
|
+
},
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function generateStaticParams() {
|
|
23
|
+
return source.getPages().map((page) => ({
|
|
24
|
+
lang: page.locale,
|
|
25
|
+
slug: getPageImage(page).segments,
|
|
26
|
+
}));
|
|
27
|
+
}
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { useMemo, useState } from 'react';
|
|
3
|
+
import { Check, ChevronDown, Copy, ExternalLinkIcon } from 'lucide-react';
|
|
4
|
+
import { cn } from '@/lib/cn';
|
|
5
|
+
import { useCopyButton } from 'fumadocs-ui/utils/use-copy-button';
|
|
6
|
+
import { buttonVariants } from 'fumadocs-ui/components/ui/button';
|
|
7
|
+
import { Popover, PopoverContent, PopoverTrigger } from 'fumadocs-ui/components/ui/popover';
|
|
8
|
+
|
|
9
|
+
const cache = new Map<string, string>();
|
|
10
|
+
|
|
11
|
+
export function LLMCopyButton({
|
|
12
|
+
/**
|
|
13
|
+
* A URL to fetch the raw Markdown/MDX content of page
|
|
14
|
+
*/
|
|
15
|
+
markdownUrl,
|
|
16
|
+
}: {
|
|
17
|
+
markdownUrl: string;
|
|
18
|
+
}) {
|
|
19
|
+
const [isLoading, setLoading] = useState(false);
|
|
20
|
+
const [checked, onClick] = useCopyButton(async () => {
|
|
21
|
+
const cached = cache.get(markdownUrl);
|
|
22
|
+
if (cached) return navigator.clipboard.writeText(cached);
|
|
23
|
+
|
|
24
|
+
setLoading(true);
|
|
25
|
+
|
|
26
|
+
try {
|
|
27
|
+
await navigator.clipboard.write([
|
|
28
|
+
new ClipboardItem({
|
|
29
|
+
'text/plain': fetch(markdownUrl).then(async (res) => {
|
|
30
|
+
const content = await res.text();
|
|
31
|
+
cache.set(markdownUrl, content);
|
|
32
|
+
|
|
33
|
+
return content;
|
|
34
|
+
}),
|
|
35
|
+
}),
|
|
36
|
+
]);
|
|
37
|
+
} finally {
|
|
38
|
+
setLoading(false);
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<button
|
|
44
|
+
disabled={isLoading}
|
|
45
|
+
className={cn(
|
|
46
|
+
buttonVariants({
|
|
47
|
+
color: 'secondary',
|
|
48
|
+
size: 'sm',
|
|
49
|
+
className: 'gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground',
|
|
50
|
+
}),
|
|
51
|
+
)}
|
|
52
|
+
onClick={onClick}
|
|
53
|
+
>
|
|
54
|
+
{checked ? <Check /> : <Copy />}
|
|
55
|
+
Copy Markdown
|
|
56
|
+
</button>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function ViewOptions({
|
|
61
|
+
markdownUrl,
|
|
62
|
+
githubUrl,
|
|
63
|
+
}: {
|
|
64
|
+
/**
|
|
65
|
+
* A URL to the raw Markdown/MDX content of page
|
|
66
|
+
*/
|
|
67
|
+
markdownUrl: string;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Source file URL on GitHub
|
|
71
|
+
*/
|
|
72
|
+
githubUrl: string;
|
|
73
|
+
}) {
|
|
74
|
+
const items = useMemo(() => {
|
|
75
|
+
const fullMarkdownUrl =
|
|
76
|
+
typeof window !== 'undefined' ? new URL(markdownUrl, window.location.origin) : 'loading';
|
|
77
|
+
const q = `Read ${fullMarkdownUrl}, I want to ask questions about it.`;
|
|
78
|
+
|
|
79
|
+
return [
|
|
80
|
+
{
|
|
81
|
+
title: 'Open in GitHub',
|
|
82
|
+
href: githubUrl,
|
|
83
|
+
icon: (
|
|
84
|
+
<svg fill="currentColor" role="img" viewBox="0 0 24 24">
|
|
85
|
+
<title>GitHub</title>
|
|
86
|
+
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
|
|
87
|
+
</svg>
|
|
88
|
+
),
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
title: 'Open in Scira AI',
|
|
92
|
+
href: `https://scira.ai/?${new URLSearchParams({
|
|
93
|
+
q,
|
|
94
|
+
})}`,
|
|
95
|
+
icon: (
|
|
96
|
+
<svg
|
|
97
|
+
width="910"
|
|
98
|
+
height="934"
|
|
99
|
+
viewBox="0 0 910 934"
|
|
100
|
+
fill="none"
|
|
101
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
102
|
+
>
|
|
103
|
+
<title>Scira AI</title>
|
|
104
|
+
<path
|
|
105
|
+
d="M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z"
|
|
106
|
+
fill="currentColor"
|
|
107
|
+
stroke="currentColor"
|
|
108
|
+
strokeWidth="8"
|
|
109
|
+
strokeLinejoin="round"
|
|
110
|
+
/>
|
|
111
|
+
<path
|
|
112
|
+
d="M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z"
|
|
113
|
+
fill="currentColor"
|
|
114
|
+
stroke="currentColor"
|
|
115
|
+
strokeWidth="8"
|
|
116
|
+
strokeLinejoin="round"
|
|
117
|
+
/>
|
|
118
|
+
<path
|
|
119
|
+
d="M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z"
|
|
120
|
+
stroke="currentColor"
|
|
121
|
+
strokeWidth="20"
|
|
122
|
+
strokeLinejoin="round"
|
|
123
|
+
/>
|
|
124
|
+
<path
|
|
125
|
+
d="M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z"
|
|
126
|
+
stroke="currentColor"
|
|
127
|
+
strokeWidth="20"
|
|
128
|
+
strokeLinejoin="round"
|
|
129
|
+
/>
|
|
130
|
+
<path
|
|
131
|
+
d="M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z"
|
|
132
|
+
fill="currentColor"
|
|
133
|
+
stroke="currentColor"
|
|
134
|
+
strokeWidth="8"
|
|
135
|
+
strokeLinejoin="round"
|
|
136
|
+
/>
|
|
137
|
+
<path
|
|
138
|
+
d="M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z"
|
|
139
|
+
fill="currentColor"
|
|
140
|
+
stroke="currentColor"
|
|
141
|
+
strokeWidth="8"
|
|
142
|
+
strokeLinejoin="round"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
d="M760.632 764.337C720.719 814.616 669.835 855.1 611.872 882.692C553.91 910.285 490.404 924.255 426.213 923.533C362.022 922.812 298.846 907.419 241.518 878.531C184.19 849.643 134.228 808.026 95.4548 756.863C56.6815 705.7 30.1238 646.346 17.8129 583.343C5.50207 520.339 7.76433 455.354 24.4266 393.359C41.089 331.364 71.7099 274.001 113.947 225.658C156.184 177.315 208.919 139.273 268.117 114.442"
|
|
146
|
+
stroke="currentColor"
|
|
147
|
+
strokeWidth="30"
|
|
148
|
+
strokeLinecap="round"
|
|
149
|
+
strokeLinejoin="round"
|
|
150
|
+
/>
|
|
151
|
+
</svg>
|
|
152
|
+
),
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
title: 'Open in ChatGPT',
|
|
156
|
+
href: `https://chatgpt.com/?${new URLSearchParams({
|
|
157
|
+
hints: 'search',
|
|
158
|
+
q,
|
|
159
|
+
})}`,
|
|
160
|
+
icon: (
|
|
161
|
+
<svg
|
|
162
|
+
role="img"
|
|
163
|
+
viewBox="0 0 24 24"
|
|
164
|
+
fill="currentColor"
|
|
165
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
166
|
+
>
|
|
167
|
+
<title>OpenAI</title>
|
|
168
|
+
<path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" />
|
|
169
|
+
</svg>
|
|
170
|
+
),
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
title: 'Open in Claude',
|
|
174
|
+
href: `https://claude.ai/new?${new URLSearchParams({
|
|
175
|
+
q,
|
|
176
|
+
})}`,
|
|
177
|
+
icon: (
|
|
178
|
+
<svg
|
|
179
|
+
fill="currentColor"
|
|
180
|
+
role="img"
|
|
181
|
+
viewBox="0 0 24 24"
|
|
182
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
183
|
+
>
|
|
184
|
+
<title>Anthropic</title>
|
|
185
|
+
<path d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" />
|
|
186
|
+
</svg>
|
|
187
|
+
),
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
title: 'Open in Cursor',
|
|
191
|
+
icon: (
|
|
192
|
+
<svg
|
|
193
|
+
fill="currentColor"
|
|
194
|
+
role="img"
|
|
195
|
+
viewBox="0 0 24 24"
|
|
196
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
197
|
+
>
|
|
198
|
+
<title>Cursor</title>
|
|
199
|
+
<path d="M11.503.131 1.891 5.678a.84.84 0 0 0-.42.726v11.188c0 .3.162.575.42.724l9.609 5.55a1 1 0 0 0 .998 0l9.61-5.55a.84.84 0 0 0 .42-.724V6.404a.84.84 0 0 0-.42-.726L12.497.131a1.01 1.01 0 0 0-.996 0M2.657 6.338h18.55c.263 0 .43.287.297.515L12.23 22.918c-.062.107-.229.064-.229-.06V12.335a.59.59 0 0 0-.295-.51l-9.11-5.257c-.109-.063-.064-.23.061-.23" />
|
|
200
|
+
</svg>
|
|
201
|
+
),
|
|
202
|
+
href: `https://cursor.com/link/prompt?${new URLSearchParams({
|
|
203
|
+
text: q,
|
|
204
|
+
})}`,
|
|
205
|
+
},
|
|
206
|
+
];
|
|
207
|
+
}, [githubUrl, markdownUrl]);
|
|
208
|
+
|
|
209
|
+
return (
|
|
210
|
+
<Popover>
|
|
211
|
+
<PopoverTrigger
|
|
212
|
+
className={cn(
|
|
213
|
+
buttonVariants({
|
|
214
|
+
color: 'secondary',
|
|
215
|
+
size: 'sm',
|
|
216
|
+
className: 'gap-2',
|
|
217
|
+
}),
|
|
218
|
+
)}
|
|
219
|
+
>
|
|
220
|
+
Open
|
|
221
|
+
<ChevronDown className="size-3.5 text-fd-muted-foreground" />
|
|
222
|
+
</PopoverTrigger>
|
|
223
|
+
<PopoverContent className="flex flex-col">
|
|
224
|
+
{items.map((item) => (
|
|
225
|
+
<a
|
|
226
|
+
key={item.href}
|
|
227
|
+
href={item.href}
|
|
228
|
+
rel="noreferrer noopener"
|
|
229
|
+
target="_blank"
|
|
230
|
+
className="text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4"
|
|
231
|
+
>
|
|
232
|
+
{item.icon}
|
|
233
|
+
{item.title}
|
|
234
|
+
<ExternalLinkIcon className="text-fd-muted-foreground size-3.5 ms-auto" />
|
|
235
|
+
</a>
|
|
236
|
+
))}
|
|
237
|
+
</PopoverContent>
|
|
238
|
+
</Popover>
|
|
239
|
+
);
|
|
240
|
+
}
|