28 lines
799 B
JavaScript
28 lines
799 B
JavaScript
import { Controller } from "@hotwired/stimulus"
|
|
|
|
export default class extends Controller {
|
|
static targets = [ "resetPasswordButton", "currentPasswordField" ]
|
|
static values = { validationFailed: Boolean }
|
|
|
|
connect () {
|
|
if (this.validationFailedValue) return;
|
|
|
|
this.element.querySelectorAll(".initial-hidden").forEach(el => {
|
|
el.classList.add("hidden");
|
|
})
|
|
this.element.querySelectorAll(".initial-visible").forEach(el => {
|
|
el.classList.remove("hidden");
|
|
})
|
|
}
|
|
|
|
showPasswordReset () {
|
|
this.element.querySelectorAll(".initial-visible").forEach(el => {
|
|
el.classList.add("hidden");
|
|
})
|
|
this.element.querySelectorAll(".initial-hidden").forEach(el => {
|
|
el.classList.remove("hidden");
|
|
})
|
|
this.currentPasswordFieldTarget.select();
|
|
}
|
|
}
|