Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for multiple Slots and add ability to render multiple children #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

fwilkerson
Copy link

The library did not appear to work as intended. I could only get it to work for a single slot and only if I was rendering 1 child in the slot content.

After some debugging I noticed two issues;

  • Slots share the same state, settings state on a second slot override the first slots content
  • It was always choosing children[0] when evaluating children/content

Since all slots shared the same state.content I decided to key the content by the slots name. I also noticed the onChange functions were being called even when the slot in question was not changing. This was due to onChange being an array of update functions and each update was executed when a SlotContent changed. So I applied the same idea to onChange, it is now an object, the key is the slots name and the value is the update function.

To address the issue of only being able to render a single child within SlotContent, I updated it to send all of it's children to apply. Then when slot renders the content it will determine if it should pass all the children, or just render the zero node (in the case of a string being the content).

A working demo with the updates I've made can be found here. Switch the imports for preact-slots to the released version to see the issues.

@cj
Copy link

cj commented Aug 24, 2018

@developit what do you think?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants