Questions:
N/D
Technical Refinement
Description
When the customer makes a purchase that contains Refill, the Order will return a Hash that must be presented in the form of a QRCode to the user, with this QRCode, the user will be able to point to the soda machine and release the product.
The hash value must be simulated in Storage with the key RBI::ORDER_REFILL_ID
, the backend implementation will put this information into Storage.
Path: workspaces/frontend/src/utils/local-storage/constants.ts
Task 1— Create Feature Flag.
New feature flag for front-end
New feature flag for back-end
Task 2— Create Shared Schemas
Should settings schemas to service mode and duration times. (intl-sanity-shared-schemas)
Task 3— Create Sanity settings
Configuration of service modes (intl-whitelabel-cms)
Should create settings to service mode. (pick-up, diner, etc)
Should create two new field time to Bottom Sheets and Recente Order in minutes.
Should to be create a new feature in Marketing Content / Features/ Feature QR Code Refill Drinks / List of storesShould create a new field items to set restaurants.Should create settings to service mode.Should create two new field time to Bottom Sheets and Recente Order by service mode in minutes.
Integration intl-sanity-shared-schemas with intl-whitelabel-cms:
Checkout na main
Git pull
yarn build
git tag com a versão nova
git push das tags (git push --tags)
npm publish
Task 4— Create Bottom Sheet with QRCode in Home Page.
Create a component BottomSheets in the folder
workspaces/frontend/src/components/
Add this new component in path:
workspaces/frontend/src/components/layout/index.tsx
- but this component just can show in home page, so we can know if in home page with codeconst isHomePage = window.location.pathname === '/';
Should create a new component to show QRCode with hash value, this hash must get the Storage using a key
Should use QRCode component in
workspaces/frontend/src/components/qrcode/qr-code.tsx
Acceptance Criteria
Display Bottom Sheet with QR only on home screen
Show this component just has HashCode in LocalStorage
Show this component while the time configured in sanity does not expire
Show this component just Home Page
Expand content on click
The Start Order should appear just above the bottom sheet, but when the bottom sheet is expanded the start order button should be overlaid by the bottom sheet and the background has to be obscured, to highlight the qrcode. Attention, the POC don’t have this comportment, so we need to implement this.
Feature flag
ENABLE_BOTTOM_SERVICE_MODE
must continue to work.Should show this QRCode only on mobile devices.
POC
Task 5 — Create componente to show QRCode in Recent Orders and Finish Order.
path:
workspaces/frontend/src/components/layout/index.tsx
path finish order:
workspaces/frontend/src/pages/order-confirmation/order-confirmation.tsx
Should create a new card component in Recent Order to show QRCode with hash value, this hash must get the Storage using a key
Should use QRCode component in
workspaces/frontend/src/components/qrcode/qr-code.tsx
Acceptance Criteria
Show a new component with QRCode information in Recent Orders
When clicking QRCode icon it should show modal with QRCode with hash value
Should show this QRCode only on mobile devices.
POC
Task 6 — Validations of durations of QR code - Recent Order
if hash is expired, should not show on the QRCode card.
Should not removed hash the LocalStorage.
The order must have status equal to INSERT_SUCCESSFUL or UPDATE_SUCCESSFUL
The updateAt field in the Order must be the calculation basis.
Task 7 — Validations of durations of QR code - Home Page (little Chicken)
if hash is expired, should not show bottom sheet.
Should not removed hash the LocalStorage.
The order must have status equal to INSERT_SUCCESSFUL or UPDATE_SUCCESSFUL
The updateAt field in the Order must be the calculation basis.
Task 8 — Validate Sanity if save hash in LocalStorage
After finishing Order, must save hash in LocalStorage, according to service mode settings
RBI::ORDER_REFILL_ID
key in LocalStorage.
Impact Analysis
Hero component
Dependencies
N/A
Unit Test
N/A
0 Comments