forked from pagopa/io-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#170046248] Add CIE authentication (pagopa#1470)
* [#170046248] add cie android support * [#170046248] add cie support in LandingScreen * [#170046248] add nfc screens * [#170046248] add nfc screens * [#170046248] fix nfc enabled listening * [#170046248] simplify nfc state management * [#170046248] moving cie screen in a dedicated folder * [#170046248] wip * [#170046248] add cie request authentication screen * [#170046248] addLoading * [#170046248] wip * [#170046248] add consent data usage screen * [#170046248] wip * [#170046248] improve cie pin insertion * wip * [#170046248] add wrong pin screen * [#170046248] wip * debugging message * add launch cieid app * first wave of updates * block 2 of updates on cie * remove unused screen + shift to pureComponent * remove unused screen * add react-native-cie as @pagopa package * update circleci config.yml * update * update * update * update jest config * test android alpha lane * test android alpha lane * test android alpha lane * restore code (alpha line test) * restore code update react-native-cie module * [#170046248] update cie module * removed cie idp login url as hardcoded string * smaller updates on setPin + remove mock for ios * update readme * handling cie successfully authentication * update yarn lock * disable lint warning * manage no connection on auth url request * remove unused code * update test of authenticationSaga * add link to cieId for locked pin * remove broken animation loop logic * remove unused image + unique folder for cie images * isolate cie animation component * reduce code for cie navigation * fix lint errors * remove screen redundancy * fix cie navigation events * update approach to content update * minor fixes * merge * fix tests configuration * test alpha lane * test alpha lane * [test alpha lane] restore * [#170046248] fix a bug on infinite looping now the check on if enabling is done on request fix some typos add comments * [#170046248] remove useless code add comment * [#170046248] remove useless code * [#170046248] fix tests * enabled looping on cie reading screen * [#170046248] show reminder email validation after email insertion * [#170046248] removed commments * [#170046248] update gradle distribution url remove useless config field * update * [#170046248] important fix to avoid error on consent form * manage go back on authorization request * solve lint errors * show loader on user data authorization * handle goback on pin insertion * fix navigation error * [#170046248] inject javascript to decrease sleeping time * upgrade pagopa/react-native-cie to v.0.1.8 * update yarn lock * fix some bugs * fix imports order * [#170046248] fix a bug causing double footer rendering fix a bug cause no animation on cie reading screen * [#170046248] stop nfc listening after login success * [#170046248] update tests Co-authored-by: valentinacala <[email protected]> Co-authored-by: valentinacala <[email protected]>
- Loading branch information
1 parent
5c0482d
commit 2553dd8
Showing
81 changed files
with
2,045 additions
and
1,439 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
registry=https://registry.npmjs.com/ | ||
@pagopa:registry=https://npm.pkg.github.com/ |
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
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,20 +1,20 @@ | ||
const { defaults: tsjPreset } = require('ts-jest/presets'); | ||
const { defaults: tsjPreset } = require("ts-jest/presets"); | ||
|
||
module.exports = { | ||
...tsjPreset, | ||
preset: 'react-native', | ||
preset: "react-native", | ||
transform: { | ||
...tsjPreset.transform, | ||
...tsjPreset.transform | ||
//'\\.js$': 'ts-jest', | ||
}, | ||
transformIgnorePatterns: [ | ||
"node_modules/(?!(jest-)?react-native|react-navigation|@react-navigation|react-navigation-redux-helpers|react-native-device-info|native-base|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|rn-placeholder|jsbarcode)" | ||
"node_modules/(?!(jest-)?react-native|react-navigation|@react-navigation|react-navigation-redux-helpers|react-native-device-info|native-base|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|rn-placeholder|jsbarcode|@pagopa/react-native-cie)" | ||
], | ||
globals: { | ||
'ts-jest': { | ||
babelConfig: true, | ||
"ts-jest": { | ||
babelConfig: true | ||
} | ||
}, | ||
setupFiles: ['./jestSetup.js'], | ||
setupFiles: ["./jestSetup.js"], | ||
collectCoverage: true | ||
}; |
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
Oops, something went wrong.