In this step, the app has two main elements: the title and the countdown. However, in order to obtain greater positioning and customization flexibility, it is interesting that they are separated into two distinct blocks. For this, it is necessary to briefly introduce the concept of interfaces, and then a new Title component will be developed. An example of customization in terms of positioning, which will be covered in this step, is:
What if I wanted the title to be under or beside the counter?
Interface
An interface works like a contract, with well-defined restrictions on how the blocks will work together. It then defines a mapping that creates a Store Framework block, from a React component. It is important to highlight that the use of interfaces, in order to separate an app in several interfaces, makes the customization power much greater.
When defining an app in the interface, the component property is responsible for defining the React component that will be used. It is important to note that the name of component must be the same as the file name of the component inside the react/ folder.
interfaces.json examples:
{
"countdown": {
"component": "Countdown"
}
}
Activity
Now, you are going to separate the title from the countdown block and add it to the store below the countdown.
Altering the Countdown component
First, remove the imports, the title from the interface and change the CSS handles const, CSS_HANDLES:
//react/Countdown.tsx
Countdown.schema = {
title: 'editor.countdown.title',
description: 'editor.countdown.description',
type: 'object',
properties: {
- title: {
- title: 'I am a title',
- type: 'string',
- default: null,
- },
targetDate: {
title: 'Final date',
description: 'Final date used in the countdown',
type: 'string',
default: null,
},
},
}
Creating a new component
Create a new file in the /react directory, named Title.tsx, it will be the new title component. In it, some imports are needed. The basic structure of the code is very similar to the Countdown component's. Afer doing that, add the imports needed and the CSS handles constant:
//react/Title.tsx
import React from "react"
import { FormattedMessage } from "react-intl"
import { useCssHandles } from "vtex.css-handles"
const CSS_HANDLES = ["title"] as const
Now, it's necessary to change the component's function:
At last, add the interface, the schema and the export:
//react/Title.tsx
interface TitleProps {
title: string
}
Title.schema = {
title: "editor.countdown-title.title",
description: "editor.countdown-title.description",
type: "object",
properties: {
title: {
title: "I am a title",
type: "string",
default: null,
},
},
}
export default Title
Changing the interfaces.json file
By now, there are two components in the app: the title and the countdown. However, it is necessary to change the interfaces.json file, which is in the store folder. It is needed to declare each one separately. At first, our interface only contained the Countdown. It is needed to add the other component:
It is also needed to add to the Messages the translations whose keys are the strings of the schema that we included in the Title.tsx file above. As seen in the Messages step, go to the /messages folder, and add the necessary translations to each file (pt.json, es.json and en.json). Below is an example for the case of the en.json file:
Finally, to see the changes, go back to the theme to change it to include the new block. To do so, simply add the title to home! Same as the countdown, it is necessary to add countdown.title as a block in the theme of your store, in the store-theme file home.jsonc.
Componentizing the countdown block
Introduction
In this step, the app has two main elements: the title and the countdown. However, in order to obtain greater positioning and customization flexibility, it is interesting that they are separated into two distinct blocks. For this, it is necessary to briefly introduce the concept of interfaces, and then a new
Title
component will be developed. An example of customization in terms of positioning, which will be covered in this step, is:Interface
An interface works like a contract, with well-defined restrictions on how the blocks will work together. It then defines a mapping that creates a Store Framework block, from a React component. It is important to highlight that the use of interfaces, in order to separate an app in several interfaces, makes the customization power much greater.
When defining an app in the interface, the
component
property is responsible for defining the React component that will be used. It is important to note that the name ofcomponent
must be the same as the file name of the component inside thereact/
folder.interfaces.json
examples:Activity
Now, you are going to separate the title from the countdown block and add it to the store below the countdown.
Altering the
Countdown
componentFirst, remove the imports, the
title
from the interface and change the CSS handles const,CSS_HANDLES
:Now, in the component itself, remove the
title
as a prop given and also the title text constant, which changes what is being rendered:At last, remove the title from the schema:
Creating a new component
Create a new file in the
/react
directory, namedTitle.tsx
, it will be the new title component. In it, some imports are needed. The basic structure of the code is very similar to theCountdown
component's. Afer doing that, add the imports needed and the CSS handles constant:Now, it's necessary to change the component's function:
At last, add the interface, the schema and the export:
Changing the
interfaces.json
fileBy now, there are two components in the app: the title and the countdown. However, it is necessary to change the
interfaces.json
file, which is in thestore
folder. It is needed to declare each one separately. At first, our interface only contained theCountdown
. It is needed to add the other component:Adding internationalization
It is also needed to add to the Messages the translations whose keys are the strings of the schema that we included in the
Title.tsx
file above. As seen in the Messages step, go to the/messages
folder, and add the necessary translations to each file (pt.json
,es.json
anden.json
). Below is an example for the case of theen.json
file:Adding the new block to the store home
Finally, to see the changes, go back to the theme to change it to include the new block. To do so, simply add the title to home! Same as the countdown, it is necessary to add
countdown.title
as a block in the theme of your store, in the store-theme filehome.jsonc
.Done! Now let's see how the result should look like: