Pau Riosapaugramming.com·Feb 15, 2024Things I Learned using Phoenix LiveView in 2024Use handle_params/3 more often rather than mount/3 for assigning. def mount(_params, _session, socket), do: {:ok, socket} def handle_params(params, _uri, socket) do {:noreply, socket |> assign_here_1(params) |> assign_here_...Discuss·26 readsphoenix liveview
Ijlal Ahmadijlalahmad.hashnode.dev·Feb 6, 2024Evolution of List Rendering in AndroidLists are integral components in Android applications, found across various functionalities like contacts, chat, social media, and music apps. Even seemingly simple apps, like calculators, incorporate lists for unit conversions. As an Android develop...Discuss·29 readsscrollview
Miguel Cobáblog.miguelcoba.com·May 23, 2023Editing forms with live_file_inputImagine you are writing an app to handle products for a marketplace. Each Product has up to 3 images associated with it. When editing a Product, you should be able to remove any of the already associated images and add new images to the Product, alwa...Discuss·10 likes·2.2K readsElixir
AbulAsar S.abulasar.com·Sep 8, 2022Creating a real-time Trello board with Phoenix LiveView-Part-1Trello cards help you to collaborate, manage projects, and reach new productivity peaks(As per their official Website 😊). You may have used it earlier or some similar board like Jira to manage projects and tasks. When I joined one of my previous org...AbulAsar S. and 2 others are discussing this3 people are discussing thisDiscuss·10 likes·2.2K readsliveviewHad the folder misplacement of file didn't run the code? I'll check and update it ASAP. Sorry for the confusion. 5
AbulAsar S.abulasar.com·Sep 8, 2022Creating a real-time Trello board with Phoenix LiveView-Part-2This blog is a continuation of a three-part blog series on creating a real-time Trello board. This is going to be part 2 of the series. In the previous blog, we designed and implemented the API layer of the application. We added two tables i.e User a...Paulo Borba and 1 other are discussing this2 people are discussing thisDiscuss·2 likes·1.6K readsElixir
Pau Riosapaugramming.com·Sep 3, 2022A Reusable Multi-Tag Selection Component for Phoenix LiveViewIn this article I'm gonna show how to create a reusable multi-tag selection component for a Phoenix LiveView Prerequisite phoenix_live_view tailwind css Add a live route go to router.ex and add live "/" ParentLiveView Create a Phoenix LiveVie...Discuss·587 readsPhoenix framework
Sergio Tapiasergiotapia.com·Aug 31, 2022DropzoneJS direct uploads to Backblaze B2 in Phoenix Liveview.Woah read that title again, what a mouthful. I've spent the last five evenings after work trying to get this to work. I've cobbled together blog posts, forums posts, github issues, hell I've spelunked chinese stackoverflow content cloner websites try...Discuss·561 readsPhoenix framework
AbulAsar S.abulasar.com·Jul 23, 2022My Elixir Mix PodcastRecently, I got the opportunity to be a guest on Elixir Mix podcast. Though I was nervous(super nervous) but the hosts of the show Sascha Wolf, Adi Iyengar, and Allen Wyma were very welcoming and made me comfortable. The podcast was about my blog Fet...Discuss·10 likes·221 readsElixir
AbulAsar S.abulasar.com·Jun 21, 2022Adding Toaster message in Phoenix LiveViewThis blog is about adding a Toaster message in the Phoenix LiveView application. We are going to implement this with a combination of Elixir and Javascript. Before, starting to build a toaster let's first answer the most obvious question "What is a T...Discuss·1 like·1.8K readsPhoenix framework
AbulAsar S.abulasar.com·Jun 11, 2022Highlighting the current page link in the Navbar menu in Phoenix LiveViewA good user experience happens when an application is easy to use and with intuitive UI feedback. Nav menu bar is one the most important element in web applications, it helps users to navigate to different pages. It's vital that users should be aware...Discuss·5 likes·2.7K readsElixir