{"version":3,"file":"error-message.js","sources":["../../Trilogy.Bundler.Site.ClientApp/src/common/error-functions.ts","../../Trilogy.Bundler.Site.ClientApp/src/common/error-summary.tsx","../../Trilogy.Bundler.Site.ClientApp/src/common/error-message.tsx"],"sourcesContent":["import { get, useFormContext } from \"react-hook-form\";\r\n\r\nexport const findAllByKey = (obj: Object, keyToFind: string): any[] => {\r\n return Object.entries(obj)\r\n .reduce((acc: any[], [key, value]) => (key === keyToFind && value)\r\n ? acc.concat(value)\r\n : (typeof value === 'object')\r\n ? acc.concat(findAllByKey(value, keyToFind))\r\n : acc\r\n , [])\r\n};\r\n\r\nexport const findAllByKeyValue = (obj: Object, keyToFind: string, valueToFind: any): any[] => {\r\n return Object.entries(obj)\r\n .reduce((acc: any[], [key, value]) => (key === keyToFind && value == valueToFind)\r\n ? acc.concat(obj)\r\n : (typeof value === 'object')\r\n ? acc.concat(findAllByKeyValue(value, keyToFind, valueToFind))\r\n : acc\r\n , [])\r\n};\r\n\r\nexport const useFieldFormContext = () => {\r\n const { register, formState: { errors } } = useFormContext();\r\n\r\n const isInvalid = (name: string) => {\r\n const error = get(errors, name);\r\n return error ? true : false;\r\n }\r\n\r\n return {\r\n register: register,\r\n registerField: (field: { id: string, name: string, options?: any }) => {\r\n return {\r\n ...register(field.name, field?.options),\r\n id: field.id,\r\n \"aria-invalid\": isInvalid(field.name),\r\n \"maxLength\": field?.options?.maxLength,\r\n \"minLength\": field?.options?.minLength,\r\n \"disabled\": field?.options?.disabled,\r\n \"title\": field?.options?.title,\r\n \"readOnly\": field?.options?.readOnly,\r\n }\r\n }\r\n }\r\n}","import * as React from \"react\";\r\nimport { isEmpty } from \"lodash\";\r\nimport { useFormContext, get } from \"react-hook-form\";\r\n\r\nimport { ApiError } from \"./api-error\";\r\nimport { findAllByKey, findAllByKeyValue } from \"./error-functions\";\r\n\r\nexport const ErrorSummary = ({ apiErrors }: { apiErrors?: ApiError[] }) => {\r\n const { formState: { errors } } = useFormContext();\r\n\r\n // Input error messages\r\n const errorRefs = findAllByKey(errors, \"ref\");\r\n\r\n const inputErrorKeys: string[] = errorRefs.map(ref => ref.name);\r\n\r\n const clientErrorMessages: string[] = inputErrorKeys.map(ek => {\r\n const error = get(errors, ek);\r\n return error.message;\r\n }).filter(m => m);\r\n\r\n // API Error messages\r\n const apiErrorMessages: string[] = apiErrors ? apiErrors.map(e => e.message).filter(m => m) : [];\r\n\r\n // All error messages\r\n const errorMessages = clientErrorMessages.concat(apiErrorMessages);\r\n\r\n const hasErrors = !isEmpty(errorMessages);\r\n\r\n return (\r\n <>\r\n {hasErrors &&\r\n
Please review the following errors:
\r\n