fleet/frontend/components/forms/ResetPasswordForm/validate.js
Gabe Hernandez efb35b537a
add prettier and have it format all fleet application code (#625)
* add prettier and have it format all js code except website:
:

* trying running prettier check in CI

* fix runs on in CI

* change CI job name

* fix prettier erros and fix CI
2021-04-12 14:32:25 +01:00

41 lines
1.1 KiB
JavaScript

import { size } from "lodash";
import validateEquality from "components/forms/validators/validate_equality";
import validatePresence from "components/forms/validators/validate_presence";
import validPassword from "components/forms/validators/valid_password";
const validate = (formData) => {
const errors = {};
const {
new_password: newPassword,
new_password_confirmation: newPasswordConfirmation,
} = formData;
const noMatch =
newPassword &&
newPasswordConfirmation &&
!validateEquality(newPassword, newPasswordConfirmation);
if (!validPassword(newPassword)) {
errors.new_password =
"Password must be at least 7 characters and contain at least 1 letter, 1 number, and 1 symbol";
}
if (!validatePresence(newPasswordConfirmation)) {
errors.new_password_confirmation =
"New password confirmation field must be completed";
}
if (!validatePresence(newPassword)) {
errors.new_password = "New password field must be completed";
}
if (noMatch) {
errors.new_password_confirmation = "Passwords Do Not Match";
}
const valid = !size(errors);
return { valid, errors };
};
export default validate;