-
-
Notifications
You must be signed in to change notification settings - Fork 113
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
Adoption #153
Comments
I’m right on it ... basically it’s planned to be the next thing but I’ve just started adjusting viperHTML so it’s ok to keep this one open. |
FYI: adopting the right way is very complicated. This might take a while and I'll be off during xmas/nye time so apologies in advance for any inconvenience but I don't want to go out with a rushed solution. |
P.S. wires cannot adopt content yet but This is an HTML example, the HTML is basically what <!doctype html>
<html>
<head>
<script defer src="../index.js"></script>
</head>
<body>
<div test="before">
<!--�:4-->before<!--�:4-->
<ul>
<!--�:5--><li> lonely </li><!--�:5-->
</ul>
<!--�:6-->NO<!--�:6-->
<hr>
<input value="test">
</div>
</body>
<script>
setTimeout(function () {
update(
hyperHTML.adopt(document.body),
{
test: 'after',
text: 'after',
list: [
{name: 'first'},
{name: 'second'}
],
inBetween: 'YES'
}
);
function update(render, model) {
render`
<div test="${model.test}">
${model.text}
<ul>
${model.list.map(item => `<li> ${item.name} </li>`)}
</ul>
${model.inBetween}
<hr>
<input value=${'test'}>
</div>
`;
}
}, 2000);
</script>
</html> |
The PR is almost ready to land #185 |
I know this conversation is a year old now, just chiming in with a thought/question as I know this hasn't been merged into master yet. Is there a way to have |
@Scott-MacD apologies for late reply. I think hydration with hyper/viperHTML might never land, while it's natural with heresy and heresy-ssr |
Not a problem, I've yet to use it on a serious project, but I've been playing around with heresy for a while and it seems to work well for my needs. |
as mentioned in here, I am more than ever convinced this won't happen with hyperHTML, so I am closing this as won't fix. |
Adoption was removed in v2 with a note that it "will be out in another release." I'm totally fine with this, but it'd help me & perhaps others to have an issue to track for the status of this capability. I hope you don't mind me opening a ticket, to stay abreast of what the status is? If you'd prefer not, that's fine, close away.
Thanks for the amazing work on domdiff & hyperhtml.
The text was updated successfully, but these errors were encountered: