mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
147 lines
3.8 KiB
TypeScript
147 lines
3.8 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import {
|
|
Directive,
|
|
ElementRef,
|
|
HostBinding,
|
|
HostListener,
|
|
Input,
|
|
NgZone,
|
|
Optional,
|
|
Self,
|
|
} from "@angular/core";
|
|
import { NgControl, Validators } from "@angular/forms";
|
|
|
|
import { BitFormFieldControl, InputTypes } from "../form-field/form-field-control";
|
|
import { BitFormFieldComponent } from "../form-field/form-field.component";
|
|
|
|
// Increments for each instance of this component
|
|
let nextId = 0;
|
|
|
|
export function inputBorderClasses(error: boolean) {
|
|
return [
|
|
"tw-border",
|
|
"!tw-border-solid",
|
|
error ? "tw-border-danger-600" : "tw-border-secondary-500",
|
|
"focus:tw-outline-none",
|
|
];
|
|
}
|
|
|
|
@Directive({
|
|
selector: "input[bitInput], select[bitInput], textarea[bitInput]",
|
|
providers: [{ provide: BitFormFieldControl, useExisting: BitInputDirective }],
|
|
standalone: true,
|
|
})
|
|
export class BitInputDirective implements BitFormFieldControl {
|
|
@HostBinding("class") @Input() get classList() {
|
|
const classes = [
|
|
"tw-block",
|
|
"tw-w-full",
|
|
"tw-h-full",
|
|
"tw-text-main",
|
|
"tw-placeholder-text-muted",
|
|
"tw-bg-background",
|
|
"tw-border-none",
|
|
"focus:tw-outline-none",
|
|
"[&:is(input,textarea):disabled]:tw-bg-secondary-100",
|
|
];
|
|
|
|
if (this.parentFormField === null) {
|
|
classes.push(...inputBorderClasses(this.hasError), ...this.standaloneInputClasses);
|
|
}
|
|
|
|
return classes.filter((s) => s != "");
|
|
}
|
|
|
|
@HostBinding() @Input() id = `bit-input-${nextId++}`;
|
|
|
|
@HostBinding("attr.aria-describedby") ariaDescribedBy: string;
|
|
|
|
@HostBinding("attr.aria-invalid") get ariaInvalid() {
|
|
return this.hasError ? true : undefined;
|
|
}
|
|
|
|
@HostBinding("attr.type") @Input() type?: InputTypes;
|
|
|
|
@HostBinding("attr.spellcheck") @Input() spellcheck?: boolean;
|
|
|
|
@HostBinding()
|
|
@Input()
|
|
get required() {
|
|
return this._required ?? this.ngControl?.control?.hasValidator(Validators.required) ?? false;
|
|
}
|
|
set required(value: any) {
|
|
this._required = value != null && value !== false;
|
|
}
|
|
private _required: boolean;
|
|
|
|
@Input() hasPrefix = false;
|
|
@Input() hasSuffix = false;
|
|
|
|
@Input() showErrorsWhenDisabled? = false;
|
|
|
|
get labelForId(): string {
|
|
return this.id;
|
|
}
|
|
|
|
@HostListener("input")
|
|
onInput() {
|
|
this.ngControl?.control?.markAsUntouched();
|
|
}
|
|
|
|
get hasError() {
|
|
if (this.showErrorsWhenDisabled) {
|
|
return (
|
|
(this.ngControl?.status === "INVALID" || this.ngControl?.status === "DISABLED") &&
|
|
this.ngControl?.touched &&
|
|
this.ngControl?.errors != null
|
|
);
|
|
} else {
|
|
return this.ngControl?.status === "INVALID" && this.ngControl?.touched;
|
|
}
|
|
}
|
|
|
|
get error(): [string, any] {
|
|
const key = Object.keys(this.ngControl.errors)[0];
|
|
return [key, this.ngControl.errors[key]];
|
|
}
|
|
|
|
constructor(
|
|
@Optional() @Self() private ngControl: NgControl,
|
|
private ngZone: NgZone,
|
|
private elementRef: ElementRef<HTMLInputElement>,
|
|
@Optional() private parentFormField: BitFormFieldComponent,
|
|
) {}
|
|
|
|
focus() {
|
|
this.ngZone.runOutsideAngular(() => {
|
|
const end = this.elementRef.nativeElement.value.length;
|
|
this.elementRef.nativeElement.setSelectionRange(end, end);
|
|
this.elementRef.nativeElement.focus();
|
|
});
|
|
}
|
|
|
|
get readOnly(): boolean {
|
|
return this.elementRef.nativeElement.readOnly;
|
|
}
|
|
|
|
get standaloneInputClasses() {
|
|
return [
|
|
"tw-px-3",
|
|
"tw-py-2",
|
|
"tw-rounded-lg",
|
|
// Hover
|
|
this.hasError ? "hover:tw-border-danger-700" : "hover:tw-border-primary-600",
|
|
// Focus
|
|
"focus:hover:tw-border-primary-600",
|
|
"disabled:tw-bg-secondary-100",
|
|
"disabled:hover:tw-border-secondary-500",
|
|
"focus:tw-border-primary-600",
|
|
"focus:tw-ring-1",
|
|
"focus:tw-ring-inset",
|
|
"focus:tw-ring-primary-600",
|
|
"focus:tw-z-10",
|
|
];
|
|
}
|
|
}
|