@rdlabo/ionic-angular-kit 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Injectable, InjectionToken, makeEnvironmentProviders, ElementRef, Directive } from '@angular/core';
|
|
2
|
+
import { inject, Injectable, InjectionToken, makeEnvironmentProviders, ElementRef, Injector, input, computed, HostListener, Directive } from '@angular/core';
|
|
3
3
|
import { Storage } from '@ionic/storage-angular';
|
|
4
4
|
import { ModalController, PopoverController, ToastController, AlertController, LoadingController, NavController } from '@ionic/angular/standalone';
|
|
5
5
|
import { Capacitor } from '@capacitor/core';
|
|
6
6
|
import { Keyboard } from '@capacitor/keyboard';
|
|
7
7
|
import { ImpactStyle, Haptics } from '@capacitor/haptics';
|
|
8
|
+
import { FORM_FIELD } from '@angular/forms/signals';
|
|
8
9
|
import { Router } from '@angular/router';
|
|
9
10
|
import { map, mergeMap, catchError, timeout, tap } from 'rxjs/operators';
|
|
10
11
|
import { HttpErrorResponse, HttpResponse } from '@angular/common/http';
|
|
@@ -100,6 +101,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
|
|
|
100
101
|
}]
|
|
101
102
|
}] });
|
|
102
103
|
|
|
104
|
+
/**
|
|
105
|
+
* Remember the email a user last entered on the sign-in form so the field can be prefilled next
|
|
106
|
+
* time (the password is never stored).
|
|
107
|
+
*
|
|
108
|
+
* @remarks
|
|
109
|
+
* Storage-agnostic: the helpers take a minimal async key/value store that {@link KitStorageService}
|
|
110
|
+
* satisfies structurally, so they stay pure and unit-testable without DI. `kitRememberEmail`
|
|
111
|
+
* **validates the address before persisting** — a malformed or partial string is silently ignored,
|
|
112
|
+
* so a garbage entry (or a fat-fingered attempt) never becomes the next prefill. A well-formed email
|
|
113
|
+
* that later fails to sign in is still remembered by design: the user simply re-enters/corrects it.
|
|
114
|
+
*
|
|
115
|
+
* These live in the main entry (next to {@link KitStorageService}) rather than in `auth-firebase`,
|
|
116
|
+
* so the `KitAutofillDirective` can consume them without the main entry depending on the Firebase
|
|
117
|
+
* entry.
|
|
118
|
+
*/
|
|
119
|
+
/** Storage key under which the last entered sign-in email is kept. */
|
|
120
|
+
const KIT_LAST_AUTH_EMAIL_KEY = 'kit:last-auth-email';
|
|
121
|
+
/**
|
|
122
|
+
* Angular's `Validators.email` pattern — a pragmatic, RFC-5322-inspired address check. Kept in sync
|
|
123
|
+
* with `@angular/forms` so a value we persist would also pass the form's own email validation.
|
|
124
|
+
*/
|
|
125
|
+
const EMAIL_REGEXP = /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+(?:\.[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?(?:\.[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/;
|
|
126
|
+
/** Whether `email` is a well-formed address (matches `@angular/forms` `Validators.email`). */
|
|
127
|
+
const kitIsValidEmail = (email) => EMAIL_REGEXP.test(email);
|
|
128
|
+
/**
|
|
129
|
+
* Persist the entered email for next time — but only when it is a well-formed address.
|
|
130
|
+
*
|
|
131
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
132
|
+
* @param email - the entered email; ignored (not stored) when malformed
|
|
133
|
+
* @returns `true` when the value passed validation and was stored, `false` when it was ignored
|
|
134
|
+
*/
|
|
135
|
+
const kitRememberEmail = async (store, email) => {
|
|
136
|
+
if (!kitIsValidEmail(email)) {
|
|
137
|
+
return false;
|
|
138
|
+
}
|
|
139
|
+
await store.set(KIT_LAST_AUTH_EMAIL_KEY, email);
|
|
140
|
+
return true;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Recall the last remembered email.
|
|
144
|
+
*
|
|
145
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
146
|
+
* @returns the stored email, or `null` when none has been remembered
|
|
147
|
+
*/
|
|
148
|
+
const kitRecallEmail = (store) => store.get(KIT_LAST_AUTH_EMAIL_KEY);
|
|
149
|
+
/**
|
|
150
|
+
* Forget the remembered email.
|
|
151
|
+
*
|
|
152
|
+
* @remarks
|
|
153
|
+
* Called when the user intentionally clears or invalidates the field, so a stale prefill is not
|
|
154
|
+
* resurrected next time.
|
|
155
|
+
*
|
|
156
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
157
|
+
*/
|
|
158
|
+
const kitForgetEmail = (store) => store.remove(KIT_LAST_AUTH_EMAIL_KEY);
|
|
159
|
+
|
|
103
160
|
/**
|
|
104
161
|
* Injection token carrying the {@link KitOverlayConfig} for `KitOverlayController`.
|
|
105
162
|
*
|
|
@@ -661,41 +718,73 @@ const kitPresentLanguageActionSheet = async (actionSheetCtrl, options) => {
|
|
|
661
718
|
};
|
|
662
719
|
|
|
663
720
|
/**
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
*
|
|
667
|
-
*
|
|
668
|
-
*
|
|
669
|
-
* the
|
|
670
|
-
*
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
* `
|
|
674
|
-
*
|
|
675
|
-
*
|
|
676
|
-
*
|
|
677
|
-
*
|
|
678
|
-
*
|
|
721
|
+
* Input conveniences for an `ion-input` in a sign-in / sign-up form, applied via the `kitAuthInput`
|
|
722
|
+
* attribute. The mode is a typed union so a typo is a compile-time error.
|
|
723
|
+
*
|
|
724
|
+
* 1. **iOS autofill propagation (always on, every mode).** On iOS, when the browser autofills an
|
|
725
|
+
* `ion-input` (e.g. a saved password) the value is written to the underlying native `<input>`
|
|
726
|
+
* but the `change` event is not forwarded to the host `ion-input`, so the Angular form model
|
|
727
|
+
* never sees it. This directive mirrors the first inner-input `change` back onto the host,
|
|
728
|
+
* restoring two-way binding. It is a no-op on every other platform.
|
|
729
|
+
*
|
|
730
|
+
* 2. **Remember / prefill the email (`'email'` and `'email-remember'`).**
|
|
731
|
+
* - `'email'` (sign-in) — on init recalls the last entered email and, *only while the field is
|
|
732
|
+
* still empty*, seeds it via the bound Signal Forms field, so a browser/OS autofill the user
|
|
733
|
+
* actually picks always wins over the prefill. On every committed change (`ionChange`) it
|
|
734
|
+
* remembers a well-formed address, or **forgets** the stored one when the field is cleared
|
|
735
|
+
* (empty after trim) or holds an invalid address — the user intentionally removing the prefill.
|
|
736
|
+
* - `'email-remember'` (sign-up) — remembers a well-formed address on change, but never prefills
|
|
737
|
+
* and never forgets. So the first-sign-up address is captured without pre-populating a
|
|
738
|
+
* stranger's email into a new-account form, and clearing the field does not wipe an email
|
|
739
|
+
* remembered elsewhere.
|
|
740
|
+
*
|
|
741
|
+
* A well-formed email is persisted even if it later fails to sign in — by design; the user simply
|
|
742
|
+
* re-enters it. A malformed/partial entry is never stored (see {@link kitRememberEmail}).
|
|
679
743
|
*
|
|
680
744
|
* @example
|
|
681
745
|
* ```html
|
|
682
|
-
*
|
|
746
|
+
* <!-- sign-in email: iOS autofill + prefill + remember/forget -->
|
|
747
|
+
* <ion-input type="email" autocomplete="email" kitAuthInput="email" [formField]="form.email" />
|
|
748
|
+
* <!-- sign-up email: remember only -->
|
|
749
|
+
* <ion-input type="email" autocomplete="email" kitAuthInput="email-remember" [formField]="form.email" />
|
|
750
|
+
* <!-- password: iOS autofill propagation only -->
|
|
751
|
+
* <ion-input type="password" autocomplete="current-password" kitAuthInput="autofill" [formField]="form.password" />
|
|
683
752
|
* ```
|
|
753
|
+
*
|
|
754
|
+
* @remarks
|
|
755
|
+
* Prefill writes through the Signal Forms `FORM_FIELD` bound on the same element; with no such field
|
|
756
|
+
* (e.g. `ngModel` / reactive forms) prefill is skipped — remember/forget still work off the DOM
|
|
757
|
+
* event. Storage is resolved lazily so the iOS mirror still works in apps without `@ionic/storage`.
|
|
684
758
|
*/
|
|
685
|
-
class
|
|
686
|
-
#el
|
|
687
|
-
|
|
759
|
+
class KitAuthInputDirective {
|
|
760
|
+
#el;
|
|
761
|
+
#injector;
|
|
762
|
+
/** The Signal Forms field bound on this same element, if any (used to seed the prefill). */
|
|
763
|
+
#field;
|
|
764
|
+
constructor() {
|
|
765
|
+
this.#el = inject(ElementRef);
|
|
766
|
+
this.#injector = inject(Injector);
|
|
767
|
+
/** The Signal Forms field bound on this same element, if any (used to seed the prefill). */
|
|
768
|
+
this.#field = inject(FORM_FIELD, { optional: true, self: true });
|
|
769
|
+
/** Mode selector; see {@link KitAuthInputMode}. */
|
|
770
|
+
this.kitAuthInput = input('autofill', ...(ngDevMode ? [{ debugName: "kitAuthInput" }] : /* istanbul ignore next */ []));
|
|
771
|
+
/** Whether this instance persists the entered email (`'email'` or `'email-remember'`). */
|
|
772
|
+
this.#remembers = computed(() => {
|
|
773
|
+
const mode = this.kitAuthInput();
|
|
774
|
+
return mode === 'email' || mode === 'email-remember';
|
|
775
|
+
}, ...(ngDevMode ? [{ debugName: "#remembers" }] : /* istanbul ignore next */ []));
|
|
776
|
+
/** Whether this instance prefills the field from storage (`'email'` only). */
|
|
777
|
+
this.#prefills = computed(() => this.kitAuthInput() === 'email', ...(ngDevMode ? [{ debugName: "#prefills" }] : /* istanbul ignore next */ []));
|
|
778
|
+
/** Whether clearing/invalidating the field forgets the stored email (`'email'` only). */
|
|
779
|
+
this.#forgetsOnClear = computed(() => this.kitAuthInput() === 'email', ...(ngDevMode ? [{ debugName: "#forgetsOnClear" }] : /* istanbul ignore next */ []));
|
|
780
|
+
}
|
|
688
781
|
/**
|
|
689
|
-
* Register the iOS autofill workaround
|
|
690
|
-
*
|
|
691
|
-
* Returns immediately on non-iOS platforms. On iOS, after a short delay it attaches a one-shot,
|
|
692
|
-
* passive `change` listener to the inner `<input>` element that `ion-input` renders, copying the
|
|
693
|
-
* autofilled value back onto the host element so the Angular form model stays in sync. Any error
|
|
694
|
-
* while locating the inner input (for example if the element is not yet present) is swallowed.
|
|
695
|
-
*
|
|
696
|
-
* @returns Nothing.
|
|
782
|
+
* Register the iOS autofill workaround and, in `'email'` mode, seed the field from storage.
|
|
697
783
|
*/
|
|
698
784
|
ngOnInit() {
|
|
785
|
+
if (this.#prefills()) {
|
|
786
|
+
void this.#prefillEmail();
|
|
787
|
+
}
|
|
699
788
|
if (Capacitor.getPlatform() !== 'ios') {
|
|
700
789
|
return;
|
|
701
790
|
}
|
|
@@ -714,16 +803,75 @@ class KitAutofillDirective {
|
|
|
714
803
|
}
|
|
715
804
|
}, 100); // Need some time for the ion-input to create the input element
|
|
716
805
|
}
|
|
717
|
-
|
|
718
|
-
|
|
806
|
+
/**
|
|
807
|
+
* On every committed change (`ionChange`): remember a well-formed email, or — only in the
|
|
808
|
+
* prefilling `'email'` (sign-in) mode — forget the stored one when the field is cleared or invalid,
|
|
809
|
+
* which is the user intentionally removing the prefill. `'email-remember'` never forgets, so
|
|
810
|
+
* editing the sign-up field cannot wipe an email remembered from sign-in.
|
|
811
|
+
*/
|
|
812
|
+
onIonChange(event) {
|
|
813
|
+
if (!this.#remembers()) {
|
|
814
|
+
return;
|
|
815
|
+
}
|
|
816
|
+
const storage = this.#resolveStorage();
|
|
817
|
+
if (!storage) {
|
|
818
|
+
return;
|
|
819
|
+
}
|
|
820
|
+
const value = event.detail?.value ?? '';
|
|
821
|
+
if (value.trim().length > 0 && kitIsValidEmail(value)) {
|
|
822
|
+
void kitRememberEmail(storage, value);
|
|
823
|
+
}
|
|
824
|
+
else if (this.#forgetsOnClear()) {
|
|
825
|
+
void kitForgetEmail(storage);
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
/** Whether this instance persists the entered email (`'email'` or `'email-remember'`). */
|
|
829
|
+
#remembers;
|
|
830
|
+
/** Whether this instance prefills the field from storage (`'email'` only). */
|
|
831
|
+
#prefills;
|
|
832
|
+
/** Whether clearing/invalidating the field forgets the stored email (`'email'` only). */
|
|
833
|
+
#forgetsOnClear;
|
|
834
|
+
/** Resolve `KitStorageService` lazily; returns `null` when storage is not configured. */
|
|
835
|
+
#resolveStorage() {
|
|
836
|
+
try {
|
|
837
|
+
return this.#injector.get(KitStorageService);
|
|
838
|
+
}
|
|
839
|
+
catch {
|
|
840
|
+
return null;
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
/**
|
|
844
|
+
* Seed the bound field with the remembered email, but only while it is still empty — so a value
|
|
845
|
+
* the browser/OS autofills during the async recall is not clobbered.
|
|
846
|
+
*/
|
|
847
|
+
async #prefillEmail() {
|
|
848
|
+
const field = this.#field;
|
|
849
|
+
if (!field) {
|
|
850
|
+
return;
|
|
851
|
+
}
|
|
852
|
+
const storage = this.#resolveStorage();
|
|
853
|
+
if (!storage) {
|
|
854
|
+
return;
|
|
855
|
+
}
|
|
856
|
+
const last = await kitRecallEmail(storage);
|
|
857
|
+
const state = field.state();
|
|
858
|
+
if (last && !state.value()) {
|
|
859
|
+
state.value.set(last);
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: KitAuthInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
863
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.17", type: KitAuthInputDirective, isStandalone: true, selector: "[kitAuthInput]", inputs: { kitAuthInput: { classPropertyName: "kitAuthInput", publicName: "kitAuthInput", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "ionChange": "onIonChange($event)" } }, ngImport: i0 }); }
|
|
719
864
|
}
|
|
720
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type:
|
|
865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: KitAuthInputDirective, decorators: [{
|
|
721
866
|
type: Directive,
|
|
722
867
|
args: [{
|
|
723
|
-
selector: '[
|
|
868
|
+
selector: '[kitAuthInput]',
|
|
724
869
|
standalone: true,
|
|
725
870
|
}]
|
|
726
|
-
}], ctorParameters: () => [] }
|
|
871
|
+
}], ctorParameters: () => [], propDecorators: { kitAuthInput: [{ type: i0.Input, args: [{ isSignal: true, alias: "kitAuthInput", required: false }] }], onIonChange: [{
|
|
872
|
+
type: HostListener,
|
|
873
|
+
args: ['ionChange', ['$event']]
|
|
874
|
+
}] } });
|
|
727
875
|
|
|
728
876
|
const keyboardWillShow = (elementRef, type) => Keyboard.addListener('keyboardWillShow', (info) => {
|
|
729
877
|
if (Capacitor.getPlatform() === 'android') {
|
|
@@ -1386,5 +1534,5 @@ const kitCreateDidEnter = (el) => {
|
|
|
1386
1534
|
* Generated bundle index. Do not edit.
|
|
1387
1535
|
*/
|
|
1388
1536
|
|
|
1389
|
-
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_OVERLAY_CONFIG,
|
|
1537
|
+
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_LAST_AUTH_EMAIL_KEY, KIT_OVERLAY_CONFIG, KitAuthInputDirective, KitLoadingController, KitOverlayController, KitReloadAlertController, KitStorageService, arrayConcatById, disableHandler, kitAuthInterceptor, kitChangeEventDisabled, kitCreateDidEnter, kitForgetEmail, kitImpact, kitIsValidEmail, kitKeyboardInit, kitPresentAuthFailedAlert, kitPresentLanguageActionSheet, kitRecallEmail, kitRememberEmail, kitRequireAuthorizedGuard, kitRequireConfirmingGuard, kitRequiredUnauthorizedGuard, objectEqual, provideKitAuth, provideKitHttp, provideKitOverlay };
|
|
1390
1538
|
//# sourceMappingURL=rdlabo-ionic-angular-kit.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rdlabo-ionic-angular-kit.mjs","sources":["../../../projects/kit/src/lib/storage/kit-storage.service.ts","../../../projects/kit/src/lib/overlay/overlay-config.ts","../../../projects/kit/src/lib/utils/haptics.ts","../../../projects/kit/src/lib/overlay/kit-overlay.controller.ts","../../../projects/kit/src/lib/overlay/kit-loading.controller.ts","../../../projects/kit/src/lib/overlay/kit-reload-alert.controller.ts","../../../projects/kit/src/lib/overlay/kit-auth-failed-alert.ts","../../../projects/kit/src/lib/overlay/kit-language-action-sheet.ts","../../../projects/kit/src/lib/directives/autofill.directive.ts","../../../projects/kit/src/lib/keyboard/kit-keyboard.ts","../../../projects/kit/src/lib/auth/auth-guards.ts","../../../projects/kit/src/lib/http/kit-http.interceptor.ts","../../../projects/kit/src/lib/utils/array.ts","../../../projects/kit/src/lib/utils/object.ts","../../../projects/kit/src/lib/utils/dom.ts","../../../projects/kit/src/lib/utils/ionic-scroll-event.ts","../../../projects/kit/src/lib/utils/ionic-view-enter.ts","../../../projects/kit/src/public-api.ts","../../../projects/kit/src/rdlabo-ionic-angular-kit.ts"],"sourcesContent":["import { inject, Injectable } from '@angular/core';\nimport { Storage } from '@ionic/storage-angular';\n\n/**\n * Thin, typed wrapper around `@ionic/storage-angular`.\n *\n * Starts `create()` exactly once and stores the resulting ready Promise. Every operation awaits\n * that Promise before touching the underlying store, so calls made before initialization completes\n * are queued rather than dropped.\n *\n * @remarks\n * A naive wrapper that reads the store synchronously would silently no-op (or throw) when invoked\n * before `create()` resolves, losing early writes. Awaiting the one-time ready Promise on every\n * operation removes that race without forcing callers to coordinate initialization themselves.\n *\n * @example\n * ```ts\n * constructor(private readonly storage: KitStorageService) {}\n *\n * async ngOnInit(): Promise<void> {\n * await this.storage.set('token', 'abc123');\n * const token = await this.storage.get<string>('token');\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitStorageService {\n /** One-time `create()` ready Promise; awaited before every operation so early calls are not lost. */\n readonly #ready: Promise<Storage> = inject(Storage).create();\n\n /**\n * Persist a value under the given key.\n *\n * @typeParam T - type of the value being stored\n * @param key - key to store the value under\n * @param value - value to persist; overwrites any existing value for the key\n * @returns a Promise that resolves once the value has been written\n * @example\n * ```ts\n * await storage.set('user', { id: 1, name: 'Ada' });\n * ```\n */\n async set<T>(key: string, value: T): Promise<void> {\n await (await this.#ready).set(key, value);\n }\n\n /**\n * Read the value stored under the given key.\n *\n * @typeParam T - expected type of the stored value\n * @param key - key to read\n * @returns the stored value, or `null` when the key is absent\n * @example\n * ```ts\n * const user = await storage.get<{ id: number }>('user');\n * ```\n */\n async get<T>(key: string): Promise<T | null> {\n return (await (await this.#ready).get(key)) ?? null;\n }\n\n /**\n * Remove the value stored under the given key.\n *\n * @param key - key to remove; a no-op when the key is absent\n * @returns a Promise that resolves once the key has been removed\n */\n async remove(key: string): Promise<void> {\n await (await this.#ready).remove(key);\n }\n\n /**\n * Remove every key/value pair from the store.\n *\n * @returns a Promise that resolves once the store has been emptied\n */\n async clear(): Promise<void> {\n await (await this.#ready).clear();\n }\n\n /**\n * List every key currently present in the store.\n *\n * @returns an array of all stored keys\n */\n async keys(): Promise<string[]> {\n return (await this.#ready).keys();\n }\n}\n","import type { EnvironmentProviders } from '@angular/core';\nimport { InjectionToken, makeEnvironmentProviders } from '@angular/core';\n\n/**\n * User-visible button labels consumed by `KitOverlayController`.\n *\n * @remarks\n * The kit deliberately ships no i18n strings of its own and has no hard dependency on\n * `@angular/localize`. The consuming application always provides these labels: multilingual apps\n * pass `$localize`-resolved strings, single-language apps pass plain literals.\n */\nexport interface KitLabels {\n /** Text for the \"close\" button used by alerts and toasts. */\n readonly close: string;\n /** Text for the \"cancel\" button used by confirmation alerts. */\n readonly cancel: string;\n}\n\n/**\n * Overlay configuration injected via `provideKitOverlay()`.\n *\n * @remarks\n * All fields are required; the consuming application must supply a complete configuration.\n */\nexport interface KitOverlayConfig {\n /** Button labels used across the overlays presented by `KitOverlayController`. */\n readonly labels: KitLabels;\n}\n\n/**\n * Injection token carrying the {@link KitOverlayConfig} for `KitOverlayController`.\n *\n * @remarks\n * Provide it through {@link provideKitOverlay} rather than registering it directly.\n */\nexport const KIT_OVERLAY_CONFIG = new InjectionToken<KitOverlayConfig>('@rdlabo/ionic-angular-kit:overlay');\n\n/**\n * Wire `KitOverlayController` into the application by providing its button labels.\n *\n * @param config - overlay configuration, including the button labels to inject\n * @returns environment providers to add to the application's provider list\n * @example\n * ```ts\n * bootstrapApplication(AppComponent, {\n * providers: [\n * provideKitOverlay({ labels: { close: $localize`Close`, cancel: $localize`Cancel` } }),\n * ],\n * });\n * ```\n */\nexport const provideKitOverlay = (config: KitOverlayConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_OVERLAY_CONFIG, useValue: config }]);\n","import { Capacitor } from '@capacitor/core';\nimport { Haptics, ImpactStyle } from '@capacitor/haptics';\n\n/**\n * Trigger native haptic impact feedback.\n *\n * Delegates to `@capacitor/haptics` `Haptics.impact()` when running on a native platform. On the\n * web (or any non-native platform) it is a no-op and resolves without doing anything.\n *\n * @remarks\n * This haptic side effect was previously bundled implicitly into toast/modal presentation. It has\n * been decoupled into this explicit function so callers opt in to the feedback deliberately, rather\n * than receiving it as a hidden side effect of presenting UI.\n *\n * @param style - The impact intensity to play. Defaults to {@link ImpactStyle.Light}.\n * @returns A promise that resolves once the feedback has been requested (immediately on the web).\n * @example\n * ```ts\n * import { ImpactStyle } from '@capacitor/haptics';\n *\n * // Light tap (default)\n * await kitImpact();\n *\n * // Stronger feedback, e.g. on a confirming action\n * await kitImpact(ImpactStyle.Heavy);\n * ```\n */\nexport const kitImpact = async (style: ImpactStyle = ImpactStyle.Light): Promise<void> => {\n if (Capacitor.isNativePlatform()) {\n await Haptics.impact({ style });\n }\n};\n","import { inject, Injectable } from '@angular/core';\nimport type { InputSignalWithTransform } from '@angular/core';\nimport type { ModalOptions, PopoverOptions, ToastOptions } from '@ionic/angular/standalone';\nimport { AlertController, ModalController, PopoverController, ToastController } from '@ionic/angular/standalone';\nimport type { PluginListenerHandle } from '@capacitor/core';\nimport { Capacitor } from '@capacitor/core';\nimport { Keyboard } from '@capacitor/keyboard';\nimport { KIT_OVERLAY_CONFIG } from './overlay-config';\nimport { kitImpact } from '../utils/haptics';\n\n/**\n * Options for {@link KitOverlayController.presentModal}.\n *\n * @remarks\n * Extends Ionic's `ModalOptions` but omits `component` and `componentProps`, which are passed as\n * dedicated arguments instead.\n */\nexport interface KitModalPresentOptions extends Omit<ModalOptions, 'component' | 'componentProps'> {\n /**\n * When `true`, expand the sheet to its maximum breakpoint while the native keyboard is shown.\n *\n * @remarks\n * Only has an effect on native platforms; ignored on the web.\n */\n watchKeyboard?: boolean;\n}\n\n/**\n * Optional static metadata a modal component may declare to make {@link KitOverlayController.presentModal}\n * type-safe in its dismiss data: the value passed to `dismiss()` is inferred from `modalReturn`.\n *\n * @remarks\n * Props do *not* need to be declared here — {@link KitOverlayController.presentModal} infers them directly\n * from the component's `input()` fields (see {@link ModalPropsOf}), so `input()` stays the single source of\n * truth and can never drift from a hand-written declaration. Only the dismiss-data shape, which has no\n * counterpart on the component, is declared — as a `declare static modalReturn` phantom type with no runtime\n * value, so it adds nothing to the bundle.\n *\n * @example\n * ```ts\n * export class EditPage {\n * declare static modalReturn: { saved: boolean };\n * readonly id = input.required<number>(); // props are inferred from here\n * readonly note = input<string>(); // default-less input() → optional prop\n * }\n *\n * // Caller — `id` is required (input.required), `note` optional; result is `{ saved: boolean } | undefined`:\n * const result = await overlay.presentModal(EditPage, { id: 1 });\n * ```\n */\nexport interface ModalMetadata<R = unknown> {\n /** Shape of the data the modal resolves with when dismissed. */\n modalReturn?: R;\n}\n\n/**\n * Write type of a signal `input()` field (unwraps `input.required`, `input()` and transform inputs).\n *\n * @remarks\n * Matched with `any` (not `unknown`): `InputSignalWithTransform`'s `TransformT` is contravariant, so\n * `InputSignal<number>` is not assignable to `InputSignalWithTransform<unknown, unknown>`.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype InputWriteType<F> = F extends InputSignalWithTransform<any, infer W> ? W : never;\n\n/** Instance type of a component constructor; `never` for non-class components (string / HTMLElement refs). */\ntype InstanceOf<C> = C extends abstract new (...args: never[]) => infer I ? I : never;\n\n/** Keys of the `input()` signal fields on a component instance. */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype InputFieldKeys<I> = { [K in keyof I]-?: I[K] extends InputSignalWithTransform<any, any> ? K : never }[keyof I];\n\n/**\n * Props object inferred from a component's `input()` fields. Required vs. optional is decided by the write\n * type: `input.required<T>()` / `input<T>(default)` yield `T` (no `undefined`) → required prop, while a\n * default-less `input<T>()` yields `T | undefined` → optional prop.\n *\n * @remarks\n * Angular's types cannot distinguish `input.required<T>()` from a defaulted `input<T>(default)` — both are\n * `InputSignal<T>` — so a defaulted input is (safely) treated as required. Declare inputs you want to omit at\n * the call site as default-less `input<T>()`.\n */\ntype ModalPropsOf<I> = { [K in InputFieldKeys<I> as undefined extends InputWriteType<I[K]> ? never : K]: InputWriteType<I[K]> } & {\n [K in InputFieldKeys<I> as undefined extends InputWriteType<I[K]> ? K : never]?: InputWriteType<I[K]>;\n};\n\n/** `input()` keys whose write type excludes `undefined` (required / defaulted inputs). Empty when none. */\ntype RequiredInputKeys<I> = { [K in InputFieldKeys<I>]: undefined extends InputWriteType<I[K]> ? never : K }[InputFieldKeys<I>];\n\n/**\n * Dismiss-data type inferred from a component's static {@link ModalMetadata.modalReturn}. A component that\n * declares no `modalReturn` resolves to `void`: it is treated as returning no dismiss data, so the compiler\n * rejects any attempt to read the result. Declare `modalReturn` on modals that do resolve with data.\n */\ntype ModalReturnOf<C> = C extends { modalReturn: infer R } ? R : void;\n\n/** Loose trailing args (optional, untyped props) — used when a component exposes no signal `input()` fields. */\ntype LooseModalPresentArgs = [componentProps?: ModalOptions['componentProps'], options?: KitModalPresentOptions];\n\n/**\n * Trailing `presentModal` args derived from a component's `input()` fields: props are inferred and typed via\n * {@link ModalPropsOf}. When the component declares at least one required input the props argument is required;\n * when every input is optional the props argument itself is optional. Components with no signal inputs (plain\n * classes, `@Input()`-decorator components, or non-class refs) fall back to loose, untyped props.\n */\ntype ModalPresentArgs<C, I = InstanceOf<C>> = [I] extends [never]\n ? LooseModalPresentArgs\n : [InputFieldKeys<I>] extends [never]\n ? LooseModalPresentArgs\n : [RequiredInputKeys<I>] extends [never]\n ? [componentProps?: ModalPropsOf<I>, options?: KitModalPresentOptions]\n : [componentProps: ModalPropsOf<I>, options?: KitModalPresentOptions];\n\n/**\n * Options for {@link KitOverlayController.alertClose}.\n */\nexport interface KitAlertCloseOptions {\n /** Alert header text. */\n header: string;\n /** Alert body message. */\n message: string;\n /** Optional alert sub-header text shown beneath the header. */\n subHeader?: string;\n}\n\n/**\n * Options for {@link KitOverlayController.alertConfirm}.\n *\n * @remarks\n * Extends {@link KitAlertCloseOptions} with the confirm-button text.\n */\nexport interface KitAlertConfirmOptions extends KitAlertCloseOptions {\n /**\n * Text for the OK (confirm) button.\n *\n * @remarks\n * Action-specific, so it is supplied by the caller rather than taken from the shared labels.\n */\n okText: string;\n}\n\n/**\n * Attach a native keyboard listener that grows the modal to its maximum breakpoint when the\n * keyboard appears.\n *\n * @param modal - the presented modal element to resize\n * @returns a listener handle; on non-native platforms a no-op handle whose `remove()` does nothing\n * @internal\n */\nconst watchModalKeyboard = async (modal: HTMLIonModalElement): Promise<PluginListenerHandle> => {\n if (!Capacitor.isNativePlatform()) {\n return { remove: async () => undefined };\n }\n return Keyboard.addListener('keyboardDidShow', () => modal.setCurrentBreakpoint(1));\n};\n\n/**\n * Ergonomic wrapper that consolidates Ionic's overlay controllers (Modal / Toast / Alert).\n *\n * @remarks\n * Folds the repetitive create → present → onDidDismiss sequence into single calls and returns the\n * relevant result directly. It holds no application-specific policy such as navigation; compose\n * those concerns on the consuming side.\n *\n * @example\n * ```ts\n * constructor(private readonly overlay: KitOverlayController) {}\n *\n * async edit(): Promise<void> {\n * const result = await this.overlay.presentModal(EditPage, { id: 1 });\n * if (result) {\n * await this.overlay.presentToast({ message: 'Saved' });\n * }\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitOverlayController {\n readonly #modalCtrl = inject(ModalController);\n readonly #popoverCtrl = inject(PopoverController);\n readonly #toastCtrl = inject(ToastController);\n readonly #alertCtrl = inject(AlertController);\n readonly #labels = inject(KIT_OVERLAY_CONFIG).labels;\n\n /**\n * Guards against stacking alerts: while one {@link alertClose} / {@link alertConfirm} is on screen,\n * a concurrent call resolves immediately (close: no-op, confirm: `false`) instead of presenting a\n * second alert on top of the first. Shared across both methods so a confirm cannot stack over a close.\n */\n #alertPresenting = false;\n\n /**\n * Present a modal and resolve with the data passed to its dismissal.\n *\n * @typeParam O - type of the data returned when the modal is dismissed\n * @param component - the component to render inside the modal\n * @param componentProps - props to pass to the modal component\n * @param options - additional modal options, including {@link KitModalPresentOptions.watchKeyboard}\n * @returns the dismiss data, or `undefined` when the modal is dismissed without data\n * @remarks\n * Presenting a modal triggers light native haptic feedback as an intentional kit UX choice,\n * consistent with {@link presentPopover} and {@link presentToast}.\n *\n * Props are inferred from the component's `input()` fields (see {@link ModalPropsOf}): required inputs\n * become required props, so the compiler rejects a call that omits them. The return type is inferred from\n * a static `modalReturn` (see {@link ModalMetadata}); a component with no `modalReturn` resolves to `void`\n * — the modal is treated as returning no dismiss data.\n * @example\n * ```ts\n * // Inferred — `id` required (input.required), `note` optional; result is `{ saved: boolean } | undefined`:\n * const result = await overlay.presentModal(EditPage, { id: 1 });\n * ```\n */\n presentModal<C extends ModalOptions['component']>(component: C, ...args: ModalPresentArgs<C>): Promise<ModalReturnOf<C> | undefined>;\n async presentModal(\n component: ModalOptions['component'],\n componentProps?: ModalOptions['componentProps'],\n options: KitModalPresentOptions = {},\n ): Promise<unknown> {\n void kitImpact();\n const { watchKeyboard, ...modalOptions } = options;\n const modal = await this.#modalCtrl.create({ component, componentProps, ...modalOptions });\n await modal.present();\n const handle = watchKeyboard ? await watchModalKeyboard(modal) : null;\n const { data } = await modal.onDidDismiss<unknown>();\n await handle?.remove();\n return data;\n }\n\n /**\n * Present a popover and resolve with the data passed to its dismissal.\n *\n * @typeParam O - type of the data returned when the popover is dismissed\n * @param component - the component to render inside the popover\n * @param componentProps - props to pass to the popover component\n * @param options - additional popover options (for example `event` to anchor it, or `cssClass`)\n * @returns the dismiss data, or `undefined` when the popover is dismissed without data\n * @remarks\n * Presenting a popover triggers light native haptic feedback as an intentional kit UX choice,\n * consistent with {@link presentModal} and {@link presentToast}.\n * @example\n * ```ts\n * const choice = await overlay.presentPopover<MenuChoice>(MenuPopover, { items }, { event });\n * ```\n */\n async presentPopover<O = unknown>(\n component: PopoverOptions['component'],\n componentProps?: PopoverOptions['componentProps'],\n options: Omit<PopoverOptions, 'component' | 'componentProps'> = {},\n ): Promise<O | undefined> {\n void kitImpact();\n const popover = await this.#popoverCtrl.create({ component, componentProps, ...options });\n await popover.present();\n const { data } = await popover.onDidDismiss<O>();\n return data;\n }\n\n /**\n * Present a toast using kit defaults that the caller may override.\n *\n * @remarks\n * Defaults to a bottom position, a 2000ms duration, a vertical swipe gesture, and a close button\n * from the configured labels; any of these can be overridden via `options`. Presenting a toast\n * also triggers light native haptic feedback as an intentional kit UX choice.\n *\n * Bottom is the fleet-wide default (top left the toast fighting the tab bar and the keyboard).\n * For a bottom toast with no explicit `positionAnchor`, if a visible `ion-tab-bar` is present the\n * toast is automatically anchored above it (Ionic places a bottom toast above its `positionAnchor`),\n * so the toast never sits behind the tabs. Avoiding the on-screen keyboard is handled by the native\n * keyboard resize — the anchored/bottom toast rides the shrinking viewport above the keyboard;\n * Ionic itself has no toast keyboard-avoidance option. An app can override either via `options`.\n *\n * @param options - Ionic toast options that override the kit defaults\n * @returns the presented toast element\n * @example\n * ```ts\n * await overlay.presentToast({ message: 'Copied to clipboard' });\n * ```\n */\n async presentToast(options: ToastOptions): Promise<HTMLIonToastElement> {\n void kitImpact();\n const merged: ToastOptions = {\n position: 'bottom',\n duration: 2000,\n buttons: [this.#labels.close],\n swipeGesture: 'vertical',\n ...options,\n };\n // Anchor a bottom toast above the tab bar when one is visibly present and the caller did not\n // set an explicit anchor, so the toast clears the tabs (and rides the keyboard-resized viewport).\n if (merged.position === 'bottom' && merged.positionAnchor === undefined) {\n const tabBar = document.querySelector('ion-tab-bar');\n if (tabBar && tabBar.getBoundingClientRect().height > 0) {\n merged.positionAnchor = tabBar as HTMLElement;\n }\n }\n const toast = await this.#toastCtrl.create(merged);\n await toast.present();\n return toast;\n }\n\n /**\n * Present a notification alert with a single \"close\" button and wait for it to be dismissed.\n *\n * @param options - alert content (header, message, optional sub-header)\n * @returns a Promise that resolves once the alert has been dismissed\n * @remarks\n * No-ops when another alert is already presenting (see {@link alertClose} / {@link alertConfirm}\n * stacking guard).\n * @example\n * ```ts\n * await overlay.alertClose({ header: 'Done', message: 'Your changes were saved.' });\n * ```\n */\n async alertClose(options: KitAlertCloseOptions): Promise<void> {\n if (this.#alertPresenting) {\n return;\n }\n this.#alertPresenting = true;\n try {\n const alert = await this.#alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [this.#labels.close],\n });\n await alert.present();\n await alert.onWillDismiss();\n } finally {\n this.#alertPresenting = false;\n }\n }\n\n /**\n * Present a confirmation alert with cancel and OK buttons.\n *\n * @param options - alert content plus the OK button text via {@link KitAlertConfirmOptions.okText}\n * @returns `true` when the user presses OK, `false` otherwise (cancel or backdrop dismissal)\n * @example\n * ```ts\n * const ok = await overlay.alertConfirm({\n * header: 'Delete item?',\n * message: 'This cannot be undone.',\n * okText: 'Delete',\n * });\n * if (ok) {\n * await remove();\n * }\n * ```\n * @remarks\n * Returns `false` immediately when another alert is already presenting (see {@link alertClose} /\n * {@link alertConfirm} stacking guard).\n */\n async alertConfirm(options: KitAlertConfirmOptions): Promise<boolean> {\n if (this.#alertPresenting) {\n return false;\n }\n this.#alertPresenting = true;\n try {\n const alert = await this.#alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [\n { text: this.#labels.cancel, role: 'cancel' },\n { text: options.okText, role: 'confirm' },\n ],\n });\n await alert.present();\n const { role } = await alert.onWillDismiss();\n return role === 'confirm';\n } finally {\n this.#alertPresenting = false;\n }\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport type { LoadingOptions } from '@ionic/angular/standalone';\nimport { LoadingController } from '@ionic/angular/standalone';\n\n/**\n * Reference-counted wrapper around Ionic's `LoadingController` that keeps at most one loading\n * indicator on screen across concurrent async work.\n *\n * @remarks\n * Each {@link presentLoading} increments a counter and each {@link dismissLoading} decrements it; the\n * indicator is presented on the `0 → 1` transition and dismissed on the `N → 0` transition. This\n * removes the flicker / \"stuck spinner\" bugs that come from every service calling\n * `LoadingController.create/dismiss` independently.\n *\n * All operations are serialized through an internal promise chain, so a `create → present` sequence\n * can never interleave with a concurrent `dismiss`. That is what makes the counter race-safe: a\n * dismiss that arrives while the indicator is still being presented runs *after* `present()` settles\n * and therefore tears the element down instead of leaving it orphaned on screen.\n *\n * Always pair every `presentLoading()` with exactly one `dismissLoading()` — a `try/finally` is the\n * safest shape.\n *\n * @example\n * ```ts\n * constructor(private readonly loading: KitLoadingController) {}\n *\n * async save(): Promise<void> {\n * await this.loading.presentLoading({ message: 'Saving…' });\n * try {\n * await this.api.save();\n * } finally {\n * await this.loading.dismissLoading();\n * }\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitLoadingController {\n readonly #loadingCtrl = inject(LoadingController);\n\n /** Outstanding {@link presentLoading} calls not yet balanced by {@link dismissLoading}. */\n #count = 0;\n\n /** The single presented loading element, or `null` when none is on screen. */\n #loading: HTMLIonLoadingElement | null = null;\n\n /**\n * Serializes present/dismiss operations. Each call chains onto this promise, runs after the\n * previous operation has fully settled, then reads {@link #count} and acts accordingly.\n */\n #queue: Promise<void> = Promise.resolve();\n\n /**\n * Show the loading indicator, or join the one already on screen.\n *\n * @param options - Ionic loading options; only applied by the call that actually creates the\n * indicator (the `0 → 1` transition). Ignored while an indicator is already present.\n * @returns a Promise that resolves once the indicator is on screen (or immediately when one already is)\n */\n async presentLoading(options: LoadingOptions = {}): Promise<void> {\n this.#count++;\n try {\n await this.#enqueue(async () => {\n // Create only on the transition into \"something is loading\"; concurrent callers ride the same\n // element. Re-check the count in case a dismiss already balanced this call while queued.\n if (this.#count > 0 && this.#loading === null) {\n const loading = await this.#loadingCtrl.create(options);\n await loading.present();\n this.#loading = loading;\n }\n });\n } catch (error) {\n // Roll back the reference this call took: a failed create/present must not leave the counter\n // elevated, otherwise a later cycle never reaches N → 0 and the spinner stays stuck on screen.\n this.#count--;\n throw error;\n }\n }\n\n /**\n * Release one reference; dismiss the indicator once the last reference is gone.\n *\n * @returns a Promise that resolves once the reference is released (and the indicator dismissed if\n * this was the last one). No-ops when the counter is already at zero.\n */\n async dismissLoading(): Promise<void> {\n if (this.#count === 0) {\n return;\n }\n this.#count--;\n await this.#enqueue(async () => {\n // Tear down only when the last consumer is gone. Because this runs after any in-flight\n // present() has settled (via the queue), there is never an orphaned loading element.\n if (this.#count === 0 && this.#loading !== null) {\n const loading = this.#loading;\n this.#loading = null;\n await loading.dismiss();\n }\n });\n }\n\n /**\n * Append `task` to the serialization chain and return its completion.\n *\n * @remarks\n * The stored chain swallows rejections so a single failing operation cannot wedge every future\n * overlay; the returned promise still rejects so the caller observes the error.\n */\n #enqueue(task: () => Promise<void>): Promise<void> {\n const run = this.#queue.then(task);\n this.#queue = run.then(\n () => undefined,\n () => undefined,\n );\n return run;\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport { AlertController } from '@ionic/angular/standalone';\nimport { KIT_OVERLAY_CONFIG } from './overlay-config';\n\n/**\n * Content for {@link KitReloadAlertController.present}.\n */\nexport interface KitReloadAlertOptions {\n /** Alert header text. */\n header: string;\n /** Alert body message. */\n message: string;\n /**\n * Text for the reload (confirm) button, e.g. \"リフレッシュ\".\n *\n * @remarks\n * Action-specific, so it is supplied by the caller rather than taken from the shared labels.\n * The cancel button uses the configured {@link KitLabels.cancel}.\n */\n okText: string;\n}\n\n/**\n * The fleet's canonical \"network error → offer to reload\" alert, as a stateful controller.\n *\n * @remarks\n * Consolidates the good-UX variant that had drifted across the fleet into one behavior:\n *\n * - **De-dup** — never stacks; a second {@link present} while an alert is already shown is a no-op.\n * - **Backdrop lock** — `backdropDismiss: false`, so a critical network error can't be dismissed by\n * an accidental backdrop tap; the user consciously chooses cancel or reload.\n * - **Auto-dismiss on reconnect** — the presented alert is tracked, so {@link dismiss} (called from a\n * later successful response) clears a now-stale error alert instead of leaving it on screen.\n * - **Reload on confirm** — the confirm button calls `location.reload()`.\n *\n * All user-facing text is supplied by the caller so the kit stays free of any hardcoded i18n; the\n * cancel button reuses {@link KitOverlayConfig.labels}. Because it performs navigation\n * (`location.reload()`) and holds state, it is a dedicated controller rather than part of\n * {@link KitOverlayController}, which stays free of navigation policy.\n *\n * @example\n * ```ts\n * // In an HTTP interceptor:\n * const reload = inject(KitReloadAlertController);\n * // ...on a network-class error while connected:\n * await reload.present({ header: 'ネットワークエラー', message: `…(${status})`, okText: 'リフレッシュ' });\n * // ...on any later successful response:\n * await reload.dismiss();\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitReloadAlertController {\n readonly #alertCtrl = inject(AlertController);\n readonly #labels = inject(KIT_OVERLAY_CONFIG).labels;\n #alert: HTMLIonAlertElement | null = null;\n\n /**\n * Present the reload alert, unless one is already on screen.\n *\n * @param options - alert content plus the reload-button text\n * @returns a Promise that resolves once the alert has been presented (or immediately if suppressed)\n */\n async present(options: KitReloadAlertOptions): Promise<void> {\n // この controller 経由でも直書き ion-alert でも、多重表示しない。\n if (this.#alert || document.querySelector('ion-alert')) {\n return;\n }\n const alert = await this.#alertCtrl.create({\n header: options.header,\n message: options.message,\n backdropDismiss: false,\n buttons: [\n { text: this.#labels.cancel, role: 'cancel' },\n {\n text: options.okText,\n handler: () => {\n location.reload();\n },\n },\n ],\n });\n this.#alert = alert;\n void alert.onDidDismiss().then(() => {\n // 別の present で置き換わっていない限り、追跡を解除する。\n if (this.#alert === alert) {\n this.#alert = null;\n }\n });\n await alert.present();\n }\n\n /**\n * Dismiss the tracked reload alert if one is showing.\n *\n * @remarks\n * Typically called from a later successful response so a stale \"network error\" alert clears once\n * connectivity is restored. A no-op when nothing is showing.\n *\n * @returns a Promise that resolves once the alert has been dismissed (or immediately if none)\n */\n async dismiss(): Promise<void> {\n const alert = this.#alert;\n this.#alert = null;\n await alert?.dismiss();\n }\n}\n","import type { AlertController } from '@ionic/angular/standalone';\n\n/**\n * Content for {@link kitPresentAuthFailedAlert}.\n */\nexport interface KitAuthFailedAlertOptions {\n /** Alert header, e.g. \"ログインできませんでした\". */\n header: string;\n /** Optional sub-header; typically the short server error code/name. */\n subHeader?: string;\n /** Alert body message; typically the server-provided detail. */\n message: string;\n /** Text for the single close button, e.g. \"閉じる\". */\n closeText: string;\n}\n\n/**\n * Present the fleet's canonical \"sign-in / token exchange failed\" alert.\n *\n * @remarks\n * Folds together the alert every token-exchange app duplicated verbatim when a startup re-login\n * fails: an informative alert (header + optional server error as sub-header + detail message) with a\n * single close button that reloads the app (`location.reload()`) so the user restarts cleanly. The\n * caller is still responsible for signing the user out around this call.\n *\n * All user-facing text is supplied by the caller so the kit stays free of any hardcoded i18n. Kept\n * as a standalone helper (taking the `AlertController`) rather than a method on\n * {@link KitOverlayController}, which holds no navigation policy such as `location.reload()`.\n *\n * @param alertCtrl - Ionic's `AlertController`\n * @param options - alert content plus the close-button text\n * @returns a Promise that resolves once the alert has been presented\n * @example\n * ```ts\n * onAuthorized: async () => {\n * const logged = await auth.tokenLogin().catch(async (e) => {\n * await kitPresentAuthFailedAlert(alertCtrl, {\n * header: 'ログインできませんでした',\n * subHeader: e.error.error,\n * message: e.error.detail,\n * closeText: '閉じる',\n * });\n * await auth.signOut();\n * return undefined;\n * });\n * // ...\n * };\n * ```\n */\nexport const kitPresentAuthFailedAlert = async (\n alertCtrl: AlertController,\n options: KitAuthFailedAlertOptions,\n): Promise<void> => {\n const alert = await alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [\n {\n text: options.closeText,\n role: 'cancel',\n handler: () => {\n location.reload();\n },\n },\n ],\n });\n await alert.present();\n};\n","import { ActionSheetController } from '@ionic/angular/standalone';\n\n/** One selectable language in {@link kitPresentLanguageActionSheet}. */\nexport interface KitLanguageOption {\n /** Button label shown to the user (e.g. `English`, `日本語`). */\n readonly text: string;\n /** Locale identifier returned when this option is chosen (e.g. `en-US`, `ja`). */\n readonly data: string;\n}\n\n/**\n * Options for {@link kitPresentLanguageActionSheet}.\n *\n * @remarks\n * The kit ships no strings or URLs of its own: labels, the locale list, and the redirect-URL mapping\n * are all supplied by the caller, so a multilingual app passes `$localize`-resolved text and its own\n * per-locale build paths.\n */\nexport interface KitLanguageActionSheetOptions {\n /** Action-sheet header text. */\n readonly header: string;\n /** Selectable languages, in display order. */\n readonly locales: readonly KitLanguageOption[];\n /** Text for the cancel button. */\n readonly cancelText: string;\n /** The currently active locale; selecting the same value is a no-op. Normalize before passing. */\n readonly currentLocale: string;\n /** The current in-app path (e.g. `router.url`), stashed so the app can restore it after the reload. */\n readonly currentPath: string;\n /** `sessionStorage` key under which {@link currentPath} is stored. */\n readonly pathnameStorageKey: string;\n /** Maps a chosen locale to the URL to navigate to (the app's per-locale build entry point). */\n readonly buildRedirectUrl: (locale: string) => string;\n /** Gate for the redirect — pass `false` (e.g. outside production) to present without navigating. */\n readonly enabled: boolean;\n}\n\n/**\n * Present a language picker and, on a new selection, reload the app at that locale's entry point.\n *\n * @remarks\n * A plain function (the `ActionSheetController` is passed in, so nothing is injected) that unifies the\n * language-switch flow duplicated across apps. On a changed selection while {@link enabled} it stashes\n * the current path in `sessionStorage` (so the app can return the user to where they were), records the\n * chosen locale in `localStorage` under `'locale'`, and calls `window.location.replace()` with the\n * app-provided URL. Because it performs navigation, it is a standalone helper rather than part of a\n * controller (mirroring `kitPresentReloadAlert` / `kitPresentAuthFailedAlert`). Centralizing it means a\n * future improvement to the switch flow lands in every app at once.\n *\n * @param actionSheetCtrl - the Ionic `ActionSheetController`\n * @param options - labels, locale list, and redirect configuration; see {@link KitLanguageActionSheetOptions}\n * @returns a Promise that resolves once presented (and, on a new selection, after the reload is triggered)\n * @example\n * ```ts\n * await kitPresentLanguageActionSheet(inject(ActionSheetController), {\n * header: $localize`言語設定`,\n * locales: [{ text: 'English', data: 'en-US' }, { text: '日本語', data: 'ja' }],\n * cancelText: $localize`キャンセル`,\n * currentLocale: normalizedLocale,\n * currentPath: this.#router.url,\n * pathnameStorageKey: StorageKeyEnum.pathnameBeforeRedirect,\n * buildRedirectUrl: (locale) => location.origin + (localePath[locale.toLowerCase()] ?? '/index.html'),\n * enabled: environment.production,\n * });\n * ```\n */\nexport const kitPresentLanguageActionSheet = async (\n actionSheetCtrl: ActionSheetController,\n options: KitLanguageActionSheetOptions,\n): Promise<void> => {\n const actionSheet = await actionSheetCtrl.create({\n header: options.header,\n buttons: [\n ...options.locales.map((locale) => ({ text: locale.text, data: locale.data })),\n { text: options.cancelText, role: 'cancel' },\n ],\n });\n await actionSheet.present();\n\n const { data } = await actionSheet.onDidDismiss();\n if (options.enabled && data && data !== options.currentLocale) {\n sessionStorage.setItem(options.pathnameStorageKey, options.currentPath);\n localStorage.setItem('locale', data);\n window.location.replace(options.buildRedirectUrl(data));\n }\n};\n","import type { OnInit } from '@angular/core';\nimport { Directive, ElementRef, inject } from '@angular/core';\nimport { Capacitor } from '@capacitor/core';\n\n/**\n * Work around iOS `ion-input` autofill values not propagating to the Angular form model.\n *\n * On iOS, when the browser autofills an `ion-input` (for example a saved password), the value\n * is written to the underlying native `<input>` element but the corresponding `change` event is\n * not forwarded to the host `ion-input`, so the Angular form control (and `ngModel`) never sees\n * the autofilled value. This directive listens for the first `change` event on the inner input\n * element and mirrors its value back onto the host element, restoring two-way binding.\n *\n * Apply it to any `ion-input` that participates in a form and may be autofilled by attaching the\n * `rdlaboAutofill` attribute.\n *\n * @remarks\n * The directive is a no-op on every platform other than iOS, where the value already propagates\n * correctly. A short timeout is used because `ion-input` creates its inner `<input>` element\n * asynchronously after the host element is initialized.\n *\n * @example\n * ```html\n * <ion-input rdlaboAutofill type=\"password\" [(ngModel)]=\"password\"></ion-input>\n * ```\n */\n@Directive({\n selector: '[rdlaboAutofill]',\n standalone: true,\n})\nexport class KitAutofillDirective implements OnInit {\n readonly #el = inject(ElementRef);\n\n constructor() {}\n\n /**\n * Register the iOS autofill workaround once the directive is initialized.\n *\n * Returns immediately on non-iOS platforms. On iOS, after a short delay it attaches a one-shot,\n * passive `change` listener to the inner `<input>` element that `ion-input` renders, copying the\n * autofilled value back onto the host element so the Angular form model stays in sync. Any error\n * while locating the inner input (for example if the element is not yet present) is swallowed.\n *\n * @returns Nothing.\n */\n ngOnInit(): void {\n if (Capacitor.getPlatform() !== 'ios') {\n return;\n }\n setTimeout(() => {\n try {\n this.#el.nativeElement.children[0].addEventListener(\n 'change',\n (e: Event) => {\n this.#el.nativeElement.value = (e.target as HTMLInputElement).value;\n },\n {\n capture: false,\n once: true,\n passive: true,\n },\n );\n } catch {\n /* empty */\n }\n }, 100); // Need some time for the ion-input to create the input element\n }\n}\n","import type { ElementRef } from '@angular/core';\nimport { Capacitor } from '@capacitor/core';\nimport type { PluginListenerHandle } from '@capacitor/core';\nimport { Keyboard } from '@capacitor/keyboard';\n\n/**\n * How {@link kitKeyboardInit} adjusts the target element when the native keyboard appears.\n *\n * - `transform` — CSS `translateY(-keyboardHeight + safeAreaBottom)` for a smooth iOS animation\n * (typical for an `ion-footer`).\n * - `offset` — set the `--offset-bottom` custom property to the negative keyboard height.\n * - `keyboard-offset` — set the `--padding-bottom` custom property to the keyboard height.\n */\nexport type KitKeyboardAdjust = 'transform' | 'offset' | 'keyboard-offset';\n\nconst keyboardWillShow = (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardWillShow', (info) => {\n if (Capacitor.getPlatform() === 'android') {\n if (elementRef.nativeElement.tagName === 'ION-FOOTER' && type === 'transform') {\n // https://github.com/ionic-team/ionic-framework/blob/main/core/src/components/footer/footer.tsx\n elementRef.nativeElement.classList.remove('footer-toolbar-padding');\n }\n return;\n }\n\n elementRef.nativeElement.classList.add('show-keyboard');\n // SSR-safe: this callback only runs on a native keyboard event, so the global `document` /\n // `window` are never touched on the server (kitKeyboardInit returns early when not native).\n const bodyStyleDeclaration = window.getComputedStyle(document.querySelector('body') as Element);\n const safeArea = parseInt(bodyStyleDeclaration.getPropertyValue('--ion-safe-area-bottom'), 10);\n\n if (type === 'transform') {\n elementRef.nativeElement.style.transition = 'transform 420ms';\n elementRef.nativeElement.style.willChange = 'transform';\n requestAnimationFrame(\n () => (elementRef.nativeElement.style.transform = `translateY(${info.keyboardHeight * -1 + safeArea}px)`),\n );\n } else if (type === 'offset') {\n requestAnimationFrame(() => {\n const keyboardOffset = elementRef.nativeElement.style.getPropertyValue('--keyboard-offset');\n if (!keyboardOffset || parseInt(keyboardOffset, 10) === 0) {\n elementRef.nativeElement.style.setProperty('--offset-bottom', `${info.keyboardHeight * -1}px`);\n }\n });\n } else {\n requestAnimationFrame(() => {\n const keyboardOffset = elementRef.nativeElement.style.getPropertyValue('--keyboard-offset');\n if (!keyboardOffset || parseInt(keyboardOffset, 10) === 0) {\n elementRef.nativeElement.style.setProperty('--padding-bottom', `${info.keyboardHeight}px`);\n }\n });\n }\n });\n\nconst keyboardWillHide = (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardWillHide', () => {\n if (Capacitor.getPlatform() === 'android') {\n if (elementRef.nativeElement.tagName === 'ION-FOOTER' && type === 'transform') {\n elementRef.nativeElement.classList.add('footer-toolbar-padding');\n }\n return;\n }\n\n elementRef.nativeElement.classList.remove('show-keyboard');\n\n if (type === 'transform') {\n elementRef.nativeElement.style.transition = 'transform 0ms';\n elementRef.nativeElement.style.transform = `translateY(0px)`;\n elementRef.nativeElement.style.willChange = 'transform';\n } else if (type === 'offset') {\n elementRef.nativeElement.style.setProperty('--offset-bottom', '0px');\n } else {\n elementRef.nativeElement.style.setProperty('--padding-bottom', '0px');\n }\n });\n\nconst keyboardDidShow = (elementRef: ElementRef): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardDidShow', () => {\n elementRef.nativeElement.style.willChange = 'auto';\n });\n\nconst keyboardDidHide = (elementRef: ElementRef): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardDidHide', () => {\n elementRef.nativeElement.style.willChange = 'auto';\n });\n\n/**\n * Register native keyboard listeners that reposition an element when the keyboard shows/hides.\n *\n * @remarks\n * A plain function — no DI needed (it reads the platform from `Capacitor` and uses the global\n * `document`), so a component calls it directly instead of injecting a controller. SSR-safe: the\n * global `document` / `window` are only read inside native keyboard-event callbacks, which never\n * fire on the server — the `Capacitor.isNativePlatform()` guard returns `[]` first, and nothing is\n * touched at module load. A no-op on non-native platforms (returns `[]`). On native it handles the\n * iOS/Android differences (Android\n * only toggles the `footer-toolbar-padding` class on an `ion-footer` for the `transform` mode,\n * working around an Ionic footer bug). The caller owns the returned handles and must `remove()`\n * them when the view is destroyed.\n *\n * @param elementRef - The element to reposition (e.g. an `ion-footer`).\n * @param type - The adjustment strategy; see {@link KitKeyboardAdjust}.\n * @returns The registered listener handles (empty on non-native platforms).\n * @example\n * ```ts\n * export class ComposePage {\n * readonly #footer = viewChild.required<ElementRef>('footer');\n * #handles: PluginListenerHandle[] = [];\n *\n * async ngAfterViewInit() {\n * this.#handles = await kitKeyboardInit(this.#footer(), 'transform');\n * }\n * ngOnDestroy() {\n * this.#handles.forEach((h) => h.remove());\n * }\n * }\n * ```\n */\nexport const kitKeyboardInit = async (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle[]> => {\n if (!Capacitor.isNativePlatform()) {\n return [];\n }\n return [\n await keyboardWillShow(elementRef, type),\n await keyboardWillHide(elementRef, type),\n await keyboardDidShow(elementRef),\n await keyboardDidHide(elementRef),\n ];\n};\n","import type { EnvironmentProviders } from '@angular/core';\nimport { inject, InjectionToken, makeEnvironmentProviders } from '@angular/core';\nimport type { CanActivateFn, RouterStateSnapshot, UrlTree } from '@angular/router';\nimport { Router } from '@angular/router';\nimport { NavController } from '@ionic/angular/standalone';\nimport type { Observable } from 'rxjs';\nimport { map, mergeMap } from 'rxjs/operators';\n\n/**\n * Discriminated set of authentication states the guards react to.\n *\n * @remarks\n * The application is responsible for emitting these values through {@link KitAuthConfig.authState}.\n * An application that does not use a value (for example email confirmation) simply never emits it.\n *\n * - `user` — fully authenticated and verified.\n * - `confirm` — awaiting email confirmation.\n * - `required` — not authenticated.\n * - `anonymous` — signed in anonymously; the user can still be guided toward full registration.\n */\nexport type KitAuthState = 'user' | 'confirm' | 'required' | 'anonymous';\n\n/**\n * Redirect targets (route paths) used by the guards when access is denied.\n *\n * @remarks\n * Every field is required and must be provided per application, because the guards have no\n * knowledge of the host application's route layout.\n */\nexport interface KitAuthRedirects {\n /** Used by {@link kitRequiredUnauthorizedGuard}: where to navigate when the user is already authenticated (`user`). */\n readonly whenAuthorized: string;\n /** Used by {@link kitRequiredUnauthorizedGuard}: where to navigate when the user is awaiting email confirmation (`confirm`). */\n readonly whenConfirming: string;\n /** Used by {@link kitRequireConfirmingGuard}: where to navigate when the state is not `confirm`. */\n readonly whenNotConfirming: string;\n /** Used by {@link kitRequireAuthorizedGuard}: where to navigate when the state is not `user` and the fallback is not allowed. */\n readonly whenUnauthorized: string;\n}\n\n/**\n * Configuration consumed by the authentication guards, injected through {@link provideKitAuth}.\n *\n * @remarks\n * `authState` and `redirects` are required. The `onAuthorized` / `onUnauthenticated` hooks are\n * optional and default to allowing the authenticated user through (`true`) and falling through to\n * the default redirect (`false`) respectively, so an app only supplies the ones with real logic.\n */\nexport interface KitAuthConfig {\n /**\n * Source of the current authentication state.\n *\n * @remarks\n * Typically backed by the application's own auth service (for example `AuthService.isAuth()`).\n *\n * @returns A stream of {@link KitAuthState} values.\n */\n authState(): Observable<KitAuthState>;\n /**\n * Application-specific work that runs in {@link kitRequireAuthorizedGuard} after the state is confirmed to be `user`.\n *\n * @remarks\n * Typical responsibilities include token login, permission checks, terms-of-service acceptance,\n * or restoring a previously requested redirect. Optional; defaults to `true` (allow activation).\n *\n * @param state - The router state snapshot of the route being activated.\n * @returns `true` to allow activation, or a `UrlTree` to perform a custom redirect.\n */\n onAuthorized?(state: RouterStateSnapshot): Promise<boolean | UrlTree>;\n /**\n * Fallback that runs in {@link kitRequireAuthorizedGuard} when the state is `required` (not authenticated).\n *\n * @remarks\n * For example, attempt an anonymous sign-in and allow the route. Optional; defaults to `false`\n * (fall through to the default `whenUnauthorized` redirect).\n *\n * @param state - The router state snapshot of the route being activated.\n * @returns `true` to allow activation, a `UrlTree` for a custom redirect, or `false` to use the default redirect.\n */\n onUnauthenticated?(state: RouterStateSnapshot): Promise<boolean | UrlTree>;\n /** Redirect targets used by the guards. */\n redirects: KitAuthRedirects;\n}\n\n/**\n * Injection token that carries the {@link KitAuthConfig} to the authentication guards.\n */\nexport const KIT_AUTH_CONFIG = new InjectionToken<KitAuthConfig>('@rdlabo/ionic-angular-kit:auth');\n\n/**\n * Wire the authentication guard configuration into the application's dependency injection.\n *\n * @remarks\n * The factory runs inside an injection context, so it may call `inject()` (for example\n * `inject(AuthService)`) to build the configuration.\n *\n * @param configFactory - Factory that returns the {@link KitAuthConfig} for the application.\n * @returns Environment providers to add to the application bootstrap.\n *\n * @example\n * ```ts\n * provideKitAuth(() => {\n * const auth = inject(AuthService);\n * return {\n * // onAuthorized / onUnauthenticated are optional (default: allow / fall through to redirect).\n * authState: () => auth.isAuth(),\n * redirects: {\n * whenAuthorized: '/',\n * whenConfirming: '/auth/confirm',\n * whenNotConfirming: '/auth/signin',\n * whenUnauthorized: 'auth',\n * },\n * };\n * });\n * ```\n */\nexport const provideKitAuth = (configFactory: () => KitAuthConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_AUTH_CONFIG, useFactory: configFactory }]);\n\n/**\n * Guard that requires the user to be unauthenticated (for example sign-in or sign-up pages).\n *\n * @remarks\n * Allows the `required` and `anonymous` states (an anonymous user is permitted to proceed to a\n * registration page). An authenticated user (`user`) is sent to `whenAuthorized`, and a user\n * awaiting confirmation (`confirm`) is sent to `whenConfirming`.\n *\n * @returns A stream emitting `true` to allow activation, or `false` after triggering a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'signin', component: SigninPage, canActivate: [kitRequiredUnauthorizedGuard] }];\n * ```\n */\nexport const kitRequiredUnauthorizedGuard: CanActivateFn = () => {\n const { authState, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n map((data) => {\n if (data === 'user') {\n navCtrl.setDirection('root');\n router.navigate([redirects.whenAuthorized]);\n return false;\n } else if (data === 'confirm') {\n router.navigate([redirects.whenConfirming]);\n return false;\n }\n // 'required' | 'anonymous'\n return true;\n }),\n );\n};\n\n/**\n * Guard that requires the user to be awaiting email confirmation (`confirm`).\n *\n * @remarks\n * Any other state triggers a redirect: an `anonymous` user is sent to the authenticated area\n * (`whenAuthorized`), and every remaining state is sent to `whenNotConfirming`.\n *\n * @returns A stream emitting `true` to allow activation, or `false` after triggering a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'confirm', component: ConfirmPage, canActivate: [kitRequireConfirmingGuard] }];\n * ```\n */\nexport const kitRequireConfirmingGuard: CanActivateFn = () => {\n const { authState, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n map((data) => {\n if (data === 'confirm') {\n return true;\n }\n navCtrl.setDirection('root');\n router.navigate([data === 'anonymous' ? redirects.whenAuthorized : redirects.whenNotConfirming]);\n return false;\n }),\n );\n};\n\n/**\n * Guard that requires the user to be fully authenticated (`user`).\n *\n * @remarks\n * - `user` — runs {@link KitAuthConfig.onAuthorized} (token login, permission checks, and so on).\n * - `anonymous` — allowed as-is, for applications that permit anonymous browsing.\n * - `required` / `confirm` — runs {@link KitAuthConfig.onUnauthenticated}; if it resolves to `false`,\n * the user is redirected to `whenUnauthorized`.\n *\n * @param _route - The activated route snapshot (unused).\n * @param state - The router state snapshot, forwarded to the configuration hooks.\n * @returns A stream emitting the activation result: `true`, a `UrlTree`, or `false` after a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'home', component: HomePage, canActivate: [kitRequireAuthorizedGuard] }];\n * ```\n */\nexport const kitRequireAuthorizedGuard: CanActivateFn = (_route, state) => {\n const { authState, onAuthorized, onUnauthenticated, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n mergeMap(async (data) => {\n if (data === 'user') {\n // 既定は「許可」。tokenLogin / 権限確認等が必要なアプリだけ onAuthorized を渡す。\n return onAuthorized ? onAuthorized(state) : true;\n }\n if (data === 'anonymous') {\n return true;\n }\n // 既定は false(whenUnauthorized へ)。匿名ログイン等のフォールバックが要るアプリだけ渡す。\n const fallback = onUnauthenticated ? await onUnauthenticated(state) : false;\n if (fallback !== false) {\n return fallback;\n }\n navCtrl.setDirection('root');\n router.navigate([redirects.whenUnauthorized]);\n return false;\n }),\n );\n};\n","import type { EnvironmentProviders } from '@angular/core';\nimport { inject, InjectionToken, makeEnvironmentProviders } from '@angular/core';\nimport type { HttpEvent, HttpInterceptorFn, HttpRequest } from '@angular/common/http';\nimport { HttpErrorResponse, HttpResponse } from '@angular/common/http';\nimport { Network } from '@capacitor/network';\nimport type { Observable } from 'rxjs';\nimport { from, retry, throwError, timer } from 'rxjs';\nimport { catchError, map, mergeMap, tap, timeout } from 'rxjs/operators';\n\n/**\n * HTTP methods that are safe to retry automatically.\n *\n * @remarks\n * Non-idempotent methods (`POST` / `PATCH` / `DELETE`) are never auto-retried, because a response\n * lost *after* the server processed the write would be replayed into a duplicate write (\"saved twice\n * from one tap\"). A non-idempotent request that is genuinely safe to replay opts in by carrying an\n * `Idempotency-Key` header (which the server must honor).\n *\n * @internal\n */\nconst RETRYABLE_METHODS = ['GET', 'HEAD', 'OPTIONS'];\n\n/**\n * Transient HTTP statuses worth retrying: `0` (network/transport failure), `408` (request timeout),\n * `429` (rate limited), and the `502` / `503` / `504` gateway-availability family. Every other status\n * is thrown immediately — a whitelist is safer than a blacklist for deciding what to replay.\n *\n * @internal\n */\nconst RETRYABLE_STATUSES = [0, 408, 429, 502, 503, 504];\n\n/**\n * Maximum number of automatic retries for a retryable request.\n *\n * @internal\n */\nconst MAX_RETRIES = 2;\n\n/**\n * Fleet-wide per-request timeout. A request with no response within this window fails with a\n * synthetic `408` (a {@link RETRYABLE_STATUSES | retryable status}). Deliberately generous — it\n * catches a genuinely hung request (dead server) without cutting off legitimately slow work such as\n * a large upload or an AI generation. `timeout({ each })` resets on every emission, so a streaming\n * response that keeps emitting is unaffected.\n *\n * @internal\n */\nconst DEFAULT_TIMEOUT_MS = 60_000;\n\n/**\n * Parse a `Retry-After` header (delta-seconds or an HTTP-date) into milliseconds, or `null` when it\n * is absent or unparseable.\n *\n * @internal\n */\nconst parseRetryAfterMs = (error: HttpErrorResponse): number | null => {\n const header = error.headers?.get('Retry-After');\n if (!header) {\n return null;\n }\n const seconds = Number(header);\n if (Number.isFinite(seconds)) {\n return Math.max(0, seconds * 1000);\n }\n const dateMs = Date.parse(header);\n return Number.isNaN(dateMs) ? null : Math.max(0, dateMs - Date.now());\n};\n\n/**\n * Configuration that customizes the behavior of {@link kitAuthInterceptor}, injected through {@link provideKitHttp}.\n *\n * @remarks\n * The interceptor fixes the retry policy and control flow; only the hooks below are app-specific:\n *\n * - Retries only {@link RETRYABLE_METHODS | idempotent methods} (or a request bearing an\n * `Idempotency-Key`) on a {@link RETRYABLE_STATUSES | transient status}, up to {@link MAX_RETRIES}\n * times with a short jittered backoff (honoring `Retry-After`). Writes are never auto-retried.\n * - When the device is offline it fails fast to {@link KitHttpConfig.offlineFallback} instead of\n * waiting out the retries.\n * - On a final error it classifies by status and calls the matching hook (see each hook below).\n *\n * Only {@link KitHttpConfig.getAuthHeaders} is required — it has no safe default. Every other hook is\n * optional and defaults to a no-op (or `{}` / `false` / `null` as appropriate), so an app configures\n * only the behavior that actually differs from the canonical baseline.\n */\nexport interface KitHttpConfig {\n /**\n * Produce authentication and metadata headers for the outgoing request.\n *\n * @param request - The outgoing request about to be sent.\n * @returns A map of header names to values, resolved asynchronously.\n */\n getAuthHeaders(request: HttpRequest<unknown>): Promise<Record<string, string>>;\n /**\n * Produce additional headers for the outgoing request.\n *\n * @remarks\n * Optional; defaults to adding no extra headers.\n *\n * @param request - The outgoing request about to be sent.\n * @returns A map of header names to values; return `{}` when none are needed.\n */\n buildExtraHeaders?(request: HttpRequest<unknown>): Record<string, string>;\n /**\n * Treat an otherwise-successful response as an error.\n *\n * @remarks\n * Optional. Some backends use a 2xx status (for example `204` / `206`) to signal a condition the\n * app wants to surface as an error rather than a success. Return `true` to throw the response so it\n * flows through the error path; the status is not in {@link RETRYABLE_STATUSES}, so it is not\n * retried and propagates to the caller. Defaults to treating every 2xx as a success.\n *\n * @param response - The successful `HttpResponse` about to be delivered.\n * @returns `true` to reject the response as an error.\n */\n treatAsError?(response: HttpResponse<unknown>): boolean;\n /**\n * Called for every successful response that completed an actual network round trip.\n *\n * @remarks\n * Responses synthesized by {@link KitHttpConfig.offlineFallback} are produced after `catchError`\n * and therefore never reach this hook, so it observes genuine successes only. A typical use is to\n * reset an \"offline\" flag once connectivity is restored. Optional; defaults to a no-op.\n *\n * @param event - The successful `HttpResponse`.\n */\n onResponse?(event: HttpResponse<unknown>): void;\n /**\n * Decide whether to pass the request straight through, skipping auth, retry, and error handling.\n *\n * @remarks\n * Useful for external URLs such as S3 or a CDN. Optional; defaults to `false` (never bypass).\n *\n * @param request - The outgoing request.\n * @returns `true` to bypass the interceptor pipeline.\n */\n bypass?(request: HttpRequest<unknown>): boolean;\n /**\n * Provide an offline short-circuit when a request fails.\n *\n * @remarks\n * Returning a non-null observable replaces the error with that response (for example a queued\n * offline result). Optional; defaults to `null` (no fallback, normal error handling proceeds).\n *\n * @param request - The request that failed (after headers were applied).\n * @param error - The error response that triggered the fallback.\n * @returns A replacement event stream, or `null` for no fallback.\n */\n offlineFallback?(request: HttpRequest<unknown>, error: HttpErrorResponse): Observable<HttpEvent<unknown>> | null;\n /**\n * Side effect to run on a `401` response (for example an expired token).\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param request - The request that received the `401`.\n */\n onUnauthorized?(request: HttpRequest<unknown>): void;\n /**\n * Side effect to run on a `403` response (a permission error).\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param request - The request that received the `403`.\n */\n onForbidden?(request: HttpRequest<unknown>): void;\n /**\n * UX hook for a genuine network / transport failure (status `0`) while the device reports itself\n * connected — i.e. the server is unreachable rather than the phone being offline.\n *\n * @remarks\n * Optional; defaults to a no-op. Narrow by design: it fires only for status `0` (not for `404`,\n * `429`, `5xx`, …, which have their own hooks), so a \"connection lost, reload?\" prompt is not shown\n * for server-side problems. When the device is offline it is not called at all — `offlineFallback`\n * owns that path. The kit ships {@link KitReloadAlertController} as the canonical implementation\n * (with de-dup so concurrent failures show a single alert, and auto-dismiss on reconnect).\n *\n * @param status - The HTTP status code (`0`), or a string descriptor for non-HTTP failures.\n * @returns Optionally a promise to await before continuing.\n */\n onNetworkError?(status: number | string): Promise<void> | void;\n /**\n * UX hook for a transient server-availability failure (`502` / `503` / `504`), fired after retries\n * are exhausted.\n *\n * @remarks\n * Optional; defaults to a no-op. Distinct from {@link KitHttpConfig.onNetworkError} — the device's\n * connection is fine, the server is momentarily unavailable — so the app can say \"server busy, try\n * again shortly\" rather than prompt a reload.\n *\n * @param status - `502`, `503`, or `504`.\n * @param retryAfterSeconds - The server's `Retry-After` hint in seconds, when provided.\n */\n onServerBusy?(status: number, retryAfterSeconds?: number): void;\n /**\n * UX hook for a `429 Too Many Requests` response, fired after retries are exhausted.\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param retryAfterSeconds - The server's `Retry-After` hint in seconds, when provided.\n */\n onRateLimited?(retryAfterSeconds?: number): void;\n /**\n * UX hook for `400` / `422` / `500` responses that carry a server-provided message.\n *\n * @remarks\n * Optional; defaults to a no-op. Note that the message comes straight from the API; prefer a\n * user-facing `userMessage` / `code` in your error contract over showing a raw developer message.\n *\n * @param message - The message extracted from the error body.\n */\n onServerError?(message: string): void;\n /**\n * Side effect for a failure while *producing* the auth headers (`getAuthHeaders` rejected).\n *\n * @remarks\n * Optional; defaults to a no-op. Because the request is never sent in this case, it does not reach\n * the response-error hooks; classify it here (for example a failed token refresh) so it does not\n * fail silently.\n *\n * @param request - The request whose headers could not be produced.\n * @param error - The error thrown by `getAuthHeaders`.\n */\n onAuthError?(request: HttpRequest<unknown>, error: unknown): void;\n}\n\n/**\n * Injection token that carries the {@link KitHttpConfig} to {@link kitAuthInterceptor}.\n */\nexport const KIT_HTTP_CONFIG = new InjectionToken<KitHttpConfig>('@rdlabo/ionic-angular-kit:http');\n\n/**\n * Wire the {@link kitAuthInterceptor} configuration into the application's dependency injection.\n *\n * @remarks\n * Register the interceptor itself separately via `provideHttpClient(withInterceptors([kitAuthInterceptor]))`.\n * The factory runs inside an injection context, so it may call `inject()`.\n *\n * @param configFactory - Factory that returns the {@link KitHttpConfig} for the application.\n * @returns Environment providers to add to the application bootstrap.\n *\n * @example\n * ```ts\n * bootstrapApplication(AppComponent, {\n * providers: [\n * provideHttpClient(withInterceptors([kitAuthInterceptor])),\n * provideKitHttp(() => {\n * const auth = inject(AuthService);\n * const reload = inject(KitReloadAlertController);\n * return {\n * // Only getAuthHeaders is required; every other hook is optional and defaults to a no-op.\n * getAuthHeaders: async () => ({ Authorization: `Bearer ${await auth.token()}` }),\n * onUnauthorized: () => auth.signOut(),\n * onNetworkError: (status) =>\n * reload.present({ header: 'Network error', message: `Reload? (${status})`, okText: 'Reload' }),\n * onResponse: () => void reload.dismiss(),\n * };\n * }),\n * ],\n * });\n * ```\n */\nexport const provideKitHttp = (configFactory: () => KitHttpConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_HTTP_CONFIG, useFactory: configFactory }]);\n\n/**\n * Classify a final (post-retry) error and invoke the matching {@link KitHttpConfig} hook.\n *\n * @internal\n */\nconst dispatchError = (config: KitHttpConfig, req: HttpRequest<unknown>, error: HttpErrorResponse): void => {\n const status = error.status;\n const retryAfterMs = parseRetryAfterMs(error);\n const retryAfterSeconds = retryAfterMs === null ? undefined : Math.round(retryAfterMs / 1000);\n\n if (status === 401) {\n config.onUnauthorized?.(req);\n } else if (status === 403) {\n config.onForbidden?.(req);\n } else if (status === 0) {\n // Genuine network/transport failure. Only surface it when the device is actually connected\n // (server unreachable); when offline, offlineFallback owns the UX — a reload prompt won't help.\n void Network.getStatus().then((network) => {\n if (network.connected) {\n config.onNetworkError?.(status);\n }\n });\n } else if (status === 429) {\n config.onRateLimited?.(retryAfterSeconds);\n } else if ([502, 503, 504].includes(status)) {\n config.onServerBusy?.(status, retryAfterSeconds);\n } else if ([400, 422, 500].includes(status) && error.error?.message) {\n config.onServerError?.(error.error.message);\n }\n // Every other status (404, 418, …) is left to the caller — no generic alert.\n};\n\n/**\n * Canonical functional HTTP interceptor that applies authentication, retries, and error handling.\n *\n * @remarks\n * Behavior, driven by the injected {@link KitHttpConfig}:\n *\n * 1. Requests for which `bypass` returns `true` are forwarded untouched.\n * 2. If `getAuthHeaders` rejects, `onAuthError` is called and the request is not sent.\n * 3. Otherwise the headers from `getAuthHeaders` and `buildExtraHeaders` are merged onto a cloned request.\n * 4. On failure the request is retried up to {@link MAX_RETRIES} times, but **only** when the device\n * is online, the method is a {@link RETRYABLE_METHODS | retryable method} (or carries an\n * `Idempotency-Key`), and the status is a {@link RETRYABLE_STATUSES | transient status}. The\n * backoff is `retryCount * 500ms` plus up to 250ms of jitter, or the server's `Retry-After`.\n * When the device is offline it stops retrying immediately.\n * 5. On the final error, `offlineFallback` is consulted first; otherwise the error is classified by\n * status (see {@link dispatchError}): `401`→`onUnauthorized`, `403`→`onForbidden`, `0`→\n * `onNetworkError` (when connected), `429`→`onRateLimited`, `502`/`503`/`504`→`onServerBusy`, and\n * `400`/`422`/`500` with a body message→`onServerError`.\n *\n * @param request - The outgoing request.\n * @param next - The next handler in the interceptor chain.\n * @returns A stream of HTTP events for the (possibly modified, retried, or replaced) request.\n *\n * @example\n * ```ts\n * provideHttpClient(withInterceptors([kitAuthInterceptor]));\n * ```\n */\nexport const kitAuthInterceptor: HttpInterceptorFn = (request, next) => {\n const config = inject(KIT_HTTP_CONFIG);\n\n if (config.bypass?.(request)) {\n return next(request);\n }\n\n return from(Promise.resolve(config.getAuthHeaders(request))).pipe(\n catchError((headerError: unknown) => {\n // getAuthHeaders failed → the request is never sent; classify it instead of failing silently.\n config.onAuthError?.(request, headerError);\n return throwError(() => headerError);\n }),\n mergeMap((authHeaders) => {\n const req = request.clone({ setHeaders: { ...authHeaders, ...config.buildExtraHeaders?.(request) } });\n const retryable = RETRYABLE_METHODS.includes(req.method) || req.headers.has('Idempotency-Key');\n\n const base = next(req).pipe(\n timeout({\n each: DEFAULT_TIMEOUT_MS,\n with: () => throwError(() => new HttpErrorResponse({ status: 408, statusText: 'Request Timeout', url: req.url })),\n }),\n );\n\n return base.pipe(\n map((event) => {\n // A backend may signal an error condition with a 2xx status (e.g. 204/206); surface it as an error.\n if (event instanceof HttpResponse && config.treatAsError?.(event)) {\n throw event;\n }\n return event;\n }),\n retry({\n count: MAX_RETRIES,\n delay: (error: HttpErrorResponse, retryCount: number) =>\n from(Network.getStatus()).pipe(\n mergeMap((network) => {\n // Offline → don't wait out the retries; fail fast so offlineFallback can take over.\n if (!network.connected) {\n return throwError(() => error);\n }\n // Only replay idempotent requests, and only on a transient status.\n if (!retryable || !RETRYABLE_STATUSES.includes(error.status)) {\n return throwError(() => error);\n }\n // Short linear backoff (500ms, 1000ms, …) plus jitter to de-correlate a fleet of\n // clients reconnecting at once; the server's Retry-After wins when present.\n const backoff = parseRetryAfterMs(error) ?? retryCount * 500 + Math.random() * 250;\n return timer(backoff);\n }),\n ),\n }),\n tap((event) => {\n if (event instanceof HttpResponse) {\n config.onResponse?.(event);\n }\n }),\n catchError((error: HttpErrorResponse) => {\n const fallback = config.offlineFallback?.(req, error);\n if (fallback) {\n return fallback;\n }\n dispatchError(config, req, error);\n return throwError(() => error);\n }),\n );\n }),\n );\n};\n","/**\n * Merge a newly fetched page of items into an existing list by id, keeping the result sorted.\n *\n * Items are merged by the numeric `key` field. On a duplicate `key` the item from `arrayNew` wins\n * and replaces the one in `arrayOld`. Old items whose `key` falls *inside* the window spanned by\n * `arrayNew` (between its first and last `key`) are dropped, since the freshly fetched page is the\n * authoritative copy of that window; old items *outside* the window are kept. The merged items are\n * finally sorted by `key`, ascending or descending according to `order`.\n *\n * The algorithm is:\n * 1. If both inputs are empty, return an empty array.\n * 2. Read the first (`lead`) and last (`last`) `key` values of `arrayNew` as the bounds of the\n * page's window. Keep the old items whose `key` lies *outside* that window (at or beyond the\n * extremes) and drop those strictly inside it, handling both a high-to-low page (`lead > last`)\n * and a low-to-high page (`lead < last`). A single-value page (`lead === last`) keeps all old items.\n * 3. Remove old items whose `key` already exists in `arrayNew` (new wins on duplicates).\n * 4. Concatenate `arrayNew` with the surviving old items and sort by `key` in the requested\n * direction.\n *\n * @remarks\n * Designed for infinite-scroll / paginated list merging, where each fetched page may overlap the\n * previously held items and the server returns a contiguous, ordered window of records. The `key`\n * field is treated as a number for range comparison and sorting.\n *\n * @typeParam T - Element type of both arrays. Its `key` property must be a numeric value.\n * @param arrayOld - The previously accumulated list. May be empty or nullish-safe (empty when falsy).\n * @param arrayNew - The newly fetched page of items; its `key` range defines the window that its own\n * items replace, and its items take precedence on duplicates.\n * @param key - The property of `T` used as the unique, numeric id for matching, range filtering, and sorting.\n * @param order - Sort direction by `key`: `'ASC'` for ascending or `'DESC'` for descending. Defaults to `'DESC'`.\n * @param secondaryKey - Optional second property for extra de-duplication. When provided, any\n * surviving old item whose `secondaryKey` value matches that of *any* new item is dropped before\n * the `key` merge. Useful when a record keeps a stable `key` but its secondary identity changes\n * between pages (e.g. items keyed by `id` but also grouped by `parentId`). Omit to skip this step.\n * @returns A new array containing `arrayNew` merged with the out-of-window, non-duplicate old items, sorted by `key`.\n * @example\n * ```ts\n * interface Post {\n * id: number;\n * title: string;\n * }\n *\n * const loaded: Post[] = [\n * { id: 30, title: 'c' },\n * { id: 20, title: 'b' },\n * { id: 10, title: 'a' },\n * ];\n * const nextPage: Post[] = [\n * { id: 20, title: 'b (updated)' },\n * { id: 15, title: 'a.5' },\n * ];\n *\n * // Descending merge: id 30 lies above the new page's [15, 20] window so it is kept; id 20 is\n * // inside the window and is replaced by the new value; id 10 lies below the window and is kept.\n * const merged = arrayConcatById(loaded, nextPage, 'id', 'DESC');\n * // => [{ id: 30, title: 'c' }, { id: 20, title: 'b (updated)' }, { id: 15, title: 'a.5' }, { id: 10, title: 'a' }]\n * ```\n */\nexport const arrayConcatById = <T>(\n arrayOld: T[],\n arrayNew: T[],\n key: keyof T,\n order: 'ASC' | 'DESC' = 'DESC',\n secondaryKey?: keyof T,\n): T[] => {\n if (!arrayNew.length && !arrayOld.length) {\n return [];\n }\n const lead = arrayNew[0][key] as number;\n const last = arrayNew[arrayNew.length - 1][key] as number;\n\n const filteredOld = (arrayOld || []).filter((vol) => {\n const value = vol[key] as number;\n return (lead > last && (value >= lead || value <= last)) || (lead < last && (value <= lead || value >= last)) || lead === last;\n });\n\n const secondaryFilteredOld = secondaryKey\n ? filteredOld.filter((vol) => !arrayNew.some((element) => element[secondaryKey] === vol[secondaryKey]))\n : filteredOld;\n\n const oldData = secondaryFilteredOld.filter((vol) => !arrayNew.some((element) => element[key] === vol[key]));\n const data = arrayNew.concat(oldData);\n\n const direction = order === 'ASC' ? 1 : -1;\n return data.sort((a, b) => {\n const x = a[key] as number;\n const y = b[key] as number;\n if (x > y) {\n return direction;\n }\n if (x < y) {\n return direction * -1;\n }\n return 0;\n });\n};\n","/**\n * Order-independent deep equality check.\n *\n * @remarks\n * Returns `true` when `a` and `b` serialize to the same value after their (nested) object entries are\n * sorted by key, so property order does not affect the result. Intended for cheap \"did this state\n * object change?\" comparisons.\n *\n * Caveats of the JSON-serialization approach: values that JSON drops or coerces (`undefined`,\n * functions, `NaN`, `Date`, `Map`/`Set`) are compared by their serialized form, and array element\n * order is treated as significant (arrays are not reordered in a meaningful way). Use a structural\n * deep-equal library when those cases matter.\n *\n * @param a - First object.\n * @param b - Second object.\n * @returns `true` when the two objects are deeply equal ignoring key order.\n * @example\n * ```ts\n * objectEqual({ a: 1, b: 2 }, { b: 2, a: 1 }); // => true\n * objectEqual({ a: 1 }, { a: 2 }); // => false\n * ```\n */\nexport const objectEqual = (a: object, b: object): boolean => {\n if (Object.is(a, b)) {\n return true;\n }\n const sortDeep = (obj: unknown): unknown => {\n if (typeof obj !== 'object' || !obj) {\n return undefined;\n }\n return Object.entries(obj)\n .sort()\n .map(([entryKey, value]) => [entryKey, typeof value === 'object' ? sortDeep(value) : value]);\n };\n return JSON.stringify(sortDeep(a)) === JSON.stringify(sortDeep(b));\n};\n","/**\n * Disable the button that triggered an event while an async operation runs, re-enabling it after.\n *\n * @remarks\n * Prevents the common double-submit / double-tap bug: the `event.target` button is disabled, the\n * work is awaited, and the button is re-enabled — even if the work rejects (the rejection is\n * swallowed here so the button always recovers; handle errors inside `work` if you need to react).\n *\n * @param event - The DOM event whose `target` is the button to disable (e.g. a click event).\n * @param work - The async operation to run while the button is disabled.\n * @returns A Promise that resolves once the work has settled and the button has been re-enabled.\n * @example\n * ```ts\n * async submit(event: Event): Promise<void> {\n * await disableHandler(event, this.save());\n * }\n * ```\n */\nexport const disableHandler = async (event: Event, work: Promise<void | boolean>): Promise<void> => {\n const target = event.target as HTMLButtonElement;\n target.disabled = true;\n await work.catch((): undefined => undefined);\n target.disabled = false;\n};\n","import { WritableSignal } from '@angular/core';\n\n/**\n * Toggle the `disabled` flag of a signal-held `ion-infinite-scroll` / `ion-refresher` element.\n *\n * @remarks\n * A tiny pure helper for the common pattern of stashing the completing scroll/refresher element in a\n * signal (e.g. captured from the event) and later enabling/disabling it — for instance disabling\n * infinite scroll once the last page has loaded. A no-op when the signal holds no element.\n *\n * @param completeEvent - a writable signal holding the infinite-scroll / refresher element (or nullish)\n * @param disabled - the value to set on the element's `disabled` property\n * @example\n * ```ts\n * const infinite = signal<HTMLIonInfiniteScrollElement | null>(null);\n * // ...on ionInfinite: infinite.set(ev.target); ...when no more pages:\n * kitChangeEventDisabled(infinite, true);\n * ```\n */\nexport const kitChangeEventDisabled = (\n completeEvent: WritableSignal<HTMLIonInfiniteScrollElement | HTMLIonRefresherElement | null | undefined>,\n disabled: boolean,\n): void => {\n const event = completeEvent();\n if (event) {\n event.disabled = disabled;\n }\n};\n","import { ElementRef } from '@angular/core';\nimport { Observable, startWith } from 'rxjs';\n\n/**\n * Observe an Ionic page's \"is currently entered\" state from its lifecycle DOM events.\n *\n * @remarks\n * Emits `true` on `ionViewDidEnter` and `false` on `ionViewWillEnter` / `ionViewWillLeave`, seeded\n * with `false` via `startWith`. Useful to pause/resume work (timers, video, expensive rendering)\n * while a page is off-screen in Ionic's stack navigation, without wiring the four lifecycle hooks by\n * hand. The listeners are removed when the Observable is unsubscribed.\n *\n * @param el - an `ElementRef` for the page host element (the `ion-page`)\n * @returns an Observable that emits whether the page is currently entered\n * @example\n * ```ts\n * export class FeedPage {\n * readonly #host = inject(ElementRef);\n * readonly isEntered = toSignal(kitCreateDidEnter(this.#host), { initialValue: false });\n * }\n * ```\n */\nexport const kitCreateDidEnter = (el: ElementRef): Observable<boolean> => {\n return new Observable<boolean>((observer) => {\n const willEnter = () => observer.next(false);\n const didEnter = () => observer.next(true);\n const willLeave = () => observer.next(false);\n\n el.nativeElement.addEventListener('ionViewWillEnter', willEnter);\n el.nativeElement.addEventListener('ionViewDidEnter', didEnter);\n el.nativeElement.addEventListener('ionViewWillLeave', willLeave);\n\n return () => {\n el.nativeElement.removeEventListener('ionViewWillEnter', willEnter);\n el.nativeElement.removeEventListener('ionViewDidEnter', didEnter);\n el.nativeElement.removeEventListener('ionViewWillLeave', willLeave);\n };\n }).pipe(startWith(false));\n};\n","/*\n * Public API Surface of @rdlabo/ionic-angular-kit\n */\n\n// Storage: typed wrapper around the platform key/value store.\nexport * from './lib/storage/kit-storage.service';\n\n// Overlay: wrapper around the Ionic Modal / Toast / Alert controllers.\nexport * from './lib/overlay/overlay-config';\nexport * from './lib/overlay/kit-overlay.controller';\nexport * from './lib/overlay/kit-loading.controller';\nexport * from './lib/overlay/kit-reload-alert.controller';\nexport * from './lib/overlay/kit-auth-failed-alert';\nexport * from './lib/overlay/kit-language-action-sheet';\n\n// Directives.\nexport * from './lib/directives/autofill.directive';\n\n// Keyboard: native keyboard reposition listeners.\nexport * from './lib/keyboard/kit-keyboard';\n\n// Theme (`@rdlabo/ionic-angular-kit/theme`), Review (`.../review`), Printer (`.../printer`) and\n// Firebase auth (`.../auth-firebase`) are separate secondary entry points so their heavy native peers\n// (status-bar / in-app-review+preferences / brotherprint+dom-to-image / @angular/fire+firebase) are\n// only pulled in by apps that import those subpaths.\n\n// Auth: functional route guards.\nexport * from './lib/auth/auth-guards';\n\n// HTTP: functional interceptor.\nexport * from './lib/http/kit-http.interceptor';\n\n// Utils: framework-agnostic pure helpers.\nexport * from './lib/utils/haptics';\nexport * from './lib/utils/array';\nexport * from './lib/utils/object';\nexport * from './lib/utils/dom';\nexport * from './lib/utils/ionic-scroll-event';\nexport * from './lib/utils/ionic-view-enter';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"rdlabo-ionic-angular-kit.mjs","sources":["../../../projects/kit/src/lib/storage/kit-storage.service.ts","../../../projects/kit/src/lib/storage/kit-auth-email-store.ts","../../../projects/kit/src/lib/overlay/overlay-config.ts","../../../projects/kit/src/lib/utils/haptics.ts","../../../projects/kit/src/lib/overlay/kit-overlay.controller.ts","../../../projects/kit/src/lib/overlay/kit-loading.controller.ts","../../../projects/kit/src/lib/overlay/kit-reload-alert.controller.ts","../../../projects/kit/src/lib/overlay/kit-auth-failed-alert.ts","../../../projects/kit/src/lib/overlay/kit-language-action-sheet.ts","../../../projects/kit/src/lib/directives/auth-input.directive.ts","../../../projects/kit/src/lib/keyboard/kit-keyboard.ts","../../../projects/kit/src/lib/auth/auth-guards.ts","../../../projects/kit/src/lib/http/kit-http.interceptor.ts","../../../projects/kit/src/lib/utils/array.ts","../../../projects/kit/src/lib/utils/object.ts","../../../projects/kit/src/lib/utils/dom.ts","../../../projects/kit/src/lib/utils/ionic-scroll-event.ts","../../../projects/kit/src/lib/utils/ionic-view-enter.ts","../../../projects/kit/src/public-api.ts","../../../projects/kit/src/rdlabo-ionic-angular-kit.ts"],"sourcesContent":["import { inject, Injectable } from '@angular/core';\nimport { Storage } from '@ionic/storage-angular';\n\n/**\n * Thin, typed wrapper around `@ionic/storage-angular`.\n *\n * Starts `create()` exactly once and stores the resulting ready Promise. Every operation awaits\n * that Promise before touching the underlying store, so calls made before initialization completes\n * are queued rather than dropped.\n *\n * @remarks\n * A naive wrapper that reads the store synchronously would silently no-op (or throw) when invoked\n * before `create()` resolves, losing early writes. Awaiting the one-time ready Promise on every\n * operation removes that race without forcing callers to coordinate initialization themselves.\n *\n * @example\n * ```ts\n * constructor(private readonly storage: KitStorageService) {}\n *\n * async ngOnInit(): Promise<void> {\n * await this.storage.set('token', 'abc123');\n * const token = await this.storage.get<string>('token');\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitStorageService {\n /** One-time `create()` ready Promise; awaited before every operation so early calls are not lost. */\n readonly #ready: Promise<Storage> = inject(Storage).create();\n\n /**\n * Persist a value under the given key.\n *\n * @typeParam T - type of the value being stored\n * @param key - key to store the value under\n * @param value - value to persist; overwrites any existing value for the key\n * @returns a Promise that resolves once the value has been written\n * @example\n * ```ts\n * await storage.set('user', { id: 1, name: 'Ada' });\n * ```\n */\n async set<T>(key: string, value: T): Promise<void> {\n await (await this.#ready).set(key, value);\n }\n\n /**\n * Read the value stored under the given key.\n *\n * @typeParam T - expected type of the stored value\n * @param key - key to read\n * @returns the stored value, or `null` when the key is absent\n * @example\n * ```ts\n * const user = await storage.get<{ id: number }>('user');\n * ```\n */\n async get<T>(key: string): Promise<T | null> {\n return (await (await this.#ready).get(key)) ?? null;\n }\n\n /**\n * Remove the value stored under the given key.\n *\n * @param key - key to remove; a no-op when the key is absent\n * @returns a Promise that resolves once the key has been removed\n */\n async remove(key: string): Promise<void> {\n await (await this.#ready).remove(key);\n }\n\n /**\n * Remove every key/value pair from the store.\n *\n * @returns a Promise that resolves once the store has been emptied\n */\n async clear(): Promise<void> {\n await (await this.#ready).clear();\n }\n\n /**\n * List every key currently present in the store.\n *\n * @returns an array of all stored keys\n */\n async keys(): Promise<string[]> {\n return (await this.#ready).keys();\n }\n}\n","/**\n * Remember the email a user last entered on the sign-in form so the field can be prefilled next\n * time (the password is never stored).\n *\n * @remarks\n * Storage-agnostic: the helpers take a minimal async key/value store that {@link KitStorageService}\n * satisfies structurally, so they stay pure and unit-testable without DI. `kitRememberEmail`\n * **validates the address before persisting** — a malformed or partial string is silently ignored,\n * so a garbage entry (or a fat-fingered attempt) never becomes the next prefill. A well-formed email\n * that later fails to sign in is still remembered by design: the user simply re-enters/corrects it.\n *\n * These live in the main entry (next to {@link KitStorageService}) rather than in `auth-firebase`,\n * so the `KitAutofillDirective` can consume them without the main entry depending on the Firebase\n * entry.\n */\n\n/** Minimal async key/value store — structurally satisfied by `KitStorageService`. */\nexport interface KitEmailStore {\n get<T>(key: string): Promise<T | null>;\n set<T>(key: string, value: T): Promise<void>;\n remove(key: string): Promise<void>;\n}\n\n/** Storage key under which the last entered sign-in email is kept. */\nexport const KIT_LAST_AUTH_EMAIL_KEY = 'kit:last-auth-email';\n\n/**\n * Angular's `Validators.email` pattern — a pragmatic, RFC-5322-inspired address check. Kept in sync\n * with `@angular/forms` so a value we persist would also pass the form's own email validation.\n */\nconst EMAIL_REGEXP =\n /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+(?:\\.[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?(?:\\.[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/;\n\n/** Whether `email` is a well-formed address (matches `@angular/forms` `Validators.email`). */\nexport const kitIsValidEmail = (email: string): boolean => EMAIL_REGEXP.test(email);\n\n/**\n * Persist the entered email for next time — but only when it is a well-formed address.\n *\n * @param store - the app's storage (e.g. `KitStorageService`)\n * @param email - the entered email; ignored (not stored) when malformed\n * @returns `true` when the value passed validation and was stored, `false` when it was ignored\n */\nexport const kitRememberEmail = async (store: KitEmailStore, email: string): Promise<boolean> => {\n if (!kitIsValidEmail(email)) {\n return false;\n }\n await store.set(KIT_LAST_AUTH_EMAIL_KEY, email);\n return true;\n};\n\n/**\n * Recall the last remembered email.\n *\n * @param store - the app's storage (e.g. `KitStorageService`)\n * @returns the stored email, or `null` when none has been remembered\n */\nexport const kitRecallEmail = (store: KitEmailStore): Promise<string | null> =>\n store.get<string>(KIT_LAST_AUTH_EMAIL_KEY);\n\n/**\n * Forget the remembered email.\n *\n * @remarks\n * Called when the user intentionally clears or invalidates the field, so a stale prefill is not\n * resurrected next time.\n *\n * @param store - the app's storage (e.g. `KitStorageService`)\n */\nexport const kitForgetEmail = (store: KitEmailStore): Promise<void> =>\n store.remove(KIT_LAST_AUTH_EMAIL_KEY);\n","import type { EnvironmentProviders } from '@angular/core';\nimport { InjectionToken, makeEnvironmentProviders } from '@angular/core';\n\n/**\n * User-visible button labels consumed by `KitOverlayController`.\n *\n * @remarks\n * The kit deliberately ships no i18n strings of its own and has no hard dependency on\n * `@angular/localize`. The consuming application always provides these labels: multilingual apps\n * pass `$localize`-resolved strings, single-language apps pass plain literals.\n */\nexport interface KitLabels {\n /** Text for the \"close\" button used by alerts and toasts. */\n readonly close: string;\n /** Text for the \"cancel\" button used by confirmation alerts. */\n readonly cancel: string;\n}\n\n/**\n * Overlay configuration injected via `provideKitOverlay()`.\n *\n * @remarks\n * All fields are required; the consuming application must supply a complete configuration.\n */\nexport interface KitOverlayConfig {\n /** Button labels used across the overlays presented by `KitOverlayController`. */\n readonly labels: KitLabels;\n}\n\n/**\n * Injection token carrying the {@link KitOverlayConfig} for `KitOverlayController`.\n *\n * @remarks\n * Provide it through {@link provideKitOverlay} rather than registering it directly.\n */\nexport const KIT_OVERLAY_CONFIG = new InjectionToken<KitOverlayConfig>('@rdlabo/ionic-angular-kit:overlay');\n\n/**\n * Wire `KitOverlayController` into the application by providing its button labels.\n *\n * @param config - overlay configuration, including the button labels to inject\n * @returns environment providers to add to the application's provider list\n * @example\n * ```ts\n * bootstrapApplication(AppComponent, {\n * providers: [\n * provideKitOverlay({ labels: { close: $localize`Close`, cancel: $localize`Cancel` } }),\n * ],\n * });\n * ```\n */\nexport const provideKitOverlay = (config: KitOverlayConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_OVERLAY_CONFIG, useValue: config }]);\n","import { Capacitor } from '@capacitor/core';\nimport { Haptics, ImpactStyle } from '@capacitor/haptics';\n\n/**\n * Trigger native haptic impact feedback.\n *\n * Delegates to `@capacitor/haptics` `Haptics.impact()` when running on a native platform. On the\n * web (or any non-native platform) it is a no-op and resolves without doing anything.\n *\n * @remarks\n * This haptic side effect was previously bundled implicitly into toast/modal presentation. It has\n * been decoupled into this explicit function so callers opt in to the feedback deliberately, rather\n * than receiving it as a hidden side effect of presenting UI.\n *\n * @param style - The impact intensity to play. Defaults to {@link ImpactStyle.Light}.\n * @returns A promise that resolves once the feedback has been requested (immediately on the web).\n * @example\n * ```ts\n * import { ImpactStyle } from '@capacitor/haptics';\n *\n * // Light tap (default)\n * await kitImpact();\n *\n * // Stronger feedback, e.g. on a confirming action\n * await kitImpact(ImpactStyle.Heavy);\n * ```\n */\nexport const kitImpact = async (style: ImpactStyle = ImpactStyle.Light): Promise<void> => {\n if (Capacitor.isNativePlatform()) {\n await Haptics.impact({ style });\n }\n};\n","import { inject, Injectable } from '@angular/core';\nimport type { InputSignalWithTransform } from '@angular/core';\nimport type { ModalOptions, PopoverOptions, ToastOptions } from '@ionic/angular/standalone';\nimport { AlertController, ModalController, PopoverController, ToastController } from '@ionic/angular/standalone';\nimport type { PluginListenerHandle } from '@capacitor/core';\nimport { Capacitor } from '@capacitor/core';\nimport { Keyboard } from '@capacitor/keyboard';\nimport { KIT_OVERLAY_CONFIG } from './overlay-config';\nimport { kitImpact } from '../utils/haptics';\n\n/**\n * Options for {@link KitOverlayController.presentModal}.\n *\n * @remarks\n * Extends Ionic's `ModalOptions` but omits `component` and `componentProps`, which are passed as\n * dedicated arguments instead.\n */\nexport interface KitModalPresentOptions extends Omit<ModalOptions, 'component' | 'componentProps'> {\n /**\n * When `true`, expand the sheet to its maximum breakpoint while the native keyboard is shown.\n *\n * @remarks\n * Only has an effect on native platforms; ignored on the web.\n */\n watchKeyboard?: boolean;\n}\n\n/**\n * Optional static metadata a modal component may declare to make {@link KitOverlayController.presentModal}\n * type-safe in its dismiss data: the value passed to `dismiss()` is inferred from `modalReturn`.\n *\n * @remarks\n * Props do *not* need to be declared here — {@link KitOverlayController.presentModal} infers them directly\n * from the component's `input()` fields (see {@link ModalPropsOf}), so `input()` stays the single source of\n * truth and can never drift from a hand-written declaration. Only the dismiss-data shape, which has no\n * counterpart on the component, is declared — as a `declare static modalReturn` phantom type with no runtime\n * value, so it adds nothing to the bundle.\n *\n * @example\n * ```ts\n * export class EditPage {\n * declare static modalReturn: { saved: boolean };\n * readonly id = input.required<number>(); // props are inferred from here\n * readonly note = input<string>(); // default-less input() → optional prop\n * }\n *\n * // Caller — `id` is required (input.required), `note` optional; result is `{ saved: boolean } | undefined`:\n * const result = await overlay.presentModal(EditPage, { id: 1 });\n * ```\n */\nexport interface ModalMetadata<R = unknown> {\n /** Shape of the data the modal resolves with when dismissed. */\n modalReturn?: R;\n}\n\n/**\n * Write type of a signal `input()` field (unwraps `input.required`, `input()` and transform inputs).\n *\n * @remarks\n * Matched with `any` (not `unknown`): `InputSignalWithTransform`'s `TransformT` is contravariant, so\n * `InputSignal<number>` is not assignable to `InputSignalWithTransform<unknown, unknown>`.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype InputWriteType<F> = F extends InputSignalWithTransform<any, infer W> ? W : never;\n\n/** Instance type of a component constructor; `never` for non-class components (string / HTMLElement refs). */\ntype InstanceOf<C> = C extends abstract new (...args: never[]) => infer I ? I : never;\n\n/** Keys of the `input()` signal fields on a component instance. */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype InputFieldKeys<I> = { [K in keyof I]-?: I[K] extends InputSignalWithTransform<any, any> ? K : never }[keyof I];\n\n/**\n * Props object inferred from a component's `input()` fields. Required vs. optional is decided by the write\n * type: `input.required<T>()` / `input<T>(default)` yield `T` (no `undefined`) → required prop, while a\n * default-less `input<T>()` yields `T | undefined` → optional prop.\n *\n * @remarks\n * Angular's types cannot distinguish `input.required<T>()` from a defaulted `input<T>(default)` — both are\n * `InputSignal<T>` — so a defaulted input is (safely) treated as required. Declare inputs you want to omit at\n * the call site as default-less `input<T>()`.\n */\ntype ModalPropsOf<I> = { [K in InputFieldKeys<I> as undefined extends InputWriteType<I[K]> ? never : K]: InputWriteType<I[K]> } & {\n [K in InputFieldKeys<I> as undefined extends InputWriteType<I[K]> ? K : never]?: InputWriteType<I[K]>;\n};\n\n/** `input()` keys whose write type excludes `undefined` (required / defaulted inputs). Empty when none. */\ntype RequiredInputKeys<I> = { [K in InputFieldKeys<I>]: undefined extends InputWriteType<I[K]> ? never : K }[InputFieldKeys<I>];\n\n/**\n * Dismiss-data type inferred from a component's static {@link ModalMetadata.modalReturn}. A component that\n * declares no `modalReturn` resolves to `void`: it is treated as returning no dismiss data, so the compiler\n * rejects any attempt to read the result. Declare `modalReturn` on modals that do resolve with data.\n */\ntype ModalReturnOf<C> = C extends { modalReturn: infer R } ? R : void;\n\n/** Loose trailing args (optional, untyped props) — used when a component exposes no signal `input()` fields. */\ntype LooseModalPresentArgs = [componentProps?: ModalOptions['componentProps'], options?: KitModalPresentOptions];\n\n/**\n * Trailing `presentModal` args derived from a component's `input()` fields: props are inferred and typed via\n * {@link ModalPropsOf}. When the component declares at least one required input the props argument is required;\n * when every input is optional the props argument itself is optional. Components with no signal inputs (plain\n * classes, `@Input()`-decorator components, or non-class refs) fall back to loose, untyped props.\n */\ntype ModalPresentArgs<C, I = InstanceOf<C>> = [I] extends [never]\n ? LooseModalPresentArgs\n : [InputFieldKeys<I>] extends [never]\n ? LooseModalPresentArgs\n : [RequiredInputKeys<I>] extends [never]\n ? [componentProps?: ModalPropsOf<I>, options?: KitModalPresentOptions]\n : [componentProps: ModalPropsOf<I>, options?: KitModalPresentOptions];\n\n/**\n * Options for {@link KitOverlayController.alertClose}.\n */\nexport interface KitAlertCloseOptions {\n /** Alert header text. */\n header: string;\n /** Alert body message. */\n message: string;\n /** Optional alert sub-header text shown beneath the header. */\n subHeader?: string;\n}\n\n/**\n * Options for {@link KitOverlayController.alertConfirm}.\n *\n * @remarks\n * Extends {@link KitAlertCloseOptions} with the confirm-button text.\n */\nexport interface KitAlertConfirmOptions extends KitAlertCloseOptions {\n /**\n * Text for the OK (confirm) button.\n *\n * @remarks\n * Action-specific, so it is supplied by the caller rather than taken from the shared labels.\n */\n okText: string;\n}\n\n/**\n * Attach a native keyboard listener that grows the modal to its maximum breakpoint when the\n * keyboard appears.\n *\n * @param modal - the presented modal element to resize\n * @returns a listener handle; on non-native platforms a no-op handle whose `remove()` does nothing\n * @internal\n */\nconst watchModalKeyboard = async (modal: HTMLIonModalElement): Promise<PluginListenerHandle> => {\n if (!Capacitor.isNativePlatform()) {\n return { remove: async () => undefined };\n }\n return Keyboard.addListener('keyboardDidShow', () => modal.setCurrentBreakpoint(1));\n};\n\n/**\n * Ergonomic wrapper that consolidates Ionic's overlay controllers (Modal / Toast / Alert).\n *\n * @remarks\n * Folds the repetitive create → present → onDidDismiss sequence into single calls and returns the\n * relevant result directly. It holds no application-specific policy such as navigation; compose\n * those concerns on the consuming side.\n *\n * @example\n * ```ts\n * constructor(private readonly overlay: KitOverlayController) {}\n *\n * async edit(): Promise<void> {\n * const result = await this.overlay.presentModal(EditPage, { id: 1 });\n * if (result) {\n * await this.overlay.presentToast({ message: 'Saved' });\n * }\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitOverlayController {\n readonly #modalCtrl = inject(ModalController);\n readonly #popoverCtrl = inject(PopoverController);\n readonly #toastCtrl = inject(ToastController);\n readonly #alertCtrl = inject(AlertController);\n readonly #labels = inject(KIT_OVERLAY_CONFIG).labels;\n\n /**\n * Guards against stacking alerts: while one {@link alertClose} / {@link alertConfirm} is on screen,\n * a concurrent call resolves immediately (close: no-op, confirm: `false`) instead of presenting a\n * second alert on top of the first. Shared across both methods so a confirm cannot stack over a close.\n */\n #alertPresenting = false;\n\n /**\n * Present a modal and resolve with the data passed to its dismissal.\n *\n * @typeParam O - type of the data returned when the modal is dismissed\n * @param component - the component to render inside the modal\n * @param componentProps - props to pass to the modal component\n * @param options - additional modal options, including {@link KitModalPresentOptions.watchKeyboard}\n * @returns the dismiss data, or `undefined` when the modal is dismissed without data\n * @remarks\n * Presenting a modal triggers light native haptic feedback as an intentional kit UX choice,\n * consistent with {@link presentPopover} and {@link presentToast}.\n *\n * Props are inferred from the component's `input()` fields (see {@link ModalPropsOf}): required inputs\n * become required props, so the compiler rejects a call that omits them. The return type is inferred from\n * a static `modalReturn` (see {@link ModalMetadata}); a component with no `modalReturn` resolves to `void`\n * — the modal is treated as returning no dismiss data.\n * @example\n * ```ts\n * // Inferred — `id` required (input.required), `note` optional; result is `{ saved: boolean } | undefined`:\n * const result = await overlay.presentModal(EditPage, { id: 1 });\n * ```\n */\n presentModal<C extends ModalOptions['component']>(component: C, ...args: ModalPresentArgs<C>): Promise<ModalReturnOf<C> | undefined>;\n async presentModal(\n component: ModalOptions['component'],\n componentProps?: ModalOptions['componentProps'],\n options: KitModalPresentOptions = {},\n ): Promise<unknown> {\n void kitImpact();\n const { watchKeyboard, ...modalOptions } = options;\n const modal = await this.#modalCtrl.create({ component, componentProps, ...modalOptions });\n await modal.present();\n const handle = watchKeyboard ? await watchModalKeyboard(modal) : null;\n const { data } = await modal.onDidDismiss<unknown>();\n await handle?.remove();\n return data;\n }\n\n /**\n * Present a popover and resolve with the data passed to its dismissal.\n *\n * @typeParam O - type of the data returned when the popover is dismissed\n * @param component - the component to render inside the popover\n * @param componentProps - props to pass to the popover component\n * @param options - additional popover options (for example `event` to anchor it, or `cssClass`)\n * @returns the dismiss data, or `undefined` when the popover is dismissed without data\n * @remarks\n * Presenting a popover triggers light native haptic feedback as an intentional kit UX choice,\n * consistent with {@link presentModal} and {@link presentToast}.\n * @example\n * ```ts\n * const choice = await overlay.presentPopover<MenuChoice>(MenuPopover, { items }, { event });\n * ```\n */\n async presentPopover<O = unknown>(\n component: PopoverOptions['component'],\n componentProps?: PopoverOptions['componentProps'],\n options: Omit<PopoverOptions, 'component' | 'componentProps'> = {},\n ): Promise<O | undefined> {\n void kitImpact();\n const popover = await this.#popoverCtrl.create({ component, componentProps, ...options });\n await popover.present();\n const { data } = await popover.onDidDismiss<O>();\n return data;\n }\n\n /**\n * Present a toast using kit defaults that the caller may override.\n *\n * @remarks\n * Defaults to a bottom position, a 2000ms duration, a vertical swipe gesture, and a close button\n * from the configured labels; any of these can be overridden via `options`. Presenting a toast\n * also triggers light native haptic feedback as an intentional kit UX choice.\n *\n * Bottom is the fleet-wide default (top left the toast fighting the tab bar and the keyboard).\n * For a bottom toast with no explicit `positionAnchor`, if a visible `ion-tab-bar` is present the\n * toast is automatically anchored above it (Ionic places a bottom toast above its `positionAnchor`),\n * so the toast never sits behind the tabs. Avoiding the on-screen keyboard is handled by the native\n * keyboard resize — the anchored/bottom toast rides the shrinking viewport above the keyboard;\n * Ionic itself has no toast keyboard-avoidance option. An app can override either via `options`.\n *\n * @param options - Ionic toast options that override the kit defaults\n * @returns the presented toast element\n * @example\n * ```ts\n * await overlay.presentToast({ message: 'Copied to clipboard' });\n * ```\n */\n async presentToast(options: ToastOptions): Promise<HTMLIonToastElement> {\n void kitImpact();\n const merged: ToastOptions = {\n position: 'bottom',\n duration: 2000,\n buttons: [this.#labels.close],\n swipeGesture: 'vertical',\n ...options,\n };\n // Anchor a bottom toast above the tab bar when one is visibly present and the caller did not\n // set an explicit anchor, so the toast clears the tabs (and rides the keyboard-resized viewport).\n if (merged.position === 'bottom' && merged.positionAnchor === undefined) {\n const tabBar = document.querySelector('ion-tab-bar');\n if (tabBar && tabBar.getBoundingClientRect().height > 0) {\n merged.positionAnchor = tabBar as HTMLElement;\n }\n }\n const toast = await this.#toastCtrl.create(merged);\n await toast.present();\n return toast;\n }\n\n /**\n * Present a notification alert with a single \"close\" button and wait for it to be dismissed.\n *\n * @param options - alert content (header, message, optional sub-header)\n * @returns a Promise that resolves once the alert has been dismissed\n * @remarks\n * No-ops when another alert is already presenting (see {@link alertClose} / {@link alertConfirm}\n * stacking guard).\n * @example\n * ```ts\n * await overlay.alertClose({ header: 'Done', message: 'Your changes were saved.' });\n * ```\n */\n async alertClose(options: KitAlertCloseOptions): Promise<void> {\n if (this.#alertPresenting) {\n return;\n }\n this.#alertPresenting = true;\n try {\n const alert = await this.#alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [this.#labels.close],\n });\n await alert.present();\n await alert.onWillDismiss();\n } finally {\n this.#alertPresenting = false;\n }\n }\n\n /**\n * Present a confirmation alert with cancel and OK buttons.\n *\n * @param options - alert content plus the OK button text via {@link KitAlertConfirmOptions.okText}\n * @returns `true` when the user presses OK, `false` otherwise (cancel or backdrop dismissal)\n * @example\n * ```ts\n * const ok = await overlay.alertConfirm({\n * header: 'Delete item?',\n * message: 'This cannot be undone.',\n * okText: 'Delete',\n * });\n * if (ok) {\n * await remove();\n * }\n * ```\n * @remarks\n * Returns `false` immediately when another alert is already presenting (see {@link alertClose} /\n * {@link alertConfirm} stacking guard).\n */\n async alertConfirm(options: KitAlertConfirmOptions): Promise<boolean> {\n if (this.#alertPresenting) {\n return false;\n }\n this.#alertPresenting = true;\n try {\n const alert = await this.#alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [\n { text: this.#labels.cancel, role: 'cancel' },\n { text: options.okText, role: 'confirm' },\n ],\n });\n await alert.present();\n const { role } = await alert.onWillDismiss();\n return role === 'confirm';\n } finally {\n this.#alertPresenting = false;\n }\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport type { LoadingOptions } from '@ionic/angular/standalone';\nimport { LoadingController } from '@ionic/angular/standalone';\n\n/**\n * Reference-counted wrapper around Ionic's `LoadingController` that keeps at most one loading\n * indicator on screen across concurrent async work.\n *\n * @remarks\n * Each {@link presentLoading} increments a counter and each {@link dismissLoading} decrements it; the\n * indicator is presented on the `0 → 1` transition and dismissed on the `N → 0` transition. This\n * removes the flicker / \"stuck spinner\" bugs that come from every service calling\n * `LoadingController.create/dismiss` independently.\n *\n * All operations are serialized through an internal promise chain, so a `create → present` sequence\n * can never interleave with a concurrent `dismiss`. That is what makes the counter race-safe: a\n * dismiss that arrives while the indicator is still being presented runs *after* `present()` settles\n * and therefore tears the element down instead of leaving it orphaned on screen.\n *\n * Always pair every `presentLoading()` with exactly one `dismissLoading()` — a `try/finally` is the\n * safest shape.\n *\n * @example\n * ```ts\n * constructor(private readonly loading: KitLoadingController) {}\n *\n * async save(): Promise<void> {\n * await this.loading.presentLoading({ message: 'Saving…' });\n * try {\n * await this.api.save();\n * } finally {\n * await this.loading.dismissLoading();\n * }\n * }\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitLoadingController {\n readonly #loadingCtrl = inject(LoadingController);\n\n /** Outstanding {@link presentLoading} calls not yet balanced by {@link dismissLoading}. */\n #count = 0;\n\n /** The single presented loading element, or `null` when none is on screen. */\n #loading: HTMLIonLoadingElement | null = null;\n\n /**\n * Serializes present/dismiss operations. Each call chains onto this promise, runs after the\n * previous operation has fully settled, then reads {@link #count} and acts accordingly.\n */\n #queue: Promise<void> = Promise.resolve();\n\n /**\n * Show the loading indicator, or join the one already on screen.\n *\n * @param options - Ionic loading options; only applied by the call that actually creates the\n * indicator (the `0 → 1` transition). Ignored while an indicator is already present.\n * @returns a Promise that resolves once the indicator is on screen (or immediately when one already is)\n */\n async presentLoading(options: LoadingOptions = {}): Promise<void> {\n this.#count++;\n try {\n await this.#enqueue(async () => {\n // Create only on the transition into \"something is loading\"; concurrent callers ride the same\n // element. Re-check the count in case a dismiss already balanced this call while queued.\n if (this.#count > 0 && this.#loading === null) {\n const loading = await this.#loadingCtrl.create(options);\n await loading.present();\n this.#loading = loading;\n }\n });\n } catch (error) {\n // Roll back the reference this call took: a failed create/present must not leave the counter\n // elevated, otherwise a later cycle never reaches N → 0 and the spinner stays stuck on screen.\n this.#count--;\n throw error;\n }\n }\n\n /**\n * Release one reference; dismiss the indicator once the last reference is gone.\n *\n * @returns a Promise that resolves once the reference is released (and the indicator dismissed if\n * this was the last one). No-ops when the counter is already at zero.\n */\n async dismissLoading(): Promise<void> {\n if (this.#count === 0) {\n return;\n }\n this.#count--;\n await this.#enqueue(async () => {\n // Tear down only when the last consumer is gone. Because this runs after any in-flight\n // present() has settled (via the queue), there is never an orphaned loading element.\n if (this.#count === 0 && this.#loading !== null) {\n const loading = this.#loading;\n this.#loading = null;\n await loading.dismiss();\n }\n });\n }\n\n /**\n * Append `task` to the serialization chain and return its completion.\n *\n * @remarks\n * The stored chain swallows rejections so a single failing operation cannot wedge every future\n * overlay; the returned promise still rejects so the caller observes the error.\n */\n #enqueue(task: () => Promise<void>): Promise<void> {\n const run = this.#queue.then(task);\n this.#queue = run.then(\n () => undefined,\n () => undefined,\n );\n return run;\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport { AlertController } from '@ionic/angular/standalone';\nimport { KIT_OVERLAY_CONFIG } from './overlay-config';\n\n/**\n * Content for {@link KitReloadAlertController.present}.\n */\nexport interface KitReloadAlertOptions {\n /** Alert header text. */\n header: string;\n /** Alert body message. */\n message: string;\n /**\n * Text for the reload (confirm) button, e.g. \"リフレッシュ\".\n *\n * @remarks\n * Action-specific, so it is supplied by the caller rather than taken from the shared labels.\n * The cancel button uses the configured {@link KitLabels.cancel}.\n */\n okText: string;\n}\n\n/**\n * The fleet's canonical \"network error → offer to reload\" alert, as a stateful controller.\n *\n * @remarks\n * Consolidates the good-UX variant that had drifted across the fleet into one behavior:\n *\n * - **De-dup** — never stacks; a second {@link present} while an alert is already shown is a no-op.\n * - **Backdrop lock** — `backdropDismiss: false`, so a critical network error can't be dismissed by\n * an accidental backdrop tap; the user consciously chooses cancel or reload.\n * - **Auto-dismiss on reconnect** — the presented alert is tracked, so {@link dismiss} (called from a\n * later successful response) clears a now-stale error alert instead of leaving it on screen.\n * - **Reload on confirm** — the confirm button calls `location.reload()`.\n *\n * All user-facing text is supplied by the caller so the kit stays free of any hardcoded i18n; the\n * cancel button reuses {@link KitOverlayConfig.labels}. Because it performs navigation\n * (`location.reload()`) and holds state, it is a dedicated controller rather than part of\n * {@link KitOverlayController}, which stays free of navigation policy.\n *\n * @example\n * ```ts\n * // In an HTTP interceptor:\n * const reload = inject(KitReloadAlertController);\n * // ...on a network-class error while connected:\n * await reload.present({ header: 'ネットワークエラー', message: `…(${status})`, okText: 'リフレッシュ' });\n * // ...on any later successful response:\n * await reload.dismiss();\n * ```\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class KitReloadAlertController {\n readonly #alertCtrl = inject(AlertController);\n readonly #labels = inject(KIT_OVERLAY_CONFIG).labels;\n #alert: HTMLIonAlertElement | null = null;\n\n /**\n * Present the reload alert, unless one is already on screen.\n *\n * @param options - alert content plus the reload-button text\n * @returns a Promise that resolves once the alert has been presented (or immediately if suppressed)\n */\n async present(options: KitReloadAlertOptions): Promise<void> {\n // この controller 経由でも直書き ion-alert でも、多重表示しない。\n if (this.#alert || document.querySelector('ion-alert')) {\n return;\n }\n const alert = await this.#alertCtrl.create({\n header: options.header,\n message: options.message,\n backdropDismiss: false,\n buttons: [\n { text: this.#labels.cancel, role: 'cancel' },\n {\n text: options.okText,\n handler: () => {\n location.reload();\n },\n },\n ],\n });\n this.#alert = alert;\n void alert.onDidDismiss().then(() => {\n // 別の present で置き換わっていない限り、追跡を解除する。\n if (this.#alert === alert) {\n this.#alert = null;\n }\n });\n await alert.present();\n }\n\n /**\n * Dismiss the tracked reload alert if one is showing.\n *\n * @remarks\n * Typically called from a later successful response so a stale \"network error\" alert clears once\n * connectivity is restored. A no-op when nothing is showing.\n *\n * @returns a Promise that resolves once the alert has been dismissed (or immediately if none)\n */\n async dismiss(): Promise<void> {\n const alert = this.#alert;\n this.#alert = null;\n await alert?.dismiss();\n }\n}\n","import type { AlertController } from '@ionic/angular/standalone';\n\n/**\n * Content for {@link kitPresentAuthFailedAlert}.\n */\nexport interface KitAuthFailedAlertOptions {\n /** Alert header, e.g. \"ログインできませんでした\". */\n header: string;\n /** Optional sub-header; typically the short server error code/name. */\n subHeader?: string;\n /** Alert body message; typically the server-provided detail. */\n message: string;\n /** Text for the single close button, e.g. \"閉じる\". */\n closeText: string;\n}\n\n/**\n * Present the fleet's canonical \"sign-in / token exchange failed\" alert.\n *\n * @remarks\n * Folds together the alert every token-exchange app duplicated verbatim when a startup re-login\n * fails: an informative alert (header + optional server error as sub-header + detail message) with a\n * single close button that reloads the app (`location.reload()`) so the user restarts cleanly. The\n * caller is still responsible for signing the user out around this call.\n *\n * All user-facing text is supplied by the caller so the kit stays free of any hardcoded i18n. Kept\n * as a standalone helper (taking the `AlertController`) rather than a method on\n * {@link KitOverlayController}, which holds no navigation policy such as `location.reload()`.\n *\n * @param alertCtrl - Ionic's `AlertController`\n * @param options - alert content plus the close-button text\n * @returns a Promise that resolves once the alert has been presented\n * @example\n * ```ts\n * onAuthorized: async () => {\n * const logged = await auth.tokenLogin().catch(async (e) => {\n * await kitPresentAuthFailedAlert(alertCtrl, {\n * header: 'ログインできませんでした',\n * subHeader: e.error.error,\n * message: e.error.detail,\n * closeText: '閉じる',\n * });\n * await auth.signOut();\n * return undefined;\n * });\n * // ...\n * };\n * ```\n */\nexport const kitPresentAuthFailedAlert = async (\n alertCtrl: AlertController,\n options: KitAuthFailedAlertOptions,\n): Promise<void> => {\n const alert = await alertCtrl.create({\n header: options.header,\n subHeader: options.subHeader,\n message: options.message,\n buttons: [\n {\n text: options.closeText,\n role: 'cancel',\n handler: () => {\n location.reload();\n },\n },\n ],\n });\n await alert.present();\n};\n","import { ActionSheetController } from '@ionic/angular/standalone';\n\n/** One selectable language in {@link kitPresentLanguageActionSheet}. */\nexport interface KitLanguageOption {\n /** Button label shown to the user (e.g. `English`, `日本語`). */\n readonly text: string;\n /** Locale identifier returned when this option is chosen (e.g. `en-US`, `ja`). */\n readonly data: string;\n}\n\n/**\n * Options for {@link kitPresentLanguageActionSheet}.\n *\n * @remarks\n * The kit ships no strings or URLs of its own: labels, the locale list, and the redirect-URL mapping\n * are all supplied by the caller, so a multilingual app passes `$localize`-resolved text and its own\n * per-locale build paths.\n */\nexport interface KitLanguageActionSheetOptions {\n /** Action-sheet header text. */\n readonly header: string;\n /** Selectable languages, in display order. */\n readonly locales: readonly KitLanguageOption[];\n /** Text for the cancel button. */\n readonly cancelText: string;\n /** The currently active locale; selecting the same value is a no-op. Normalize before passing. */\n readonly currentLocale: string;\n /** The current in-app path (e.g. `router.url`), stashed so the app can restore it after the reload. */\n readonly currentPath: string;\n /** `sessionStorage` key under which {@link currentPath} is stored. */\n readonly pathnameStorageKey: string;\n /** Maps a chosen locale to the URL to navigate to (the app's per-locale build entry point). */\n readonly buildRedirectUrl: (locale: string) => string;\n /** Gate for the redirect — pass `false` (e.g. outside production) to present without navigating. */\n readonly enabled: boolean;\n}\n\n/**\n * Present a language picker and, on a new selection, reload the app at that locale's entry point.\n *\n * @remarks\n * A plain function (the `ActionSheetController` is passed in, so nothing is injected) that unifies the\n * language-switch flow duplicated across apps. On a changed selection while {@link enabled} it stashes\n * the current path in `sessionStorage` (so the app can return the user to where they were), records the\n * chosen locale in `localStorage` under `'locale'`, and calls `window.location.replace()` with the\n * app-provided URL. Because it performs navigation, it is a standalone helper rather than part of a\n * controller (mirroring `kitPresentReloadAlert` / `kitPresentAuthFailedAlert`). Centralizing it means a\n * future improvement to the switch flow lands in every app at once.\n *\n * @param actionSheetCtrl - the Ionic `ActionSheetController`\n * @param options - labels, locale list, and redirect configuration; see {@link KitLanguageActionSheetOptions}\n * @returns a Promise that resolves once presented (and, on a new selection, after the reload is triggered)\n * @example\n * ```ts\n * await kitPresentLanguageActionSheet(inject(ActionSheetController), {\n * header: $localize`言語設定`,\n * locales: [{ text: 'English', data: 'en-US' }, { text: '日本語', data: 'ja' }],\n * cancelText: $localize`キャンセル`,\n * currentLocale: normalizedLocale,\n * currentPath: this.#router.url,\n * pathnameStorageKey: StorageKeyEnum.pathnameBeforeRedirect,\n * buildRedirectUrl: (locale) => location.origin + (localePath[locale.toLowerCase()] ?? '/index.html'),\n * enabled: environment.production,\n * });\n * ```\n */\nexport const kitPresentLanguageActionSheet = async (\n actionSheetCtrl: ActionSheetController,\n options: KitLanguageActionSheetOptions,\n): Promise<void> => {\n const actionSheet = await actionSheetCtrl.create({\n header: options.header,\n buttons: [\n ...options.locales.map((locale) => ({ text: locale.text, data: locale.data })),\n { text: options.cancelText, role: 'cancel' },\n ],\n });\n await actionSheet.present();\n\n const { data } = await actionSheet.onDidDismiss();\n if (options.enabled && data && data !== options.currentLocale) {\n sessionStorage.setItem(options.pathnameStorageKey, options.currentPath);\n localStorage.setItem('locale', data);\n window.location.replace(options.buildRedirectUrl(data));\n }\n};\n","import type { OnInit } from '@angular/core';\nimport { computed, Directive, ElementRef, HostListener, inject, Injector, input } from '@angular/core';\nimport { FORM_FIELD } from '@angular/forms/signals';\nimport { Capacitor } from '@capacitor/core';\nimport { KitStorageService } from '../storage/kit-storage.service';\nimport { kitForgetEmail, kitIsValidEmail, kitRecallEmail, kitRememberEmail } from '../storage/kit-auth-email-store';\n\n/**\n * The mode of {@link KitAuthInputDirective}.\n *\n * - `'autofill'` — iOS autofill propagation only (use on the password input).\n * - `'email'` — sign-in email: prefill from storage + remember on change + forget when cleared.\n * - `'email-remember'` — sign-up email: remember on change only (no prefill, no forget).\n */\nexport type KitAuthInputMode = 'autofill' | 'email' | 'email-remember';\n\n/**\n * Input conveniences for an `ion-input` in a sign-in / sign-up form, applied via the `kitAuthInput`\n * attribute. The mode is a typed union so a typo is a compile-time error.\n *\n * 1. **iOS autofill propagation (always on, every mode).** On iOS, when the browser autofills an\n * `ion-input` (e.g. a saved password) the value is written to the underlying native `<input>`\n * but the `change` event is not forwarded to the host `ion-input`, so the Angular form model\n * never sees it. This directive mirrors the first inner-input `change` back onto the host,\n * restoring two-way binding. It is a no-op on every other platform.\n *\n * 2. **Remember / prefill the email (`'email'` and `'email-remember'`).**\n * - `'email'` (sign-in) — on init recalls the last entered email and, *only while the field is\n * still empty*, seeds it via the bound Signal Forms field, so a browser/OS autofill the user\n * actually picks always wins over the prefill. On every committed change (`ionChange`) it\n * remembers a well-formed address, or **forgets** the stored one when the field is cleared\n * (empty after trim) or holds an invalid address — the user intentionally removing the prefill.\n * - `'email-remember'` (sign-up) — remembers a well-formed address on change, but never prefills\n * and never forgets. So the first-sign-up address is captured without pre-populating a\n * stranger's email into a new-account form, and clearing the field does not wipe an email\n * remembered elsewhere.\n *\n * A well-formed email is persisted even if it later fails to sign in — by design; the user simply\n * re-enters it. A malformed/partial entry is never stored (see {@link kitRememberEmail}).\n *\n * @example\n * ```html\n * <!-- sign-in email: iOS autofill + prefill + remember/forget -->\n * <ion-input type=\"email\" autocomplete=\"email\" kitAuthInput=\"email\" [formField]=\"form.email\" />\n * <!-- sign-up email: remember only -->\n * <ion-input type=\"email\" autocomplete=\"email\" kitAuthInput=\"email-remember\" [formField]=\"form.email\" />\n * <!-- password: iOS autofill propagation only -->\n * <ion-input type=\"password\" autocomplete=\"current-password\" kitAuthInput=\"autofill\" [formField]=\"form.password\" />\n * ```\n *\n * @remarks\n * Prefill writes through the Signal Forms `FORM_FIELD` bound on the same element; with no such field\n * (e.g. `ngModel` / reactive forms) prefill is skipped — remember/forget still work off the DOM\n * event. Storage is resolved lazily so the iOS mirror still works in apps without `@ionic/storage`.\n */\n@Directive({\n selector: '[kitAuthInput]',\n standalone: true,\n})\nexport class KitAuthInputDirective implements OnInit {\n readonly #el = inject(ElementRef);\n readonly #injector = inject(Injector);\n /** The Signal Forms field bound on this same element, if any (used to seed the prefill). */\n readonly #field = inject(FORM_FIELD, { optional: true, self: true });\n\n /** Mode selector; see {@link KitAuthInputMode}. */\n readonly kitAuthInput = input<KitAuthInputMode>('autofill');\n\n constructor() {}\n\n /**\n * Register the iOS autofill workaround and, in `'email'` mode, seed the field from storage.\n */\n ngOnInit(): void {\n if (this.#prefills()) {\n void this.#prefillEmail();\n }\n if (Capacitor.getPlatform() !== 'ios') {\n return;\n }\n setTimeout(() => {\n try {\n this.#el.nativeElement.children[0].addEventListener(\n 'change',\n (e: Event) => {\n this.#el.nativeElement.value = (e.target as HTMLInputElement).value;\n },\n {\n capture: false,\n once: true,\n passive: true,\n },\n );\n } catch {\n /* empty */\n }\n }, 100); // Need some time for the ion-input to create the input element\n }\n\n /**\n * On every committed change (`ionChange`): remember a well-formed email, or — only in the\n * prefilling `'email'` (sign-in) mode — forget the stored one when the field is cleared or invalid,\n * which is the user intentionally removing the prefill. `'email-remember'` never forgets, so\n * editing the sign-up field cannot wipe an email remembered from sign-in.\n */\n @HostListener('ionChange', ['$event'])\n onIonChange(event: Event): void {\n if (!this.#remembers()) {\n return;\n }\n const storage = this.#resolveStorage();\n if (!storage) {\n return;\n }\n const value = (event as CustomEvent<{ value?: string | null }>).detail?.value ?? '';\n if (value.trim().length > 0 && kitIsValidEmail(value)) {\n void kitRememberEmail(storage, value);\n } else if (this.#forgetsOnClear()) {\n void kitForgetEmail(storage);\n }\n }\n\n /** Whether this instance persists the entered email (`'email'` or `'email-remember'`). */\n readonly #remembers = computed(() => {\n const mode = this.kitAuthInput();\n return mode === 'email' || mode === 'email-remember';\n });\n\n /** Whether this instance prefills the field from storage (`'email'` only). */\n readonly #prefills = computed(() => this.kitAuthInput() === 'email');\n\n /** Whether clearing/invalidating the field forgets the stored email (`'email'` only). */\n readonly #forgetsOnClear = computed(() => this.kitAuthInput() === 'email');\n\n /** Resolve `KitStorageService` lazily; returns `null` when storage is not configured. */\n #resolveStorage(): KitStorageService | null {\n try {\n return this.#injector.get(KitStorageService);\n } catch {\n return null;\n }\n }\n\n /**\n * Seed the bound field with the remembered email, but only while it is still empty — so a value\n * the browser/OS autofills during the async recall is not clobbered.\n */\n async #prefillEmail(): Promise<void> {\n const field = this.#field;\n if (!field) {\n return;\n }\n const storage = this.#resolveStorage();\n if (!storage) {\n return;\n }\n const last = await kitRecallEmail(storage);\n const state = field.state();\n if (last && !state.value()) {\n state.value.set(last);\n }\n }\n}\n","import type { ElementRef } from '@angular/core';\nimport { Capacitor } from '@capacitor/core';\nimport type { PluginListenerHandle } from '@capacitor/core';\nimport { Keyboard } from '@capacitor/keyboard';\n\n/**\n * How {@link kitKeyboardInit} adjusts the target element when the native keyboard appears.\n *\n * - `transform` — CSS `translateY(-keyboardHeight + safeAreaBottom)` for a smooth iOS animation\n * (typical for an `ion-footer`).\n * - `offset` — set the `--offset-bottom` custom property to the negative keyboard height.\n * - `keyboard-offset` — set the `--padding-bottom` custom property to the keyboard height.\n */\nexport type KitKeyboardAdjust = 'transform' | 'offset' | 'keyboard-offset';\n\nconst keyboardWillShow = (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardWillShow', (info) => {\n if (Capacitor.getPlatform() === 'android') {\n if (elementRef.nativeElement.tagName === 'ION-FOOTER' && type === 'transform') {\n // https://github.com/ionic-team/ionic-framework/blob/main/core/src/components/footer/footer.tsx\n elementRef.nativeElement.classList.remove('footer-toolbar-padding');\n }\n return;\n }\n\n elementRef.nativeElement.classList.add('show-keyboard');\n // SSR-safe: this callback only runs on a native keyboard event, so the global `document` /\n // `window` are never touched on the server (kitKeyboardInit returns early when not native).\n const bodyStyleDeclaration = window.getComputedStyle(document.querySelector('body') as Element);\n const safeArea = parseInt(bodyStyleDeclaration.getPropertyValue('--ion-safe-area-bottom'), 10);\n\n if (type === 'transform') {\n elementRef.nativeElement.style.transition = 'transform 420ms';\n elementRef.nativeElement.style.willChange = 'transform';\n requestAnimationFrame(\n () => (elementRef.nativeElement.style.transform = `translateY(${info.keyboardHeight * -1 + safeArea}px)`),\n );\n } else if (type === 'offset') {\n requestAnimationFrame(() => {\n const keyboardOffset = elementRef.nativeElement.style.getPropertyValue('--keyboard-offset');\n if (!keyboardOffset || parseInt(keyboardOffset, 10) === 0) {\n elementRef.nativeElement.style.setProperty('--offset-bottom', `${info.keyboardHeight * -1}px`);\n }\n });\n } else {\n requestAnimationFrame(() => {\n const keyboardOffset = elementRef.nativeElement.style.getPropertyValue('--keyboard-offset');\n if (!keyboardOffset || parseInt(keyboardOffset, 10) === 0) {\n elementRef.nativeElement.style.setProperty('--padding-bottom', `${info.keyboardHeight}px`);\n }\n });\n }\n });\n\nconst keyboardWillHide = (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardWillHide', () => {\n if (Capacitor.getPlatform() === 'android') {\n if (elementRef.nativeElement.tagName === 'ION-FOOTER' && type === 'transform') {\n elementRef.nativeElement.classList.add('footer-toolbar-padding');\n }\n return;\n }\n\n elementRef.nativeElement.classList.remove('show-keyboard');\n\n if (type === 'transform') {\n elementRef.nativeElement.style.transition = 'transform 0ms';\n elementRef.nativeElement.style.transform = `translateY(0px)`;\n elementRef.nativeElement.style.willChange = 'transform';\n } else if (type === 'offset') {\n elementRef.nativeElement.style.setProperty('--offset-bottom', '0px');\n } else {\n elementRef.nativeElement.style.setProperty('--padding-bottom', '0px');\n }\n });\n\nconst keyboardDidShow = (elementRef: ElementRef): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardDidShow', () => {\n elementRef.nativeElement.style.willChange = 'auto';\n });\n\nconst keyboardDidHide = (elementRef: ElementRef): Promise<PluginListenerHandle> =>\n Keyboard.addListener('keyboardDidHide', () => {\n elementRef.nativeElement.style.willChange = 'auto';\n });\n\n/**\n * Register native keyboard listeners that reposition an element when the keyboard shows/hides.\n *\n * @remarks\n * A plain function — no DI needed (it reads the platform from `Capacitor` and uses the global\n * `document`), so a component calls it directly instead of injecting a controller. SSR-safe: the\n * global `document` / `window` are only read inside native keyboard-event callbacks, which never\n * fire on the server — the `Capacitor.isNativePlatform()` guard returns `[]` first, and nothing is\n * touched at module load. A no-op on non-native platforms (returns `[]`). On native it handles the\n * iOS/Android differences (Android\n * only toggles the `footer-toolbar-padding` class on an `ion-footer` for the `transform` mode,\n * working around an Ionic footer bug). The caller owns the returned handles and must `remove()`\n * them when the view is destroyed.\n *\n * @param elementRef - The element to reposition (e.g. an `ion-footer`).\n * @param type - The adjustment strategy; see {@link KitKeyboardAdjust}.\n * @returns The registered listener handles (empty on non-native platforms).\n * @example\n * ```ts\n * export class ComposePage {\n * readonly #footer = viewChild.required<ElementRef>('footer');\n * #handles: PluginListenerHandle[] = [];\n *\n * async ngAfterViewInit() {\n * this.#handles = await kitKeyboardInit(this.#footer(), 'transform');\n * }\n * ngOnDestroy() {\n * this.#handles.forEach((h) => h.remove());\n * }\n * }\n * ```\n */\nexport const kitKeyboardInit = async (elementRef: ElementRef, type: KitKeyboardAdjust): Promise<PluginListenerHandle[]> => {\n if (!Capacitor.isNativePlatform()) {\n return [];\n }\n return [\n await keyboardWillShow(elementRef, type),\n await keyboardWillHide(elementRef, type),\n await keyboardDidShow(elementRef),\n await keyboardDidHide(elementRef),\n ];\n};\n","import type { EnvironmentProviders } from '@angular/core';\nimport { inject, InjectionToken, makeEnvironmentProviders } from '@angular/core';\nimport type { CanActivateFn, RouterStateSnapshot, UrlTree } from '@angular/router';\nimport { Router } from '@angular/router';\nimport { NavController } from '@ionic/angular/standalone';\nimport type { Observable } from 'rxjs';\nimport { map, mergeMap } from 'rxjs/operators';\n\n/**\n * Discriminated set of authentication states the guards react to.\n *\n * @remarks\n * The application is responsible for emitting these values through {@link KitAuthConfig.authState}.\n * An application that does not use a value (for example email confirmation) simply never emits it.\n *\n * - `user` — fully authenticated and verified.\n * - `confirm` — awaiting email confirmation.\n * - `required` — not authenticated.\n * - `anonymous` — signed in anonymously; the user can still be guided toward full registration.\n */\nexport type KitAuthState = 'user' | 'confirm' | 'required' | 'anonymous';\n\n/**\n * Redirect targets (route paths) used by the guards when access is denied.\n *\n * @remarks\n * Every field is required and must be provided per application, because the guards have no\n * knowledge of the host application's route layout.\n */\nexport interface KitAuthRedirects {\n /** Used by {@link kitRequiredUnauthorizedGuard}: where to navigate when the user is already authenticated (`user`). */\n readonly whenAuthorized: string;\n /** Used by {@link kitRequiredUnauthorizedGuard}: where to navigate when the user is awaiting email confirmation (`confirm`). */\n readonly whenConfirming: string;\n /** Used by {@link kitRequireConfirmingGuard}: where to navigate when the state is not `confirm`. */\n readonly whenNotConfirming: string;\n /** Used by {@link kitRequireAuthorizedGuard}: where to navigate when the state is not `user` and the fallback is not allowed. */\n readonly whenUnauthorized: string;\n}\n\n/**\n * Configuration consumed by the authentication guards, injected through {@link provideKitAuth}.\n *\n * @remarks\n * `authState` and `redirects` are required. The `onAuthorized` / `onUnauthenticated` hooks are\n * optional and default to allowing the authenticated user through (`true`) and falling through to\n * the default redirect (`false`) respectively, so an app only supplies the ones with real logic.\n */\nexport interface KitAuthConfig {\n /**\n * Source of the current authentication state.\n *\n * @remarks\n * Typically backed by the application's own auth service (for example `AuthService.isAuth()`).\n *\n * @returns A stream of {@link KitAuthState} values.\n */\n authState(): Observable<KitAuthState>;\n /**\n * Application-specific work that runs in {@link kitRequireAuthorizedGuard} after the state is confirmed to be `user`.\n *\n * @remarks\n * Typical responsibilities include token login, permission checks, terms-of-service acceptance,\n * or restoring a previously requested redirect. Optional; defaults to `true` (allow activation).\n *\n * @param state - The router state snapshot of the route being activated.\n * @returns `true` to allow activation, or a `UrlTree` to perform a custom redirect.\n */\n onAuthorized?(state: RouterStateSnapshot): Promise<boolean | UrlTree>;\n /**\n * Fallback that runs in {@link kitRequireAuthorizedGuard} when the state is `required` (not authenticated).\n *\n * @remarks\n * For example, attempt an anonymous sign-in and allow the route. Optional; defaults to `false`\n * (fall through to the default `whenUnauthorized` redirect).\n *\n * @param state - The router state snapshot of the route being activated.\n * @returns `true` to allow activation, a `UrlTree` for a custom redirect, or `false` to use the default redirect.\n */\n onUnauthenticated?(state: RouterStateSnapshot): Promise<boolean | UrlTree>;\n /** Redirect targets used by the guards. */\n redirects: KitAuthRedirects;\n}\n\n/**\n * Injection token that carries the {@link KitAuthConfig} to the authentication guards.\n */\nexport const KIT_AUTH_CONFIG = new InjectionToken<KitAuthConfig>('@rdlabo/ionic-angular-kit:auth');\n\n/**\n * Wire the authentication guard configuration into the application's dependency injection.\n *\n * @remarks\n * The factory runs inside an injection context, so it may call `inject()` (for example\n * `inject(AuthService)`) to build the configuration.\n *\n * @param configFactory - Factory that returns the {@link KitAuthConfig} for the application.\n * @returns Environment providers to add to the application bootstrap.\n *\n * @example\n * ```ts\n * provideKitAuth(() => {\n * const auth = inject(AuthService);\n * return {\n * // onAuthorized / onUnauthenticated are optional (default: allow / fall through to redirect).\n * authState: () => auth.isAuth(),\n * redirects: {\n * whenAuthorized: '/',\n * whenConfirming: '/auth/confirm',\n * whenNotConfirming: '/auth/signin',\n * whenUnauthorized: 'auth',\n * },\n * };\n * });\n * ```\n */\nexport const provideKitAuth = (configFactory: () => KitAuthConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_AUTH_CONFIG, useFactory: configFactory }]);\n\n/**\n * Guard that requires the user to be unauthenticated (for example sign-in or sign-up pages).\n *\n * @remarks\n * Allows the `required` and `anonymous` states (an anonymous user is permitted to proceed to a\n * registration page). An authenticated user (`user`) is sent to `whenAuthorized`, and a user\n * awaiting confirmation (`confirm`) is sent to `whenConfirming`.\n *\n * @returns A stream emitting `true` to allow activation, or `false` after triggering a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'signin', component: SigninPage, canActivate: [kitRequiredUnauthorizedGuard] }];\n * ```\n */\nexport const kitRequiredUnauthorizedGuard: CanActivateFn = () => {\n const { authState, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n map((data) => {\n if (data === 'user') {\n navCtrl.setDirection('root');\n router.navigate([redirects.whenAuthorized]);\n return false;\n } else if (data === 'confirm') {\n router.navigate([redirects.whenConfirming]);\n return false;\n }\n // 'required' | 'anonymous'\n return true;\n }),\n );\n};\n\n/**\n * Guard that requires the user to be awaiting email confirmation (`confirm`).\n *\n * @remarks\n * Any other state triggers a redirect: an `anonymous` user is sent to the authenticated area\n * (`whenAuthorized`), and every remaining state is sent to `whenNotConfirming`.\n *\n * @returns A stream emitting `true` to allow activation, or `false` after triggering a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'confirm', component: ConfirmPage, canActivate: [kitRequireConfirmingGuard] }];\n * ```\n */\nexport const kitRequireConfirmingGuard: CanActivateFn = () => {\n const { authState, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n map((data) => {\n if (data === 'confirm') {\n return true;\n }\n navCtrl.setDirection('root');\n router.navigate([data === 'anonymous' ? redirects.whenAuthorized : redirects.whenNotConfirming]);\n return false;\n }),\n );\n};\n\n/**\n * Guard that requires the user to be fully authenticated (`user`).\n *\n * @remarks\n * - `user` — runs {@link KitAuthConfig.onAuthorized} (token login, permission checks, and so on).\n * - `anonymous` — allowed as-is, for applications that permit anonymous browsing.\n * - `required` / `confirm` — runs {@link KitAuthConfig.onUnauthenticated}; if it resolves to `false`,\n * the user is redirected to `whenUnauthorized`.\n *\n * @param _route - The activated route snapshot (unused).\n * @param state - The router state snapshot, forwarded to the configuration hooks.\n * @returns A stream emitting the activation result: `true`, a `UrlTree`, or `false` after a redirect.\n *\n * @example\n * ```ts\n * const routes: Routes = [{ path: 'home', component: HomePage, canActivate: [kitRequireAuthorizedGuard] }];\n * ```\n */\nexport const kitRequireAuthorizedGuard: CanActivateFn = (_route, state) => {\n const { authState, onAuthorized, onUnauthenticated, redirects } = inject(KIT_AUTH_CONFIG);\n const router = inject(Router);\n const navCtrl = inject(NavController);\n\n return authState().pipe(\n mergeMap(async (data) => {\n if (data === 'user') {\n // 既定は「許可」。tokenLogin / 権限確認等が必要なアプリだけ onAuthorized を渡す。\n return onAuthorized ? onAuthorized(state) : true;\n }\n if (data === 'anonymous') {\n return true;\n }\n // 既定は false(whenUnauthorized へ)。匿名ログイン等のフォールバックが要るアプリだけ渡す。\n const fallback = onUnauthenticated ? await onUnauthenticated(state) : false;\n if (fallback !== false) {\n return fallback;\n }\n navCtrl.setDirection('root');\n router.navigate([redirects.whenUnauthorized]);\n return false;\n }),\n );\n};\n","import type { EnvironmentProviders } from '@angular/core';\nimport { inject, InjectionToken, makeEnvironmentProviders } from '@angular/core';\nimport type { HttpEvent, HttpInterceptorFn, HttpRequest } from '@angular/common/http';\nimport { HttpErrorResponse, HttpResponse } from '@angular/common/http';\nimport { Network } from '@capacitor/network';\nimport type { Observable } from 'rxjs';\nimport { from, retry, throwError, timer } from 'rxjs';\nimport { catchError, map, mergeMap, tap, timeout } from 'rxjs/operators';\n\n/**\n * HTTP methods that are safe to retry automatically.\n *\n * @remarks\n * Non-idempotent methods (`POST` / `PATCH` / `DELETE`) are never auto-retried, because a response\n * lost *after* the server processed the write would be replayed into a duplicate write (\"saved twice\n * from one tap\"). A non-idempotent request that is genuinely safe to replay opts in by carrying an\n * `Idempotency-Key` header (which the server must honor).\n *\n * @internal\n */\nconst RETRYABLE_METHODS = ['GET', 'HEAD', 'OPTIONS'];\n\n/**\n * Transient HTTP statuses worth retrying: `0` (network/transport failure), `408` (request timeout),\n * `429` (rate limited), and the `502` / `503` / `504` gateway-availability family. Every other status\n * is thrown immediately — a whitelist is safer than a blacklist for deciding what to replay.\n *\n * @internal\n */\nconst RETRYABLE_STATUSES = [0, 408, 429, 502, 503, 504];\n\n/**\n * Maximum number of automatic retries for a retryable request.\n *\n * @internal\n */\nconst MAX_RETRIES = 2;\n\n/**\n * Fleet-wide per-request timeout. A request with no response within this window fails with a\n * synthetic `408` (a {@link RETRYABLE_STATUSES | retryable status}). Deliberately generous — it\n * catches a genuinely hung request (dead server) without cutting off legitimately slow work such as\n * a large upload or an AI generation. `timeout({ each })` resets on every emission, so a streaming\n * response that keeps emitting is unaffected.\n *\n * @internal\n */\nconst DEFAULT_TIMEOUT_MS = 60_000;\n\n/**\n * Parse a `Retry-After` header (delta-seconds or an HTTP-date) into milliseconds, or `null` when it\n * is absent or unparseable.\n *\n * @internal\n */\nconst parseRetryAfterMs = (error: HttpErrorResponse): number | null => {\n const header = error.headers?.get('Retry-After');\n if (!header) {\n return null;\n }\n const seconds = Number(header);\n if (Number.isFinite(seconds)) {\n return Math.max(0, seconds * 1000);\n }\n const dateMs = Date.parse(header);\n return Number.isNaN(dateMs) ? null : Math.max(0, dateMs - Date.now());\n};\n\n/**\n * Configuration that customizes the behavior of {@link kitAuthInterceptor}, injected through {@link provideKitHttp}.\n *\n * @remarks\n * The interceptor fixes the retry policy and control flow; only the hooks below are app-specific:\n *\n * - Retries only {@link RETRYABLE_METHODS | idempotent methods} (or a request bearing an\n * `Idempotency-Key`) on a {@link RETRYABLE_STATUSES | transient status}, up to {@link MAX_RETRIES}\n * times with a short jittered backoff (honoring `Retry-After`). Writes are never auto-retried.\n * - When the device is offline it fails fast to {@link KitHttpConfig.offlineFallback} instead of\n * waiting out the retries.\n * - On a final error it classifies by status and calls the matching hook (see each hook below).\n *\n * Only {@link KitHttpConfig.getAuthHeaders} is required — it has no safe default. Every other hook is\n * optional and defaults to a no-op (or `{}` / `false` / `null` as appropriate), so an app configures\n * only the behavior that actually differs from the canonical baseline.\n */\nexport interface KitHttpConfig {\n /**\n * Produce authentication and metadata headers for the outgoing request.\n *\n * @param request - The outgoing request about to be sent.\n * @returns A map of header names to values, resolved asynchronously.\n */\n getAuthHeaders(request: HttpRequest<unknown>): Promise<Record<string, string>>;\n /**\n * Produce additional headers for the outgoing request.\n *\n * @remarks\n * Optional; defaults to adding no extra headers.\n *\n * @param request - The outgoing request about to be sent.\n * @returns A map of header names to values; return `{}` when none are needed.\n */\n buildExtraHeaders?(request: HttpRequest<unknown>): Record<string, string>;\n /**\n * Treat an otherwise-successful response as an error.\n *\n * @remarks\n * Optional. Some backends use a 2xx status (for example `204` / `206`) to signal a condition the\n * app wants to surface as an error rather than a success. Return `true` to throw the response so it\n * flows through the error path; the status is not in {@link RETRYABLE_STATUSES}, so it is not\n * retried and propagates to the caller. Defaults to treating every 2xx as a success.\n *\n * @param response - The successful `HttpResponse` about to be delivered.\n * @returns `true` to reject the response as an error.\n */\n treatAsError?(response: HttpResponse<unknown>): boolean;\n /**\n * Called for every successful response that completed an actual network round trip.\n *\n * @remarks\n * Responses synthesized by {@link KitHttpConfig.offlineFallback} are produced after `catchError`\n * and therefore never reach this hook, so it observes genuine successes only. A typical use is to\n * reset an \"offline\" flag once connectivity is restored. Optional; defaults to a no-op.\n *\n * @param event - The successful `HttpResponse`.\n */\n onResponse?(event: HttpResponse<unknown>): void;\n /**\n * Decide whether to pass the request straight through, skipping auth, retry, and error handling.\n *\n * @remarks\n * Useful for external URLs such as S3 or a CDN. Optional; defaults to `false` (never bypass).\n *\n * @param request - The outgoing request.\n * @returns `true` to bypass the interceptor pipeline.\n */\n bypass?(request: HttpRequest<unknown>): boolean;\n /**\n * Provide an offline short-circuit when a request fails.\n *\n * @remarks\n * Returning a non-null observable replaces the error with that response (for example a queued\n * offline result). Optional; defaults to `null` (no fallback, normal error handling proceeds).\n *\n * @param request - The request that failed (after headers were applied).\n * @param error - The error response that triggered the fallback.\n * @returns A replacement event stream, or `null` for no fallback.\n */\n offlineFallback?(request: HttpRequest<unknown>, error: HttpErrorResponse): Observable<HttpEvent<unknown>> | null;\n /**\n * Side effect to run on a `401` response (for example an expired token).\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param request - The request that received the `401`.\n */\n onUnauthorized?(request: HttpRequest<unknown>): void;\n /**\n * Side effect to run on a `403` response (a permission error).\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param request - The request that received the `403`.\n */\n onForbidden?(request: HttpRequest<unknown>): void;\n /**\n * UX hook for a genuine network / transport failure (status `0`) while the device reports itself\n * connected — i.e. the server is unreachable rather than the phone being offline.\n *\n * @remarks\n * Optional; defaults to a no-op. Narrow by design: it fires only for status `0` (not for `404`,\n * `429`, `5xx`, …, which have their own hooks), so a \"connection lost, reload?\" prompt is not shown\n * for server-side problems. When the device is offline it is not called at all — `offlineFallback`\n * owns that path. The kit ships {@link KitReloadAlertController} as the canonical implementation\n * (with de-dup so concurrent failures show a single alert, and auto-dismiss on reconnect).\n *\n * @param status - The HTTP status code (`0`), or a string descriptor for non-HTTP failures.\n * @returns Optionally a promise to await before continuing.\n */\n onNetworkError?(status: number | string): Promise<void> | void;\n /**\n * UX hook for a transient server-availability failure (`502` / `503` / `504`), fired after retries\n * are exhausted.\n *\n * @remarks\n * Optional; defaults to a no-op. Distinct from {@link KitHttpConfig.onNetworkError} — the device's\n * connection is fine, the server is momentarily unavailable — so the app can say \"server busy, try\n * again shortly\" rather than prompt a reload.\n *\n * @param status - `502`, `503`, or `504`.\n * @param retryAfterSeconds - The server's `Retry-After` hint in seconds, when provided.\n */\n onServerBusy?(status: number, retryAfterSeconds?: number): void;\n /**\n * UX hook for a `429 Too Many Requests` response, fired after retries are exhausted.\n *\n * @remarks\n * Optional; defaults to a no-op.\n *\n * @param retryAfterSeconds - The server's `Retry-After` hint in seconds, when provided.\n */\n onRateLimited?(retryAfterSeconds?: number): void;\n /**\n * UX hook for `400` / `422` / `500` responses that carry a server-provided message.\n *\n * @remarks\n * Optional; defaults to a no-op. Note that the message comes straight from the API; prefer a\n * user-facing `userMessage` / `code` in your error contract over showing a raw developer message.\n *\n * @param message - The message extracted from the error body.\n */\n onServerError?(message: string): void;\n /**\n * Side effect for a failure while *producing* the auth headers (`getAuthHeaders` rejected).\n *\n * @remarks\n * Optional; defaults to a no-op. Because the request is never sent in this case, it does not reach\n * the response-error hooks; classify it here (for example a failed token refresh) so it does not\n * fail silently.\n *\n * @param request - The request whose headers could not be produced.\n * @param error - The error thrown by `getAuthHeaders`.\n */\n onAuthError?(request: HttpRequest<unknown>, error: unknown): void;\n}\n\n/**\n * Injection token that carries the {@link KitHttpConfig} to {@link kitAuthInterceptor}.\n */\nexport const KIT_HTTP_CONFIG = new InjectionToken<KitHttpConfig>('@rdlabo/ionic-angular-kit:http');\n\n/**\n * Wire the {@link kitAuthInterceptor} configuration into the application's dependency injection.\n *\n * @remarks\n * Register the interceptor itself separately via `provideHttpClient(withInterceptors([kitAuthInterceptor]))`.\n * The factory runs inside an injection context, so it may call `inject()`.\n *\n * @param configFactory - Factory that returns the {@link KitHttpConfig} for the application.\n * @returns Environment providers to add to the application bootstrap.\n *\n * @example\n * ```ts\n * bootstrapApplication(AppComponent, {\n * providers: [\n * provideHttpClient(withInterceptors([kitAuthInterceptor])),\n * provideKitHttp(() => {\n * const auth = inject(AuthService);\n * const reload = inject(KitReloadAlertController);\n * return {\n * // Only getAuthHeaders is required; every other hook is optional and defaults to a no-op.\n * getAuthHeaders: async () => ({ Authorization: `Bearer ${await auth.token()}` }),\n * onUnauthorized: () => auth.signOut(),\n * onNetworkError: (status) =>\n * reload.present({ header: 'Network error', message: `Reload? (${status})`, okText: 'Reload' }),\n * onResponse: () => void reload.dismiss(),\n * };\n * }),\n * ],\n * });\n * ```\n */\nexport const provideKitHttp = (configFactory: () => KitHttpConfig): EnvironmentProviders =>\n makeEnvironmentProviders([{ provide: KIT_HTTP_CONFIG, useFactory: configFactory }]);\n\n/**\n * Classify a final (post-retry) error and invoke the matching {@link KitHttpConfig} hook.\n *\n * @internal\n */\nconst dispatchError = (config: KitHttpConfig, req: HttpRequest<unknown>, error: HttpErrorResponse): void => {\n const status = error.status;\n const retryAfterMs = parseRetryAfterMs(error);\n const retryAfterSeconds = retryAfterMs === null ? undefined : Math.round(retryAfterMs / 1000);\n\n if (status === 401) {\n config.onUnauthorized?.(req);\n } else if (status === 403) {\n config.onForbidden?.(req);\n } else if (status === 0) {\n // Genuine network/transport failure. Only surface it when the device is actually connected\n // (server unreachable); when offline, offlineFallback owns the UX — a reload prompt won't help.\n void Network.getStatus().then((network) => {\n if (network.connected) {\n config.onNetworkError?.(status);\n }\n });\n } else if (status === 429) {\n config.onRateLimited?.(retryAfterSeconds);\n } else if ([502, 503, 504].includes(status)) {\n config.onServerBusy?.(status, retryAfterSeconds);\n } else if ([400, 422, 500].includes(status) && error.error?.message) {\n config.onServerError?.(error.error.message);\n }\n // Every other status (404, 418, …) is left to the caller — no generic alert.\n};\n\n/**\n * Canonical functional HTTP interceptor that applies authentication, retries, and error handling.\n *\n * @remarks\n * Behavior, driven by the injected {@link KitHttpConfig}:\n *\n * 1. Requests for which `bypass` returns `true` are forwarded untouched.\n * 2. If `getAuthHeaders` rejects, `onAuthError` is called and the request is not sent.\n * 3. Otherwise the headers from `getAuthHeaders` and `buildExtraHeaders` are merged onto a cloned request.\n * 4. On failure the request is retried up to {@link MAX_RETRIES} times, but **only** when the device\n * is online, the method is a {@link RETRYABLE_METHODS | retryable method} (or carries an\n * `Idempotency-Key`), and the status is a {@link RETRYABLE_STATUSES | transient status}. The\n * backoff is `retryCount * 500ms` plus up to 250ms of jitter, or the server's `Retry-After`.\n * When the device is offline it stops retrying immediately.\n * 5. On the final error, `offlineFallback` is consulted first; otherwise the error is classified by\n * status (see {@link dispatchError}): `401`→`onUnauthorized`, `403`→`onForbidden`, `0`→\n * `onNetworkError` (when connected), `429`→`onRateLimited`, `502`/`503`/`504`→`onServerBusy`, and\n * `400`/`422`/`500` with a body message→`onServerError`.\n *\n * @param request - The outgoing request.\n * @param next - The next handler in the interceptor chain.\n * @returns A stream of HTTP events for the (possibly modified, retried, or replaced) request.\n *\n * @example\n * ```ts\n * provideHttpClient(withInterceptors([kitAuthInterceptor]));\n * ```\n */\nexport const kitAuthInterceptor: HttpInterceptorFn = (request, next) => {\n const config = inject(KIT_HTTP_CONFIG);\n\n if (config.bypass?.(request)) {\n return next(request);\n }\n\n return from(Promise.resolve(config.getAuthHeaders(request))).pipe(\n catchError((headerError: unknown) => {\n // getAuthHeaders failed → the request is never sent; classify it instead of failing silently.\n config.onAuthError?.(request, headerError);\n return throwError(() => headerError);\n }),\n mergeMap((authHeaders) => {\n const req = request.clone({ setHeaders: { ...authHeaders, ...config.buildExtraHeaders?.(request) } });\n const retryable = RETRYABLE_METHODS.includes(req.method) || req.headers.has('Idempotency-Key');\n\n const base = next(req).pipe(\n timeout({\n each: DEFAULT_TIMEOUT_MS,\n with: () => throwError(() => new HttpErrorResponse({ status: 408, statusText: 'Request Timeout', url: req.url })),\n }),\n );\n\n return base.pipe(\n map((event) => {\n // A backend may signal an error condition with a 2xx status (e.g. 204/206); surface it as an error.\n if (event instanceof HttpResponse && config.treatAsError?.(event)) {\n throw event;\n }\n return event;\n }),\n retry({\n count: MAX_RETRIES,\n delay: (error: HttpErrorResponse, retryCount: number) =>\n from(Network.getStatus()).pipe(\n mergeMap((network) => {\n // Offline → don't wait out the retries; fail fast so offlineFallback can take over.\n if (!network.connected) {\n return throwError(() => error);\n }\n // Only replay idempotent requests, and only on a transient status.\n if (!retryable || !RETRYABLE_STATUSES.includes(error.status)) {\n return throwError(() => error);\n }\n // Short linear backoff (500ms, 1000ms, …) plus jitter to de-correlate a fleet of\n // clients reconnecting at once; the server's Retry-After wins when present.\n const backoff = parseRetryAfterMs(error) ?? retryCount * 500 + Math.random() * 250;\n return timer(backoff);\n }),\n ),\n }),\n tap((event) => {\n if (event instanceof HttpResponse) {\n config.onResponse?.(event);\n }\n }),\n catchError((error: HttpErrorResponse) => {\n const fallback = config.offlineFallback?.(req, error);\n if (fallback) {\n return fallback;\n }\n dispatchError(config, req, error);\n return throwError(() => error);\n }),\n );\n }),\n );\n};\n","/**\n * Merge a newly fetched page of items into an existing list by id, keeping the result sorted.\n *\n * Items are merged by the numeric `key` field. On a duplicate `key` the item from `arrayNew` wins\n * and replaces the one in `arrayOld`. Old items whose `key` falls *inside* the window spanned by\n * `arrayNew` (between its first and last `key`) are dropped, since the freshly fetched page is the\n * authoritative copy of that window; old items *outside* the window are kept. The merged items are\n * finally sorted by `key`, ascending or descending according to `order`.\n *\n * The algorithm is:\n * 1. If both inputs are empty, return an empty array.\n * 2. Read the first (`lead`) and last (`last`) `key` values of `arrayNew` as the bounds of the\n * page's window. Keep the old items whose `key` lies *outside* that window (at or beyond the\n * extremes) and drop those strictly inside it, handling both a high-to-low page (`lead > last`)\n * and a low-to-high page (`lead < last`). A single-value page (`lead === last`) keeps all old items.\n * 3. Remove old items whose `key` already exists in `arrayNew` (new wins on duplicates).\n * 4. Concatenate `arrayNew` with the surviving old items and sort by `key` in the requested\n * direction.\n *\n * @remarks\n * Designed for infinite-scroll / paginated list merging, where each fetched page may overlap the\n * previously held items and the server returns a contiguous, ordered window of records. The `key`\n * field is treated as a number for range comparison and sorting.\n *\n * @typeParam T - Element type of both arrays. Its `key` property must be a numeric value.\n * @param arrayOld - The previously accumulated list. May be empty or nullish-safe (empty when falsy).\n * @param arrayNew - The newly fetched page of items; its `key` range defines the window that its own\n * items replace, and its items take precedence on duplicates.\n * @param key - The property of `T` used as the unique, numeric id for matching, range filtering, and sorting.\n * @param order - Sort direction by `key`: `'ASC'` for ascending or `'DESC'` for descending. Defaults to `'DESC'`.\n * @param secondaryKey - Optional second property for extra de-duplication. When provided, any\n * surviving old item whose `secondaryKey` value matches that of *any* new item is dropped before\n * the `key` merge. Useful when a record keeps a stable `key` but its secondary identity changes\n * between pages (e.g. items keyed by `id` but also grouped by `parentId`). Omit to skip this step.\n * @returns A new array containing `arrayNew` merged with the out-of-window, non-duplicate old items, sorted by `key`.\n * @example\n * ```ts\n * interface Post {\n * id: number;\n * title: string;\n * }\n *\n * const loaded: Post[] = [\n * { id: 30, title: 'c' },\n * { id: 20, title: 'b' },\n * { id: 10, title: 'a' },\n * ];\n * const nextPage: Post[] = [\n * { id: 20, title: 'b (updated)' },\n * { id: 15, title: 'a.5' },\n * ];\n *\n * // Descending merge: id 30 lies above the new page's [15, 20] window so it is kept; id 20 is\n * // inside the window and is replaced by the new value; id 10 lies below the window and is kept.\n * const merged = arrayConcatById(loaded, nextPage, 'id', 'DESC');\n * // => [{ id: 30, title: 'c' }, { id: 20, title: 'b (updated)' }, { id: 15, title: 'a.5' }, { id: 10, title: 'a' }]\n * ```\n */\nexport const arrayConcatById = <T>(\n arrayOld: T[],\n arrayNew: T[],\n key: keyof T,\n order: 'ASC' | 'DESC' = 'DESC',\n secondaryKey?: keyof T,\n): T[] => {\n if (!arrayNew.length && !arrayOld.length) {\n return [];\n }\n const lead = arrayNew[0][key] as number;\n const last = arrayNew[arrayNew.length - 1][key] as number;\n\n const filteredOld = (arrayOld || []).filter((vol) => {\n const value = vol[key] as number;\n return (lead > last && (value >= lead || value <= last)) || (lead < last && (value <= lead || value >= last)) || lead === last;\n });\n\n const secondaryFilteredOld = secondaryKey\n ? filteredOld.filter((vol) => !arrayNew.some((element) => element[secondaryKey] === vol[secondaryKey]))\n : filteredOld;\n\n const oldData = secondaryFilteredOld.filter((vol) => !arrayNew.some((element) => element[key] === vol[key]));\n const data = arrayNew.concat(oldData);\n\n const direction = order === 'ASC' ? 1 : -1;\n return data.sort((a, b) => {\n const x = a[key] as number;\n const y = b[key] as number;\n if (x > y) {\n return direction;\n }\n if (x < y) {\n return direction * -1;\n }\n return 0;\n });\n};\n","/**\n * Order-independent deep equality check.\n *\n * @remarks\n * Returns `true` when `a` and `b` serialize to the same value after their (nested) object entries are\n * sorted by key, so property order does not affect the result. Intended for cheap \"did this state\n * object change?\" comparisons.\n *\n * Caveats of the JSON-serialization approach: values that JSON drops or coerces (`undefined`,\n * functions, `NaN`, `Date`, `Map`/`Set`) are compared by their serialized form, and array element\n * order is treated as significant (arrays are not reordered in a meaningful way). Use a structural\n * deep-equal library when those cases matter.\n *\n * @param a - First object.\n * @param b - Second object.\n * @returns `true` when the two objects are deeply equal ignoring key order.\n * @example\n * ```ts\n * objectEqual({ a: 1, b: 2 }, { b: 2, a: 1 }); // => true\n * objectEqual({ a: 1 }, { a: 2 }); // => false\n * ```\n */\nexport const objectEqual = (a: object, b: object): boolean => {\n if (Object.is(a, b)) {\n return true;\n }\n const sortDeep = (obj: unknown): unknown => {\n if (typeof obj !== 'object' || !obj) {\n return undefined;\n }\n return Object.entries(obj)\n .sort()\n .map(([entryKey, value]) => [entryKey, typeof value === 'object' ? sortDeep(value) : value]);\n };\n return JSON.stringify(sortDeep(a)) === JSON.stringify(sortDeep(b));\n};\n","/**\n * Disable the button that triggered an event while an async operation runs, re-enabling it after.\n *\n * @remarks\n * Prevents the common double-submit / double-tap bug: the `event.target` button is disabled, the\n * work is awaited, and the button is re-enabled — even if the work rejects (the rejection is\n * swallowed here so the button always recovers; handle errors inside `work` if you need to react).\n *\n * @param event - The DOM event whose `target` is the button to disable (e.g. a click event).\n * @param work - The async operation to run while the button is disabled.\n * @returns A Promise that resolves once the work has settled and the button has been re-enabled.\n * @example\n * ```ts\n * async submit(event: Event): Promise<void> {\n * await disableHandler(event, this.save());\n * }\n * ```\n */\nexport const disableHandler = async (event: Event, work: Promise<void | boolean>): Promise<void> => {\n const target = event.target as HTMLButtonElement;\n target.disabled = true;\n await work.catch((): undefined => undefined);\n target.disabled = false;\n};\n","import { WritableSignal } from '@angular/core';\n\n/**\n * Toggle the `disabled` flag of a signal-held `ion-infinite-scroll` / `ion-refresher` element.\n *\n * @remarks\n * A tiny pure helper for the common pattern of stashing the completing scroll/refresher element in a\n * signal (e.g. captured from the event) and later enabling/disabling it — for instance disabling\n * infinite scroll once the last page has loaded. A no-op when the signal holds no element.\n *\n * @param completeEvent - a writable signal holding the infinite-scroll / refresher element (or nullish)\n * @param disabled - the value to set on the element's `disabled` property\n * @example\n * ```ts\n * const infinite = signal<HTMLIonInfiniteScrollElement | null>(null);\n * // ...on ionInfinite: infinite.set(ev.target); ...when no more pages:\n * kitChangeEventDisabled(infinite, true);\n * ```\n */\nexport const kitChangeEventDisabled = (\n completeEvent: WritableSignal<HTMLIonInfiniteScrollElement | HTMLIonRefresherElement | null | undefined>,\n disabled: boolean,\n): void => {\n const event = completeEvent();\n if (event) {\n event.disabled = disabled;\n }\n};\n","import { ElementRef } from '@angular/core';\nimport { Observable, startWith } from 'rxjs';\n\n/**\n * Observe an Ionic page's \"is currently entered\" state from its lifecycle DOM events.\n *\n * @remarks\n * Emits `true` on `ionViewDidEnter` and `false` on `ionViewWillEnter` / `ionViewWillLeave`, seeded\n * with `false` via `startWith`. Useful to pause/resume work (timers, video, expensive rendering)\n * while a page is off-screen in Ionic's stack navigation, without wiring the four lifecycle hooks by\n * hand. The listeners are removed when the Observable is unsubscribed.\n *\n * @param el - an `ElementRef` for the page host element (the `ion-page`)\n * @returns an Observable that emits whether the page is currently entered\n * @example\n * ```ts\n * export class FeedPage {\n * readonly #host = inject(ElementRef);\n * readonly isEntered = toSignal(kitCreateDidEnter(this.#host), { initialValue: false });\n * }\n * ```\n */\nexport const kitCreateDidEnter = (el: ElementRef): Observable<boolean> => {\n return new Observable<boolean>((observer) => {\n const willEnter = () => observer.next(false);\n const didEnter = () => observer.next(true);\n const willLeave = () => observer.next(false);\n\n el.nativeElement.addEventListener('ionViewWillEnter', willEnter);\n el.nativeElement.addEventListener('ionViewDidEnter', didEnter);\n el.nativeElement.addEventListener('ionViewWillLeave', willLeave);\n\n return () => {\n el.nativeElement.removeEventListener('ionViewWillEnter', willEnter);\n el.nativeElement.removeEventListener('ionViewDidEnter', didEnter);\n el.nativeElement.removeEventListener('ionViewWillLeave', willLeave);\n };\n }).pipe(startWith(false));\n};\n","/*\n * Public API Surface of @rdlabo/ionic-angular-kit\n */\n\n// Storage: typed wrapper around the platform key/value store.\nexport * from './lib/storage/kit-storage.service';\n// Remember/recall the last entered sign-in email (validated; storage-agnostic helpers).\nexport * from './lib/storage/kit-auth-email-store';\n\n// Overlay: wrapper around the Ionic Modal / Toast / Alert controllers.\nexport * from './lib/overlay/overlay-config';\nexport * from './lib/overlay/kit-overlay.controller';\nexport * from './lib/overlay/kit-loading.controller';\nexport * from './lib/overlay/kit-reload-alert.controller';\nexport * from './lib/overlay/kit-auth-failed-alert';\nexport * from './lib/overlay/kit-language-action-sheet';\n\n// Directives.\nexport * from './lib/directives/auth-input.directive';\n\n// Keyboard: native keyboard reposition listeners.\nexport * from './lib/keyboard/kit-keyboard';\n\n// Theme (`@rdlabo/ionic-angular-kit/theme`), Review (`.../review`), Printer (`.../printer`) and\n// Firebase auth (`.../auth-firebase`) are separate secondary entry points so their heavy native peers\n// (status-bar / in-app-review+preferences / brotherprint+dom-to-image / @angular/fire+firebase) are\n// only pulled in by apps that import those subpaths.\n\n// Auth: functional route guards.\nexport * from './lib/auth/auth-guards';\n\n// HTTP: functional interceptor.\nexport * from './lib/http/kit-http.interceptor';\n\n// Utils: framework-agnostic pure helpers.\nexport * from './lib/utils/haptics';\nexport * from './lib/utils/array';\nexport * from './lib/utils/object';\nexport * from './lib/utils/dom';\nexport * from './lib/utils/ionic-scroll-event';\nexport * from './lib/utils/ionic-view-enter';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdlabo/ionic-angular-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.0.0",
|
|
6
6
|
"@angular/core": "^21.0.0",
|
|
7
|
+
"@angular/forms": "^21.0.0",
|
|
7
8
|
"@angular/router": "^21.0.0",
|
|
8
9
|
"@ionic/angular": "^8.0.0",
|
|
9
10
|
"@ionic/storage-angular": "^4.0.0",
|
|
@@ -79,6 +79,57 @@ declare class KitStorageService {
|
|
|
79
79
|
static ɵprov: i0.ɵɵInjectableDeclaration<KitStorageService>;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
+
/**
|
|
83
|
+
* Remember the email a user last entered on the sign-in form so the field can be prefilled next
|
|
84
|
+
* time (the password is never stored).
|
|
85
|
+
*
|
|
86
|
+
* @remarks
|
|
87
|
+
* Storage-agnostic: the helpers take a minimal async key/value store that {@link KitStorageService}
|
|
88
|
+
* satisfies structurally, so they stay pure and unit-testable without DI. `kitRememberEmail`
|
|
89
|
+
* **validates the address before persisting** — a malformed or partial string is silently ignored,
|
|
90
|
+
* so a garbage entry (or a fat-fingered attempt) never becomes the next prefill. A well-formed email
|
|
91
|
+
* that later fails to sign in is still remembered by design: the user simply re-enters/corrects it.
|
|
92
|
+
*
|
|
93
|
+
* These live in the main entry (next to {@link KitStorageService}) rather than in `auth-firebase`,
|
|
94
|
+
* so the `KitAutofillDirective` can consume them without the main entry depending on the Firebase
|
|
95
|
+
* entry.
|
|
96
|
+
*/
|
|
97
|
+
/** Minimal async key/value store — structurally satisfied by `KitStorageService`. */
|
|
98
|
+
interface KitEmailStore {
|
|
99
|
+
get<T>(key: string): Promise<T | null>;
|
|
100
|
+
set<T>(key: string, value: T): Promise<void>;
|
|
101
|
+
remove(key: string): Promise<void>;
|
|
102
|
+
}
|
|
103
|
+
/** Storage key under which the last entered sign-in email is kept. */
|
|
104
|
+
declare const KIT_LAST_AUTH_EMAIL_KEY = "kit:last-auth-email";
|
|
105
|
+
/** Whether `email` is a well-formed address (matches `@angular/forms` `Validators.email`). */
|
|
106
|
+
declare const kitIsValidEmail: (email: string) => boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Persist the entered email for next time — but only when it is a well-formed address.
|
|
109
|
+
*
|
|
110
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
111
|
+
* @param email - the entered email; ignored (not stored) when malformed
|
|
112
|
+
* @returns `true` when the value passed validation and was stored, `false` when it was ignored
|
|
113
|
+
*/
|
|
114
|
+
declare const kitRememberEmail: (store: KitEmailStore, email: string) => Promise<boolean>;
|
|
115
|
+
/**
|
|
116
|
+
* Recall the last remembered email.
|
|
117
|
+
*
|
|
118
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
119
|
+
* @returns the stored email, or `null` when none has been remembered
|
|
120
|
+
*/
|
|
121
|
+
declare const kitRecallEmail: (store: KitEmailStore) => Promise<string | null>;
|
|
122
|
+
/**
|
|
123
|
+
* Forget the remembered email.
|
|
124
|
+
*
|
|
125
|
+
* @remarks
|
|
126
|
+
* Called when the user intentionally clears or invalidates the field, so a stale prefill is not
|
|
127
|
+
* resurrected next time.
|
|
128
|
+
*
|
|
129
|
+
* @param store - the app's storage (e.g. `KitStorageService`)
|
|
130
|
+
*/
|
|
131
|
+
declare const kitForgetEmail: (store: KitEmailStore) => Promise<void>;
|
|
132
|
+
|
|
82
133
|
/**
|
|
83
134
|
* User-visible button labels consumed by `KitOverlayController`.
|
|
84
135
|
*
|
|
@@ -603,43 +654,70 @@ interface KitLanguageActionSheetOptions {
|
|
|
603
654
|
declare const kitPresentLanguageActionSheet: (actionSheetCtrl: ActionSheetController, options: KitLanguageActionSheetOptions) => Promise<void>;
|
|
604
655
|
|
|
605
656
|
/**
|
|
606
|
-
*
|
|
657
|
+
* The mode of {@link KitAuthInputDirective}.
|
|
607
658
|
*
|
|
608
|
-
*
|
|
609
|
-
*
|
|
610
|
-
*
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
*
|
|
615
|
-
*
|
|
616
|
-
*
|
|
617
|
-
*
|
|
618
|
-
*
|
|
619
|
-
*
|
|
620
|
-
*
|
|
659
|
+
* - `'autofill'` — iOS autofill propagation only (use on the password input).
|
|
660
|
+
* - `'email'` — sign-in email: prefill from storage + remember on change + forget when cleared.
|
|
661
|
+
* - `'email-remember'` — sign-up email: remember on change only (no prefill, no forget).
|
|
662
|
+
*/
|
|
663
|
+
type KitAuthInputMode = 'autofill' | 'email' | 'email-remember';
|
|
664
|
+
/**
|
|
665
|
+
* Input conveniences for an `ion-input` in a sign-in / sign-up form, applied via the `kitAuthInput`
|
|
666
|
+
* attribute. The mode is a typed union so a typo is a compile-time error.
|
|
667
|
+
*
|
|
668
|
+
* 1. **iOS autofill propagation (always on, every mode).** On iOS, when the browser autofills an
|
|
669
|
+
* `ion-input` (e.g. a saved password) the value is written to the underlying native `<input>`
|
|
670
|
+
* but the `change` event is not forwarded to the host `ion-input`, so the Angular form model
|
|
671
|
+
* never sees it. This directive mirrors the first inner-input `change` back onto the host,
|
|
672
|
+
* restoring two-way binding. It is a no-op on every other platform.
|
|
673
|
+
*
|
|
674
|
+
* 2. **Remember / prefill the email (`'email'` and `'email-remember'`).**
|
|
675
|
+
* - `'email'` (sign-in) — on init recalls the last entered email and, *only while the field is
|
|
676
|
+
* still empty*, seeds it via the bound Signal Forms field, so a browser/OS autofill the user
|
|
677
|
+
* actually picks always wins over the prefill. On every committed change (`ionChange`) it
|
|
678
|
+
* remembers a well-formed address, or **forgets** the stored one when the field is cleared
|
|
679
|
+
* (empty after trim) or holds an invalid address — the user intentionally removing the prefill.
|
|
680
|
+
* - `'email-remember'` (sign-up) — remembers a well-formed address on change, but never prefills
|
|
681
|
+
* and never forgets. So the first-sign-up address is captured without pre-populating a
|
|
682
|
+
* stranger's email into a new-account form, and clearing the field does not wipe an email
|
|
683
|
+
* remembered elsewhere.
|
|
684
|
+
*
|
|
685
|
+
* A well-formed email is persisted even if it later fails to sign in — by design; the user simply
|
|
686
|
+
* re-enters it. A malformed/partial entry is never stored (see {@link kitRememberEmail}).
|
|
621
687
|
*
|
|
622
688
|
* @example
|
|
623
689
|
* ```html
|
|
624
|
-
*
|
|
690
|
+
* <!-- sign-in email: iOS autofill + prefill + remember/forget -->
|
|
691
|
+
* <ion-input type="email" autocomplete="email" kitAuthInput="email" [formField]="form.email" />
|
|
692
|
+
* <!-- sign-up email: remember only -->
|
|
693
|
+
* <ion-input type="email" autocomplete="email" kitAuthInput="email-remember" [formField]="form.email" />
|
|
694
|
+
* <!-- password: iOS autofill propagation only -->
|
|
695
|
+
* <ion-input type="password" autocomplete="current-password" kitAuthInput="autofill" [formField]="form.password" />
|
|
625
696
|
* ```
|
|
697
|
+
*
|
|
698
|
+
* @remarks
|
|
699
|
+
* Prefill writes through the Signal Forms `FORM_FIELD` bound on the same element; with no such field
|
|
700
|
+
* (e.g. `ngModel` / reactive forms) prefill is skipped — remember/forget still work off the DOM
|
|
701
|
+
* event. Storage is resolved lazily so the iOS mirror still works in apps without `@ionic/storage`.
|
|
626
702
|
*/
|
|
627
|
-
declare class
|
|
703
|
+
declare class KitAuthInputDirective implements OnInit {
|
|
628
704
|
#private;
|
|
705
|
+
/** Mode selector; see {@link KitAuthInputMode}. */
|
|
706
|
+
readonly kitAuthInput: i0.InputSignal<KitAuthInputMode>;
|
|
629
707
|
constructor();
|
|
630
708
|
/**
|
|
631
|
-
* Register the iOS autofill workaround
|
|
632
|
-
*
|
|
633
|
-
* Returns immediately on non-iOS platforms. On iOS, after a short delay it attaches a one-shot,
|
|
634
|
-
* passive `change` listener to the inner `<input>` element that `ion-input` renders, copying the
|
|
635
|
-
* autofilled value back onto the host element so the Angular form model stays in sync. Any error
|
|
636
|
-
* while locating the inner input (for example if the element is not yet present) is swallowed.
|
|
637
|
-
*
|
|
638
|
-
* @returns Nothing.
|
|
709
|
+
* Register the iOS autofill workaround and, in `'email'` mode, seed the field from storage.
|
|
639
710
|
*/
|
|
640
711
|
ngOnInit(): void;
|
|
641
|
-
|
|
642
|
-
|
|
712
|
+
/**
|
|
713
|
+
* On every committed change (`ionChange`): remember a well-formed email, or — only in the
|
|
714
|
+
* prefilling `'email'` (sign-in) mode — forget the stored one when the field is cleared or invalid,
|
|
715
|
+
* which is the user intentionally removing the prefill. `'email-remember'` never forgets, so
|
|
716
|
+
* editing the sign-up field cannot wipe an email remembered from sign-in.
|
|
717
|
+
*/
|
|
718
|
+
onIonChange(event: Event): void;
|
|
719
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitAuthInputDirective, never>;
|
|
720
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KitAuthInputDirective, "[kitAuthInput]", never, { "kitAuthInput": { "alias": "kitAuthInput"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
643
721
|
}
|
|
644
722
|
|
|
645
723
|
/**
|
|
@@ -1236,5 +1314,5 @@ declare const kitChangeEventDisabled: (completeEvent: WritableSignal<HTMLIonInfi
|
|
|
1236
1314
|
*/
|
|
1237
1315
|
declare const kitCreateDidEnter: (el: ElementRef) => Observable<boolean>;
|
|
1238
1316
|
|
|
1239
|
-
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_OVERLAY_CONFIG,
|
|
1240
|
-
export type { KitAlertCloseOptions, KitAlertConfirmOptions, KitAuthConfig, KitAuthFailedAlertOptions, KitAuthRedirects, KitAuthState, KitHttpConfig, KitKeyboardAdjust, KitLabels, KitLanguageActionSheetOptions, KitLanguageOption, KitModalPresentOptions, KitOverlayConfig, KitReloadAlertOptions, ModalMetadata };
|
|
1317
|
+
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_LAST_AUTH_EMAIL_KEY, KIT_OVERLAY_CONFIG, KitAuthInputDirective, KitLoadingController, KitOverlayController, KitReloadAlertController, KitStorageService, arrayConcatById, disableHandler, kitAuthInterceptor, kitChangeEventDisabled, kitCreateDidEnter, kitForgetEmail, kitImpact, kitIsValidEmail, kitKeyboardInit, kitPresentAuthFailedAlert, kitPresentLanguageActionSheet, kitRecallEmail, kitRememberEmail, kitRequireAuthorizedGuard, kitRequireConfirmingGuard, kitRequiredUnauthorizedGuard, objectEqual, provideKitAuth, provideKitHttp, provideKitOverlay };
|
|
1318
|
+
export type { KitAlertCloseOptions, KitAlertConfirmOptions, KitAuthConfig, KitAuthFailedAlertOptions, KitAuthInputMode, KitAuthRedirects, KitAuthState, KitEmailStore, KitHttpConfig, KitKeyboardAdjust, KitLabels, KitLanguageActionSheetOptions, KitLanguageOption, KitModalPresentOptions, KitOverlayConfig, KitReloadAlertOptions, ModalMetadata };
|