| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- import { z } from 'zod';
- import type { DynamicValue, DataModel, LogicExpression } from './types';
- import { DynamicValueSchema, resolveDynamicValue } from './types';
- import { LogicExpressionSchema, evaluateLogicExpression } from './visibility';
- /**
- * Validation check definition
- */
- export interface ValidationCheck {
- /** Function name (built-in or from catalog) */
- fn: string;
- /** Additional arguments for the function */
- args?: Record<string, DynamicValue>;
- /** Error message to display if check fails */
- message: string;
- }
- /**
- * Validation configuration for a field
- */
- export interface ValidationConfig {
- /** Array of checks to run */
- checks?: ValidationCheck[];
- /** When to run validation */
- validateOn?: 'change' | 'blur' | 'submit';
- /** Condition for when validation is enabled */
- enabled?: LogicExpression;
- }
- /**
- * Schema for validation check
- */
- export const ValidationCheckSchema = z.object({
- fn: z.string(),
- args: z.record(DynamicValueSchema).optional(),
- message: z.string(),
- });
- /**
- * Schema for validation config
- */
- export const ValidationConfigSchema = z.object({
- checks: z.array(ValidationCheckSchema).optional(),
- validateOn: z.enum(['change', 'blur', 'submit']).optional(),
- enabled: LogicExpressionSchema.optional(),
- });
- /**
- * Validation function signature
- */
- export type ValidationFunction = (
- value: unknown,
- args?: Record<string, unknown>
- ) => boolean;
- /**
- * Validation function definition in catalog
- */
- export interface ValidationFunctionDefinition {
- /** The validation function */
- validate: ValidationFunction;
- /** Description for AI */
- description?: string;
- }
- /**
- * Built-in validation functions
- */
- export const builtInValidationFunctions: Record<string, ValidationFunction> = {
- /**
- * Check if value is not null, undefined, or empty string
- */
- required: (value: unknown) => {
- if (value === null || value === undefined) return false;
- if (typeof value === 'string') return value.trim().length > 0;
- if (Array.isArray(value)) return value.length > 0;
- return true;
- },
- /**
- * Check if value is a valid email address
- */
- email: (value: unknown) => {
- if (typeof value !== 'string') return false;
- return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value);
- },
- /**
- * Check minimum string length
- */
- minLength: (value: unknown, args?: Record<string, unknown>) => {
- if (typeof value !== 'string') return false;
- const min = args?.min;
- if (typeof min !== 'number') return false;
- return value.length >= min;
- },
- /**
- * Check maximum string length
- */
- maxLength: (value: unknown, args?: Record<string, unknown>) => {
- if (typeof value !== 'string') return false;
- const max = args?.max;
- if (typeof max !== 'number') return false;
- return value.length <= max;
- },
- /**
- * Check if string matches a regex pattern
- */
- pattern: (value: unknown, args?: Record<string, unknown>) => {
- if (typeof value !== 'string') return false;
- const pattern = args?.pattern;
- if (typeof pattern !== 'string') return false;
- try {
- return new RegExp(pattern).test(value);
- } catch {
- return false;
- }
- },
- /**
- * Check minimum numeric value
- */
- min: (value: unknown, args?: Record<string, unknown>) => {
- if (typeof value !== 'number') return false;
- const min = args?.min;
- if (typeof min !== 'number') return false;
- return value >= min;
- },
- /**
- * Check maximum numeric value
- */
- max: (value: unknown, args?: Record<string, unknown>) => {
- if (typeof value !== 'number') return false;
- const max = args?.max;
- if (typeof max !== 'number') return false;
- return value <= max;
- },
- /**
- * Check if value is a number
- */
- numeric: (value: unknown) => {
- if (typeof value === 'number') return !isNaN(value);
- if (typeof value === 'string') return !isNaN(parseFloat(value));
- return false;
- },
- /**
- * Check if value is a valid URL
- */
- url: (value: unknown) => {
- if (typeof value !== 'string') return false;
- try {
- new URL(value);
- return true;
- } catch {
- return false;
- }
- },
- /**
- * Check if value matches another field
- */
- matches: (value: unknown, args?: Record<string, unknown>) => {
- const other = args?.other;
- return value === other;
- },
- };
- /**
- * Validation result for a single check
- */
- export interface ValidationCheckResult {
- fn: string;
- valid: boolean;
- message: string;
- }
- /**
- * Full validation result for a field
- */
- export interface ValidationResult {
- valid: boolean;
- errors: string[];
- checks: ValidationCheckResult[];
- }
- /**
- * Context for running validation
- */
- export interface ValidationContext {
- /** Current value to validate */
- value: unknown;
- /** Full data model for resolving paths */
- dataModel: DataModel;
- /** Custom validation functions from catalog */
- customFunctions?: Record<string, ValidationFunction>;
- }
- /**
- * Run a single validation check
- */
- export function runValidationCheck(
- check: ValidationCheck,
- ctx: ValidationContext
- ): ValidationCheckResult {
- const { value, dataModel, customFunctions } = ctx;
-
- // Resolve args
- const resolvedArgs: Record<string, unknown> = {};
- if (check.args) {
- for (const [key, argValue] of Object.entries(check.args)) {
- resolvedArgs[key] = resolveDynamicValue(argValue, dataModel);
- }
- }
-
- // Find the validation function
- const fn = builtInValidationFunctions[check.fn] ?? customFunctions?.[check.fn];
-
- if (!fn) {
- console.warn(`Unknown validation function: ${check.fn}`);
- return {
- fn: check.fn,
- valid: true, // Don't fail on unknown functions
- message: check.message,
- };
- }
-
- const valid = fn(value, resolvedArgs);
-
- return {
- fn: check.fn,
- valid,
- message: check.message,
- };
- }
- /**
- * Run all validation checks for a field
- */
- export function runValidation(
- config: ValidationConfig,
- ctx: ValidationContext & { authState?: { isSignedIn: boolean } }
- ): ValidationResult {
- const checks: ValidationCheckResult[] = [];
- const errors: string[] = [];
-
- // Check if validation is enabled
- if (config.enabled) {
- const enabled = evaluateLogicExpression(config.enabled, {
- dataModel: ctx.dataModel,
- authState: ctx.authState,
- });
- if (!enabled) {
- return { valid: true, errors: [], checks: [] };
- }
- }
-
- // Run each check
- if (config.checks) {
- for (const check of config.checks) {
- const result = runValidationCheck(check, ctx);
- checks.push(result);
- if (!result.valid) {
- errors.push(result.message);
- }
- }
- }
-
- return {
- valid: errors.length === 0,
- errors,
- checks,
- };
- }
- /**
- * Helper to create validation checks
- */
- export const check = {
- required: (message = 'This field is required'): ValidationCheck => ({
- fn: 'required',
- message,
- }),
-
- email: (message = 'Invalid email address'): ValidationCheck => ({
- fn: 'email',
- message,
- }),
-
- minLength: (min: number, message?: string): ValidationCheck => ({
- fn: 'minLength',
- args: { min },
- message: message ?? `Must be at least ${min} characters`,
- }),
-
- maxLength: (max: number, message?: string): ValidationCheck => ({
- fn: 'maxLength',
- args: { max },
- message: message ?? `Must be at most ${max} characters`,
- }),
-
- pattern: (pattern: string, message = 'Invalid format'): ValidationCheck => ({
- fn: 'pattern',
- args: { pattern },
- message,
- }),
-
- min: (min: number, message?: string): ValidationCheck => ({
- fn: 'min',
- args: { min },
- message: message ?? `Must be at least ${min}`,
- }),
-
- max: (max: number, message?: string): ValidationCheck => ({
- fn: 'max',
- args: { max },
- message: message ?? `Must be at most ${max}`,
- }),
-
- url: (message = 'Invalid URL'): ValidationCheck => ({
- fn: 'url',
- message,
- }),
-
- matches: (otherPath: string, message = 'Fields must match'): ValidationCheck => ({
- fn: 'matches',
- args: { other: { path: otherPath } },
- message,
- }),
- };
|