nit: extract component zod obj
This commit is contained in:
parent
7ea9414a3b
commit
aff11bbdfd
1 changed files with 18 additions and 18 deletions
|
@ -21,7 +21,7 @@ export function createAstroNode(
|
|||
node: RenderableTreeNode,
|
||||
components: Record<string, AstroInstance['default']> = {}
|
||||
): AstroNode {
|
||||
components = validateComponents(components);
|
||||
components = validateComponentsProp(components);
|
||||
|
||||
if (typeof node === 'string' || typeof node === 'number') {
|
||||
return String(node);
|
||||
|
@ -53,10 +53,7 @@ export function createAstroNode(
|
|||
}
|
||||
}
|
||||
|
||||
function validateComponents(components: Record<string, AstroInstance['default']>) {
|
||||
try {
|
||||
return z
|
||||
.record(
|
||||
const componentsPropValidator = z.record(
|
||||
z
|
||||
.string()
|
||||
.min(1, 'Invalid `components` prop. Component names cannot be empty!')
|
||||
|
@ -69,8 +66,11 @@ function validateComponents(components: Record<string, AstroInstance['default']>
|
|||
})
|
||||
),
|
||||
z.any()
|
||||
)
|
||||
.parse(components);
|
||||
);
|
||||
|
||||
function validateComponentsProp(components: Record<string, AstroInstance['default']>) {
|
||||
try {
|
||||
return componentsPropValidator.parse(components);
|
||||
} catch (e) {
|
||||
throw new MarkdocError({
|
||||
message:
|
||||
|
|
Loading…
Reference in a new issue