...
intl-whitelabel-cms
TASK 1–Create new toggle named
Background Color
path:
intl-whitelabel-cms/schemas/components/documents/hero.tsx
We will need to add a new toggle option named
Background Color
title:
Background Color
name:
backgroundColor
description: Turn this on to add and choose a background color for the homepage Hero.
TASK 2–Create dropdown colors
path:
intl-whitelabel-cms/schemas/components/documents/hero.tsx
Use the example:
intl-whitelabel-cms/schemas/configuration/pos-configuration/documents/pos-configuration.ts
intl-whitelabel-cms/schemas/configuration/pos-configuration/objects/pos-vendor-config-option.ts
Create a dropdown to choose the background color with the following options
When the
Background Color
toggle is on it should show:Burger King:
BBQ Brown (default) - value: brown
Fiery Red - value: red
Crunchy Green - value: green
Flaming Orange - value: orange
Melty Yeloow - value: yellow
Popeyes:
Burnt Orange (default) - value: orange
Nola Purple - value: purple
Firehouse Subs:
House Red (default) - value: red
House Yellow - value: yellow
OBS: the values should be the color names in lowercase, if possible.
TASK 3—Deprecate
Reversed
togglepath:
intl-whitelabel-cms/schemas/components/documents/hero.tsx
The
Reversed
toggle should be deprecated
ctg-component-library
TASK 4—Change component hero
path:
ctg-components-library/src/components/hero/hero.tsx
We will add tree new attributes:
example:
Code Block language typescript background?: string;
After that, we will update the component to support the themes
full background
split background
texts and buttons with the same color
texts and buttons with different colors
By turning the
Split Background
toggle on the background color area should be reducedThe Heading and Sub-Heading should be displayed over the colored background
The CTAs should be displayed below the colored background area
The background color of the bottom portion should not be configurable
If the
Reversed
toggle was on when deprecated it should now point and default to the newBackground Color
toggle defaulting to theon
state in the respective colors:Burger King
Brown
Popeyes
Orange
Firehouse Subs
Red
intl-whitelabel-app
TASK 5—Change graphql queries and run apollo generate
path:
intl-whitelabel-app/workspaces/frontend/src/queries/sanity/fragments/hero.graphql
TASK 6–Create feature flag
TASK 7—Create color constants (tokens)
path:
intl-whitelabel-app/workspaces/frontend/src/styles/constants/primitives.ts
Background colors:
Burger King:
path:
intl-whitelabel-app/workspaces/frontend/src/styles/constants/design-tokens.bk.ts
Brown (default option)
There is already the color:
$bbqBrown: 'rgb(80,35,20)'
Red
There is already the color:
$fieryRed: 'rgb(214,35,0)'
Green
There is already the color:
$crunchyGreen: 'rgb(25,135,55)'
Orange
There is already the color:
$flamingOrange: 'rgb(255,135,50)'
Yellow
There is already the color:
$meltyYellow: 'rgb(255,170,0)'
To split
$mayoEggWhite: 'rgb(245,235,220)'
Popeyes:
path:
intl-whitelabel-app/workspaces/frontend/src/styles/constants/design-tokens.plk.ts
Orange (default option)
There are already the colors:
$popeyesOrange: 'rgb(255,125,0)'
and$burntOrange: 'rgb(242,86,0)'
Purple
There is already the color:
$nolaPurple: 'rgb(145,25,135)'
, but we will create the second purple color:'rgba(88, 16, 82)'
To split
$nolaLight: 'rgb(245,241,239)'
Firehouse Subs:
path:
intl-whitelabel-app/workspaces/frontend/src/styles/constants/design-tokens.fhs.ts
Red (default option)
We will create the color red:
'rgba(196, 0, 0)'
Yellow
We will create the color red:
'rgba(255, 205, 120)'
To split
$white: '#fff'
Burger King: https://www.figma.com/file/RtD0UFtwuwXx14lbLCAPlr/Burger-King?node-id=2818%3A74806&t=6vGuil8CU4c3vOzP-1 - Connect your Figma account
Popeyes: https://www.figma.com/file/sfH3mHXoEUfHbm5qMul0Vn/Popeyes?node-id=1782%3A68295&t=zNRPSr8NnlQB10C0-1 - Connect your Figma account
Firehouse Subs: https://www.figma.com/file/99e6no9JN7fxiFdjWHRXC7/Firehouse-Subs?node-id=208%3A105586&t=DNksX5RjI3ZEfBeU-1 - Connect your Figma account
TASK 8—Create configuration to create hero theme
Burger King:
Brown (default option)
Red
Green
Orange
Yellow
Popeyes:
Orange (default option)
Purple
Firehouse Subs:
Red (default option)
Yellow
If the
Reversed
toggle was on when deprecated it should now point and default to the newBackground Color
toggle defaulting to theon
state in the respective colors (create method to validate it):Burger King
Brown
Popeyes
Orange
Firehouse Subs
Red
TASK 9—Send the theme to hero component
path:
intl-whitelabel-app/workspaces/frontend/src/components/features/components/hero/hero-container.tsx
Use the feature flag here.
Update the ctg-component-library version
Use the method created to generate the theme by Brand and add on hero component
Code Block language typescript <Hero ... backgroundHero={backgroundHero} isSplit={true} backgroundSplit={backgroundSplit} />
...