Skip to content

Commit

Permalink
Merge branch 'master' into IOCOM-1660_fimsAuthCodegen
Browse files Browse the repository at this point in the history
  • Loading branch information
Vangaorth authored Nov 4, 2024
2 parents cc46947 + b8622e1 commit b490b60
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 11 deletions.
10 changes: 5 additions & 5 deletions locales/en/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ inbox:
enableButton: Enable Inbox
disableButton: Disable Inbox
enableCallToActionDescription: Enable the inbox to view messages
settings:
informativeBanner:
settings:
informativeBanner:
content: Looking for your profile? We have moved it, it is now in the top right corner!
action: Go to Settings
profile:
Expand Down Expand Up @@ -3421,10 +3421,10 @@ features:
alerts:
mdl:
content: "Puoi usare la tua Patente su IO solo in Italia per dimostrare di essere abilitato alla guida in caso di controlli delle Forze dell'ordine."
action: Scopri di più
ehc:
content: "Puoi usare la tua Tessera Sanitaria - Tessera europea di assicurazione malattia su IO per accedere alle prestazioni fornite dal Servizio Sanitario Nazionale."
action: "Scopri di più"
edc:
content: "Puoi usare la tua Carta Europea della Disabilità su IO per accedere ai servizi sul territorio italiano, negli stessi contesti d’uso del tuo documento fisico."
expired:
content: Il documento non è più valido. Se sei già in possesso del nuovo documento valido, puoi aggiornare la versione digitale nel Portafoglio
action: Aggiorna il documento
Expand Down Expand Up @@ -3512,7 +3512,7 @@ support:
panicMode:
title: "We cannot help you at the moment"
body: "We know there is a problem and we are working to solve it. If the problem remains, or if you need support on another topic, please try again later."
errorGetZendeskToken:
errorGetZendeskToken:
title: Sorry, we're unable to open a service request at the moment.
subtitle: Try again later
askPermissions:
Expand Down
10 changes: 5 additions & 5 deletions locales/it/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ inbox:
enableButton: Abilita Inbox
disableButton: Disabilita Inbox
enableCallToActionDescription: Abilita l'inbox per visualizzare i messaggi
settings:
informativeBanner:
settings:
informativeBanner:
content: Cerchi il Profilo? Lo abbiamo spostato, ora è in alto a destra!
action: Vai alle Impostazioni
profile:
Expand Down Expand Up @@ -3421,10 +3421,10 @@ features:
alerts:
mdl:
content: "Puoi usare la tua Patente su IO solo in Italia per dimostrare di essere abilitato alla guida in caso di controlli delle Forze dell'ordine."
action: Scopri di più
ehc:
content: "Puoi usare la tua Tessera Sanitaria - Tessera europea di assicurazione malattia su IO per accedere alle prestazioni fornite dal Servizio Sanitario Nazionale."
action: "Scopri di più"
edc:
content: "Puoi usare la tua Carta Europea della Disabilità su IO per accedere ai servizi sul territorio italiano, negli stessi contesti d’uso del tuo documento fisico."
expired:
content: Il documento non è più valido. Se sei già in possesso del nuovo documento valido, puoi aggiornare la versione digitale nel Portafoglio
action: Aggiorna il documento
Expand Down Expand Up @@ -3512,7 +3512,7 @@ support:
panicMode:
title: "Purtroppo, in questo momento non riusciamo ad aiutarti"
body: "Sappiamo che c’è un problema e siamo al lavoro per risolverlo. Se il problema persiste, o se hai bisogno di assistenza su un altro argomento, riprova a scriverci più tardi."
errorGetZendeskToken:
errorGetZendeskToken:
title: Al momento non riusciamo ad aprire una richiesta di assistenza
subtitle: Riprova più tardi
askPermissions:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,8 @@ const styles = StyleSheet.create({
height: TRUSTMARK_HEIGHT,
borderCurve: "continuous",
borderRadius: buttonBorderRadius,
overflow: "hidden"
overflow: "hidden",
marginVertical: 8
},
gradientView: {
...StyleSheet.absoluteFillObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export const ItwPresentationAlertsSection = ({ credential }: Props) => {
const isMdl = credential.credentialType === CredentialType.DRIVING_LICENSE;
const isEhc =
credential.credentialType === CredentialType.EUROPEAN_HEALTH_INSURANCE_CARD;
const isEdc =
credential.credentialType === CredentialType.EUROPEAN_DISABILITY_CARD;

const expireStatus = getCredentialStatus(credential);
const expireDays = getCredentialExpireDays(credential.parsedCredential);
Expand Down Expand Up @@ -75,6 +77,13 @@ export const ItwPresentationAlertsSection = ({ credential }: Props) => {
variant="info"
/>
)}
{isEdc && (
<Alert
testID="itwEdcBannerTestID"
content={I18n.t("features.itWallet.presentation.alerts.edc.content")}
variant="info"
/>
)}
</VStack>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,34 @@ describe("ItwPresentationAlertsSection", () => {
expect(queryByTestId("itwExpiredBannerTestID")).toBeNull();
expect(queryByTestId("itwExpiringBannerTestID")).toBeNull();
expect(queryByTestId("itwMdlBannerTestID")).not.toBeNull();
expect(queryByTestId("itwEhcBannerTestID")).toBeNull();
expect(queryByTestId("itwEdcBannerTestID")).toBeNull();
});

it("should render EHC alert", () => {
const { queryByTestId } = renderComponent(
CredentialType.EUROPEAN_HEALTH_INSURANCE_CARD,
new Date(2000, 2, 20)
);

expect(queryByTestId("itwExpiredBannerTestID")).toBeNull();
expect(queryByTestId("itwExpiringBannerTestID")).toBeNull();
expect(queryByTestId("itwMdlBannerTestID")).toBeNull();
expect(queryByTestId("itwEhcBannerTestID")).not.toBeNull();
expect(queryByTestId("itwEdcBannerTestID")).toBeNull();
});

it("should render EDC alert", () => {
const { queryByTestId } = renderComponent(
CredentialType.EUROPEAN_DISABILITY_CARD,
new Date(2000, 2, 20)
);

expect(queryByTestId("itwExpiredBannerTestID")).toBeNull();
expect(queryByTestId("itwExpiringBannerTestID")).toBeNull();
expect(queryByTestId("itwMdlBannerTestID")).toBeNull();
expect(queryByTestId("itwEhcBannerTestID")).toBeNull();
expect(queryByTestId("itwEdcBannerTestID")).not.toBeNull();
});
});

Expand Down

0 comments on commit b490b60

Please sign in to comment.