Open jamesst20 opened 5 months ago
What's the advantage of doing this instead of just doing
<!-- MyComponent.svelte -->
<script>
let { values = $bindable(), onChange } = $props();
const addValue = (newValue) => {
values ||= [];
values.push(newValue);
onChange?.(values);
};
</script>
....
<!-- Somewhere -->
<MyComponent bind:values={...}>
<!-- Somewhere else -->
<MyComponent values={...} onChange{...}>
this way you also avoid creating new memory by spreading.
What's the advantage of doing this instead of just doing
<!-- MyComponent.svelte --> <script> let { values = $bindable(), onChange } = $props(); const addValue = (newValue) => { values ||= []; values.push(newValue); onChange?.(values); }; </script> .... <!-- Somewhere --> <MyComponent bind:values={...}> <!-- Somewhere else --> <MyComponent values={...} onChange{...}>
this way you also avoid creating new memory by spreading.
You can test it out, it triggers a warning and it has side effect. It shouldn't update values because I didn't use bind. To get rid of this error, I would be forced to create a "memory spreading" as you call it to avoid that side effect
"%c[svelte] ownership_invalid_mutation\n%cMyComponent.svelte
mutated a value owned by App.svelte. This is strongly discouraged. Consider
passing values to child components with `bind:`, or use a callback instead"
How about something like:
let { prop = $bindable.required() }
Maybe a different name like $bindable.must
, or even, $bound
and $bound.optional
. This would be a pretty massive breaking change, but the way I see it optional bindings shouldn't be allowed at all unless there is a way for the child to know when the value is bound to or not (which adds unnecessary complexity).
If there is state to be shared from the child to the parent, I believe there are 2 options for the parent:
Child components will want to implement one or both of these behaviours:
If only one of the behaviours is needed, either a callback function (events) or bindable prop with no default is used. If you need both, use a bindable prop with a default value.
The problem is, as a child component, if you have a bindable prop, you will mutate it, otherwise it wouldn't be bindable. I believe the warning doesn't really make sense and might not catch potential issues fast enough (parent doesn't bind the prop but the child rarely mutates it so the warning never pops up). I think there are a few solutions to this:
Whatever you thoughts on everything I said here are, my only question is: what is the use case for allowing prop={var}
(without bind:
) on $bindable
props? If there is a valid use case, how should the warning in the original question be fixed?
How about something like:
let { prop = $bindable.required() }
Maybe a different name like
$bindable.must
, or even,$bound
and$bound.optional
. This would be a pretty massive breaking change, but the way I see it optional bindings shouldn't be allowed at all unless there is a way for the child to know when the value is bound to or not (which adds unnecessary complexity). If there is state to be shared from the child to the parent, I believe there are 2 options for the parent:
- the parent does not provide the prop at all. The child is independent and manages its own state.
- the parent binds to the prop, gaining "ownership" of the value (the child still controls/owns it, but from a logic standpoint it's as if the parent provides it and changes it based on callbacks from the child).
Child components will want to implement one or both of these behaviours:
- be fully-controlled by a parent
- manage their own state
If only one of the behaviours is needed, either a callback function (events) or bindable prop with no default is used. If you need both, use a bindable prop with a default value.
The problem is, as a child component, if you have a bindable prop, you will mutate it, otherwise it wouldn't be bindable. I believe the warning doesn't really make sense and might not catch potential issues fast enough (parent doesn't bind the prop but the child rarely mutates it so the warning never pops up). I think there are a few solutions to this:
- Add a way to make bindings required
- Make all bindings required (it's okay to omit the prop completely if it has a default value) - breaking
- Add a way for child components to tell which props are bound to (difficult to use by component authors - should they always check before mutating props?)
Whatever you thoughts on everything I said here are, my only question is: what is the use case for allowing
prop={var}
(withoutbind:
) on$bindable
props? If there is a valid use case, how should the warning in the original question be fixed?
Hi,
These are indeed very good suggestions! However, I'm on the fence of disagreement that a bindable prop should always be binded. I believe the very best case scenario should be
The reason is that I believe it should be possible to have a component that can either manage its own state or manage an external state with bind.
Let's take an exemple of a "Svelte Select Library" named "MySelect"
// Component mutates and always display the current selection based on value prop
<MySelect bind:value={value} options={...}>
// Component uses its own state to manage the value. When the form is submitted, it will be submitted like a normal form input.
<MySelect name="user[firstName]" options={...}>
// Component uses its own state to manage the value. A callback onChange is used to do something with the selected value
<MySelect value={initialValue} options={...} onChange={/* do something */}>
@trueadm If this just got added to the milestone 5.0, does this mean it's considered as an "accepted" request? I was wondering what could be done to drag more attention into this as I believe this is kind of important in some case scenario
It means we're going to look into the issue, not that the request is accepted per say :)
It means we're going to look into the issue, not that the request is accepted per say :)
Understood thanks! By the way I would love to have your opinion on https://github.com/sveltejs/svelte/issues/11672#issuecomment-2122797441 above
We really want to avoid adding more runes here where possible. If possible, bindings should preferably be transparent and not something you need to worry about. So there's likely an alternative approach to dealing with this.
$bindable()
and $bindable(required=true)
will be more natural over the suggested $bindable()
and $bindable.required()
@ak4zh that doesn't even seem like valid javascript syntax, not to mention $bindable(val: T)
is for settting default values
I think $bindable.required()
makes more sense and is inline with other runes like $state.snapshot()
Hey @trueadm @paoloricciuti
Kindly asking 6 months later if there was any update to this now that the official Svelte 5 has been released?
I still think it is worth something to be able to check if mutation on an attribute should be allowed or not
I wonder if checking for existence of being a proxied state might be a valid approach instead.
Describe the problem
Svelte 5 warns when non-binded props are mutated which is a very good thing to avoid unexpected side effect.
However, there is no way to tell if a prop is actually binded or not, or at least if there is it doesn't appear to be documented.
Shallow/deep copy could be avoided in some scenarios where performance matter if it's not even used.
Describe the proposed solution
Here is a real life possible scenario where you might just want to call a callback with the new values without mutating the actual passed value.
Importance
must have.
Svelte 4 librairies should be able to tell that as well to preserve compatibility without switching to runes