Skip to content

Commit c520067

Browse files
authored
[Docs Site] Remove unnecessary ts-expect-error directives (#19680)
1 parent d11bc2a commit c520067

File tree

7 files changed

+1097
-1166
lines changed

7 files changed

+1097
-1166
lines changed

eslint.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export default [
3232
rules: {
3333
"no-var": "error",
3434
"@typescript-eslint/no-explicit-any": "off",
35-
"@typescript-eslint/triple-slash-reference": "off",
3635
"@typescript-eslint/no-unused-vars": [
3736
"error",
3837
{ ignoreRestSiblings: true },

src/components/ListExamples.astro

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
---
22
import { z } from "astro:schema";
3-
import { getCollection } from "astro:content";
3+
import { getCollection, type CollectionEntry } from "astro:content";
44
import { marked } from "marked";
55
66
import { CardGrid } from "@astrojs/starlight/components";
77
import LinkTitleCard from "~/components/LinkTitleCard.astro";
88
99
type Props = z.infer<typeof props>;
10+
type Data = keyof CollectionEntry<"docs">["data"];
1011
1112
const props = z.object({
1213
directory: z.string().optional(),
13-
filters: z.string().array().optional(),
14+
filters: z.custom<Data>().array().optional(),
1415
additionalProducts: z.string().array().optional(),
1516
});
1617
@@ -36,13 +37,15 @@ const examples = await getCollection("docs", (entry) => {
3637
});
3738
3839
const filterValues: Record<string, string[]> = {};
40+
3941
if (filters) {
4042
for (const filter of filters) {
4143
const values = examples.flatMap((x) =>
42-
// @ts-expect-error indexing frontmatter with string
4344
filter in x.data ? x.data[filter] : [],
4445
);
45-
const unique = [...new Set(values)];
46+
47+
const unique = [...new Set(values.flatMap((v) => v?.toString() ?? []))];
48+
4649
filterValues[filter] = unique;
4750
}
4851
}
@@ -79,16 +82,14 @@ if (filters) {
7982
examples
8083
.sort((a, b) => a.data.title.localeCompare(b.data.title))
8184
.map((example) => {
82-
const filterAttributes = {};
85+
const filterAttributes: { [index: string]: any } = {};
86+
8387
if (filters) {
8488
for (const filter of filters) {
8589
const hasFilterableProperty = filter in example.data;
8690

8791
if (hasFilterableProperty) {
88-
// @ts-expect-error can't use TS generics inside JSX
89-
filterAttributes[`data-${filter}`] =
90-
// @ts-expect-error indexing frontmatter with string
91-
example.data[filter];
92+
filterAttributes[`data-${filter}`] = example.data[filter];
9293
}
9394
}
9495
}

src/components/ListTutorials.astro

+21-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,20 @@ const tutorials = await getCollection("docs", (entry) => {
2727
});
2828
2929
type VideoEntry = InferEntrySchema<"videos">["entries"][number];
30+
3031
type FinalTutorials = {
3132
slug?: string;
32-
data: InferEntrySchema<"docs"> | VideoEntry;
33+
data:
34+
| ({ type: "docs" } & InferEntrySchema<"docs">)
35+
| ({ type: "videos" } & VideoEntry);
3336
}[];
37+
3438
const finalTutorials: FinalTutorials = tutorials.map((x) => ({
3539
slug: x.id,
36-
data: x.data,
40+
data: {
41+
type: "docs",
42+
...x.data,
43+
},
3744
}));
3845
3946
const videos = await getEntry("videos", "index");
@@ -49,7 +56,14 @@ const filteredVideos = videos.data.entries.filter((x) =>
4956
);
5057
5158
if (filteredVideos) {
52-
filteredVideos.forEach((x) => finalTutorials.push({ data: x }));
59+
filteredVideos.forEach((x) =>
60+
finalTutorials.push({
61+
data: {
62+
type: "videos",
63+
...x,
64+
},
65+
}),
66+
);
5367
}
5468
5569
finalTutorials.sort((a, b) => Number(b.data.updated) - Number(a.data.updated));
@@ -72,8 +86,10 @@ const timeAgo = (date?: Date) => {
7286
<tbody>
7387
{
7488
finalTutorials.map((tutorial) => {
75-
// @ts-expect-error TODO: improve types
76-
const href = tutorial.slug ? `/${tutorial.slug}` : tutorial.data.link;
89+
const href =
90+
tutorial.data.type === "docs"
91+
? `/${tutorial.slug}/`
92+
: tutorial.data.link;
7793
return (
7894
<tr>
7995
<td>

src/components/Plan.astro

+4-6
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,13 @@ const props = z
2727
}),
2828
);
2929
30-
// @ts-expect-error plans are not typed
31-
const { id, type } = props.parse(Astro.props);
30+
const input = props.parse(Astro.props);
3231
3332
let availability;
34-
if (type) {
35-
// @ts-expect-error plans are not typed
36-
availability = mappings[type];
33+
if ("type" in input) {
34+
availability = mappings[input.type];
3735
} else {
38-
availability = await indexPlans(id);
36+
availability = await indexPlans(input.id);
3937
}
4038
---
4139

0 commit comments

Comments
 (0)