water
I’m trying to build a Liveview with 2 parts:
- top:
- switch button: camera / hardware scanner
- show camera scanner
- or empty
- switch button: camera / hardware scanner
- bottom:
- scan history table from db with pubsub: statistics, colors, time,..
When the hardware scanner is used and a scan is made, a sequence of characters is send ending with an Enter-key.
defmodule HelloWeb.ScanLive do
use HelloWeb, :live_view
def render(assigns) do
~H"""
<div phx-window-keyup="scanner">
</div>
"""
end
def handle_event("scanner", key, socket) do
IO.inspect(key)
{:noreply, socket}
end
end
Is this the proper way to do this in Phoenix Liveview using handle_event with keyup?
Can you capture a sequence+Enter at once or do you have to capture separately and build it up.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mcrumm
If you want to capture each key individually, yes.
This requires a form input. I am curious why specifically you wish to avoid this. I can give you a working example (using an ancient Symbol LS1900 barcode scanner to demonstrate
):
Here’s the code:
Usually there are (at least) two tricky parts. The first is clearing and re-focusing the input after the form submits. You can use a combination of
JS.push()andJS.push_focus()to submit the form and re-focus the input. To ensure the input is cleared after submit, you need to force the input to re-render. In this case I am setting adata-countattribute and incrementing the count on each submit. This will force LiveView to re-render the input with the empty value provided on the element.The other tricky part is that barcode scanners don’t always send an Enter key as a suffix. I left the
phx-debounce="blur"on the input because you will definitely want that if you try to add aphx-changeevent to the form. Since LiveView won’t re-render focused inputs on change, you would probably want to push an event from the server and use it to reset the input value.pdgonzalez872
that’s so cool!
water
Thank you. I’ve tried similar with a form & changeset &
onfocus: "this.value=''"'to reset the value. Your code is much cleaner though.I have currently 2 reasons. I’m testing with an android phone with 2d scanner (Blovedream U9000)
When the focus is on the input the software keyboard keeps popping up. I though when there is no input, there would be no software keyboard filling half the screen.
Edit: Adding
inputmode="none"to input fixes this.When the user clicks outside the input, the focus is lost. Scans are not captured until you refocus on the input.
Edit:
I’ve also added
autocomplete="off"to inputNorman56
For capturing a sequence+Enter at once, I’m not sure if that’s possible. It might be easier to capture the sequence and then add the Enter key as a separate event.
Regarding your issue with the software keyboard popping up, adding inputmode=“none” to the input should fix that.