mirror of
https://github.com/bitwarden/browser
synced 2026-02-14 07:23:45 +00:00
* [CL-245] Update palette to new light and dark theme colors (#8633) * [CL-245] Add new color swatches to storybook (#8697) * [CL-238] update typography (#8997) * [CL-230] [CL-296] Update button styles (#9345) * [CL-237] Update menu styles for extension refresh (#9525) * [CL-267] Add 100-level color variants and update primary-600 (#9550) * [CL-286] Update badge to use focus-visible instead of focus (#9551) * [CL-250] Update badge styles for extension refresh (#9572) * [CL-234] callout style refresh (#9920) * [CL-233] Update form field styles (#9776) * [CL-239][CL-251][CL-342] dialog style refresh (#10096) * [CL-239] simple dialog style refresh * [CL-342] fix text overflow in dialog; add story * [CL-244] readonly fields (#10164) * [CL-352] Fix Angular errors related to form element changes (#10211) * [CL-273] Update styles for checkbox and form control (#10146) * [CL-274] Update styling for radio button (#10333) * [CL-338] Remove extra space in item content when end slot is empty (#10350) * [CL-377] Fix extension style conflict for input background (#10351) * [CL-271] Update styles for toggle (#10377) * [CL-381] Update spacing around form elements (#10432) * [CL-229] Update icon button styles (#10405) * [CL-380] Remove hover state from disabled form fields (#10639) * [CL-405] Allow toggle group input to be full width (#10658) * [CL-389] Exclude end slot label content from truncation (#10508) * [CL-383] Remove manual focus when password toggle is clicked (#10749) * [CL-278][CL-391] misc bit-item style fixes (#10758) * [CL-391] use pointer cursor on hover when link or button * [CL-210] Change base font size from 14px to 16px (#10779) * [CL-291] Finalize styling for chip select (#10771) * [CL-257] update banner component styles (#10766) * [CL-443] Fix sizing issues (#10893) * [CL-445] Fix small sizing and spacing issues (#10962) * [CL-382] Reduce element shifting on readonly hover (#10956) * [CL-396] Update theme colors to new hexes (#10968) * [CL-395] Remove text headers color (#10997) * [CL-404] Switch to primary-600 for all focus indicators (#11015) * [CL-397] Remove primary-500 (#11036) * [CL-447] Ensure DM Sans displays correctly at all font weights (#11041) * [CL-448] Scrollbar Styles (#11111) * CL-252/update toast (#10996) * [CL-275] Update link styles (#11174) * [CL-446] Update hover state for unselected chip selects (#11172) * [CL-454] Improve color a11y for toast and banner interactive elements (#11200) * [CL-457] Center input text for select and multiselect (#11239) * [CL-455] Do not use responsive margin for sections in dialogs or extension (#11243) * [CL-459] Fix chip behavior when opening menu while item is selected (#11227) * [CL-388] Update vertical nav colors for new palette (#11226) * scope styled scrollbar to only select elements (#11247) * edit radio buttons to be block inputs and update spacing (#11291) * [CL-453] Fix multiselect chip spacing and truncation (#11300) * [PM-11131] Prevent duplicated sr labels on form field icon buttons (#11383) * [CL-303] Prevent chip menu from running offscreen (#11348) * [CL-476] Fix DM Sans font on Windows (#11409) * implements scrollbar styles for firefox/chrome and safari (#11447) * [CL-472] Fix search background color in extension (#11466) * [CL-481] Style updates for bit-item, bit-card, and primary-100 (#11473) * [CL-478] Remove underline on hover for most components (#11477) * [CL-477] Remove focus styles for readonly input (#11510) * [CL-487] Fix vault items virtual scroll height (#11581) * [PM-8625] Increase popup width (#11686) * [CL-494] Wrap long words in toggle group (#11659) * [CL-13820] Add class to remove link underline (#11762) * [CL-435] Prevent Windows extension from shifting (#11851) * [CL-503] Add notification color variables (#11802) * [PM-14043] Update size of toggle group label to fit more content (#11881) * [CL-498] Set chip menu width minimum to chip select width (#11905) --------- Co-authored-by: Will Martin <contact@willmartian.com> Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com> Co-authored-by: Nick Krantz <125900171+nick-livefront@users.noreply.github.com> Co-authored-by: Merissa Weinstein <merissa.k.weinstein@gmail.com> Co-authored-by: Danielle Flinn <43477473+danielleflinn@users.noreply.github.com>
168 lines
4.6 KiB
TypeScript
168 lines
4.6 KiB
TypeScript
import {
|
|
Component,
|
|
ContentChildren,
|
|
HostBinding,
|
|
Input,
|
|
Optional,
|
|
QueryList,
|
|
Self,
|
|
ViewChild,
|
|
Output,
|
|
EventEmitter,
|
|
} from "@angular/core";
|
|
import { ControlValueAccessor, NgControl, Validators } from "@angular/forms";
|
|
import { NgSelectComponent } from "@ng-select/ng-select";
|
|
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
|
|
import { BitFormFieldControl } from "../form-field";
|
|
|
|
import { Option } from "./option";
|
|
import { OptionComponent } from "./option.component";
|
|
|
|
let nextId = 0;
|
|
|
|
@Component({
|
|
selector: "bit-select",
|
|
templateUrl: "select.component.html",
|
|
providers: [{ provide: BitFormFieldControl, useExisting: SelectComponent }],
|
|
})
|
|
export class SelectComponent<T> implements BitFormFieldControl, ControlValueAccessor {
|
|
@ViewChild(NgSelectComponent) select: NgSelectComponent;
|
|
|
|
/** Optional: Options can be provided using an array input or using `bit-option` */
|
|
@Input() items: Option<T>[] = [];
|
|
@Input() placeholder = this.i18nService.t("selectPlaceholder");
|
|
@Output() closed = new EventEmitter();
|
|
|
|
protected selectedValue: T;
|
|
protected selectedOption: Option<T>;
|
|
protected searchInputId = `bit-select-search-input-${nextId++}`;
|
|
|
|
private notifyOnChange?: (value: T) => void;
|
|
private notifyOnTouched?: () => void;
|
|
|
|
constructor(
|
|
private i18nService: I18nService,
|
|
@Optional() @Self() private ngControl?: NgControl,
|
|
) {
|
|
if (ngControl != null) {
|
|
ngControl.valueAccessor = this;
|
|
}
|
|
}
|
|
|
|
@ContentChildren(OptionComponent)
|
|
protected set options(value: QueryList<OptionComponent<T>>) {
|
|
if (value == null || value.length == 0) {
|
|
return;
|
|
}
|
|
this.items = value.toArray();
|
|
this.selectedOption = this.findSelectedOption(this.items, this.selectedValue);
|
|
}
|
|
|
|
@HostBinding("class") protected classes = ["tw-block", "tw-w-full", "tw-h-full"];
|
|
|
|
// Usings a separate getter for the HostBinding to get around an unexplained angular error
|
|
@HostBinding("attr.disabled")
|
|
get disabledAttr() {
|
|
return this.disabled || null;
|
|
}
|
|
@Input()
|
|
get disabled() {
|
|
return this._disabled ?? this.ngControl?.disabled ?? false;
|
|
}
|
|
set disabled(value: any) {
|
|
this._disabled = value != null && value !== false;
|
|
}
|
|
private _disabled: boolean;
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
writeValue(obj: T): void {
|
|
this.selectedValue = obj;
|
|
this.selectedOption = this.findSelectedOption(this.items, this.selectedValue);
|
|
}
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
registerOnChange(fn: (value: T) => void): void {
|
|
this.notifyOnChange = fn;
|
|
}
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
registerOnTouched(fn: any): void {
|
|
this.notifyOnTouched = fn;
|
|
}
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
setDisabledState(isDisabled: boolean): void {
|
|
this.disabled = isDisabled;
|
|
}
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
protected onChange(option: Option<T> | null) {
|
|
if (!this.notifyOnChange) {
|
|
return;
|
|
}
|
|
|
|
this.notifyOnChange(option?.value);
|
|
}
|
|
|
|
/**Implemented as part of NG_VALUE_ACCESSOR */
|
|
protected onBlur() {
|
|
if (!this.notifyOnTouched) {
|
|
return;
|
|
}
|
|
|
|
this.notifyOnTouched();
|
|
}
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
@HostBinding("attr.aria-describedby")
|
|
get ariaDescribedBy() {
|
|
return this._ariaDescribedBy;
|
|
}
|
|
set ariaDescribedBy(value: string) {
|
|
this._ariaDescribedBy = value;
|
|
this.select?.searchInput.nativeElement.setAttribute("aria-describedby", value);
|
|
}
|
|
private _ariaDescribedBy: string;
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
get labelForId() {
|
|
return this.searchInputId;
|
|
}
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
@HostBinding() @Input() id = `bit-multi-select-${nextId++}`;
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
@HostBinding("attr.required")
|
|
@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;
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
get hasError() {
|
|
return this.ngControl?.status === "INVALID" && this.ngControl?.touched;
|
|
}
|
|
|
|
/**Implemented as part of BitFormFieldControl */
|
|
get error(): [string, any] {
|
|
const key = Object.keys(this.ngControl?.errors)[0];
|
|
return [key, this.ngControl?.errors[key]];
|
|
}
|
|
|
|
private findSelectedOption(items: Option<T>[], value: T): Option<T> | undefined {
|
|
return items.find((item) => item.value === value);
|
|
}
|
|
|
|
/**Emits the closed event. */
|
|
protected onClose() {
|
|
this.closed.emit();
|
|
}
|
|
}
|