Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aircall/tractor

Package Overview
Dependencies
Maintainers
8
Versions
242
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aircall/tractor

UI Component Library for Modern Design

  • 0.0.15
  • npm
  • Socket score

Version published
Weekly downloads
5.3K
decreased by-23.15%
Maintainers
8
Weekly downloads
 
Created
Source

🤩 @aircall/tractor

The Aircall Tractor design system Foundations.

✨ Features

  • 🌈 Aircall Design System designed for web applications.
  • 📦 A set of high-quality React components out of the box written with Styled-components.
  • 🛡 Written in TypeScript with predictable static types.
  • 🎨 Powerful theme customization in every detail.

📦 Install

npm install --save @aircall/tractor
yarn add @aircall/tractor

🔨 Usage

import {
  ThemeProvider,
  Spacer,
  SpaceVariant,
  Typography,
  TypographyVariant
} from '@aircall/tractor';

const App = () => (
  <ThemeProvider>
    <Spacer space="s">
      <Typography variant={TypographyVariant.DISPLAY_M}>Hello</Typography>
      <Typography variant={TypographyVariant.DISPLAY_L}>World</Typography>
    </Spacer>
  </ThemeProvider>
);

There is no need to import the styles of the components because they are going to be injected for you at runtime.

⌨️ Development

You first need to clone the repository locally:

$ git clone git@bitbucket.org:aircall/tractor.git
$ cd tractor
$ yarn
$ yarn start:storybook

If you want to test this Design System with your project, you need to:

$ cd tractor
$ yarn link
$ yarn build:watch
$ cd path/to/your/project
$ yarn link "@aircall/tractor"

Make sure that your project is using a single version of React otherwise you will end up having errors:

Use in create-react-app project

In the real world, we usually have to modify default webpack config for custom needs. We can achieve that by using craco which is one of create-react-app's custom config solutions.

Install craco and modify the scripts field in package.json.

$ npm install --save-dev @craco/craco
$ yarn add --dev @craco/craco
/* package.json */
"scripts": {
-   "start": "react-scripts start",
-   "build": "react-scripts build",
-   "test": "react-scripts test",
+   "start": "craco start",
+   "build": "craco build",
+   "test": "craco test",
}

Then create a craco.config.js at root directory of your project for further overriding.

/* craco.config.js */
const path = require('path');

module.exports = {
  webpack: {
    alias: {
      react: path.resolve('./node_modules/react')
    }
  }
};

Use in project using Webpack

/* webpack.config.js */
const path = require('path');

module.exports = {
  resolve: {
    alias: {
      react: path.resolve('./node_modules/react')
    }
  }
};

🤝 Contributing

We decided to use commitlint which is a small library that enforces the conventional commit format.

In general the pattern mostly looks like this:

type(scope?): subject  #scope is optional

Real world examples can look like this:

chore: run tests on travis ci
fix(spacer): fix the margin on the small variant
feat(button): implement new button component

We recommend to use the type of the commit followed by the component name if possible and then followed when the actual commit message.

We also encourage developers to split as much as possible their commits into small chunks so that it easy for us to review.

Common types according to commitlint-config-conventional can be:

  • build
  • ci
  • chore
  • docs
  • feat
  • fix
  • perf
  • refactor
  • revert
  • style
  • test

Release & Publish

When a or several PRs are merged into master, standard-version will generate the changelog and the bump the version of the package depending on all the commits between the previous tags and the latest commit on master.

Publishing the repository to NPM is a matter of clicking on the Bitbucket Pipeline Publish Button.

FAQs

Package last updated on 22 Jun 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc