GithubHelp home page GithubHelp logo

Comments (3)

markalfred avatar markalfred commented on May 29, 2024

Letting init take generators would allow for "global" custom generators too. Maybe allow for all options to be defaulted.

const generators = { 
  string: propName => {
    switch (propName) {
      case 'insertedAt': return moment('01/01/2001', 'MM/DD/YYYY').format();
      case 'updatedAt': return moment().format();
      default: return propName;
  }
}

generateProps.init({ generators, optional: true })

Component.propTypes = {
  insertedAt: string.isRequired,
  updatedAt: string,
  name: string.isRequired,
}

generateProps(Component)
// => Current: { insertedAt: 'insertedAt', name: 'name' }
// => Proposed: 
/* { 
  insertedAt: '2001-01-01T00:00:00-05:00', 
  updatedAt: '2019-06-13T11:21:11-04:00',
  name: 'name'
} */

from react-generate-props.

markalfred avatar markalfred commented on May 29, 2024

A wrinkle: because we need to wrapPropTypes, we need to know, during initialization, that these custom props exist. That might mean something like

import propTypes from 'prop-types'
import customPropTypes from 'lib/custom-prop-types'
generateProps.init(
  [propTypes, customPropTypes],
  { generators: { empty: () => null } }
)

There might be overlaps in prop names there, though, so maybe...

generateProps.init({ 
  generators: [
    [propTypes.string, () => 'string'],
    [customPropTypes.string, () => 'custom string'],
  ]
})

or just allow for namespacing...

generateProps.init({ propTypes, customPropTypes }, { 
  generators: {
    propTypes.string: () => 'string',
    customPropTypes.string: () => 'custom string',
  }
})

from react-generate-props.

markalfred avatar markalfred commented on May 29, 2024
const myCheck = (props, propName, componentName) => ...
const myOtherCheck = (props, propName, componentName) => ...

generateProps.init({ myCheck, { otherCustomValidators: { myOtherCheck } } }, { 
  generators: {
    myCheck: () => 'foo',
    otherCustomValidators.myOtherCheck: () => 'bar',
  }
})

from react-generate-props.

Related Issues (18)

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.