Coder Social home page Coder Social logo

variables for propTypes about react-docgen HOT 8 CLOSED

reactjs avatar reactjs commented on April 28, 2024
variables for propTypes

from react-docgen.

Comments (8)

khankuan avatar khankuan commented on April 28, 2024 7

sample snippet

const types = ['dark', 'light'];
...
static propTypes = {
  types: React.PropTypes.oneOf(types)
}

This resulted in the value being 'types' as a string. It would be nice if we can replace it with the variable value instead of the variable name.

from react-docgen.

ondrejbartas avatar ondrejbartas commented on April 28, 2024 1

👍

from react-docgen.

leepowelldev avatar leepowelldev commented on April 28, 2024 1

Sorry to raise an old issue, but should this work if the values are kept in an imported file?

import { types } from './types';
...
static propTypes = {
  types: React.PropTypes.oneOf(types)
}

from react-docgen.

fkling avatar fkling commented on April 28, 2024

Can you elaborate? What exactly is the problem? Do you get an error? Do you get unexpected output? What is the output your get and what is the output you would want to get?

from react-docgen.

fkling avatar fkling commented on April 28, 2024

This should be fixed with d3dbb2e which is included in the v2.12.0 release.

from react-docgen.

fkling avatar fkling commented on April 28, 2024

@leepowellcouk: No, react-docgen doesn't resolve dependencies.

from react-docgen.

fchwpo avatar fchwpo commented on April 28, 2024

Its not working for oneOfType

from react-docgen.

fchwpo avatar fchwpo commented on April 28, 2024

Like in my case


const columnProps = [
	PropTypes.bool, //can be a boolean
	PropTypes.number, //can be a number
	PropTypes.string, //can be a string,
	PropTypes.shape({
		size: PropTypes.oneOfType([PropTypes.bool, PropTypes.number, PropTypes.string]), // An object that could be one of many types
		order: stringOrNumber,
		offset: stringOrNumber
	})
];

const propTypes = {
	/**
	 * The number of columns to span on extra small devices (<576px) 
	 * 
	 */
	xs : PropTypes.oneOfType(columnProps),
	/**
	 * The number of columns to span on small devices (≥576px)
	 * 
	 */
	sm : PropTypes.oneOfType(columnProps),
	/**
	 * The number of columns to span on medium devices (≥768px)
	 * 
	 */
	md : PropTypes.oneOfType(columnProps),
	/**
	 * The number of columns to span on large devices (≥992px)
	 * 
	 */
	lg : PropTypes.oneOfType(columnProps),
	/**
	 * The number of columns to span on extra large devices (≥1200px)
	 * 
	 */
	xl : PropTypes.oneOfType(columnProps),
	/**
	 * Custom ClassName String
	 */
	className : PropTypes.string,
	/**
	 * Custom Class Name Object
	 */
	cssModule : PropTypes.object,
	/**
	 * WIP
	 */
	widths : PropTypes.array
}```

from react-docgen.

Related Issues (20)

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.