New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aircall/tractor

Package Overview
Dependencies
Maintainers
3
Versions
250
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

  • 2.0.0
  • npm
  • Socket score

Version published
Weekly downloads
5.7K
increased by11.71%
Maintainers
3
Weekly downloads
 
Created
Source

Gitpod ready-to-code

🤩 @aircall/tractor

The Aircall Tractor design system Foundations.

Latest Staging version available on: https://tractor.aircall-staging.com/next

Latest Production version available on: https://tractor.aircall.io/latest

✨ 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 { Tractor, Spacer, Typography } from '@aircall/tractor';

const App = () => (
  <Tractor injectStyle>
    <Spacer space="s">
      <Typography variant="displayM">Hello</Typography>
      <Typography variant="displayL">World</Typography>
    </Spacer>
  </Tractor>
);

You are ready to go 🚜 ⚡️

You must wrap your React Tree components using the Tractor component otherwise the Tractor components won't be able to grab the theme thus they will fail.

⌨️ Development

Please check the instructions on the main ReadME file

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

Theming

Override DefaultTheme to get accurate typings for your project.

// create styled-components.d.ts in your project source
// if it isn't being picked up, check tsconfig compilerOptions.types
import "styled-components";
import { DefaultTheme as DefaultTractorTheme } from "@aircall/tractor";

declare module "@xstyled/system" {
  export interface Theme extends DefaultTractorTheme {}
}

declare module "styled-components" {
  export interface DefaultTheme extends DefaultTractorTheme {}
}

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: {
      /**
       * You need to create only one reference for React and styled-components
       * when you want to link tractor into your current project
       *
       * If you don't link react, you'll end up having react complaining of having multiple instances of React
       * and if you don't link styled-components, you won't be able to access the theme prop exposed by Tractor.
       */
      react: path.resolve('./node_modules/react'),
      'styled-components': path.resolve('./node_modules/styled-components')
    },
    /**
     * You need to disable the ModuleScopePlugin otherwise, CRA won't allow you
     * to override the dependency path using aliases, because it will consider that
     * you are trying to import a module outside of the `src`.
     */
    configure: webpackConfig => {
      const scopePluginIndex = webpackConfig.resolve.plugins.findIndex(
        ({ constructor }) => constructor && constructor.name === 'ModuleScopePlugin'
      );

      webpackConfig.resolve.plugins.splice(scopePluginIndex, 1);
      return webpackConfig;
    }
  }
};

Use in project using Webpack

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

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

If you are using Jest and in the same time linking tractor locally to your project, you might need to change your craco configuration to the following, in order to resolve the following issue: "hooks can only be called inside the body of a function component".

/* craco.config.js */
const CracoAlias = require('craco-alias');

module.exports = {
  plugins: [
    {
      plugin: CracoAlias,
      options: {
        source: 'options',
        baseUrl: './',
        aliases: {
          // You need to alias react to the one installed in the node_modules
          // in order to solve the error "hooks can only be called inside the body of a function component"
          // which is encountered during jest unit tests described at https://github.com/facebook/react/issues/13991
          react: './node_modules/react',
          'styled-components': './node_modules/styled-components'
        }
      }
    }
  ]
};

🤝 Contributing

Click on this link to learn more about how's to contribute.

FAQs

Package last updated on 04 Aug 2023

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