Giter VIP home page Giter VIP logo

Comments (10)

developit avatar developit commented on May 1, 2024 10

I don't personally have a use for it, but I'm assuming it's a feature Preact will need to support. It doesn't fit well into the current model, but that's something I'm already changing.

from preact.

developit avatar developit commented on May 1, 2024 6

Hi @nightwolfz,

Just return props.children[0], no wrapper should be required. In preact, children is always an Array. This avoids needing to build an API for managing an abstract "maybe array" type. preact-compat does include the React.Children for abstracting this if you need them to look identical.

Here's your code with the added [0] working:
https://jsfiddle.net/developit/jqd96rhv/

Cheers!

from preact.

developit avatar developit commented on May 1, 2024 4

There is an experimental PR: #703.

from preact.

nightwolfz avatar nightwolfz commented on May 1, 2024

Thanks @developit

That works if you know that you will only have one child.

Is it possible to return an array of children from the render method without wrapping?

https://jsfiddle.net/cfvcrr7d/1/

from preact.

developit avatar developit commented on May 1, 2024

No, sorry :( - Neither React nor Preact support that. It has to do with tracking DOM Node ownership. I have a few thoughts around how it might be possible to implement, but they are all pretty bloated sadly. In my own work, the couple times I've wanted to do this I actually use a function instead of a component. Since a lot of my components are just pure functions that take props and return JSX, it's as simple as swapping out <Foo /> for {Foo()}:

const ITEMS = [1, 2, 3, 4, 5];

const List = () => (
  <div>
    <h1>list of things:</h1>
    <ul>
      { ListItems() }
    </ul>
  </div>
);

const ListItems = () => (
  ITEMS.map( item => <li>{ item }</li> )
);

on jsfiddle

from preact.

nightwolfz avatar nightwolfz commented on May 1, 2024

You're right, I incorrectly assumed that React always returns children as an array as well but this seems not to be the case.

from preact.

NekR avatar NekR commented on May 1, 2024

@developit sad thing :-) Would be great to get "returning arrays" support.

from preact.

treshugart avatar treshugart commented on May 1, 2024

@developit I think Fiber is going to support this. Have you had any thoughts on this since your last reply? We've supported this in the past in Skate and it was quite convenient.

from preact.

kurtextrem avatar kurtextrem commented on May 1, 2024

Is there anything new? Does 8.2.1 support it?

from preact.

yaitskov avatar yaitskov commented on May 1, 2024

You saved space on a Maybe class definition, which is fixed saving, but every component must have extra 3 letters.

from preact.

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.