-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathconfigKey.tsx
53 lines (49 loc) · 2.22 KB
/
configKey.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import {PlatformIdentifier} from './platformIdentifier';
import {PlatformSection} from './platformSection';
type Props = {
name: string;
children?: React.ReactNode;
notSupported?: string[];
platform?: string;
supported?: string[];
};
export function ConfigKey({
name,
supported = [],
notSupported = [],
children,
platform,
}: Props) {
// This is a literal copypaste of the HTML Gatsby outputs for regular
// Markdown headings because we can't figure out how to make Gatsby
// render component content like regular markdown/MDX content. We tried
// MDXRenderer but that one needs "compiled MDX" which we are unable to
// obtain. We might get one if we inserted a graphql node somewhere but
// who knows at this point.
return (
<PlatformSection
supported={supported}
notSupported={notSupported}
platform={platform}
>
<h3 id={name}>
<a href={`#${name}`} aria-label="common options permalink">
<svg
className="anchor before"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
>
<path
d="M9.199 13.599a5.99 5.99 0 0 0 3.949 2.345 5.987 5.987 0 0 0 5.105-1.702l2.995-2.994a5.992 5.992 0 0 0 1.695-4.285 5.976 5.976 0 0 0-1.831-4.211 5.99 5.99 0 0 0-6.431-1.242 6.003 6.003 0 0 0-1.905 1.24l-1.731 1.721a.999.999 0 1 0 1.41 1.418l1.709-1.699a3.985 3.985 0 0 1 2.761-1.123 3.975 3.975 0 0 1 2.799 1.122 3.997 3.997 0 0 1 .111 5.644l-3.005 3.006a3.982 3.982 0 0 1-3.395 1.126 3.987 3.987 0 0 1-2.632-1.563A1 1 0 0 0 9.201 13.6zm5.602-3.198a5.99 5.99 0 0 0-3.949-2.345 5.987 5.987 0 0 0-5.105 1.702l-2.995 2.994a5.992 5.992 0 0 0-1.695 4.285 5.976 5.976 0 0 0 1.831 4.211 5.99 5.99 0 0 0 6.431 1.242 6.003 6.003 0 0 0 1.905-1.24l1.723-1.723a.999.999 0 1 0-1.414-1.414L9.836 19.81a3.985 3.985 0 0 1-2.761 1.123 3.975 3.975 0 0 1-2.799-1.122 3.997 3.997 0 0 1-.111-5.644l3.005-3.006a3.982 3.982 0 0 1 3.395-1.126 3.987 3.987 0 0 1 2.632 1.563 1 1 0 0 0 1.602-1.198z"
fill="currentColor"
/>
</svg>
<PlatformIdentifier platform={platform} name={name} />
</a>
</h3>
{children}
</PlatformSection>
);
}