1
0
mirror of synced 2024-11-22 21:36:04 +03:00
vue-formulario/src/Formulario.ts

66 lines
2.2 KiB
TypeScript
Raw Normal View History

import merge from '@/utils/merge'
import validationRules from '@/validation/rules'
import validationMessages from '@/validation/messages'
2020-10-09 22:58:28 +03:00
import {
ValidationContext,
2020-11-06 20:44:04 +03:00
ValidationRuleFn,
ValidationMessageFn,
ValidationMessageI18NFn,
} from '@/validation/validator'
export interface FormularioOptions {
validationRules?: any;
validationMessages?: Record<string, Function>;
}
2020-05-22 14:22:56 +03:00
/**
* The base formulario library.
*/
export default class Formulario {
2020-11-06 20:44:04 +03:00
public validationRules: Record<string, ValidationRuleFn> = {}
2020-11-10 09:47:40 +03:00
public validationMessages: Record<string, ValidationMessageI18NFn|string> = {}
constructor (options?: FormularioOptions) {
this.validationRules = validationRules
this.validationMessages = validationMessages
2020-05-22 14:22:56 +03:00
this.extend(options || {})
}
/**
* Given a set of options, apply them to the pre-existing options.
*/
extend (extendWith: FormularioOptions): Formulario {
2020-05-22 14:22:56 +03:00
if (typeof extendWith === 'object') {
this.validationRules = merge(this.validationRules, extendWith.validationRules || {})
this.validationMessages = merge(this.validationMessages, extendWith.validationMessages || {})
2020-05-22 14:22:56 +03:00
return this
}
throw new Error(`[Formulario]: Formulario.extend() should be passed an object (was ${typeof extendWith})`)
2020-05-22 14:22:56 +03:00
}
/**
* Get validation rules by merging any passed in with global rules.
*/
2020-11-06 20:44:04 +03:00
getRules (extendWith: Record<string, ValidationRuleFn> = {}): Record<string, ValidationRuleFn> {
return merge(this.validationRules, extendWith)
2020-05-22 14:22:56 +03:00
}
/**
* Get validation messages by merging any passed in with global messages.
*/
2020-11-06 20:44:04 +03:00
getMessages (vm: Vue, extendWith: Record<string, ValidationMessageI18NFn|string>): Record<string, ValidationMessageFn> {
const raw = merge(this.validationMessages || {}, extendWith)
2020-11-06 20:44:04 +03:00
const messages: Record<string, ValidationMessageFn> = {}
for (const name in raw) {
messages[name] = (context: ValidationContext, ...args: any[]): string => {
return typeof raw[name] === 'string' ? raw[name] : raw[name](vm, context, ...args)
}
}
return messages
2020-05-22 14:22:56 +03:00
}
}