@grove-dev/astro 0.4.0 → 0.5.0-next.0
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/package.json +3 -2
- package/src/components/CollectionIndex.astro +51 -16
- package/src/components/CollectionPage.astro +51 -35
- package/src/components/CollectionRow.astro +209 -72
- package/src/components/CollectionTeaser.astro +21 -59
- package/src/components/EditorialSummary.astro +57 -0
- package/src/components/IndexRow.astro +5 -5
- package/src/components/ItemCard.astro +11 -28
- package/src/components/LanguageBreakdown.astro +63 -0
- package/src/components/MarkdownBody.astro +37 -0
- package/src/components/RecordHeader.astro +156 -0
- package/src/components/RecordSidebar.astro +329 -0
- package/src/components/StackPlatformChips.astro +73 -0
- package/src/components/TableOfContents.astro +115 -0
- package/src/server/collections.test.ts +22 -0
- package/src/server/collections.ts +7 -0
- package/src/server/directory.ts +311 -65
- package/src/server/models.ts +155 -3
- package/src/styles.css +485 -59
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grove-dev/astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0-next.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Composable Astro UI, data adapters, and integration for Grove directories.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -54,8 +54,9 @@
|
|
|
54
54
|
"astro": "^7.1.3",
|
|
55
55
|
"marked": "^18.0.0",
|
|
56
56
|
"sanitize-html": "^2.17.5",
|
|
57
|
+
"shiki": "^1.29.2",
|
|
57
58
|
"yaml": "^2.9.0",
|
|
58
|
-
"@grove-dev/core": "0.
|
|
59
|
+
"@grove-dev/core": "0.5.0-next.0"
|
|
59
60
|
},
|
|
60
61
|
"peerDependencies": {
|
|
61
62
|
"astro": "^6.0.0 || ^7.0.0"
|
|
@@ -5,50 +5,85 @@
|
|
|
5
5
|
* detail page and shows the entry count.
|
|
6
6
|
*
|
|
7
7
|
* Consumes a `CollectionIndexModel` produced by
|
|
8
|
-
* `getCollectionIndexModel`.
|
|
8
|
+
* `getCollectionIndexModel`. Pass `limit` (e.g. 3) for a teaser-style
|
|
9
|
+
* subset; the framework also re-exports this component as
|
|
10
|
+
* `CollectionTeaser` for the homepage use case.
|
|
11
|
+
*
|
|
12
|
+
* API parity with `RecordSection`:
|
|
13
|
+
* - `id`, `eyebrow`, `title`, `description`
|
|
14
|
+
* - `viewAllHref`, `viewAllLabel` — header CTA
|
|
15
|
+
* - `emptyLabel` — copy when there are no collections
|
|
16
|
+
* - `<slot name="header-actions">` — custom buttons in header
|
|
17
|
+
* - `class` — extra class on the outer <section>
|
|
9
18
|
*/
|
|
10
19
|
import Container from "../layouts/Container.astro";
|
|
20
|
+
import SectionHeader from "../layouts/SectionHeader.astro";
|
|
11
21
|
import type { CollectionIndexModel } from "../server/collections.js";
|
|
12
22
|
|
|
13
23
|
interface Props {
|
|
14
24
|
model: CollectionIndexModel;
|
|
25
|
+
id?: string;
|
|
26
|
+
eyebrow?: string;
|
|
15
27
|
title?: string;
|
|
16
28
|
description?: string;
|
|
29
|
+
/** Header "View all" link. Hides when not provided. */
|
|
30
|
+
viewAllHref?: string;
|
|
31
|
+
viewAllLabel?: string;
|
|
32
|
+
emptyLabel?: string;
|
|
33
|
+
/** Cap the number of cards rendered. Omit for "all". */
|
|
34
|
+
limit?: number;
|
|
17
35
|
class?: string;
|
|
18
36
|
}
|
|
19
37
|
|
|
20
38
|
const {
|
|
21
39
|
model,
|
|
40
|
+
id,
|
|
41
|
+
eyebrow = "Collections",
|
|
22
42
|
title = "Collections",
|
|
23
43
|
description = "Curated and generated directories of related items.",
|
|
44
|
+
viewAllHref,
|
|
45
|
+
viewAllLabel = "View all",
|
|
46
|
+
emptyLabel = "No collections yet.",
|
|
47
|
+
limit,
|
|
24
48
|
class: className = "",
|
|
25
49
|
} = Astro.props;
|
|
50
|
+
|
|
51
|
+
const cards = typeof limit === "number" ? model.collections.slice(0, limit) : model.collections;
|
|
52
|
+
const headerActions = Astro.slots.has("header-actions");
|
|
26
53
|
---
|
|
27
54
|
|
|
28
|
-
<section class={`py-12 sm:py-16 ${className}`}>
|
|
55
|
+
<section id={id} class={`py-12 sm:py-16 ${className}`}>
|
|
29
56
|
<Container>
|
|
30
|
-
<
|
|
31
|
-
<
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
57
|
+
<div class="mb-6 flex flex-wrap items-end justify-between gap-3">
|
|
58
|
+
<SectionHeader eyebrow={eyebrow} title={title} description={description} />
|
|
59
|
+
{(viewAllHref || headerActions) && (
|
|
60
|
+
<div class="flex shrink-0 items-center gap-2 pb-2">
|
|
61
|
+
{viewAllHref && (
|
|
62
|
+
<a
|
|
63
|
+
href={viewAllHref}
|
|
64
|
+
class="text-2xs font-medium text-ink-500 transition-colors hover:text-ink-900 sm:inline dark:text-ink-400 dark:hover:text-ink-100"
|
|
65
|
+
>
|
|
66
|
+
{viewAllLabel} →
|
|
67
|
+
</a>
|
|
68
|
+
)}
|
|
69
|
+
<slot name="header-actions" />
|
|
70
|
+
</div>
|
|
71
|
+
)}
|
|
72
|
+
</div>
|
|
41
73
|
|
|
42
|
-
{
|
|
74
|
+
{cards.length === 0 ? (
|
|
43
75
|
<p class="rounded-md border border-dashed border-ink-200 bg-white p-6 text-sm text-ink-500 dark:border-ink-800 dark:bg-ink-950 dark:text-ink-400">
|
|
44
|
-
|
|
76
|
+
{emptyLabel}
|
|
45
77
|
</p>
|
|
46
78
|
) : (
|
|
47
79
|
<ul class="m-0 grid list-none grid-cols-1 gap-3 p-0 sm:grid-cols-2 lg:grid-cols-3">
|
|
48
|
-
{
|
|
80
|
+
{cards.map((c) => (
|
|
49
81
|
<li class="m-0 p-0">
|
|
50
82
|
<a
|
|
51
83
|
href={c.url}
|
|
84
|
+
data-event="collection_card_click"
|
|
85
|
+
data-event-source="collection_index"
|
|
86
|
+
data-event-item={c.slug}
|
|
52
87
|
class="flex h-full flex-col gap-2 rounded-md border border-ink-200 bg-white p-5 transition-colors hover:border-ink-400 dark:border-ink-800 dark:bg-ink-950 dark:hover:border-ink-600"
|
|
53
88
|
>
|
|
54
89
|
<span class="text-2xs font-medium uppercase tracking-wider text-ink-500 dark:text-ink-400">
|
|
@@ -3,58 +3,71 @@
|
|
|
3
3
|
* CollectionPage — renders a single curated/generated collection.
|
|
4
4
|
*
|
|
5
5
|
* Consumes a `CollectionPageModel` produced by `getCollectionPageModel`.
|
|
6
|
-
* Renders the header
|
|
7
|
-
* matched entries via `CollectionRow`, and a related-collections
|
|
6
|
+
* Renders the header via `SectionHeader` (framework consistency),
|
|
7
|
+
* the matched entries via `CollectionRow`, and a related-collections
|
|
8
8
|
* section.
|
|
9
9
|
*
|
|
10
|
-
* Generic: no blueprint-specific copy.
|
|
11
|
-
*
|
|
10
|
+
* Generic: no blueprint-specific copy. Consumers can override
|
|
11
|
+
* `eyebrow`, `title`, `description`; the `<slot name="intro">` is
|
|
12
|
+
* the natural place for editorial intros (markdown rendered with
|
|
13
|
+
* the consumer's content pipeline). `emptyLabel` matches
|
|
14
|
+
* `RecordSection`'s API for empty-state copy.
|
|
12
15
|
*/
|
|
13
16
|
import CollectionRow from "./CollectionRow.astro";
|
|
14
17
|
import Container from "../layouts/Container.astro";
|
|
18
|
+
import SectionHeader from "../layouts/SectionHeader.astro";
|
|
15
19
|
import type { CollectionPageModel } from "../server/collections.js";
|
|
16
20
|
|
|
17
21
|
interface Props {
|
|
18
22
|
model: CollectionPageModel;
|
|
23
|
+
/** Override the eyebrow text (default: derived from collection kind). */
|
|
19
24
|
eyebrow?: string;
|
|
25
|
+
/** Override the title (default: collection.title). */
|
|
26
|
+
title?: string;
|
|
27
|
+
/** Override the description (default: collection.description). */
|
|
28
|
+
description?: string;
|
|
29
|
+
/** Default copy when the collection has no matching entries. */
|
|
30
|
+
emptyLabel?: string;
|
|
31
|
+
/** Section id (deep link + stable key). */
|
|
32
|
+
id?: string;
|
|
20
33
|
class?: string;
|
|
21
34
|
}
|
|
22
35
|
|
|
23
36
|
const {
|
|
24
37
|
model,
|
|
25
|
-
eyebrow
|
|
38
|
+
eyebrow,
|
|
39
|
+
title,
|
|
40
|
+
description,
|
|
41
|
+
emptyLabel = "This collection is currently empty.",
|
|
42
|
+
id,
|
|
26
43
|
class: className = "",
|
|
27
44
|
} = Astro.props;
|
|
45
|
+
|
|
46
|
+
const finalTitle = title ?? model.collection.title;
|
|
47
|
+
const finalDescription = description ?? model.collection.description;
|
|
48
|
+
const finalEyebrow = eyebrow ?? (model.collection.kind === "curated" ? "Curated collection" : "Generated collection");
|
|
28
49
|
---
|
|
29
50
|
|
|
30
|
-
<section class={`py-12 sm:py-16 ${className}`}>
|
|
51
|
+
<section id={id} class={`py-12 sm:py-16 ${className}`}>
|
|
31
52
|
<Container>
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
{model.collection.
|
|
38
|
-
</h1>
|
|
39
|
-
<p class="m-0 mt-2 max-w-[64ch] text-[0.9375rem] text-ink-500 dark:text-ink-400">
|
|
40
|
-
{model.collection.description}
|
|
53
|
+
<SectionHeader eyebrow={finalEyebrow} title={finalTitle} description={finalDescription} />
|
|
54
|
+
|
|
55
|
+
{model.collection.selectionNote && (
|
|
56
|
+
<p class="m-0 mb-6 max-w-[64ch] text-[0.875rem] font-medium text-ink-700 dark:text-ink-300">
|
|
57
|
+
<span class="text-2xs font-medium uppercase tracking-wider text-ink-500 dark:text-ink-400">Selection criteria · </span>
|
|
58
|
+
{model.collection.selectionNote}
|
|
41
59
|
</p>
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
{model.
|
|
48
|
-
|
|
49
|
-
<span class="text-2xs font-medium uppercase tracking-wider text-ink-500 dark:text-ink-400">Selection criteria · </span>
|
|
50
|
-
{model.collection.selectionNote}
|
|
51
|
-
</p>
|
|
52
|
-
)}
|
|
53
|
-
</header>
|
|
60
|
+
)}
|
|
61
|
+
|
|
62
|
+
<slot name="intro" />
|
|
63
|
+
|
|
64
|
+
<p class="m-0 mb-4 text-2xs font-medium uppercase tracking-wider text-ink-500 dark:text-ink-400">
|
|
65
|
+
{model.total} {model.total === 1 ? "item" : "items"}
|
|
66
|
+
</p>
|
|
54
67
|
|
|
55
68
|
{model.isEmpty ? (
|
|
56
69
|
<p class="rounded-md border border-dashed border-ink-200 bg-white p-6 text-sm text-ink-500 dark:border-ink-800 dark:bg-ink-950 dark:text-ink-400">
|
|
57
|
-
|
|
70
|
+
{emptyLabel}
|
|
58
71
|
</p>
|
|
59
72
|
) : (
|
|
60
73
|
<ul class="m-0 flex list-none flex-col gap-3 p-0">
|
|
@@ -68,17 +81,20 @@ const {
|
|
|
68
81
|
|
|
69
82
|
{model.related.length > 0 && (
|
|
70
83
|
<section class="mt-12 border-t border-ink-200 pt-8 dark:border-ink-800">
|
|
71
|
-
<
|
|
72
|
-
Related
|
|
73
|
-
|
|
74
|
-
|
|
84
|
+
<SectionHeader
|
|
85
|
+
eyebrow="Related"
|
|
86
|
+
title="Related collections"
|
|
87
|
+
description="Other curated groupings of related items."
|
|
88
|
+
level={3}
|
|
89
|
+
/>
|
|
90
|
+
<ul class="m-0 grid list-none grid-cols-1 gap-2 p-0 sm:grid-cols-2 lg:grid-cols-4">
|
|
75
91
|
{model.related.map((r) => (
|
|
76
|
-
<li>
|
|
92
|
+
<li class="m-0 p-0">
|
|
77
93
|
<a
|
|
78
94
|
href={r.url}
|
|
79
|
-
class="
|
|
95
|
+
class="group flex h-full flex-col gap-1 rounded-md border border-ink-200 bg-white px-3 py-2.5 no-underline transition-colors hover:border-ink-400 dark:border-ink-800 dark:bg-ink-950 dark:hover:border-ink-600"
|
|
80
96
|
>
|
|
81
|
-
{r.title}
|
|
97
|
+
<span class="text-sm font-medium text-ink-900 group-hover:underline dark:text-ink-100">{r.title}</span>
|
|
82
98
|
</a>
|
|
83
99
|
</li>
|
|
84
100
|
))}
|
|
@@ -1,109 +1,246 @@
|
|
|
1
1
|
---
|
|
2
2
|
/**
|
|
3
|
-
* CollectionRow — a single entry inside a
|
|
3
|
+
* CollectionRow — card-shaped row for a single entry inside a
|
|
4
|
+
* curated/generated collection.
|
|
4
5
|
*
|
|
5
|
-
* Mirrors `
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* `
|
|
9
|
-
*
|
|
10
|
-
*
|
|
6
|
+
* Mirrors `ItemCard`'s visual treatment so a collection page sitting
|
|
7
|
+
* next to the directory index reads as the same site. The component
|
|
8
|
+
* consumes the lightweight `CollectionEntry` shape directly — the
|
|
9
|
+
* existing `IndexRow` is too tightly coupled to `IndexRecord`
|
|
10
|
+
* (which carries `kind`, `repoUrl`, `github`, `bestFor` etc.) to
|
|
11
|
+
* accept a `CollectionEntry` cleanly.
|
|
11
12
|
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
13
|
+
* API parity with `ItemCard`:
|
|
14
|
+
* - `entry` — the collection entry (slug, title, description, …)
|
|
15
|
+
* - `href` — full detail URL; wins over `routeSlug`
|
|
16
|
+
* - `routeSlug` — blueprint slug (e.g. "projects"); details derived
|
|
17
|
+
* as `/${routeSlug}/${slug}` when `href` is not provided
|
|
18
|
+
* - `showChips` — render platform + stack chip row (default true)
|
|
19
|
+
* - `showMeta` — render stars/updated/license metadata row (default true)
|
|
20
|
+
* - `showLabel` — render the curated/category label (default true)
|
|
21
|
+
* - `class` — extra class on the outer <article>
|
|
22
|
+
* - `eager` — bypass lazy loading for above-the-fold avatars (first 1-2)
|
|
23
|
+
*
|
|
24
|
+
* Footer links:
|
|
25
|
+
* - "View repo" — when `entry.repoHref` is set
|
|
26
|
+
* - "Visit site" — when `entry.homepageHref` is set
|
|
27
|
+
* - "Details →" — always rendered (links to the consumer's detail page)
|
|
28
|
+
*
|
|
29
|
+
* Analytics: emits `data-event="collection_item_click"` and
|
|
30
|
+
* `data-event-source="collection_row"` so sites wire one handler
|
|
31
|
+
* in BaseLayout.
|
|
15
32
|
*/
|
|
16
33
|
import type { CollectionEntry } from "@grove-dev/core";
|
|
17
|
-
import { formatStars,
|
|
34
|
+
import { formatRelative, formatStars, statusDisplay, getOwnerAndRepoFromRepoUrl, getOwnerAvatarUrl } from "@grove-dev/astro";
|
|
35
|
+
import StackPlatformChips from "./StackPlatformChips.astro";
|
|
18
36
|
|
|
19
37
|
interface Props {
|
|
20
38
|
entry: CollectionEntry;
|
|
39
|
+
/** Full detail-page URL. Wins over `routeSlug`. */
|
|
40
|
+
href?: string;
|
|
41
|
+
/** Blueprint route slug; detail URL = `/${routeSlug}/${slug}`. */
|
|
42
|
+
routeSlug?: string;
|
|
43
|
+
showChips?: boolean;
|
|
44
|
+
showMeta?: boolean;
|
|
45
|
+
showLabel?: boolean;
|
|
21
46
|
eager?: boolean;
|
|
22
47
|
class?: string;
|
|
23
48
|
}
|
|
24
49
|
|
|
25
|
-
const {
|
|
50
|
+
const {
|
|
51
|
+
entry,
|
|
52
|
+
href: hrefProp,
|
|
53
|
+
routeSlug,
|
|
54
|
+
showChips = true,
|
|
55
|
+
showMeta = true,
|
|
56
|
+
showLabel = true,
|
|
57
|
+
eager = false,
|
|
58
|
+
class: className = "",
|
|
59
|
+
} = Astro.props;
|
|
26
60
|
|
|
27
|
-
const
|
|
61
|
+
const slug = entry.slug;
|
|
62
|
+
const base = (routeSlug ?? "").replace(/^\/+|\/+$/g, "");
|
|
63
|
+
const detailHref =
|
|
64
|
+
typeof hrefProp === "string" && hrefProp.length > 0
|
|
65
|
+
? hrefProp
|
|
66
|
+
: entry.url || (base ? `/${base}/${slug}` : `/${slug}`);
|
|
67
|
+
|
|
68
|
+
const title = entry.title;
|
|
69
|
+
const initials = title
|
|
28
70
|
.split(/\s+/)
|
|
29
|
-
.map((
|
|
71
|
+
.map((w) => w[0])
|
|
30
72
|
.filter(Boolean)
|
|
31
73
|
.slice(0, 2)
|
|
32
74
|
.join("")
|
|
33
75
|
.toUpperCase();
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
76
|
+
|
|
77
|
+
// Derive a logo URL from the entry's `repoHref` when present;
|
|
78
|
+
// otherwise fall back to the detail URL. Detail URL is the
|
|
79
|
+
// consumer's page, not necessarily a GitHub owner — so the
|
|
80
|
+
// initials placeholder is the safe default when nothing matches.
|
|
81
|
+
const repoHref = entry.repoHref;
|
|
82
|
+
const { owner } = getOwnerAndRepoFromRepoUrl(repoHref ?? "");
|
|
83
|
+
const avatar = owner ? getOwnerAvatarUrl(owner, 80) : undefined;
|
|
84
|
+
|
|
85
|
+
const stack = entry.stack ? [entry.stack] : [];
|
|
86
|
+
const platform = entry.platform?.slice(0, 4) ?? [];
|
|
87
|
+
const platformOverflow = (entry.platform?.length ?? 0) - platform.length;
|
|
88
|
+
|
|
89
|
+
const stars = entry.stars;
|
|
90
|
+
const starsLabel = formatStars(stars);
|
|
91
|
+
const updatedAt = entry.pushedAt;
|
|
92
|
+
const updatedLabel = formatRelative(updatedAt);
|
|
93
|
+
const license = entry.license ?? null;
|
|
94
|
+
const status = entry.status;
|
|
95
|
+
const statusText = status ? statusDisplay(status as Parameters<typeof statusDisplay>[0]) : "";
|
|
37
96
|
const category = entry.categories?.[0];
|
|
97
|
+
const curated = Boolean(entry.curationScore || (entry.activityScore && entry.activityScore > 0.5));
|
|
98
|
+
|
|
99
|
+
const homepageHref = entry.homepageHref;
|
|
100
|
+
const showViewRepo = typeof repoHref === "string" && repoHref.length > 0;
|
|
101
|
+
const showVisitSite = typeof homepageHref === "string" && homepageHref.length > 0;
|
|
38
102
|
---
|
|
39
103
|
|
|
40
104
|
<article
|
|
41
|
-
|
|
105
|
+
data-event="collection_item_click"
|
|
106
|
+
data-event-source="collection_row"
|
|
107
|
+
data-event-item={slug}
|
|
108
|
+
class={`rounded-[calc(var(--radius)+0.25rem)] border-0 bg-muted shadow-none transition-colors hover:bg-secondary group relative flex h-full flex-col gap-3 p-4 ${className}`}
|
|
42
109
|
>
|
|
43
110
|
<header class="flex items-start gap-3">
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
{
|
|
111
|
+
{avatar ? (
|
|
112
|
+
<img
|
|
113
|
+
src={avatar}
|
|
114
|
+
alt={`${title} avatar`}
|
|
115
|
+
width="40"
|
|
116
|
+
height="40"
|
|
117
|
+
loading={eager ? "eager" : "lazy"}
|
|
118
|
+
fetchpriority={eager ? "high" : undefined}
|
|
119
|
+
decoding="async"
|
|
120
|
+
class="h-10 w-10 shrink-0 rounded-md border border-ink-200 bg-white object-cover dark:border-ink-800 dark:bg-ink-900"
|
|
121
|
+
/>
|
|
122
|
+
) : (
|
|
123
|
+
<span
|
|
124
|
+
aria-hidden="true"
|
|
125
|
+
class="flex h-10 w-10 shrink-0 items-center justify-center rounded-md border border-ink-200 bg-ink-50 text-2xs font-semibold text-ink-700 dark:border-ink-800 dark:bg-ink-900/60 dark:text-ink-300"
|
|
126
|
+
>
|
|
127
|
+
{initials}
|
|
51
128
|
</span>
|
|
52
|
-
|
|
53
|
-
<div class="min-w-0 flex-1">
|
|
54
|
-
<
|
|
55
|
-
<
|
|
56
|
-
|
|
57
|
-
</
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
</>
|
|
71
|
-
) : null}
|
|
72
|
-
{entry.license ? (
|
|
73
|
-
<>
|
|
74
|
-
<span class="text-ink-300 dark:text-ink-700">·</span>
|
|
75
|
-
<span>{entry.license}</span>
|
|
76
|
-
</>
|
|
77
|
-
) : null}
|
|
78
|
-
</div>
|
|
129
|
+
)}
|
|
130
|
+
<div class="flex min-w-0 flex-1 flex-col gap-0.5">
|
|
131
|
+
<h3 class="m-0 truncate text-[0.9375rem] font-semibold tracking-tight text-ink-900 group-hover:underline dark:text-ink-100">
|
|
132
|
+
<a href={detailHref} class="inline-flex min-h-6 min-w-6 items-center text-inherit no-underline">
|
|
133
|
+
{title}
|
|
134
|
+
</a>
|
|
135
|
+
</h3>
|
|
136
|
+
{showLabel && (
|
|
137
|
+
<span class="truncate text-2xs text-ink-500 dark:text-ink-400">
|
|
138
|
+
{category}
|
|
139
|
+
{status && (
|
|
140
|
+
<>
|
|
141
|
+
<span class="mx-1 text-ink-300 dark:text-ink-700">·</span>
|
|
142
|
+
<span class="text-ink-500 dark:text-ink-400">{statusText}</span>
|
|
143
|
+
</>
|
|
144
|
+
)}
|
|
145
|
+
</span>
|
|
146
|
+
)}
|
|
79
147
|
</div>
|
|
148
|
+
{curated && showLabel && (
|
|
149
|
+
<span
|
|
150
|
+
class="inline-flex shrink-0 items-center gap-1 text-[10px] font-medium uppercase tracking-wider text-emerald-700 dark:text-emerald-400"
|
|
151
|
+
title="Has curation or activity score"
|
|
152
|
+
>
|
|
153
|
+
<svg viewBox="0 0 16 16" width="10" height="10" aria-hidden="true" fill="currentColor">
|
|
154
|
+
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm3.41 5.09a.75.75 0 0 0-1.06 0L6.75 8.69 5.65 7.59a.75.75 0 1 0-1.06 1.06l1.65 1.65a.75.75 0 0 0 1.06 0l4.11-4.11a.75.75 0 0 0 0-1.06Z" />
|
|
155
|
+
</svg>
|
|
156
|
+
curated
|
|
157
|
+
</span>
|
|
158
|
+
)}
|
|
80
159
|
</header>
|
|
81
160
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
161
|
+
{entry.description && (
|
|
162
|
+
<p class="m-0 line-clamp-2 text-[0.8125rem] leading-relaxed text-ink-500 dark:text-ink-400">
|
|
163
|
+
{entry.description}
|
|
164
|
+
</p>
|
|
165
|
+
)}
|
|
85
166
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
167
|
+
{/* Stack + platform rendered as 2 distinct labelled rows so the
|
|
168
|
+
primary/secondary hierarchy is unambiguous. Stack is the more
|
|
169
|
+
identifying signal for an item (it's the main technology) and
|
|
170
|
+
gets a filled pill; platform is secondary and gets an outlined
|
|
171
|
+
pill. Shared with `IndexRow` / `ItemCard` so the pattern is
|
|
172
|
+
identical across all card-shaped components. */}
|
|
173
|
+
<StackPlatformChips
|
|
174
|
+
show={showChips}
|
|
175
|
+
stack={stack[0]}
|
|
176
|
+
platform={platform}
|
|
177
|
+
/>
|
|
178
|
+
|
|
179
|
+
{showMeta && (
|
|
180
|
+
<div class="flex flex-wrap items-center gap-x-3 gap-y-1 text-2xs text-ink-500 dark:text-ink-400">
|
|
181
|
+
{starsLabel !== null && (
|
|
182
|
+
<span class="inline-flex items-center gap-1" title={`${stars ?? 0} stars`}>
|
|
183
|
+
<svg viewBox="0 0 16 16" width="11" height="11" aria-hidden="true" fill="currentColor" class="text-amber-500">
|
|
184
|
+
<path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z" />
|
|
185
|
+
</svg>
|
|
186
|
+
<span class="font-mono">{starsLabel}</span>
|
|
187
|
+
</span>
|
|
188
|
+
)}
|
|
189
|
+
{updatedAt && (
|
|
190
|
+
<span class="inline-flex items-center gap-1" title={`Last updated ${updatedAt}`}>
|
|
191
|
+
<svg viewBox="0 0 16 16" width="11" height="11" aria-hidden="true" fill="currentColor" class="text-ink-400">
|
|
192
|
+
<path d="M8 2a6 6 0 1 0 0 12A6 6 0 0 0 8 2Zm0 1.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm-.5 1.5a.5.5 0 0 0-1 0v3.25c0 .15.07.29.18.39l1.95 1.65a.5.5 0 0 0 .66-.76L7.5 7.55V5Z" />
|
|
193
|
+
</svg>
|
|
194
|
+
<span class="font-mono">Updated {updatedLabel}</span>
|
|
195
|
+
</span>
|
|
196
|
+
)}
|
|
197
|
+
{license && (
|
|
198
|
+
<span class="inline-flex items-center gap-1" title={`License: ${license}`}>
|
|
199
|
+
<span class="font-mono uppercase tracking-wide text-[10px]">{license}</span>
|
|
200
|
+
</span>
|
|
201
|
+
)}
|
|
98
202
|
</div>
|
|
99
|
-
|
|
203
|
+
)}
|
|
100
204
|
|
|
101
|
-
|
|
205
|
+
{/* Footer: source links (View repo / Visit site) + Details. */}
|
|
206
|
+
<footer class="mt-1 flex items-center justify-between gap-3 border-t border-ink-100 pt-2 text-2xs dark:border-ink-900">
|
|
207
|
+
<div class="flex min-w-0 items-center gap-3">
|
|
208
|
+
{showViewRepo && (
|
|
209
|
+
<a
|
|
210
|
+
href={repoHref}
|
|
211
|
+
target="_blank"
|
|
212
|
+
rel="noopener noreferrer"
|
|
213
|
+
data-event="external_repo_click"
|
|
214
|
+
data-event-source="collection_row_view_repo"
|
|
215
|
+
data-event-item={slug}
|
|
216
|
+
class="inline-flex items-center gap-1 font-medium text-ink-700 transition-colors hover:text-ink-900 dark:text-ink-300 dark:hover:text-ink-100"
|
|
217
|
+
>
|
|
218
|
+
View repo
|
|
219
|
+
<svg viewBox="0 0 16 16" width="10" height="10" aria-hidden="true" fill="currentColor">
|
|
220
|
+
<path d="M3.75 2A1.75 1.75 0 0 0 2 3.75v8.5C2 13.216 2.784 14 3.75 14h8.5A1.75 1.75 0 0 0 14 12.25v-3.5a.75.75 0 0 0-1.5 0v3.5a.25.25 0 0 1-.25.25h-8.5a.25.25 0 0 1-.25-.25v-8.5a.25.25 0 0 1 .25-.25h3.5a.75.75 0 0 0 0-1.5h-3.5Z" />
|
|
221
|
+
<path d="M10 0a.75.75 0 0 0-.75.75v.75h-3a.75.75 0 0 0 0 1.5h3v.75A.75.75 0 0 0 10.75 4.5h2.5A.75.75 0 0 0 14 3.75v-2.5A.75.75 0 0 0 13.25.5H10Z" />
|
|
222
|
+
</svg>
|
|
223
|
+
</a>
|
|
224
|
+
)}
|
|
225
|
+
{showVisitSite && (
|
|
226
|
+
<a
|
|
227
|
+
href={homepageHref}
|
|
228
|
+
target="_blank"
|
|
229
|
+
rel="noopener noreferrer"
|
|
230
|
+
data-event="external_link_click"
|
|
231
|
+
data-event-source="collection_row_visit_site"
|
|
232
|
+
data-event-item={slug}
|
|
233
|
+
class="inline-flex items-center gap-1 font-medium text-ink-500 transition-colors hover:text-ink-900 dark:text-ink-400 dark:hover:text-ink-100"
|
|
234
|
+
>
|
|
235
|
+
Visit site →
|
|
236
|
+
</a>
|
|
237
|
+
)}
|
|
238
|
+
</div>
|
|
102
239
|
<a
|
|
103
|
-
href={
|
|
104
|
-
class="inline-flex
|
|
240
|
+
href={detailHref}
|
|
241
|
+
class="inline-flex shrink-0 items-center gap-1 font-medium text-ink-500 transition-colors hover:text-ink-900 dark:text-ink-400 dark:hover:text-ink-100"
|
|
105
242
|
>
|
|
106
|
-
|
|
243
|
+
Details →
|
|
107
244
|
</a>
|
|
108
245
|
</footer>
|
|
109
246
|
</article>
|