feat: implement password toggle functionality in input component

This commit is contained in:
2026-06-26 10:06:41 -03:00
parent 455b7c8506
commit d58445e199
4 changed files with 54 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ export type AppInputType =
| 'number'
| 'email'
| 'password'
| 'password-toggle'
| 'currency'
| 'percent'
| 'date'
@@ -32,6 +33,7 @@ const INPUT_TYPES = new Set<AppInputType>([
'number',
'email',
'password',
'password-toggle',
'currency',
'percent',
'date',
@@ -60,6 +62,7 @@ export class InputComponent {
private readonly inputElement = viewChild<ElementRef<HTMLInputElement>>('inputElement');
private readonly selectedFileName = signal('');
private readonly editableDisabled = signal(false);
private readonly passwordVisible = signal(false);
private lastClearTrigger = 0;
readonly invalid = input(false);
@@ -70,6 +73,7 @@ export class InputComponent {
readonly fileName = input('');
readonly clearTrigger = input(0);
readonly disabled = input(false);
readonly visible = input<boolean | null>(null);
readonly type = input<AppInputType, AppInputType | string>(DEFAULT_TYPE, {
transform: normalizeType
});
@@ -77,12 +81,17 @@ export class InputComponent {
readonly disabledChange = output<boolean>();
readonly valueChange = output<string>();
readonly fileChange = output<File | null>();
readonly visibleChange = output<boolean>();
protected readonly id = `app-input-${globalThis.crypto.randomUUID()}`;
protected readonly inputType = computed(() => {
const type = this.type();
if (type === 'password-toggle') {
return this.isPasswordVisible() ? 'text' : 'password';
}
if (type === 'search' || type === 'currency' || type === 'percent' || type === 'editable') {
return 'text';
}
@@ -100,7 +109,8 @@ export class InputComponent {
'input-with-search-icon': this.type() === 'search',
'input-with-prefix': this.type() === 'currency',
'input-with-suffix': this.type() === 'percent',
'input-with-icon': this.type() === 'editable'
'input-with-icon': this.type() === 'editable',
'input-with-action-icon': this.type() === 'password-toggle'
}));
protected readonly isInputDisabled = computed(() =>
@@ -111,6 +121,11 @@ export class InputComponent {
() => this.type() === 'editable' && !this.editableDisabled()
);
protected readonly isPasswordVisible = computed(() => {
const visible = this.visible();
return visible === null ? this.passwordVisible() : visible;
});
protected readonly resolvedFileName = computed(
() => this.selectedFileName() || this.fileName() || ''
);
@@ -163,6 +178,20 @@ export class InputComponent {
this.disabledChange.emit(nextState);
}
protected togglePasswordVisibility(): void {
if (this.type() !== 'password-toggle' || this.disabled()) {
return;
}
const nextState = !this.isPasswordVisible();
if (this.visible() === null) {
this.passwordVisible.set(nextState);
}
this.visibleChange.emit(nextState);
}
private clearFileInput(): void {
this.inputElement()?.nativeElement && (this.inputElement()!.nativeElement.value = '');
this.selectedFileName.set('');