pilothub 0.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/.env.local.example +19 -0
- package/.github/workflows/ci.yml +40 -0
- package/.oxlintrc.json +3 -0
- package/AGENTS.md +45 -0
- package/CHANGELOG.md +138 -0
- package/DEPRECATIONS.md +7 -0
- package/LICENSE +21 -0
- package/README.md +150 -0
- package/biome.json +41 -0
- package/convex/_generated/api.d.ts +153 -0
- package/convex/_generated/api.js +23 -0
- package/convex/_generated/dataModel.d.ts +60 -0
- package/convex/_generated/server.d.ts +143 -0
- package/convex/_generated/server.js +93 -0
- package/convex/auth.config.ts +8 -0
- package/convex/auth.ts +19 -0
- package/convex/comments.ts +88 -0
- package/convex/crons.ts +34 -0
- package/convex/devSeed.ts +459 -0
- package/convex/devSeedExtra.ts +541 -0
- package/convex/downloads.ts +78 -0
- package/convex/githubBackups.ts +170 -0
- package/convex/githubBackupsNode.ts +183 -0
- package/convex/githubImport.ts +317 -0
- package/convex/githubSoulBackups.ts +170 -0
- package/convex/githubSoulBackupsNode.ts +186 -0
- package/convex/http.ts +194 -0
- package/convex/httpApi.handlers.test.ts +488 -0
- package/convex/httpApi.test.ts +70 -0
- package/convex/httpApi.ts +305 -0
- package/convex/httpApiV1.handlers.test.ts +584 -0
- package/convex/httpApiV1.ts +1172 -0
- package/convex/leaderboards.ts +39 -0
- package/convex/lib/access.ts +36 -0
- package/convex/lib/apiTokenAuth.ts +36 -0
- package/convex/lib/badges.ts +50 -0
- package/convex/lib/changelog.test.ts +34 -0
- package/convex/lib/changelog.ts +278 -0
- package/convex/lib/embeddings.ts +38 -0
- package/convex/lib/githubBackup.ts +443 -0
- package/convex/lib/githubImport.test.ts +247 -0
- package/convex/lib/githubImport.ts +425 -0
- package/convex/lib/githubSoulBackup.ts +443 -0
- package/convex/lib/leaderboards.ts +103 -0
- package/convex/lib/moderation.ts +42 -0
- package/convex/lib/public.ts +89 -0
- package/convex/lib/searchText.test.ts +46 -0
- package/convex/lib/searchText.ts +27 -0
- package/convex/lib/skillBackfill.test.ts +34 -0
- package/convex/lib/skillBackfill.ts +67 -0
- package/convex/lib/skillPublish.test.ts +28 -0
- package/convex/lib/skillPublish.ts +284 -0
- package/convex/lib/skillStats.ts +80 -0
- package/convex/lib/skills.test.ts +197 -0
- package/convex/lib/skills.ts +273 -0
- package/convex/lib/soulChangelog.ts +273 -0
- package/convex/lib/soulPublish.ts +236 -0
- package/convex/lib/tokens.test.ts +33 -0
- package/convex/lib/tokens.ts +51 -0
- package/convex/lib/webhooks.test.ts +91 -0
- package/convex/lib/webhooks.ts +112 -0
- package/convex/maintenance.test.ts +270 -0
- package/convex/maintenance.ts +840 -0
- package/convex/rateLimits.ts +50 -0
- package/convex/schema.ts +472 -0
- package/convex/search.test.ts +12 -0
- package/convex/search.ts +254 -0
- package/convex/seed.test.ts +37 -0
- package/convex/seed.ts +254 -0
- package/convex/seedSouls.ts +111 -0
- package/convex/skillStatEvents.ts +568 -0
- package/convex/skills.ts +1606 -0
- package/convex/soulComments.ts +88 -0
- package/convex/soulDownloads.ts +14 -0
- package/convex/soulStars.ts +71 -0
- package/convex/souls.ts +570 -0
- package/convex/stars.ts +108 -0
- package/convex/statsMaintenance.ts +205 -0
- package/convex/telemetry.ts +434 -0
- package/convex/tokens.ts +88 -0
- package/convex/tsconfig.json +7 -0
- package/convex/uploads.ts +20 -0
- package/convex/users.ts +122 -0
- package/convex/webhooks.ts +50 -0
- package/convex.json +3 -0
- package/docs/README.md +32 -0
- package/docs/api.md +51 -0
- package/docs/architecture.md +61 -0
- package/docs/auth.md +54 -0
- package/docs/cli.md +117 -0
- package/docs/deploy.md +78 -0
- package/docs/diffing.md +84 -0
- package/docs/github-import.md +171 -0
- package/docs/http-api.md +187 -0
- package/docs/manual-testing.md +64 -0
- package/docs/mintlify.md +43 -0
- package/docs/quickstart.md +120 -0
- package/docs/skill-format.md +58 -0
- package/docs/soul-format.md +37 -0
- package/docs/spec.md +177 -0
- package/docs/telemetry.md +91 -0
- package/docs/troubleshooting.md +49 -0
- package/docs/webhook.md +51 -0
- package/e2e/menu-smoke.pw.test.ts +49 -0
- package/e2e/pilothub.e2e.test.ts +494 -0
- package/e2e/search-exact.pw.test.ts +97 -0
- package/package.json +84 -0
- package/packages/pilothub/LICENSE +22 -0
- package/packages/pilothub/README.md +57 -0
- package/packages/pilothub/bin/pilothub.js +2 -0
- package/packages/pilothub/package.json +41 -0
- package/packages/pilothub/src/browserAuth.test.ts +96 -0
- package/packages/pilothub/src/browserAuth.ts +174 -0
- package/packages/pilothub/src/cli/buildInfo.ts +94 -0
- package/packages/pilothub/src/cli/commands/auth.ts +97 -0
- package/packages/pilothub/src/cli/commands/delete.test.ts +73 -0
- package/packages/pilothub/src/cli/commands/delete.ts +83 -0
- package/packages/pilothub/src/cli/commands/publish.test.ts +122 -0
- package/packages/pilothub/src/cli/commands/publish.ts +108 -0
- package/packages/pilothub/src/cli/commands/skills.test.ts +191 -0
- package/packages/pilothub/src/cli/commands/skills.ts +380 -0
- package/packages/pilothub/src/cli/commands/star.ts +46 -0
- package/packages/pilothub/src/cli/commands/sync.test.ts +310 -0
- package/packages/pilothub/src/cli/commands/sync.ts +200 -0
- package/packages/pilothub/src/cli/commands/syncHelpers.test.ts +26 -0
- package/packages/pilothub/src/cli/commands/syncHelpers.ts +427 -0
- package/packages/pilothub/src/cli/commands/syncTypes.ts +27 -0
- package/packages/pilothub/src/cli/commands/unstar.ts +48 -0
- package/packages/pilothub/src/cli/helpStyle.ts +45 -0
- package/packages/pilothub/src/cli/pilotbotConfig.test.ts +159 -0
- package/packages/pilothub/src/cli/pilotbotConfig.ts +147 -0
- package/packages/pilothub/src/cli/registry.test.ts +63 -0
- package/packages/pilothub/src/cli/registry.ts +43 -0
- package/packages/pilothub/src/cli/scanSkills.test.ts +64 -0
- package/packages/pilothub/src/cli/scanSkills.ts +84 -0
- package/packages/pilothub/src/cli/slug.ts +16 -0
- package/packages/pilothub/src/cli/types.ts +12 -0
- package/packages/pilothub/src/cli/ui.ts +75 -0
- package/packages/pilothub/src/cli.ts +311 -0
- package/packages/pilothub/src/config.ts +36 -0
- package/packages/pilothub/src/discovery.test.ts +75 -0
- package/packages/pilothub/src/discovery.ts +19 -0
- package/packages/pilothub/src/http.test.ts +156 -0
- package/packages/pilothub/src/http.ts +301 -0
- package/packages/pilothub/src/schema/ark.ts +29 -0
- package/packages/pilothub/src/schema/index.ts +5 -0
- package/packages/pilothub/src/schema/routes.ts +22 -0
- package/packages/pilothub/src/schema/schemas.ts +260 -0
- package/packages/pilothub/src/schema/textFiles.test.ts +23 -0
- package/packages/pilothub/src/schema/textFiles.ts +66 -0
- package/packages/pilothub/src/skills.test.ts +191 -0
- package/packages/pilothub/src/skills.ts +172 -0
- package/packages/pilothub/src/types.ts +10 -0
- package/packages/pilothub/tsconfig.json +14 -0
- package/packages/schema/README.md +3 -0
- package/packages/schema/dist/ark.d.ts +4 -0
- package/packages/schema/dist/ark.js +26 -0
- package/packages/schema/dist/ark.js.map +1 -0
- package/packages/schema/dist/index.d.ts +5 -0
- package/packages/schema/dist/index.js +5 -0
- package/packages/schema/dist/index.js.map +1 -0
- package/packages/schema/dist/routes.d.ts +21 -0
- package/packages/schema/dist/routes.js +22 -0
- package/packages/schema/dist/routes.js.map +1 -0
- package/packages/schema/dist/schemas.d.ts +297 -0
- package/packages/schema/dist/schemas.js +243 -0
- package/packages/schema/dist/schemas.js.map +1 -0
- package/packages/schema/dist/textFiles.d.ts +5 -0
- package/packages/schema/dist/textFiles.js +66 -0
- package/packages/schema/dist/textFiles.js.map +1 -0
- package/packages/schema/package.json +26 -0
- package/packages/schema/src/ark.ts +29 -0
- package/packages/schema/src/index.ts +5 -0
- package/packages/schema/src/routes.ts +22 -0
- package/packages/schema/src/schemas.test.ts +123 -0
- package/packages/schema/src/schemas.ts +287 -0
- package/packages/schema/src/textFiles.test.ts +23 -0
- package/packages/schema/src/textFiles.ts +66 -0
- package/packages/schema/tsconfig.json +15 -0
- package/pilothub +46 -0
- package/playwright.config.ts +33 -0
- package/public/.well-known/pilothub.json +6 -0
- package/public/api/v1/openapi.json +379 -0
- package/public/favicon.ico +0 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/og.png +0 -0
- package/public/og.svg +98 -0
- package/public/pilot-logo.png +0 -0
- package/public/pilot-mark.png +0 -0
- package/public/robots.txt +3 -0
- package/public/tanstack-circle-logo.png +0 -0
- package/public/tanstack-word-logo-white.svg +1 -0
- package/scripts/check-peer-deps.ts +56 -0
- package/scripts/docs-list.ts +148 -0
- package/scripts/run-playwright-local.sh +14 -0
- package/server/og/fetchSkillOgMeta.ts +27 -0
- package/server/og/fetchSoulOgMeta.ts +27 -0
- package/server/og/ogAssets.ts +80 -0
- package/server/og/skillOgSvg.test.ts +59 -0
- package/server/og/skillOgSvg.ts +258 -0
- package/server/og/soulOgSvg.ts +209 -0
- package/server/routes/og/skill.png.ts +103 -0
- package/server/routes/og/soul.png.ts +111 -0
- package/src/__tests__/skill-detail-page.test.tsx +86 -0
- package/src/__tests__/skills-index.test.tsx +145 -0
- package/src/__tests__/upload.route.test.tsx +228 -0
- package/src/components/AppProviders.tsx +19 -0
- package/src/components/ClientOnly.tsx +18 -0
- package/src/components/Footer.tsx +29 -0
- package/src/components/Header.tsx +295 -0
- package/src/components/InstallSwitcher.tsx +53 -0
- package/src/components/SkillCard.tsx +36 -0
- package/src/components/SkillDetailPage.tsx +817 -0
- package/src/components/SkillDiffCard.tsx +485 -0
- package/src/components/SoulCard.tsx +19 -0
- package/src/components/SoulDetailPage.tsx +263 -0
- package/src/components/UserBootstrap.tsx +18 -0
- package/src/components/ui/dropdown-menu.tsx +67 -0
- package/src/components/ui/toggle-group.tsx +35 -0
- package/src/convex/client.ts +3 -0
- package/src/lib/badges.ts +29 -0
- package/src/lib/diffing.test.ts +163 -0
- package/src/lib/diffing.ts +106 -0
- package/src/lib/gravatar.test.ts +9 -0
- package/src/lib/gravatar.ts +158 -0
- package/src/lib/og.test.ts +142 -0
- package/src/lib/og.ts +156 -0
- package/src/lib/publicUser.ts +39 -0
- package/src/lib/roles.ts +19 -0
- package/src/lib/site.test.ts +130 -0
- package/src/lib/site.ts +84 -0
- package/src/lib/theme-transition.test.ts +134 -0
- package/src/lib/theme-transition.ts +134 -0
- package/src/lib/theme.test.tsx +88 -0
- package/src/lib/theme.ts +43 -0
- package/src/lib/uploadFiles.jsdom.test.ts +33 -0
- package/src/lib/uploadFiles.test.ts +123 -0
- package/src/lib/uploadFiles.ts +245 -0
- package/src/lib/uploadUtils.test.ts +78 -0
- package/src/lib/uploadUtils.ts +93 -0
- package/src/lib/useAuthStatus.ts +12 -0
- package/src/lib/utils.test.ts +9 -0
- package/src/lib/utils.ts +6 -0
- package/src/logo.svg +12 -0
- package/src/routeTree.gen.ts +345 -0
- package/src/router.tsx +17 -0
- package/src/routes/$owner/$slug.tsx +55 -0
- package/src/routes/__root.tsx +136 -0
- package/src/routes/admin.tsx +11 -0
- package/src/routes/cli/auth.tsx +168 -0
- package/src/routes/dashboard.tsx +97 -0
- package/src/routes/import.tsx +415 -0
- package/src/routes/index.tsx +252 -0
- package/src/routes/management.tsx +529 -0
- package/src/routes/settings.tsx +203 -0
- package/src/routes/skills/index.tsx +422 -0
- package/src/routes/souls/$slug.tsx +55 -0
- package/src/routes/souls/index.tsx +243 -0
- package/src/routes/stars.tsx +68 -0
- package/src/routes/u/$handle.tsx +307 -0
- package/src/routes/upload/utils.ts +81 -0
- package/src/routes/upload.tsx +499 -0
- package/src/styles.css +2718 -0
- package/tsconfig.json +24 -0
- package/tsconfig.oxlint.json +16 -0
- package/vercel.json +8 -0
- package/vite.config.ts +48 -0
- package/vitest.config.ts +47 -0
- package/vitest.e2e.config.ts +11 -0
- package/vitest.setup.ts +1 -0
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
|
|
2
|
+
import { strToU8, zipSync } from 'fflate'
|
|
3
|
+
import { vi } from 'vitest'
|
|
4
|
+
|
|
5
|
+
import { Upload } from '../routes/upload'
|
|
6
|
+
|
|
7
|
+
vi.mock('@tanstack/react-router', () => ({
|
|
8
|
+
createFileRoute: () => (config: { component: unknown }) => config,
|
|
9
|
+
useNavigate: () => vi.fn(),
|
|
10
|
+
useSearch: () => ({ updateSlug: undefined }),
|
|
11
|
+
}))
|
|
12
|
+
|
|
13
|
+
const generateUploadUrl = vi.fn()
|
|
14
|
+
const publishVersion = vi.fn()
|
|
15
|
+
const generateChangelogPreview = vi.fn()
|
|
16
|
+
const fetchMock = vi.fn()
|
|
17
|
+
const useQueryMock = vi.fn()
|
|
18
|
+
const useAuthStatusMock = vi.fn()
|
|
19
|
+
let useActionCallCount = 0
|
|
20
|
+
|
|
21
|
+
vi.mock('convex/react', () => ({
|
|
22
|
+
useQuery: (...args: unknown[]) => useQueryMock(...args),
|
|
23
|
+
useMutation: () => generateUploadUrl,
|
|
24
|
+
useAction: () => {
|
|
25
|
+
useActionCallCount += 1
|
|
26
|
+
return useActionCallCount % 2 === 1 ? publishVersion : generateChangelogPreview
|
|
27
|
+
},
|
|
28
|
+
}))
|
|
29
|
+
|
|
30
|
+
vi.mock('../lib/useAuthStatus', () => ({
|
|
31
|
+
useAuthStatus: () => useAuthStatusMock(),
|
|
32
|
+
}))
|
|
33
|
+
|
|
34
|
+
describe('Upload route', () => {
|
|
35
|
+
beforeEach(() => {
|
|
36
|
+
generateUploadUrl.mockReset()
|
|
37
|
+
publishVersion.mockReset()
|
|
38
|
+
generateChangelogPreview.mockReset()
|
|
39
|
+
fetchMock.mockReset()
|
|
40
|
+
useQueryMock.mockReset()
|
|
41
|
+
useAuthStatusMock.mockReset()
|
|
42
|
+
useActionCallCount = 0
|
|
43
|
+
useAuthStatusMock.mockReturnValue({
|
|
44
|
+
isAuthenticated: true,
|
|
45
|
+
isLoading: false,
|
|
46
|
+
me: { _id: 'users:1' },
|
|
47
|
+
})
|
|
48
|
+
useQueryMock.mockImplementation((_fn: unknown, args: unknown) => {
|
|
49
|
+
if (args === 'skip') return undefined
|
|
50
|
+
return null
|
|
51
|
+
})
|
|
52
|
+
fetchMock.mockResolvedValue({
|
|
53
|
+
ok: true,
|
|
54
|
+
json: async () => ({ storageId: 'storage-id' }),
|
|
55
|
+
})
|
|
56
|
+
vi.stubGlobal('fetch', fetchMock)
|
|
57
|
+
})
|
|
58
|
+
|
|
59
|
+
afterEach(() => {
|
|
60
|
+
vi.unstubAllGlobals()
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
it('shows validation issues before submit', async () => {
|
|
64
|
+
render(<Upload />)
|
|
65
|
+
const publishButton = screen.getByRole('button', { name: /publish/i })
|
|
66
|
+
expect(publishButton.getAttribute('disabled')).not.toBeNull()
|
|
67
|
+
expect(screen.getByText(/Slug is required/i)).toBeTruthy()
|
|
68
|
+
expect(screen.getByText(/Display name is required/i)).toBeTruthy()
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
it('marks the input for folder uploads', async () => {
|
|
72
|
+
render(<Upload />)
|
|
73
|
+
const input = screen.getByTestId('upload-input')
|
|
74
|
+
await waitFor(() => {
|
|
75
|
+
expect(input.getAttribute('webkitdirectory')).not.toBeNull()
|
|
76
|
+
})
|
|
77
|
+
})
|
|
78
|
+
|
|
79
|
+
it('enables publish when fields and files are valid', async () => {
|
|
80
|
+
generateUploadUrl.mockResolvedValue('https://upload.local')
|
|
81
|
+
render(<Upload />)
|
|
82
|
+
fireEvent.change(screen.getByPlaceholderText('skill-name'), {
|
|
83
|
+
target: { value: 'cool-skill' },
|
|
84
|
+
})
|
|
85
|
+
fireEvent.change(screen.getByPlaceholderText('My skill'), {
|
|
86
|
+
target: { value: 'Cool Skill' },
|
|
87
|
+
})
|
|
88
|
+
fireEvent.change(screen.getByPlaceholderText('1.0.0'), {
|
|
89
|
+
target: { value: '1.2.3' },
|
|
90
|
+
})
|
|
91
|
+
fireEvent.change(screen.getByPlaceholderText('latest, stable'), {
|
|
92
|
+
target: { value: 'latest' },
|
|
93
|
+
})
|
|
94
|
+
const file = new File(['hello'], 'SKILL.md', { type: 'text/markdown' })
|
|
95
|
+
const input = screen.getByTestId('upload-input') as HTMLInputElement
|
|
96
|
+
fireEvent.change(input, { target: { files: [file] } })
|
|
97
|
+
|
|
98
|
+
const publishButton = screen.getByRole('button', { name: /publish/i }) as HTMLButtonElement
|
|
99
|
+
expect(await screen.findByText(/All checks passed/i)).toBeTruthy()
|
|
100
|
+
expect(publishButton.getAttribute('disabled')).toBeNull()
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
it('extracts zip uploads and unwraps top-level folders', async () => {
|
|
104
|
+
render(<Upload />)
|
|
105
|
+
fireEvent.change(screen.getByPlaceholderText('skill-name'), {
|
|
106
|
+
target: { value: 'cool-skill' },
|
|
107
|
+
})
|
|
108
|
+
fireEvent.change(screen.getByPlaceholderText('My skill'), {
|
|
109
|
+
target: { value: 'Cool Skill' },
|
|
110
|
+
})
|
|
111
|
+
fireEvent.change(screen.getByPlaceholderText('1.0.0'), {
|
|
112
|
+
target: { value: '1.2.3' },
|
|
113
|
+
})
|
|
114
|
+
fireEvent.change(screen.getByPlaceholderText('latest, stable'), {
|
|
115
|
+
target: { value: 'latest' },
|
|
116
|
+
})
|
|
117
|
+
|
|
118
|
+
const zip = zipSync({
|
|
119
|
+
'hetzner-cloud-skill/SKILL.md': new Uint8Array(strToU8('hello')),
|
|
120
|
+
'hetzner-cloud-skill/notes.txt': new Uint8Array(strToU8('notes')),
|
|
121
|
+
})
|
|
122
|
+
const zipBytes = Uint8Array.from(zip).buffer
|
|
123
|
+
const zipFile = new File([zipBytes], 'bundle.zip', { type: 'application/zip' })
|
|
124
|
+
|
|
125
|
+
const input = screen.getByTestId('upload-input') as HTMLInputElement
|
|
126
|
+
fireEvent.change(input, { target: { files: [zipFile] } })
|
|
127
|
+
|
|
128
|
+
expect(await screen.findByText('notes.txt', {}, { timeout: 3000 })).toBeTruthy()
|
|
129
|
+
expect(screen.getByText('SKILL.md')).toBeTruthy()
|
|
130
|
+
expect(await screen.findByText(/All checks passed/i, {}, { timeout: 3000 })).toBeTruthy()
|
|
131
|
+
})
|
|
132
|
+
|
|
133
|
+
it('unwraps folder uploads so SKILL.md can be at the top-level', async () => {
|
|
134
|
+
generateUploadUrl.mockResolvedValue('https://upload.local')
|
|
135
|
+
publishVersion.mockResolvedValue(undefined)
|
|
136
|
+
render(<Upload />)
|
|
137
|
+
fireEvent.change(screen.getByPlaceholderText('skill-name'), {
|
|
138
|
+
target: { value: 'ynab' },
|
|
139
|
+
})
|
|
140
|
+
fireEvent.change(screen.getByPlaceholderText('My skill'), {
|
|
141
|
+
target: { value: 'YNAB' },
|
|
142
|
+
})
|
|
143
|
+
fireEvent.change(screen.getByPlaceholderText('1.0.0'), {
|
|
144
|
+
target: { value: '1.0.0' },
|
|
145
|
+
})
|
|
146
|
+
fireEvent.change(screen.getByPlaceholderText('latest, stable'), {
|
|
147
|
+
target: { value: 'latest' },
|
|
148
|
+
})
|
|
149
|
+
|
|
150
|
+
const file = new File(['hello'], 'SKILL.md', { type: 'text/markdown' })
|
|
151
|
+
Object.defineProperty(file, 'webkitRelativePath', { value: 'ynab/SKILL.md' })
|
|
152
|
+
|
|
153
|
+
const input = screen.getByTestId('upload-input') as HTMLInputElement
|
|
154
|
+
fireEvent.change(input, { target: { files: [file] } })
|
|
155
|
+
|
|
156
|
+
expect(await screen.findByText('SKILL.md')).toBeTruthy()
|
|
157
|
+
expect(await screen.findByText(/All checks passed/i)).toBeTruthy()
|
|
158
|
+
|
|
159
|
+
fireEvent.click(screen.getByRole('button', { name: /publish/i }))
|
|
160
|
+
await waitFor(() => {
|
|
161
|
+
expect(
|
|
162
|
+
publishVersion.mock.calls.some((call) =>
|
|
163
|
+
Array.isArray((call[0] as { files?: unknown }).files),
|
|
164
|
+
),
|
|
165
|
+
).toBe(true)
|
|
166
|
+
})
|
|
167
|
+
const args = publishVersion.mock.calls
|
|
168
|
+
.map((call) => call[0] as { files?: Array<{ path: string }> })
|
|
169
|
+
.find((call) => Array.isArray(call.files))
|
|
170
|
+
expect(args?.files?.[0]?.path).toBe('SKILL.md')
|
|
171
|
+
})
|
|
172
|
+
|
|
173
|
+
it('blocks non-text folder uploads (png)', async () => {
|
|
174
|
+
render(<Upload />)
|
|
175
|
+
fireEvent.change(screen.getByPlaceholderText('skill-name'), {
|
|
176
|
+
target: { value: 'cool-skill' },
|
|
177
|
+
})
|
|
178
|
+
fireEvent.change(screen.getByPlaceholderText('My skill'), {
|
|
179
|
+
target: { value: 'Cool Skill' },
|
|
180
|
+
})
|
|
181
|
+
fireEvent.change(screen.getByPlaceholderText('1.0.0'), {
|
|
182
|
+
target: { value: '1.2.3' },
|
|
183
|
+
})
|
|
184
|
+
fireEvent.change(screen.getByPlaceholderText('latest, stable'), {
|
|
185
|
+
target: { value: 'latest' },
|
|
186
|
+
})
|
|
187
|
+
|
|
188
|
+
const skill = new File(['hello'], 'SKILL.md', { type: 'text/markdown' })
|
|
189
|
+
const png = new File([new Uint8Array([137, 80, 78, 71]).buffer], 'screenshot.png', {
|
|
190
|
+
type: 'image/png',
|
|
191
|
+
})
|
|
192
|
+
const input = screen.getByTestId('upload-input') as HTMLInputElement
|
|
193
|
+
fireEvent.change(input, { target: { files: [skill, png] } })
|
|
194
|
+
|
|
195
|
+
expect(await screen.findByText('screenshot.png')).toBeTruthy()
|
|
196
|
+
fireEvent.click(screen.getByRole('button', { name: /publish/i }))
|
|
197
|
+
expect(await screen.findByText(/Remove non-text files: screenshot\.png/i)).toBeTruthy()
|
|
198
|
+
expect(screen.getByText('screenshot.png')).toBeTruthy()
|
|
199
|
+
})
|
|
200
|
+
|
|
201
|
+
it('surfaces publish errors and stays on page', async () => {
|
|
202
|
+
publishVersion.mockRejectedValueOnce(new Error('Changelog is required'))
|
|
203
|
+
generateUploadUrl.mockResolvedValue('https://upload.local')
|
|
204
|
+
render(<Upload />)
|
|
205
|
+
fireEvent.change(screen.getByPlaceholderText('skill-name'), {
|
|
206
|
+
target: { value: 'cool-skill' },
|
|
207
|
+
})
|
|
208
|
+
fireEvent.change(screen.getByPlaceholderText('My skill'), {
|
|
209
|
+
target: { value: 'Cool Skill' },
|
|
210
|
+
})
|
|
211
|
+
fireEvent.change(screen.getByPlaceholderText('1.0.0'), {
|
|
212
|
+
target: { value: '1.2.3' },
|
|
213
|
+
})
|
|
214
|
+
fireEvent.change(screen.getByPlaceholderText('latest, stable'), {
|
|
215
|
+
target: { value: 'latest' },
|
|
216
|
+
})
|
|
217
|
+
fireEvent.change(screen.getByPlaceholderText('Describe what changed in this skill...'), {
|
|
218
|
+
target: { value: 'Initial drop.' },
|
|
219
|
+
})
|
|
220
|
+
const file = new File(['hello'], 'SKILL.md', { type: 'text/markdown' })
|
|
221
|
+
const input = screen.getByTestId('upload-input') as HTMLInputElement
|
|
222
|
+
fireEvent.change(input, { target: { files: [file] } })
|
|
223
|
+
const publishButton = screen.getByRole('button', { name: /publish/i }) as HTMLButtonElement
|
|
224
|
+
await screen.findByText(/All checks passed/i)
|
|
225
|
+
fireEvent.click(publishButton)
|
|
226
|
+
expect(await screen.findByText(/Changelog is required/i)).toBeTruthy()
|
|
227
|
+
})
|
|
228
|
+
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ConvexAuthProvider } from '@convex-dev/auth/react'
|
|
2
|
+
import { convex } from '../convex/client'
|
|
3
|
+
import { UserBootstrap } from './UserBootstrap'
|
|
4
|
+
|
|
5
|
+
export function AppProviders({ children }: { children: React.ReactNode }) {
|
|
6
|
+
return (
|
|
7
|
+
<ConvexAuthProvider
|
|
8
|
+
client={convex}
|
|
9
|
+
replaceURL={(relativeUrl) => {
|
|
10
|
+
if (typeof window !== 'undefined') {
|
|
11
|
+
window.history.replaceState(null, '', relativeUrl)
|
|
12
|
+
}
|
|
13
|
+
}}
|
|
14
|
+
>
|
|
15
|
+
<UserBootstrap />
|
|
16
|
+
{children}
|
|
17
|
+
</ConvexAuthProvider>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
export function ClientOnly({
|
|
4
|
+
children,
|
|
5
|
+
fallback = null,
|
|
6
|
+
}: {
|
|
7
|
+
children: React.ReactNode
|
|
8
|
+
fallback?: React.ReactNode
|
|
9
|
+
}) {
|
|
10
|
+
const [ready, setReady] = useState(false)
|
|
11
|
+
|
|
12
|
+
useEffect(() => {
|
|
13
|
+
setReady(true)
|
|
14
|
+
}, [])
|
|
15
|
+
|
|
16
|
+
if (!ready) return <>{fallback}</>
|
|
17
|
+
return <>{children}</>
|
|
18
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { getSiteName } from '../lib/site'
|
|
2
|
+
|
|
3
|
+
export function Footer() {
|
|
4
|
+
const siteName = getSiteName()
|
|
5
|
+
return (
|
|
6
|
+
<footer className="site-footer">
|
|
7
|
+
<div className="site-footer-inner">
|
|
8
|
+
<div className="site-footer-divider" aria-hidden="true" />
|
|
9
|
+
<div className="site-footer-row">
|
|
10
|
+
<div className="site-footer-copy">
|
|
11
|
+
{siteName} · A{' '}
|
|
12
|
+
<a href="https://pilot.bot" target="_blank" rel="noreferrer">
|
|
13
|
+
Pilotbot
|
|
14
|
+
</a>{' '}
|
|
15
|
+
project ·{' '}
|
|
16
|
+
<a href="https://github.com/pilotbot/pilothub" target="_blank" rel="noreferrer">
|
|
17
|
+
Open source (MIT)
|
|
18
|
+
</a>{' '}
|
|
19
|
+
·{' '}
|
|
20
|
+
<a href="https://steipete.me" target="_blank" rel="noreferrer">
|
|
21
|
+
Peter Steinberger
|
|
22
|
+
</a>
|
|
23
|
+
.
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</footer>
|
|
28
|
+
)
|
|
29
|
+
}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
import { useAuthActions } from '@convex-dev/auth/react'
|
|
2
|
+
import { Link } from '@tanstack/react-router'
|
|
3
|
+
import { Menu, Monitor, Moon, Sun } from 'lucide-react'
|
|
4
|
+
import { useMemo, useRef } from 'react'
|
|
5
|
+
import { gravatarUrl } from '../lib/gravatar'
|
|
6
|
+
import { isModerator } from '../lib/roles'
|
|
7
|
+
import { getPilotHubSiteUrl, getSiteMode, getSiteName } from '../lib/site'
|
|
8
|
+
import { applyTheme, useThemeMode } from '../lib/theme'
|
|
9
|
+
import { startThemeTransition } from '../lib/theme-transition'
|
|
10
|
+
import { useAuthStatus } from '../lib/useAuthStatus'
|
|
11
|
+
import {
|
|
12
|
+
DropdownMenu,
|
|
13
|
+
DropdownMenuContent,
|
|
14
|
+
DropdownMenuItem,
|
|
15
|
+
DropdownMenuSeparator,
|
|
16
|
+
DropdownMenuTrigger,
|
|
17
|
+
} from './ui/dropdown-menu'
|
|
18
|
+
import { ToggleGroup, ToggleGroupItem } from './ui/toggle-group'
|
|
19
|
+
|
|
20
|
+
export default function Header() {
|
|
21
|
+
const { isAuthenticated, isLoading, me } = useAuthStatus()
|
|
22
|
+
const { signIn, signOut } = useAuthActions()
|
|
23
|
+
const { mode, setMode } = useThemeMode()
|
|
24
|
+
const toggleRef = useRef<HTMLDivElement | null>(null)
|
|
25
|
+
const siteMode = getSiteMode()
|
|
26
|
+
const siteName = useMemo(() => getSiteName(siteMode), [siteMode])
|
|
27
|
+
const isSoulMode = siteMode === 'souls'
|
|
28
|
+
const pilotHubUrl = getPilotHubSiteUrl()
|
|
29
|
+
|
|
30
|
+
const avatar = me?.image ?? (me?.email ? gravatarUrl(me.email) : undefined)
|
|
31
|
+
const handle = me?.handle ?? me?.displayName ?? 'user'
|
|
32
|
+
const initial = (me?.displayName ?? me?.name ?? handle).charAt(0).toUpperCase()
|
|
33
|
+
const isStaff = isModerator(me)
|
|
34
|
+
|
|
35
|
+
const setTheme = (next: 'system' | 'light' | 'dark') => {
|
|
36
|
+
startThemeTransition({
|
|
37
|
+
nextTheme: next,
|
|
38
|
+
currentTheme: mode,
|
|
39
|
+
setTheme: (value) => {
|
|
40
|
+
const nextMode = value as 'system' | 'light' | 'dark'
|
|
41
|
+
applyTheme(nextMode)
|
|
42
|
+
setMode(nextMode)
|
|
43
|
+
},
|
|
44
|
+
context: { element: toggleRef.current },
|
|
45
|
+
})
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return (
|
|
49
|
+
<header className="navbar">
|
|
50
|
+
<div className="navbar-inner">
|
|
51
|
+
<Link
|
|
52
|
+
to="/"
|
|
53
|
+
search={{ q: undefined, highlighted: undefined, search: undefined }}
|
|
54
|
+
className="brand"
|
|
55
|
+
>
|
|
56
|
+
<span className="brand-mark">
|
|
57
|
+
<img src="/pilot-logo.png" alt="" aria-hidden="true" />
|
|
58
|
+
</span>
|
|
59
|
+
<span className="brand-name">{siteName}</span>
|
|
60
|
+
</Link>
|
|
61
|
+
<nav className="nav-links">
|
|
62
|
+
{isSoulMode ? <a href={pilotHubUrl}>PilotHub</a> : null}
|
|
63
|
+
{isSoulMode ? (
|
|
64
|
+
<Link
|
|
65
|
+
to="/souls"
|
|
66
|
+
search={{
|
|
67
|
+
q: undefined,
|
|
68
|
+
sort: undefined,
|
|
69
|
+
dir: undefined,
|
|
70
|
+
view: undefined,
|
|
71
|
+
focus: undefined,
|
|
72
|
+
}}
|
|
73
|
+
>
|
|
74
|
+
Souls
|
|
75
|
+
</Link>
|
|
76
|
+
) : (
|
|
77
|
+
<Link
|
|
78
|
+
to="/skills"
|
|
79
|
+
search={{
|
|
80
|
+
q: undefined,
|
|
81
|
+
sort: undefined,
|
|
82
|
+
dir: undefined,
|
|
83
|
+
highlighted: undefined,
|
|
84
|
+
view: undefined,
|
|
85
|
+
focus: undefined,
|
|
86
|
+
}}
|
|
87
|
+
>
|
|
88
|
+
Skills
|
|
89
|
+
</Link>
|
|
90
|
+
)}
|
|
91
|
+
<Link to="/upload" search={{ updateSlug: undefined }}>
|
|
92
|
+
Upload
|
|
93
|
+
</Link>
|
|
94
|
+
{isSoulMode ? null : <Link to="/import">Import</Link>}
|
|
95
|
+
<Link
|
|
96
|
+
to={isSoulMode ? '/souls' : '/skills'}
|
|
97
|
+
search={
|
|
98
|
+
isSoulMode
|
|
99
|
+
? {
|
|
100
|
+
q: undefined,
|
|
101
|
+
sort: undefined,
|
|
102
|
+
dir: undefined,
|
|
103
|
+
view: undefined,
|
|
104
|
+
focus: 'search',
|
|
105
|
+
}
|
|
106
|
+
: {
|
|
107
|
+
q: undefined,
|
|
108
|
+
sort: undefined,
|
|
109
|
+
dir: undefined,
|
|
110
|
+
highlighted: undefined,
|
|
111
|
+
view: undefined,
|
|
112
|
+
focus: 'search',
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
>
|
|
116
|
+
Search
|
|
117
|
+
</Link>
|
|
118
|
+
{me ? <Link to="/stars">Stars</Link> : null}
|
|
119
|
+
{isStaff ? (
|
|
120
|
+
<Link to="/management" search={{ skill: undefined }}>
|
|
121
|
+
Management
|
|
122
|
+
</Link>
|
|
123
|
+
) : null}
|
|
124
|
+
</nav>
|
|
125
|
+
<div className="nav-actions">
|
|
126
|
+
<div className="nav-mobile">
|
|
127
|
+
<DropdownMenu>
|
|
128
|
+
<DropdownMenuTrigger asChild>
|
|
129
|
+
<button className="nav-mobile-trigger" type="button" aria-label="Open menu">
|
|
130
|
+
<Menu className="h-4 w-4" aria-hidden="true" />
|
|
131
|
+
</button>
|
|
132
|
+
</DropdownMenuTrigger>
|
|
133
|
+
<DropdownMenuContent align="end">
|
|
134
|
+
{isSoulMode ? (
|
|
135
|
+
<DropdownMenuItem asChild>
|
|
136
|
+
<a href={pilotHubUrl}>PilotHub</a>
|
|
137
|
+
</DropdownMenuItem>
|
|
138
|
+
) : null}
|
|
139
|
+
<DropdownMenuItem asChild>
|
|
140
|
+
{isSoulMode ? (
|
|
141
|
+
<Link
|
|
142
|
+
to="/souls"
|
|
143
|
+
search={{
|
|
144
|
+
q: undefined,
|
|
145
|
+
sort: undefined,
|
|
146
|
+
dir: undefined,
|
|
147
|
+
view: undefined,
|
|
148
|
+
focus: undefined,
|
|
149
|
+
}}
|
|
150
|
+
>
|
|
151
|
+
Souls
|
|
152
|
+
</Link>
|
|
153
|
+
) : (
|
|
154
|
+
<Link
|
|
155
|
+
to="/skills"
|
|
156
|
+
search={{
|
|
157
|
+
q: undefined,
|
|
158
|
+
sort: undefined,
|
|
159
|
+
dir: undefined,
|
|
160
|
+
highlighted: undefined,
|
|
161
|
+
view: undefined,
|
|
162
|
+
focus: undefined,
|
|
163
|
+
}}
|
|
164
|
+
>
|
|
165
|
+
Skills
|
|
166
|
+
</Link>
|
|
167
|
+
)}
|
|
168
|
+
</DropdownMenuItem>
|
|
169
|
+
<DropdownMenuItem asChild>
|
|
170
|
+
<Link to="/upload" search={{ updateSlug: undefined }}>
|
|
171
|
+
Upload
|
|
172
|
+
</Link>
|
|
173
|
+
</DropdownMenuItem>
|
|
174
|
+
{isSoulMode ? null : (
|
|
175
|
+
<DropdownMenuItem asChild>
|
|
176
|
+
<Link to="/import">Import</Link>
|
|
177
|
+
</DropdownMenuItem>
|
|
178
|
+
)}
|
|
179
|
+
<DropdownMenuItem asChild>
|
|
180
|
+
<Link
|
|
181
|
+
to={isSoulMode ? '/souls' : '/skills'}
|
|
182
|
+
search={
|
|
183
|
+
isSoulMode
|
|
184
|
+
? {
|
|
185
|
+
q: undefined,
|
|
186
|
+
sort: undefined,
|
|
187
|
+
dir: undefined,
|
|
188
|
+
view: undefined,
|
|
189
|
+
focus: 'search',
|
|
190
|
+
}
|
|
191
|
+
: {
|
|
192
|
+
q: undefined,
|
|
193
|
+
sort: undefined,
|
|
194
|
+
dir: undefined,
|
|
195
|
+
highlighted: undefined,
|
|
196
|
+
view: undefined,
|
|
197
|
+
focus: 'search',
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
>
|
|
201
|
+
Search
|
|
202
|
+
</Link>
|
|
203
|
+
</DropdownMenuItem>
|
|
204
|
+
{me ? (
|
|
205
|
+
<DropdownMenuItem asChild>
|
|
206
|
+
<Link to="/stars">Stars</Link>
|
|
207
|
+
</DropdownMenuItem>
|
|
208
|
+
) : null}
|
|
209
|
+
{isStaff ? (
|
|
210
|
+
<DropdownMenuItem asChild>
|
|
211
|
+
<Link to="/management" search={{ skill: undefined }}>
|
|
212
|
+
Management
|
|
213
|
+
</Link>
|
|
214
|
+
</DropdownMenuItem>
|
|
215
|
+
) : null}
|
|
216
|
+
<DropdownMenuSeparator />
|
|
217
|
+
<DropdownMenuItem onClick={() => setTheme('system')}>
|
|
218
|
+
<Monitor className="h-4 w-4" aria-hidden="true" />
|
|
219
|
+
System
|
|
220
|
+
</DropdownMenuItem>
|
|
221
|
+
<DropdownMenuItem onClick={() => setTheme('light')}>
|
|
222
|
+
<Sun className="h-4 w-4" aria-hidden="true" />
|
|
223
|
+
Light
|
|
224
|
+
</DropdownMenuItem>
|
|
225
|
+
<DropdownMenuItem onClick={() => setTheme('dark')}>
|
|
226
|
+
<Moon className="h-4 w-4" aria-hidden="true" />
|
|
227
|
+
Dark
|
|
228
|
+
</DropdownMenuItem>
|
|
229
|
+
</DropdownMenuContent>
|
|
230
|
+
</DropdownMenu>
|
|
231
|
+
</div>
|
|
232
|
+
<div className="theme-toggle" ref={toggleRef}>
|
|
233
|
+
<ToggleGroup
|
|
234
|
+
type="single"
|
|
235
|
+
value={mode}
|
|
236
|
+
onValueChange={(value) => {
|
|
237
|
+
if (!value) return
|
|
238
|
+
setTheme(value as 'system' | 'light' | 'dark')
|
|
239
|
+
}}
|
|
240
|
+
aria-label="Theme mode"
|
|
241
|
+
>
|
|
242
|
+
<ToggleGroupItem value="system" aria-label="System theme">
|
|
243
|
+
<Monitor className="h-4 w-4" aria-hidden="true" />
|
|
244
|
+
<span className="sr-only">System</span>
|
|
245
|
+
</ToggleGroupItem>
|
|
246
|
+
<ToggleGroupItem value="light" aria-label="Light theme">
|
|
247
|
+
<Sun className="h-4 w-4" aria-hidden="true" />
|
|
248
|
+
<span className="sr-only">Light</span>
|
|
249
|
+
</ToggleGroupItem>
|
|
250
|
+
<ToggleGroupItem value="dark" aria-label="Dark theme">
|
|
251
|
+
<Moon className="h-4 w-4" aria-hidden="true" />
|
|
252
|
+
<span className="sr-only">Dark</span>
|
|
253
|
+
</ToggleGroupItem>
|
|
254
|
+
</ToggleGroup>
|
|
255
|
+
</div>
|
|
256
|
+
{isAuthenticated && me ? (
|
|
257
|
+
<DropdownMenu>
|
|
258
|
+
<DropdownMenuTrigger asChild>
|
|
259
|
+
<button className="user-trigger" type="button">
|
|
260
|
+
{avatar ? (
|
|
261
|
+
<img src={avatar} alt={me.displayName ?? me.name ?? 'User avatar'} />
|
|
262
|
+
) : (
|
|
263
|
+
<span className="user-menu-fallback">{initial}</span>
|
|
264
|
+
)}
|
|
265
|
+
<span className="mono">@{handle}</span>
|
|
266
|
+
<span className="user-menu-chevron">▾</span>
|
|
267
|
+
</button>
|
|
268
|
+
</DropdownMenuTrigger>
|
|
269
|
+
<DropdownMenuContent align="end">
|
|
270
|
+
<DropdownMenuItem asChild>
|
|
271
|
+
<Link to="/dashboard">Dashboard</Link>
|
|
272
|
+
</DropdownMenuItem>
|
|
273
|
+
<DropdownMenuItem asChild>
|
|
274
|
+
<Link to="/settings">Settings</Link>
|
|
275
|
+
</DropdownMenuItem>
|
|
276
|
+
<DropdownMenuSeparator />
|
|
277
|
+
<DropdownMenuItem onClick={() => void signOut()}>Sign out</DropdownMenuItem>
|
|
278
|
+
</DropdownMenuContent>
|
|
279
|
+
</DropdownMenu>
|
|
280
|
+
) : (
|
|
281
|
+
<button
|
|
282
|
+
className="btn btn-primary"
|
|
283
|
+
type="button"
|
|
284
|
+
disabled={isLoading}
|
|
285
|
+
onClick={() => void signIn('github')}
|
|
286
|
+
>
|
|
287
|
+
<span className="sign-in-label">Sign in</span>
|
|
288
|
+
<span className="sign-in-provider">with GitHub</span>
|
|
289
|
+
</button>
|
|
290
|
+
)}
|
|
291
|
+
</div>
|
|
292
|
+
</div>
|
|
293
|
+
</header>
|
|
294
|
+
)
|
|
295
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { useMemo, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
type PackageManager = 'npm' | 'pnpm' | 'bun'
|
|
4
|
+
|
|
5
|
+
type InstallSwitcherProps = {
|
|
6
|
+
exampleSlug?: string
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const PACKAGE_MANAGERS: Array<{ id: PackageManager; label: string }> = [
|
|
10
|
+
{ id: 'npm', label: 'npm' },
|
|
11
|
+
{ id: 'pnpm', label: 'pnpm' },
|
|
12
|
+
{ id: 'bun', label: 'bun' },
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
export function InstallSwitcher({ exampleSlug = 'sonoscli' }: InstallSwitcherProps) {
|
|
16
|
+
const [pm, setPm] = useState<PackageManager>('npm')
|
|
17
|
+
|
|
18
|
+
const command = useMemo(() => {
|
|
19
|
+
switch (pm) {
|
|
20
|
+
case 'npm':
|
|
21
|
+
return `npx pilothub@latest install ${exampleSlug}`
|
|
22
|
+
case 'pnpm':
|
|
23
|
+
return `pnpm dlx pilothub@latest install ${exampleSlug}`
|
|
24
|
+
case 'bun':
|
|
25
|
+
return `bunx pilothub@latest install ${exampleSlug}`
|
|
26
|
+
}
|
|
27
|
+
}, [exampleSlug, pm])
|
|
28
|
+
|
|
29
|
+
return (
|
|
30
|
+
<div className="install-switcher">
|
|
31
|
+
<div className="install-switcher-row">
|
|
32
|
+
<div className="stat">Install any skill folder in one shot:</div>
|
|
33
|
+
<div className="install-switcher-toggle" role="tablist" aria-label="Install command">
|
|
34
|
+
{PACKAGE_MANAGERS.map((entry) => (
|
|
35
|
+
<button
|
|
36
|
+
key={entry.id}
|
|
37
|
+
type="button"
|
|
38
|
+
className={
|
|
39
|
+
pm === entry.id ? 'install-switcher-pill is-active' : 'install-switcher-pill'
|
|
40
|
+
}
|
|
41
|
+
role="tab"
|
|
42
|
+
aria-selected={pm === entry.id}
|
|
43
|
+
onClick={() => setPm(entry.id)}
|
|
44
|
+
>
|
|
45
|
+
{entry.label}
|
|
46
|
+
</button>
|
|
47
|
+
))}
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
<div className="hero-install-code mono">{command}</div>
|
|
51
|
+
</div>
|
|
52
|
+
)
|
|
53
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Link } from '@tanstack/react-router'
|
|
2
|
+
import type { ReactNode } from 'react'
|
|
3
|
+
import type { PublicSkill } from '../lib/publicUser'
|
|
4
|
+
|
|
5
|
+
type SkillCardProps = {
|
|
6
|
+
skill: PublicSkill
|
|
7
|
+
badge?: string | string[]
|
|
8
|
+
chip?: string
|
|
9
|
+
summaryFallback: string
|
|
10
|
+
meta: ReactNode
|
|
11
|
+
href?: string
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export function SkillCard({ skill, badge, chip, summaryFallback, meta, href }: SkillCardProps) {
|
|
15
|
+
const owner = encodeURIComponent(String(skill.ownerUserId))
|
|
16
|
+
const link = href ?? `/${owner}/${skill.slug}`
|
|
17
|
+
const badges = Array.isArray(badge) ? badge : badge ? [badge] : []
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<Link to={link} className="card skill-card">
|
|
21
|
+
{badges.length || chip ? (
|
|
22
|
+
<div className="skill-card-tags">
|
|
23
|
+
{badges.map((label) => (
|
|
24
|
+
<div key={label} className="tag">
|
|
25
|
+
{label}
|
|
26
|
+
</div>
|
|
27
|
+
))}
|
|
28
|
+
{chip ? <div className="tag tag-accent tag-compact">{chip}</div> : null}
|
|
29
|
+
</div>
|
|
30
|
+
) : null}
|
|
31
|
+
<h3 className="skill-card-title">{skill.displayName}</h3>
|
|
32
|
+
<p className="skill-card-summary">{skill.summary ?? summaryFallback}</p>
|
|
33
|
+
<div className="skill-card-footer">{meta}</div>
|
|
34
|
+
</Link>
|
|
35
|
+
)
|
|
36
|
+
}
|