Closed GPrimola closed 6 months ago
Would you consider :focus
instead of :focus_in
and :blur
instead of :focus_out
?
Also, for the over events, how do you feel about also perhaps sending a cursor position?
(Great work, btw!)
Hey @crertel sorry for the long delay to reply you and thanks for your suggestions!
Sure, :focus
and :blur
are totally fine too, I'll push this change.
About sending the cursor position on the :hover
event, I'm not sure. Could you give me any use case for that?
Would you imagine this cursor position being local cursor position (relative to the component or to the item box) or global position (the position on the viewport)?
My thoughts about this is should anyone need the cursor position they should request the :cursor_position
input and combine the event's data using assigns on the scene.
But this may be because I don't have any use case in mind.
I'm pretty flexible on this...I'm thinking that it might be helpful for cases where we want to handle something local to the component (say, updating a gradient or some other UI effect) and doing it elsewhere could be clunky. Not super wed to it though--what do you think? :)
@crertel I tried to run mix test
locally to see what's going on, and it succeeded, maybe this is a flaky test?
Hey @crertel would you mind to run the CI/build action again? I've checked and it seems all good:
Many thanks and sorry for the pings 🙂
Looks green! Great work, I bet folks will get some good use out of these. Very sorry for the delay on our side. Lemme page @axelson in too, but I'm liking this.
Description
This PR adds new events to the following built in components:
Scenic.Component.Button
{:btn_pressed, id}
- sent when a button is pressed{:btn_released, id}
- sent after the button is releasedScenic.Component.Input.TextField
{:focus, id}
- sent when a text field is "active", i.e., is ready to receive inputs{:blur, id}
- sent when a text field becomes "inactive", i.e., will not receive inputsScenic.Component.Input.Dropdown
{:dropdown_opened, id}
- sent when the dropdown opens{:dropdown_closed, id}
- sent when the dropdown closes{:dropdown_item_hover, id, item_id}
- sent when and item is hoveredMotivation and Context
Those new events are very helpful in certain scenarios.
Types of changes
Checklist