mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-20 16:07:45 +01:00
419c107f87
* honor initial disabled state * update story
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import { Directive, Input, OnDestroy, Optional } from "@angular/core";
|
|
import { Subject, takeUntil } from "rxjs";
|
|
|
|
import { ButtonLikeAbstraction } from "../shared/button-like.abstraction";
|
|
|
|
import { BitActionDirective } from "./bit-action.directive";
|
|
import { BitSubmitDirective } from "./bit-submit.directive";
|
|
|
|
/**
|
|
* This directive has two purposes:
|
|
*
|
|
* When attached to a submit button:
|
|
* - Activates the button loading effect while the form is processing an async submit action.
|
|
* - Disables the button while a `bitAction` directive on another button is being processed.
|
|
*
|
|
* When attached to a button with `bitAction` directive inside of a form:
|
|
* - Disables the button while the `bitSubmit` directive is processing an async submit action.
|
|
* - Disables the button while a `bitAction` directive on another button is being processed.
|
|
* - Disables form submission while the `bitAction` directive is processing an async action.
|
|
*
|
|
* Note: you must use a directive that implements the ButtonLikeAbstraction (bitButton or bitIconButton for example)
|
|
* along with this one in order to avoid provider errors.
|
|
*/
|
|
@Directive({
|
|
selector: "button[bitFormButton]",
|
|
})
|
|
export class BitFormButtonDirective implements OnDestroy {
|
|
private destroy$ = new Subject<void>();
|
|
|
|
@Input() type: string;
|
|
@Input() disabled?: boolean;
|
|
|
|
constructor(
|
|
buttonComponent: ButtonLikeAbstraction,
|
|
@Optional() submitDirective?: BitSubmitDirective,
|
|
@Optional() actionDirective?: BitActionDirective,
|
|
) {
|
|
if (submitDirective && buttonComponent) {
|
|
submitDirective.loading$.pipe(takeUntil(this.destroy$)).subscribe((loading) => {
|
|
if (this.type === "submit") {
|
|
buttonComponent.loading = loading;
|
|
} else {
|
|
buttonComponent.disabled = this.disabled || loading;
|
|
}
|
|
});
|
|
|
|
submitDirective.disabled$.pipe(takeUntil(this.destroy$)).subscribe((disabled) => {
|
|
if (this.disabled !== false) {
|
|
buttonComponent.disabled = this.disabled || disabled;
|
|
}
|
|
});
|
|
}
|
|
|
|
if (submitDirective && actionDirective) {
|
|
actionDirective.loading$.pipe(takeUntil(this.destroy$)).subscribe((disabled) => {
|
|
submitDirective.disabled = disabled;
|
|
});
|
|
|
|
submitDirective.disabled$.pipe(takeUntil(this.destroy$)).subscribe((disabled) => {
|
|
actionDirective.disabled = disabled;
|
|
});
|
|
}
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
this.destroy$.next();
|
|
this.destroy$.complete();
|
|
}
|
|
}
|