Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/WizardFrameworksTeaser/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# WizardFrameworksTeaser

Short “Supports Next.js, React, Python, and N more” line (labels from taxonomy) with a tooltip listing every wizard-supported stack (logos, docs links, “Coming soon” for `status: wip`). Uses `getWizardFrameworkRows()` from `installation-taxonomy.ts`.
Short “Supports Next.js, React, Python, and N more” line (labels from taxonomy) with a tooltip listing every wizard-supported stack (logos, docs links). Uses `getWizardFrameworkRows()` from `installation-taxonomy.ts`.
3 changes: 0 additions & 3 deletions src/components/WizardFrameworksTeaser/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ export default function WizardFrameworksTeaser({ className }: { className?: stri
<span className="w-6 h-6 shrink-0 rounded bg-accent" aria-hidden />
)}
<span className="flex-1 text-left text-sm leading-tight">{row.label}</span>
{row.badge ? (
<span className="text-[10px] uppercase text-muted shrink-0">{row.badge}</span>
) : null}
</Link>
))}
</div>
Expand Down
1 change: 0 additions & 1 deletion src/components/WizardSupportedFrameworks/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export default function WizardSupportedFrameworks({ className }: WizardSupported
label: row.label,
url: row.url,
image: row.image,
badge: row.badge,
})),
[]
)
Expand Down
43 changes: 4 additions & 39 deletions src/constants/installation-taxonomy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export type InstallItem = {
wizardLabel?: string
/** `getLogo` key when it differs from librarySlug-based resolution */
wizardLogoKey?: string
/** Wizard lists the stack but install is not available yet */
status?: 'wip'
/** Full URL when not `/docs/libraries/{librarySlug}` */
wizardDocsUrl?: string
}
Expand Down Expand Up @@ -136,9 +134,6 @@ export const TAXONOMY: InstallCategory[] = [
slug: 'flutter',
name: 'Flutter',
librarySlug: 'flutter',
wizard: true,
wizardOrder: 21,
status: 'wip',
},
{
slug: 'kmp',
Expand Down Expand Up @@ -171,39 +166,11 @@ export const TAXONOMY: InstallCategory[] = [
wizard: true,
wizardOrder: 13,
},
{
slug: 'elixir',
name: 'Elixir',
librarySlug: 'elixir',
wizard: true,
wizardOrder: 20,
status: 'wip',
},
{
slug: 'go',
name: 'Go',
librarySlug: 'go',
wizard: true,
wizardOrder: 22,
status: 'wip',
},
{
slug: 'java',
name: 'Java',
librarySlug: 'java',
wizard: true,
wizardOrder: 23,
status: 'wip',
},
{ slug: 'elixir', name: 'Elixir', librarySlug: 'elixir' },
{ slug: 'go', name: 'Go', librarySlug: 'go' },
{ slug: 'java', name: 'Java', librarySlug: 'java' },
{ slug: 'php', name: 'PHP', librarySlug: 'php' },
{
slug: 'rust',
name: 'Rust',
librarySlug: 'rust',
wizard: true,
wizardOrder: 24,
status: 'wip',
},
{ slug: 'rust', name: 'Rust', librarySlug: 'rust' },
],
},
{
Expand Down Expand Up @@ -305,7 +272,6 @@ export type WizardFrameworkRow = {
label: string
url: string
image?: string
badge?: string
external: boolean
}

Expand All @@ -329,7 +295,6 @@ export function getWizardFrameworkRows(): WizardFrameworkRow[] {
label: item.wizardLabel ?? item.name,
url,
image: getLogo(logoKey),
badge: item.status === 'wip' ? 'Coming soon' : undefined,
external: url.startsWith('http'),
}
})
Expand Down
Loading