virinchi_cv
Problem
Am writing a mix task that adds a use ModuleName to the top of the generated liveview, after the use MyAppWeb, :live_view line.
Using Igniter & Sourceror to perform the insertion.
defp enhance_index_live(igniter, context, schema, table, fields) do
schema_module = Module.concat([app_module, String.to_atom(context), String.to_atom(schema)])
index_path = "lib/#{app_name}_web/live/#{schema_underscore}_live/index.ex"
# Other variables...
igniter
|> Igniter.include_existing_file(index_path)
|> then(fn igniter ->
case Igniter.Project.Module.find_and_update_module(igniter, index_module, fn zipper ->
with {:ok, zipper} <- add_live_resource_use(zipper, schema_module) do
{:ok, zipper}
end
end) do
{:ok, igniter} ->
igniter
end
end)
end
In the add_live_resource function,
def add_live_resource_use(zipper, schema_module) do
use_statement = "use LiveTable.LiveResource, schema: #{inspect(schema_module)}"
{:ok, ast} = Code.string_to_quoted(use_statement)
case find_liveview_use_statement(zipper) do
{:ok, liveview_use_zipper} ->
updated_zipper =
liveview_use_zipper
|> Sourceror.Zipper.insert_right(ast)
|> Sourceror.Zipper.top()
{:ok, updated_zipper}
:error ->
{:ok, Sourceror.Zipper.insert_child(zipper, ast)}
end
end
def find_liveview_use_statement(zipper) do
zipper
|> Sourceror.Zipper.find(:next, fn z ->
case Sourceror.Zipper.node(z) do
{:use, _, _} ->
true
_ ->
false
end
end)
|> case do
nil -> :error
zipper -> {:ok, zipper}
end
end
But its unable to pattern match on the use :live_view line - and always returns errors.
The following arguments were given to Sourceror.Zipper.node/1:
# 1
{:__block__, [trailing_comments: [], leading_comments: []]...
I think I’m missing something in the Raw AST vs Zipper Struct conversion.
How to do this properly?
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ken-kost
here’s an example I did in routex, maybe it helps. I think you don’t even need move calls.
not sure, it’s been awhile. 
virinchi_cv
Above code had 2 issues-
use LiveTableThese were resolved by using the
Sourceror.Zipper.search_pattern/2&Sourceror.Zipper.up/2, as seen in the following code snippet-This fixed the issue. If you want to go through the entire code, here’s the link Git Link
This was used to implement Livetable’s
mix live_table.gen.livetask.