When working with commercetools Frontend, you can, in general, follow your own coding guidelines. However, some rules are needed for your code to function properly, which we'll go through in this article. On top of that, we recommend some additional guidelines which will help you streamline your development workflow.
Git workflow
master
branch. Those builds will be tested, and, if successful, compiled assets will be available for deployment.master
build will automatically be deployed to staging (if you didn't explicitly request this to be turned off) and be available for rollout to production through the Studio.Sharing code
You can use any standard means of the JavaScript community (like publishing npm packages or similar) to share code between different projects. However, we prepared the code structure for easy sharing between different projects for you.
Best practices
schema.json
.tasticType
field is used for the identifier of your Frontend component. To avoid namespace conflicts, we recommend naming your Frontend components using the following way:
<project>/<theme>/<tastic-name>
<project>/<theme>/<products>/<tastic-name>
tasticType
. For example:
Folder: tastics/product/list
Component type: frontastic/ui/product/list
frontastic/tastics
folder. We recommend adding a folder for each Frontend component. For example:frontastic/tastics/product/details/schema.json
frontastic/tastics/product/details/index.tsx
Useful tips
master
. This requires each push (ideally each commit) to leave the codebase fully functional. Feature flagging and branch-by-abstraction are programming techniques to make this possible. With that, your team will benefit from a faster, more agile development workflow.We also suggest following these rules for a smooth setup:
- Pull before you push
- Rebase un-pushed changes in favor of merge (set
pull.rebase
globally totrue
) - Structure your work in logical steps and commit parts of your work together which deal with a common purpose
- Frequent, smaller commits are preferred over large batches of work
- Push frequently, but always ensure a working state in
master
Linting
ESLint statically analyzes your code to quickly find problems. Many problems ESLint finds can be automatically fixed. ESLint fixes are syntax-aware so that you won't experience errors introduced by traditional find-and-replace algorithms.
The following rules, which are also the recommended rules by Next.js, are enabled by default:
next/google-font-display
- Enforce optional or swap font-display behavior with Google Fontsnext/google-font-preconnect
- Enforce pre-connect usage with Google Fontsnext/link-passhref
- Enforce passHref
prop usage with custom Link componentsnext/no-css-tags
- Prevent manual style sheet tagsnext/no-document-import-in-page
- Disallow importing next/document outside of pages/document.js
next/no-head-import-in-document
- Disallow importing next/head in pages/document.js
next/no-html-link-for-pages
- Prohibit HTML anchor links to pages without a Link componentnext/no-img-element
- Prohibit usage of HTML <img>
elementnext/no-page-custom-font
- Prevent page-only custom fontsnext/no-sync-scripts
- Forbid synchronous scriptsnext/no-title-in-document-head
- Disallow using <title>
with Head from next/documentnext/no-unwanted-polyfillio
- Prevent duplicate polyfills from Polyfill.ionext/inline-script-id
- Enforce id
attribute on next/script components with inline contentnext/no-typos
- Ensure no typos were made declaring Next.js's data fetching functionnext/next-script-for-ga
- use the script component to defer loading of the script until necessaryeslint:recommendedplugin:react/recommended
see eslint-plugin-react
plugin:react-hooks/recommended
see eslint-plugin-react-hooks.eslintrc.JSON
file. You can add your own rules or adapt the existing rules in that file.Use the below command to run ESLint:
yarn lint
We recommend adding linting directly to your code editor or development environment to get immediate feedback.
Prettier/code formatting
We also recommend setting up your editor to use Prettier to format a document when it's saved.