2022-05-06 11:18:06 -08:00
|
|
|
import { ref, Ref } from "@nuxtjs/composition-api";
|
2022-10-22 11:51:07 -08:00
|
|
|
import { RequestResponse } from "~/lib/api/types/non-generated";
|
|
|
|
import { ValidationResponse } from "~/lib/api/types/response";
|
|
|
|
import { required, email, whitespace, url, minLength, maxLength } from "~/lib/validators";
|
2021-08-02 22:15:11 -08:00
|
|
|
|
2022-05-06 11:18:06 -08:00
|
|
|
export const validators = {
|
2022-10-22 11:51:07 -08:00
|
|
|
required,
|
|
|
|
email,
|
|
|
|
whitespace,
|
|
|
|
url,
|
|
|
|
minLength,
|
|
|
|
maxLength,
|
2022-05-06 11:18:06 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* useAsyncValidator us a factory function that returns an async function that
|
|
|
|
* when called will validate the input against the backend database and set the
|
|
|
|
* error messages when applicable to the ref.
|
|
|
|
*/
|
|
|
|
export const useAsyncValidator = (
|
|
|
|
value: Ref<string>,
|
2022-05-21 21:22:02 +02:00
|
|
|
validatorFunc: (v: string) => Promise<RequestResponse<ValidationResponse>>,
|
2022-05-06 11:18:06 -08:00
|
|
|
validatorMessage: string,
|
|
|
|
errorMessages: Ref<string[]>
|
|
|
|
) => {
|
|
|
|
const valid = ref(false);
|
|
|
|
|
|
|
|
const validate = async () => {
|
|
|
|
errorMessages.value = [];
|
|
|
|
const { data } = await validatorFunc(value.value);
|
|
|
|
|
|
|
|
if (!data?.valid) {
|
|
|
|
valid.value = false;
|
|
|
|
errorMessages.value.push(validatorMessage);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
valid.value = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
return { validate, valid };
|
2021-11-04 18:15:23 -08:00
|
|
|
};
|