Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: extract props from validator issues #3708

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/react-start-client/src/createServerFn.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { default as invariant } from 'tiny-invariant'
import { default as warning } from 'tiny-warning'
import { isNotFound, isRedirect } from '@tanstack/react-router'
import { normalizeValidatorIssues } from '@tanstack/router-core'
import { mergeHeaders } from './headers'
import { globalMiddleware } from './registerGlobalMiddleware'
import { startSerializer } from './serializer'
Expand Down Expand Up @@ -802,8 +803,10 @@ function execValidator(validator: AnyValidator, input: unknown): unknown {
if (result instanceof Promise)
throw new Error('Async validation not supported')

if (result.issues)
throw new Error(JSON.stringify(result.issues, undefined, 2))
if (result.issues) {
const issues = normalizeValidatorIssues(result.issues)
throw new Error(JSON.stringify(issues, undefined, 2))
}

return result.value
}
Expand Down
1 change: 1 addition & 0 deletions packages/router-core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ export type {
StrictOrFrom,
} from './utils'

export { normalizeValidatorIssues } from './validators'
export type {
StandardSchemaValidatorProps,
StandardSchemaValidator,
Expand Down
63 changes: 63 additions & 0 deletions packages/router-core/src/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ export interface AnyStandardSchemaValidateFailure {

export interface AnyStandardSchemaValidateIssue {
readonly message: string
readonly path?:
| ReadonlyArray<PropertyKey | AnyStandardSchemaValidatePathSegment>
| undefined
}

export interface AnyStandardSchemaValidatePathSegment {
readonly key: PropertyKey
}

export interface AnyStandardSchemaValidateInput {
Expand Down Expand Up @@ -119,3 +126,59 @@ export type ResolveValidatorOutput<TValidator> = unknown extends TValidator
: TValidator extends AnyValidatorObj
? ResolveValidatorOutputFn<TValidator['parse']>
: ResolveValidatorOutputFn<TValidator>

/**
* Creates and returns the dot path of an issue if possible.
*
* @param issue The issue to get the dot path from.
*
* @returns The dot path or null.
*/
function getDotPath(issue: AnyStandardSchemaValidateIssue): string | null {
if (issue.path?.length) {
let dotPath = ''
for (const item of issue.path) {
const key = typeof item === 'object' ? item.key : item
if (typeof key === 'string' || typeof key === 'number') {
if (dotPath) {
dotPath += `.${key}`
} else {
dotPath += key
}
} else {
return null
}
}
return dotPath
}
return null
}

/**
* Extract spec-guaranteed issue's fields from validation results.
*
* @param issues Standard Schema validation issues.
*
* @returns Normalized issues, with root issues and issues by path.
*/
export function normalizeValidatorIssues(
issues: ReadonlyArray<AnyStandardSchemaValidateIssue>,
) {
const pathlessIssues: Array<string> = []
const issueMap: Record<string, Array<string>> = {}

for (const issue of issues) {
const dotPath = getDotPath(issue)
if (dotPath) {
if (issueMap[dotPath]) {
issueMap[dotPath].push(issue.message)
} else {
issueMap[dotPath] = [issue.message]
}
} else {
pathlessIssues.push(issue.message)
}
}

return { root: pathlessIssues, issues: issueMap }
}
Loading