Skip to content

Commit d452f77

Browse files
committed
Adding specification errors (WIP)
Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent 86a7501 commit d452f77

File tree

7 files changed

+78
-12
lines changed

7 files changed

+78
-12
lines changed

src/content.config.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { glob } from 'astro/loaders';
22
import { defineCollection, z } from 'astro:content';
33

44
const mdExtensions = ['markdown', 'mdown', 'mkdn', 'mkd', 'mdwn', 'md', 'mdx'];
5-
const getLoader = (contentType: string) => glob({
5+
const getGlobLoader = (contentType: string, extensions: string) => glob({
66
base: `./src/content/${contentType}`,
7-
pattern: `**/[^_]*.{${mdExtensions.join(',')}}`
7+
pattern: `**/[^_]*.${extensions}`
88
});
99

1010
const BlogPostSchema = z.object({
@@ -15,10 +15,21 @@ const BlogPostSchema = z.object({
1515
});
1616
export type BlogPost = z.infer<typeof BlogPostSchema>;
1717

18+
const SpecErrorV1Schema = z.object({
19+
type: z.string(),
20+
description: z.string(),
21+
status: z.number(),
22+
});
23+
export type SpecErrorV1Schema = z.infer<typeof SpecErrorV1Schema>;
24+
1825
const blog = defineCollection({
19-
loader: getLoader('blog'),
26+
loader: getGlobLoader('blog', `{${mdExtensions.join(',')}}`),
2027
schema: BlogPostSchema
2128
});
29+
const specErrorV1 = defineCollection({
30+
loader: getGlobLoader('spec/1.0.0/errors', 'json'),
31+
schema: SpecErrorV1Schema
32+
});
2233
/*
2334
const docs = defineCollection({
2435
loader: getLoader('docs'),
@@ -30,6 +41,7 @@ const docs = defineCollection({
3041
*/
3142
export const collections = {
3243
blog,
44+
specErrorV1,
3345
//docs,
3446
};
3547

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "https://serverlessworkflow.io/spec/1.0.0/errors/configuration",
3+
"description": "Errors resulting from incorrect or invalid configuration settings, such as missing or misconfigured environment variables, incorrect parameter values, or configuration file errors.",
4+
"status": 400
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "https://serverlessworkflow.io/spec/1.0.0/errors/validation",
3+
"description": "Errors arising from validation processes, such as validation of input data, schema validation failures, or validation constraints not being met. These errors indicate that the provided data or configuration does not adhere to the expected format or requirements specified by the workflow.",
4+
"status": 400
5+
}

src/pages/blog/[...slug].astro

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ import SidebarLayout from '../../layouts/SidebarLayout.astro';
55
import { getSortedBlogPosts } from '../../utils/collections';
66
77
type Props = {
8-
post: CollectionEntry<'blog'>,
8+
entry: CollectionEntry<'blog'>,
99
entries: CollectionEntry<'blog'>[]
1010
};
1111
1212
export async function getStaticPaths() {
1313
const entries = await getSortedBlogPosts();
14-
return entries.map((post) => ({
15-
params: { slug: post.id },
14+
return entries.map((entry) => ({
15+
params: { slug: entry.id },
1616
props: {
17-
post,
17+
entry,
1818
entries
1919
}
2020
}));
2121
};
2222
23-
const { post } = Astro.props;
24-
const { title, date } = post.data;
25-
const { Content } = await render(post);
23+
const { entry } = Astro.props;
24+
const { title, date } = entry.data;
25+
const { Content } = await render(entry);
2626
---
2727

2828
<SidebarLayout {title} {...Astro.props}>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
import { getCollection } from 'astro:content';
3+
import { type CollectionEntry } from 'astro:content';
4+
import Layout from '../../../../layouts/Layout.astro';
5+
6+
type Props = {
7+
entry: CollectionEntry<'specErrorV1'>,
8+
};
9+
10+
export async function getStaticPaths() {
11+
const entries = (await getCollection('specErrorV1'));
12+
return entries.map((entry) => ({
13+
params: { slug: entry.id },
14+
props: {
15+
entry,
16+
}
17+
}));
18+
};
19+
20+
const { entry } = Astro.props;
21+
const { type, description, status } = entry.data;
22+
---
23+
24+
<Layout>
25+
<p>{type} - {status}</p>
26+
<p>{description}</p>
27+
</Layout>

src/pages/spec/index.astro

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
import { getCollection } from 'astro:content';
3+
import Layout from '../../layouts/Layout.astro';
4+
import { Debug } from 'astro/components';
5+
6+
7+
const entries = (await getCollection('specErrorV1'));
8+
---
9+
10+
<Layout>
11+
<Debug {entries} />
12+
</Layout>

tsconfig.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
2-
"extends": "astro/tsconfigs/strict",
2+
//"extends": "astro/tsconfigs/strict",
3+
"extends": "astro/tsconfigs/base",
34
"include": [".astro/types.d.ts", "**/*"],
4-
"exclude": ["dist"]
5+
"exclude": ["dist"],
6+
"compilerOptions": {
7+
"strictNullChecks": true, // add if using `base` template
8+
"allowJs": true // required, and included with all Astro templates
9+
}
510
}

0 commit comments

Comments
 (0)