Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • rbi-whitelabel-cms

    • Task 1—Create Feature Account Updated Agreements page

      • path: rbi-whitelabel-cms/schemas/features/documents/

        Code Block
        languagetypescript
        export default {
          title: 'Feature Account Updated Agreements',
          name: 'featureAccountUpdatedAgreements',
          type: 'document',
        
          /**
           * Prevent creation or deletion of featureAccountUpdatedAgreements documents.
           * See deskStructure.js to find singleton instance.
           * https://www.sanity.io/docs/structure-builder-typical-use-cases#singletons-and-one-of-documents-c22ce054acba
           */
          __experimental_actions: ['update', 'publish', 'create'],
          __experimental_search: [],
          fields: [
            {
              title: 'Update Agreement Text',
              name: 'updateAgreementText',
              type: 'localeBlockContent',
              validation: (Rule: any) => Rule.required(),
            },
            {
              title: 'Marketing Communication Text',
              name: 'marketingCommunicationText',
              type: 'localeBlockContent',
              validation: (Rule: any) => Rule.required(),
            },
          ],
          preview: {
            prepare: () => ({ title: 'Feature Account Updated Agreements' }),
          },
        };
      • On file: rbi-whitelabel-cms/desk-structure/marketing-content.ts, we will add the page created previously:

        Code Block
        languagetypescript
        S.listItem()
        .title('Feature Account Updated Agreements')
        .child(
          S.document()
            .schemaType('featureAccountUpdatedAgreements')
            .documentId('feature-account-updated-agreements'),
        ),
  • intl-whitelabel-cms

    • Task 2—Duplicate all changes on rbi-whitelabel-cms repository

  • intl-whitelabel-app

    • Task 3—Create a feature flag

      Code Block
      enable-acceptance-agreements-description-from-sanity
    • Task 4—4—Create query on graphql

      • path: intl-whitelabel-app/workspaces/frontend/src/queries/sanity/

        Code Block
        languagegraphql
        query featureAccountUpdatedAgreements($featureAccountUpdatedAgreementsId: ID!) {
          FeatureAccountUpdatedAgreements(id: $featureAccountUpdatedAgreementsId) {
            updateAgreementText {
              locale: enRaw
            }
            confirmButtonText {
              locale: enRaw
            }
          }
        }
      • On file: intl-whitelabel-app/workspaces/frontend/src/queries/sanity/all-feature-ids.graphql, we will add the query created on the and file:

        Code Block
        languagegraphql
        allFeatureAccountUpdatedAgreements(limit: 1) {
          _id
        }
    • After that, we will run:

      Code Block
      languagepowershell
      yarn run apollo:generate
      • On file: intl-whitelabel-app/workspaces/frontend/src/generated/sanity-graphql.tsx and intl-whitelabel-app/workspaces/frontend/src/state/graphql/sanity-fragments.json will be many changes, but we can to discard all, except of change locally in the interface FeatureAccountUpdatedAgreements:

    • On file: intl-whitelabel-app/workspaces/frontend/src/state/features/index.tsx, we will add the attribute on interface IFeatureIds

      Code Block
      languagetypescript
      interface IFeatureIds {
        ...
        featureAccountUpdatedAgreementsId?: string;
        // add new feature ids here
      }
    • On the same file, we will add the attribute on return

      Code Block
      languagetypescript
      return {
        ...
        featureAccountUpdatedAgreementsId: getSingletonId('allFeatureAccountUpdatedAgreements'),
      };

Screenshots

  • N/D

 POC

  • N/D

Impact Analysis

...