Socket
Socket
Sign inDemoInstall

@contentful/forma-36-react-components

Package Overview
Dependencies
29
Maintainers
120
Versions
563
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @contentful/forma-36-react-components

Contentful UI Component Library


Version published
Weekly downloads
13K
decreased by-13.7%
Maintainers
120
Install size
6.96 MB
Created
Weekly downloads
 

Readme

Source

Forma 36 React Components

This is a version 3 of Forma 36, which is not the current version of the package. From 12th July 2022 it will not be supported anymore. Please install current, supported version 4 of the library

A React component library for Forma 36 design system created by Contentful and powered by Storybook. You can access a Storybook website with the latest changes of the library here

Table of contents

Installing package

yarn add @contentful/forma-36-react-components

Or

npm install @contentful/forma-36-react-components

Usage

Import desired component into your project

import { Input } from '@contentful/forma-36-react-components';

For components in alpha stage, check the instructions in Alpha components

Import styles

import '@contentful/forma-36-react-components/dist/styles.css';

Development

For local development, in the root of the repo run yarn to install all dependencies and then yarn build to build all packages. This package depends on several other Forma 36 packages so you will need to build all of them.

Storybook

We use Storybook to create a development environment for our component library. To start it locally run:

yarn storybook

To start working on your components in Storybook, you will need to create stories for them. Look in the src/components directory for any .stories.js file. Storybook will automatically include any files with the .stories.js file extension.

Storybook is configured at scripts/.storybook/main.js.

Example component directory structure

A component's directory should resemble the following:

YourComponent
├── index.js                 // A file for exporting your component
├── YourComponent.js         // Your React component
├── YourComponent.css        // Component styles
├── YourComponent.stories.js // Storybook for the component
└── YourComponent.test.js.   // Component tests

If you use yarn generate in the root of the repo, this structure will be created automatically for you

Styling

We are using postcss-preset-env for styling our components. Using postcss-preset-env allows us to use the latest CSS syntax without having to wait for browser support. tools/postcss.config.js is used for adding plugins and configuration.

Component principles

We follow a number of principles when creating our components:

  1. A component is responsible for only its internal spacing

We follow the principle that a component should only be responsible for its own internal spacing - never external spacing. This means that we're flexible in where our components can be used without having to override margins.

  1. Use descriptive PropTypes

We recommend the following naming convention for PropTypes to make them as clear as possible:

  • Number - use a prefix or suffix to imply that the prop accepts a number. E.g. numItems, itemCount, itemIndex
  • Boolean - use the prefix 'is'/'can'/'has'. E.g. isVisible, canExpand, hasImage
  • Array - use a plural noun. E.g. items
  • Object - use a noun. E.g. item
  • Node - use the suffix 'Node'. E.g. containerNode
  • Element - use the suffix 'Element'. E.g. triggerElement
  • Event handler functions - use the prefix 'on'. E.g. onOpen, onClick

Adding documentation for component

We would like to make sure that every component contains a README file with recommendations and guidelines. Using yarn add-readme it will generate a template README file for you for the component that you specify. Follow steps in the CLI to create new README. Make sure that your documentation for the component contains following parts:

  1. A short summary of the component.
  2. Variations/types - try to provide the overview of the components variants.
  3. Example of usage - try to add couple of examples, that includes import
  4. Content recommendations - notes about best practices when it comes to the content used in the component, like message or title
  5. Best practices - try to describe in couple of points when to use the component
  6. Accessibility - If possible, we strongly recommend providing accessibility guidelines.

Testing

We are using Jest and Testing Library to test our components.

Tests are kept next to their components and use the .test.js file extension.

Run tests

yarn test

It is recommended to run tests in development with the optional --watch flag.

yarn test --watch

Building

We are using a combination of Webpack and Babel to create builds of our component library. We use Webpack with the tools/webpack.production.config.js config to build a stylesheet including all CSS used for our components using the ExtractTextPlugin. Babel is used for transpiling our React components into CommonJS modules. Babel and Webpack both output the build to the dist directory.

Create a build of the library

yarn build

Commits

This project uses the Angular JS Commit Message Conventions, via semantic-release. See the semantic-release Default Commit Message Format section for more details.

You can commit the changes by running

yarn commit

Alpha components

We provide a number of alpha components which are unsupported and subject to breaking changes without warning. In short - use alpha components at your own risk.

Alpha components are provided outside of the main component library bundle and can be used as follows:

import { MyAlphaComponent } from '@contentful/forma-36-react-components/dist/alpha';

FAQs

Last updated on 24 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc