Skip to content

Commit 5ba34d0

Browse files
authored
Add Cards to project title pages (#274)
1 parent aca1d34 commit 5ba34d0

File tree

10 files changed

+247
-10
lines changed

10 files changed

+247
-10
lines changed

docs/folia/README.md

-5
This file was deleted.

docs/folia/README.mdx

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import DocCardList from "@theme/DocCardList";
2+
3+
# Welcome to the Folia Docs
4+
5+
Folia is a fork of Paper which adds regionized multithreading to the dedicated server.
6+
7+
![Folia Logo](/img/folia.png)
8+
9+
<DocCardList items={[
10+
{
11+
"type": "link",
12+
"label": "Administration",
13+
"href": "/folia/admin",
14+
"customEmoji": "mdi:account-cog",
15+
},
16+
{
17+
"type": "link",
18+
"label": "Development",
19+
"href": "/folia/dev",
20+
"customEmoji": "mdi:code-braces",
21+
},
22+
]}/>

docs/paper/README.md

-5
This file was deleted.

docs/paper/README.mdx

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import DocCardList from "@theme/DocCardList";
2+
3+
# Welcome to the Paper Docs
4+
5+
Paper is a high performance fork of the Spigot Minecraft Server that aims to fix gameplay and
6+
mechanic inconsistencies as well as to improve performance. Paper contains numerous features, bug
7+
fixes, exploit preventions and major performance improvements not found in Spigot.
8+
9+
---
10+
11+
<DocCardList items={[
12+
{
13+
"type": "link",
14+
"label": "Administration",
15+
"href": "/paper/admin",
16+
"customEmoji": "mdi:account-cog",
17+
},
18+
{
19+
"type": "link",
20+
"label": "Development",
21+
"href": "/paper/dev",
22+
"customEmoji": "mdi:code-braces",
23+
},
24+
{
25+
"type": "link",
26+
"label": "Contributing",
27+
"href": "/paper/contributing",
28+
"customEmoji": "mdi:comment-edit",
29+
},
30+
]}/>

docs/velocity/README.md docs/velocity/README.mdx

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import DocCardList from "@theme/DocCardList";
2+
13
# Welcome to the Velocity Docs
24

35
Velocity is the ridiculously scalable, flexible Minecraft proxy.
@@ -27,3 +29,18 @@ already answered in the documentation doesn't help anyone.
2729

2830
If you have searched the docs and didn't find the answer to your question, then it is time to
2931
[join our Discord](https://discord.gg/papermc) to ask your question.
32+
33+
<DocCardList items={[
34+
{
35+
"type": "link",
36+
"label": "Administration",
37+
"href": "/velocity/admin",
38+
"customEmoji": "mdi:account-cog",
39+
},
40+
{
41+
"type": "link",
42+
"label": "Development",
43+
"href": "/velocity/dev",
44+
"customEmoji": "mdi:code-braces",
45+
},
46+
]}></DocCardList>

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"@docusaurus/theme-search-algolia": "3.1.0",
2828
"@fontsource/jetbrains-mono": "4.5.12",
2929
"@gracefullight/docusaurus-plugin-vercel-analytics": "1.0.0",
30+
"@iconify/react": "4.1.1",
3031
"@mdx-js/react": "3.0.0",
3132
"axios": "1.6.3",
3233
"clsx": "1.2.1",

src/theme/DocCard/index.tsx

+128
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
import React, {type ReactNode} from 'react';
2+
import clsx from 'clsx';
3+
import Link from '@docusaurus/Link';
4+
import {
5+
findFirstSidebarItemLink,
6+
useDocById,
7+
} from '@docusaurus/theme-common/internal';
8+
import isInternalUrl from '@docusaurus/isInternalUrl';
9+
import {translate} from '@docusaurus/Translate';
10+
11+
import type {Props} from '@theme/DocCard';
12+
import Heading from '@theme/Heading';
13+
import type {
14+
PropSidebarItemCategory,
15+
PropSidebarItemLink,
16+
} from '@docusaurus/plugin-content-docs';
17+
18+
import styles from './styles.module.css';
19+
import { Icon } from '@iconify/react';
20+
21+
function CardContainer({
22+
href,
23+
children,
24+
}: {
25+
href: string;
26+
children: ReactNode;
27+
}): JSX.Element {
28+
return (
29+
<Link
30+
href={href}
31+
className={clsx('card padding--lg', styles.cardContainer)}>
32+
{children}
33+
</Link>
34+
);
35+
}
36+
37+
function CardLayout({
38+
href,
39+
icon,
40+
title,
41+
description,
42+
}: {
43+
href: string;
44+
icon: ReactNode;
45+
title: string;
46+
description?: string;
47+
}): JSX.Element {
48+
return (
49+
<CardContainer href={href}>
50+
<Heading
51+
as="h2"
52+
className={clsx('text--truncate', styles.cardTitle)}
53+
title={title}>
54+
{icon} {title}
55+
</Heading>
56+
{description && (
57+
<p
58+
className={clsx('text--truncate', styles.cardDescription)}
59+
title={description}>
60+
{description}
61+
</p>
62+
)}
63+
</CardContainer>
64+
);
65+
}
66+
67+
function CardCategory({
68+
item,
69+
}: {
70+
item: PropSidebarItemCategory;
71+
}): JSX.Element | null {
72+
const href = findFirstSidebarItemLink(item);
73+
74+
// Unexpected: categories that don't have a link have been filtered upfront
75+
if (!href) {
76+
return null;
77+
}
78+
79+
return (
80+
<CardLayout
81+
href={href}
82+
icon="🗃️"
83+
title={item.label}
84+
description={
85+
item.description ??
86+
translate(
87+
{
88+
message: '{count} items',
89+
id: 'theme.docs.DocCard.categoryDescription',
90+
description:
91+
'The default description for a category card in the generated index about how many items this category includes',
92+
},
93+
{count: item.items.length},
94+
)
95+
}
96+
/>
97+
);
98+
}
99+
100+
type EmojiPropsSidebarItemLink = PropSidebarItemLink & {
101+
customEmoji?: string;
102+
};
103+
104+
function CardLink({item}: {item: EmojiPropsSidebarItemLink}): JSX.Element {
105+
const icon = item.customEmoji ?
106+
<Icon style={{paddingRight: "3px"}} icon={item.customEmoji} height={25}/> :
107+
(isInternalUrl(item.href) ? '📄️' : '🔗');
108+
const doc = useDocById(item.docId ?? undefined);
109+
return (
110+
<CardLayout
111+
href={item.href}
112+
icon={icon}
113+
title={item.label}
114+
description={item.description ?? doc?.description}
115+
/>
116+
);
117+
}
118+
119+
export default function DocCard({item}: Props): JSX.Element {
120+
switch (item.type) {
121+
case 'link':
122+
return <CardLink item={item} />;
123+
case 'category':
124+
return <CardCategory item={item} />;
125+
default:
126+
throw new Error(`unknown item type ${JSON.stringify(item)}`);
127+
}
128+
}

src/theme/DocCard/styles.module.css

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.cardContainer {
2+
--ifm-link-color: var(--ifm-color-emphasis-800);
3+
--ifm-link-hover-color: var(--ifm-color-emphasis-700);
4+
--ifm-link-hover-decoration: none;
5+
6+
box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%);
7+
border: 1px solid var(--ifm-color-emphasis-200);
8+
transition: all var(--ifm-transition-fast) ease;
9+
transition-property: border, box-shadow;
10+
}
11+
12+
.cardContainer:hover {
13+
border-color: var(--ifm-color-primary);
14+
box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
15+
}
16+
17+
.cardContainer *:last-child {
18+
margin-bottom: 0;
19+
}
20+
21+
.cardTitle {
22+
font-size: 1.2rem;
23+
display: flex;
24+
}
25+
26+
.cardDescription {
27+
font-size: 0.8rem;
28+
}

src/theme/MDXComponents.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
import { Icon } from '@iconify/react';
23
import MDXComponents from '@theme-original/MDXComponents';
34
import TabItem from "@theme/TabItem";
45
import Tabs from "@theme/Tabs";
@@ -15,4 +16,5 @@ export default {
1516
VersionFormattedCode,
1617
SoftwareVersion,
1718
VersionedJavaDocLink,
19+
Icon: Icon,
1820
};

yarn.lock

+19
Original file line numberDiff line numberDiff line change
@@ -4480,6 +4480,24 @@ __metadata:
44804480
languageName: node
44814481
linkType: hard
44824482

4483+
"@iconify/react@npm:4.1.1":
4484+
version: 4.1.1
4485+
resolution: "@iconify/react@npm:4.1.1"
4486+
dependencies:
4487+
"@iconify/types": ^2.0.0
4488+
peerDependencies:
4489+
react: ">=16"
4490+
checksum: 43b71a0eb4312cf0fa7412b568369e75b8a327b8b7d9fc3dce42b2d047326e39dd17541a8d915fb80b87b20a56eba1a9b52304410624b5814fdf3ad17da9196a
4491+
languageName: node
4492+
linkType: hard
4493+
4494+
"@iconify/types@npm:^2.0.0":
4495+
version: 2.0.0
4496+
resolution: "@iconify/types@npm:2.0.0"
4497+
checksum: 029f58542c160e9d4a746869cf2e475b603424d3adf3994c5cc8d0406c47e6e04a3b898b2707840c1c5b9bd5563a1660a34b110d89fce43923baca5222f4e597
4498+
languageName: node
4499+
linkType: hard
4500+
44834501
"@jest/schemas@npm:^29.4.3":
44844502
version: 29.4.3
44854503
resolution: "@jest/schemas@npm:29.4.3"
@@ -8047,6 +8065,7 @@ __metadata:
80478065
"@fec/remark-a11y-emoji": 3.1.0
80488066
"@fontsource/jetbrains-mono": 4.5.12
80498067
"@gracefullight/docusaurus-plugin-vercel-analytics": 1.0.0
8068+
"@iconify/react": 4.1.1
80508069
"@mdx-js/react": 3.0.0
80518070
"@tsconfig/docusaurus": 1.0.7
80528071
"@types/is-ci": 3.0.0

0 commit comments

Comments
 (0)