Git Product home page Git Product logo

Comments (3)

brendanbond avatar brendanbond commented on July 16, 2024

Hi @LukacTomas, thanks for reaching out. Is the goal here to create a custom component in your forms, or to use JSX to write Form.io components?

from react.

LukacTomas avatar LukacTomas commented on July 16, 2024

Well, I already can use JSX to write custom Form.io components. I have my own wrapper for Form.io ReactComponent and there I can use JSX to display my custom components. Maybe the problem with ReactComponent is that it extends Field.

I would like to use my own JSX component and somehow tell that component what components should it have.

Let's say I have:

   {
      "key": "MyCustomNesteReactComponent",
      "type": "panel",
      "label": "Custom Nested React Componenet",
      "input": false,
      "tableView": false,
      "components": [
        {
          "label": "Text Field",
          "placeholder": "Text",
          "applyMaskOn": "change",
          "tableView": true,
          "key": "textField",
          "type": "textfield",
          "input": true
        }
      ]
    }

So in the end, MyCustomNesteReactComponent should be JSX component and I would like to tell it that it should have some children, in this case the textField (or whatever components I want).

from react.

brendanbond avatar brendanbond commented on July 16, 2024
  1. The formio.js renderer takes a JSON form definition and ultimately renders an HTML DOM tree to be displayed by the browser.
  2. The ReactComponent React component ostensibly allows you to write a form component - things like business logic, state, and some display concerns - in React, and then to "attach" a small React instance to a Form.io component instance so that when you include that component type in a form JSON definition, it will actually instantiate a tiny little instance of React and render your component that way. If possible, I would love to see how you're using this component, because I didn't really think it got a lot of use out in the wild.
  3. To configure nested components (and I'm completely spitballing here), I imagine your children prop will be another ReactComponent that consumes the child JSON and itself and renders other ReactComponent React components. I don't really think it would be possible the other way around (i.e. your ReactComponent rendering regular old formio.js children like TextField or something), although maybe seeing how you're using this component in the wild would help us come up with some ideas.

from react.

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.