Tech Discovery - Policy cover to contact

Summary

Document Status

DRAFT

Deadline

2024-jun-12

Document Owner(s)

@Capovilla, Evandro

Reviewers

@Augusto Romao, Vinicius
@Caes, Guilherme
@de Sousa Santos, Rodrigo
@Pereira, Filipa
@Raffael Ciciliano Rossi
@Raphael Ferreira Gomes

Description

Due to the GDPR, the customer must always be aware of how, where and who will have access to the data shared and with this a field will be added to the support forms with a translated text. This text will be filled in by the franchisee in sanity and with the appropriate translation fields, just as it works for the birthday and catering screen.

Birthday and Catering

Figma

https://www.figma.com/design/TXlz4Fm91IstXnwIByTUtJ/Draft---List-Item?node-id=365-33948&t=t3ckclnaCZ8pDpB2-0

Policy Cover field

Development

Feature Flag - Temporarily

Suggested Name

Suggested Name

support-policy-cover-to-contact

Follow the launch recommendations below:

Code Changes

Intl-whitelabel-cms

Add the support policy cover in “fields” property

fields: [ ..., { title: 'Support Policy Cover', name: 'supportPolicyCover', type: 'array', of: [ { title: 'Privacy Policy Disclaimers Cell', name: 'privacyPolicyDisclaimersCell', type: 'privacyPolicyDisclaimersCell', }, ], validation: (Rule: RuleType) => Rule.length(1), }, ..., ]

Intl-whitelabel-app

Following the privacyPolicy implementation: src/queries/sanity/feature-birthday-and-catering.graphql

supportPolicyCover { privacyPolicyDisclaimersCells { disclaimerTitle disclaimerDescription disclaimerContent { locale: enRaw } border fontSize paddingTop paddingRight paddingBottom paddingLeft radius } }
{ ... const { ..., supportPolicyCover, } = data?.SupportData ?? {}; const isSupportDataLoading = featureIdsLoading || loading; return { ..., supportPolicyCover, }; };

Import the component below the form as birthday and catering feature: src/components/catering-birthday/client-information/catering-birthday-client-information.tsx

Optional: Create a SupportPolicyCoverContainer, SupportPolicyCoverDisclaimerBox and SupportPolicyCoverDisclaimerBox.

Tests

Scenario

Steps

Result

Scenario

Steps

Result

Open the support form and show the policy cover field

  1. Enable the feature flag

  2. Go to support page

  3. Select the reason for support

  4. The support form will appear

A policy coverage field should appear below the “Describe your problem” field.

Open the support form and not show the policy cover field

  1. Disable the feature flag

  2. Go to support page

  3. Select the reason for support

  4. The support form will appear

A policy coverage field should not appear below the “Describe your problem” field.

Open the support form and show the policy cover field translated

  1. Enable the feature flag

  2. Change the language

  3. Go to support page

  4. Select the reason for support

  5. The support form will appear

A policy coverage field should appear below the “Describe your problem” field with the text translated.

Open the support form, the support policy cover is empty in sanity and not show the policy cover field in support page

  1. Enable the feature flag

  2. Support Policy Cover is empty in Sanity

  3. Go to support page

  4. Select the reason for support

  5. The support form will appear

A policy coverage field should not appear below the “Describe your problem” field.