-
-
Save Rich-Harris/5baca5f6c05b7adfd9f59fe3ebacb584 to your computer and use it in GitHub Desktop.
<div on:click="set({ count: count + 1 })"> | |
{count} {double} | |
</div> | |
<script> | |
export default { | |
data() { | |
return { count: 0 }; | |
}, | |
computed: { | |
double: ({ count }) => count * 2 | |
} | |
}; | |
</script> |
<script> | |
let count = 1; | |
const double = () => count * 2; | |
</script> | |
<div on:click="count += 1"> | |
{count} {double()} | |
</div> |
Preload! We need to figure out how to support preload
β doesn't need to be the exact same mechanism, but something like it. (We could abandon it in favour of doubling down on Suspense, but it wouldn't quite cover the same area.
In fact SSR more generally is a big unknown. In this new world, the initial setup code (which is currently what we'd call oncreate
) always runs, on both client and server. onchange
and onrender
(or whatever) would never run. ondestroy
could either be a noop (in which case any mount code would have to be wrapped in if (process.browser)
or something), or it could be called immediately following render.
It's possible that we'd lose the API distinction between client and server. We could also consider introducing async SSR rendering. Lot of possibilities, lot of stuff to figure out.
Oh, and all this needs to work with standalone components as well as normal ones
Other things I'm thinking about:
namespace: 'svg'
β perhaps this becomes<svelte:meta namespace="svg">
?tag
β perhaps this becomes<svelte:meta tag="my-element">
? (We no longer needprops
, since this is defined byexport let xxx
)CustomEvent
and get things like bubbling.<button on:click={e => doThing(e)}>
?onstate
fires for updated props or internal state (because there's no distinction between the two). This results in cyclicality (when you callthis.set(...)
insideonstate
) which leads to confusion and bugginess. I'd propose that we make that completely impossible by only callingonstate
(or more likelyonchange
) when props have changed. I can't think of anything that would become impossible as a result, except for things that we want to be impossible. Also, we'd get rid of the arguments toonstate
β no longer necessary.