Giter VIP home page Giter VIP logo

react-desc's Introduction

react-desc

Slack Build Status Code Climate Test Coverage

Add an schema to your React components based on React PropTypes

Installation

npm install react-desc

Usage

Adding documentation

// Anchor.js

import React from 'react';
import ReactPropTypes from 'prop-types';
import { describe, PropTypes } from 'react-desc';

const Anchor = (props) => {
  const { path, ...rest } = props;
  return (
    <a href={path} {...rest}>{props.children}</a>
  );
};

export const AnchorWithSchema = describe(Anchor)
  .availableAt([
    {
      badge: 'https://codesandbox.io/static/img/play-codesandbox.svg',
      url: 'https://codesandbox.io/s/github/grommet/grommet-site?initialpath=anchor&amp;module=%2Fscreens%2FAnchor.js',
    },
  ])
  .description('A text link');

AnchorWithSchema.propTypes = {
  path: PropTypes.string.describe('React-router path to navigate to when clicked').isRequired,
  href: PropTypes.string.describe('link location').deprecated('use path instead'),
  id: ReactPropTypes.string, // this will be ignored for documentation purposes
  title: PropTypes.custom(() => {}).description('title used for accessibility').format('XXX-XX'),
  target: PropTypes.string.describe('target link location').defaultValue('_blank'),
};

export default Anchor;

Accessing documentation

  • JSON output

      import { AnchorWithSchema } from './Anchor';
    
      const documentation = AnchorWithSchema.toJSON();

    Expected output:

      {
          "name": "Anchor",
          "description": "A text link",
          "properties": [
            {
              "description": "React-router path to navigate to when clicked",
              "name": "path",
              "required": true,
              "format": "string"
            },
            {
              "description": "link location.",
              "name": "href",
              "deprecated": "use path instead",
              "format": "string"
            },
            {
              "description": "title used for accessibility.",
              "name": "title",
              "format": "XXX-XX"
            },
            {
              "description": "target link location.",
              "name": "target",
              "defaultValue": "_blank",
              "format": "string"
            }
          ]
        }
  • Markdown output

      import Anchor from './Anchor';
    
      const documentation = Anchor.toMarkdown();

    Expected output:

      ## Anchor Component
      A text link
    
      ### Properties
    
      | Property | Description | Format | Default Value | Required | Details |
      | ---- | ---- | ---- | ---- | ---- | ---- |
      | **path** | React-router path to navigate to when clicked | string |  | Yes |  |
      | **~~href~~** | link location. | string |  | No | **Deprecated**: use path instead |
      | **title** | title used for accessibility. | XXX-XX |  | No |  |
      | **target** | target link location. | string | _blank | No |  |

API

  • describe(component)

    Creates a proxy to the actual react component with support for the following functions:

    • availableAt([{ badge: string, url: string }]): function that receives an object or an array of objects that will render where the component is available.
    • description(value): function that receives a string with the component description.
    • deprecated(value): function that receives a string with the deprecation message.
    • toJSON(): function that returns the component schema as a JSON object.
    • toMarkdown(): function that returns the component schema as a Markdown string.
    • usage(value): function that receives a string with the component usage example.
  • PropTypes

    Proxy around the React propTypes, all properties are supported. See all options here. This proxy supports the following functions:

    • defaultValue(value): function that receives a value that represents the default prop.
    • description(value): function that receives a string with the PropType description.
    • deprecated(value): function that receives a string with the deprecation message.
    • format(value): function that receives a string with the PropTypex format.

Why not react-docgen?

react-docgen is a great project but it relies on an AST parser to generate documentation. Most of the time this is ok, but for us the following use cases were hard to solve without a more verbose way to define propTypes:

  • Define deprecated properties

  • Define a required property for custom function:

    Anchor.propTypes = {
      test: () => { ... } // isRequired is not present here
    }
  • Allow internal comments for properties without it showing up in the documentation

react-desc's People

Contributors

alansouzati avatar ericsoderberghp avatar jamiepenney avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.