-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(INJI-458): show loading screen after closing of web view in Open…
…ID4VCI flow (#932) * perf(INJI-458): cache fixed result of custom keystore presence Each call over the RN bridge can take significant user-visible time, and since the result is used multiple times and cannot change for a device in runtime, it can be computed once stored for later use. Signed-off-by: Harsh Vardhan <[email protected]> * feat(INJI-458): show loading for android h/w keystore check & generation Signed-off-by: Harsh Vardhan <[email protected]> * feat(INJI-472): show loader on issuer select Co-authored-by: KiruthikaJeyashankar <[email protected]> Signed-off-by: Harsh Vardhan <[email protected]> * refactor(INJI-458): rename const name to isHardwareKeystoreExists Signed-off-by: Harsh Vardhan <[email protected]> --------- Signed-off-by: Harsh Vardhan <[email protected]> Co-authored-by: KiruthikaJeyashankar <[email protected]>
- Loading branch information
1 parent
294ed12
commit 86840ed
Showing
16 changed files
with
474 additions
and
680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +0,0 @@ | ||
// This file was automatically generated. Edits will be overwritten | ||
|
||
export interface Typegen0 { | ||
'@@xstate/typegen': true; | ||
internalEvents: { | ||
'done.invoke.QrLogin.linkTransaction:invocation[0]': { | ||
type: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
data: unknown; | ||
__tip: 'See the XState TS docs to learn how to strongly type this.'; | ||
}; | ||
'done.invoke.QrLogin.sendingAuthenticate:invocation[0]': { | ||
type: 'done.invoke.QrLogin.sendingAuthenticate:invocation[0]'; | ||
data: unknown; | ||
__tip: 'See the XState TS docs to learn how to strongly type this.'; | ||
}; | ||
'error.platform.QrLogin.linkTransaction:invocation[0]': { | ||
type: 'error.platform.QrLogin.linkTransaction:invocation[0]'; | ||
data: unknown; | ||
}; | ||
'error.platform.QrLogin.sendingAuthenticate:invocation[0]': { | ||
type: 'error.platform.QrLogin.sendingAuthenticate:invocation[0]'; | ||
data: unknown; | ||
}; | ||
'error.platform.QrLogin.sendingConsent:invocation[0]': { | ||
type: 'error.platform.QrLogin.sendingConsent:invocation[0]'; | ||
data: unknown; | ||
}; | ||
'xstate.init': {type: 'xstate.init'}; | ||
}; | ||
invokeSrcNameMap: { | ||
linkTransaction: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
sendAuthenticate: 'done.invoke.QrLogin.sendingAuthenticate:invocation[0]'; | ||
sendConsent: 'done.invoke.QrLogin.sendingConsent:invocation[0]'; | ||
}; | ||
missingImplementations: { | ||
actions: never; | ||
delays: never; | ||
guards: never; | ||
services: never; | ||
}; | ||
eventsCausingActions: { | ||
SetErrorMessage: | ||
| 'error.platform.QrLogin.linkTransaction:invocation[0]' | ||
| 'error.platform.QrLogin.sendingAuthenticate:invocation[0]' | ||
| 'error.platform.QrLogin.sendingConsent:invocation[0]'; | ||
expandLinkTransResp: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
forwardToParent: 'DISMISS'; | ||
loadMyVcs: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
loadThumbprint: 'CONFIRM'; | ||
resetLinkTransactionId: 'GET'; | ||
resetSelectedVoluntaryClaims: 'GET'; | ||
setClaims: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
setConsentClaims: 'TOGGLE_CONSENT_CLAIM'; | ||
setLinkedTransactionId: 'done.invoke.QrLogin.sendingAuthenticate:invocation[0]'; | ||
setMyVcs: 'STORE_RESPONSE'; | ||
setScanData: 'GET'; | ||
setSelectedVc: 'SELECT_VC'; | ||
setThumbprint: 'STORE_RESPONSE'; | ||
setlinkTransactionResponse: 'done.invoke.QrLogin.linkTransaction:invocation[0]'; | ||
}; | ||
eventsCausingDelays: {}; | ||
eventsCausingGuards: {}; | ||
eventsCausingServices: { | ||
linkTransaction: 'GET'; | ||
sendAuthenticate: never; | ||
sendConsent: 'STORE_RESPONSE'; | ||
}; | ||
matchesStates: | ||
| 'ShowError' | ||
| 'done' | ||
| 'faceAuth' | ||
| 'invalidIdentity' | ||
| 'linkTransaction' | ||
| 'loadMyVcs' | ||
| 'loadingThumbprint' | ||
| 'requestConsent' | ||
| 'sendingAuthenticate' | ||
| 'sendingConsent' | ||
| 'showvcList' | ||
| 'success' | ||
| 'waitingForData'; | ||
tags: never; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.