You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
import disassembleCamel from './disassembleCamel'; |
|
|
|
const getFormikErrorMessages = ( |
|
errors: object, |
|
{ |
|
build = (field, error) => { |
|
let children = error; |
|
|
|
if (typeof children === 'string') { |
|
const [first, ...rest] = children.split(/\s+/); |
|
|
|
const name = disassembleCamel(first.replace(/^[^\s]+\.([^.]+)/, '$1')); |
|
|
|
children = [name, ...rest].join(' '); |
|
} |
|
|
|
return { children, type: 'warning' }; |
|
}, |
|
chain = '', |
|
skip, |
|
}: { |
|
build?: (field: string, error: unknown) => Message; |
|
chain?: string; |
|
skip?: (field: string) => boolean; |
|
} = {}, |
|
): Messages => |
|
Object.entries(errors).reduce<Messages>((previous, [key, value]) => { |
|
const field = [chain, key].filter((part) => Boolean(part)).join('.'); |
|
|
|
if (value !== null && typeof value === 'object') { |
|
return { |
|
...previous, |
|
...getFormikErrorMessages(value, { build, chain: field, skip }), |
|
}; |
|
} |
|
|
|
if (!skip?.call(null, field)) { |
|
previous[field] = build(field, value); |
|
} |
|
|
|
return previous; |
|
}, {}); |
|
|
|
export default getFormikErrorMessages;
|
|
|