Updating a signal depending on if an element is focused or not
I want to update a signal on whenever a element gains focus or not(true / false)
Tho if i do this, the focus gets used onfocus and doesn't trigger the expected behaiviour
19 Replies
Solid Playground
Quickly discover what the solid compiler will generate from your JSX template
it should work
huh
then something else f_cks it up
imma supply the full code
This is a base component for the input-related components to use
and this is the input component i am making
very hard to debug code snippets like this. It would be best if you could provide a working reproduction where I can go, execute it and make changes to debug
hmmm
hold on
it's a lot of effort for someone that has never seen your code to read through this and try to find the mistake
imma strip away the uneeded stuff
thanks!
yeah, try to make the smallest repro possible where the issue still occurs
maybe this helps already and you'll find the issue yourself
it's generally how I would move when I have a weird issue like this. People on the discord can't really help you that well if you haven't broken down the issue yourself.
mhm
something else seems to change it and flip it back
its not the component itself
see? debugging helps 😄
apart from that its pain in the a##
ok so
whatever thing does this sh_t
it sets it to false immediately
the weirdest part
is i provided a accessor
removing setIsFocused causes the element to be normal
i think ik whats going on
YUP
its this son of a
[REDACTED]
here
solidjs re-renders this
when inputStyles
change
and bc im changing it based on focusing
in short, ]it f_cks upyou might do this
kinda like
Dynamic
componentyou living genius
it solved immediately the problem
thx
it was painful
o7
components are usually untracked when called like
<Component/>
so it might be surprising when you call then like Component()
but the real issue is probably this const getIsDisabled: Accessor<boolean> = getterFromReactive(props.disabled || false);
it doesn't track props.disabled
oh sh_t
if you used the solid eslint plugin it would probably complain about it
but anyway
almost alvays when you are accessing props you want to do that in
() =>
yeh regarding that. Do want to track it
tho wait
i don't think it will be needed
this is worse of a bug than i thought
the "christmas" animation doesn't work on the input text component
by some miracle
i squashed the bug
without even realising it
here is some jargin code i wrote
so ur eyes can burn a bit more
one problem tho im noticing is the styles just don't apply
nvm
im just an idiot
unrelated, why do you focus in the onfocus
that was some test code
i didn't know the bug to this extent