mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import { coerceBooleanProperty } from "@angular/cdk/coercion";
|
|
import { Component, ContentChild, HostBinding, Input } from "@angular/core";
|
|
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
|
|
import { BitFormControlAbstraction } from "./form-control.abstraction";
|
|
|
|
@Component({
|
|
selector: "bit-form-control",
|
|
templateUrl: "form-control.component.html",
|
|
})
|
|
export class FormControlComponent {
|
|
@Input() label: string;
|
|
|
|
private _inline = false;
|
|
@Input() get inline() {
|
|
return this._inline;
|
|
}
|
|
set inline(value: boolean | "") {
|
|
this._inline = coerceBooleanProperty(value);
|
|
}
|
|
|
|
private _disableMargin = false;
|
|
@Input() set disableMargin(value: boolean | "") {
|
|
this._disableMargin = coerceBooleanProperty(value);
|
|
}
|
|
get disableMargin() {
|
|
return this._disableMargin;
|
|
}
|
|
|
|
@ContentChild(BitFormControlAbstraction) protected formControl: BitFormControlAbstraction;
|
|
|
|
@HostBinding("class") get classes() {
|
|
return []
|
|
.concat(this.inline ? ["tw-inline-block", "tw-mr-4"] : ["tw-block"])
|
|
.concat(this.disableMargin ? [] : ["tw-mb-6"]);
|
|
}
|
|
|
|
constructor(private i18nService: I18nService) {}
|
|
|
|
protected get labelClasses() {
|
|
return [
|
|
"tw-transition",
|
|
"tw-select-none",
|
|
"tw-mb-0",
|
|
"tw-inline-flex",
|
|
"tw-items-baseline",
|
|
].concat(this.formControl.disabled ? "tw-cursor-auto" : "tw-cursor-pointer");
|
|
}
|
|
|
|
protected get labelContentClasses() {
|
|
return ["tw-inline-flex", "tw-flex-col", "tw-font-semibold"].concat(
|
|
this.formControl.disabled ? "tw-text-muted" : "tw-text-main",
|
|
);
|
|
}
|
|
|
|
get required() {
|
|
return this.formControl.required;
|
|
}
|
|
|
|
get hasError() {
|
|
return this.formControl.hasError;
|
|
}
|
|
|
|
get error() {
|
|
return this.formControl.error;
|
|
}
|
|
|
|
get displayError() {
|
|
switch (this.error[0]) {
|
|
case "required":
|
|
return this.i18nService.t("inputRequired");
|
|
default:
|
|
// Attempt to show a custom error message.
|
|
if (this.error[1]?.message) {
|
|
return this.error[1]?.message;
|
|
}
|
|
|
|
return this.error;
|
|
}
|
|
}
|
|
}
|