revati

revati

Beaconcms backend hooks - how to create initial changeset on page load?

I have an Elixir project with phoenix/ash/beacon cms.

This question is not related to ash per se.

I have 3 steps.

create changeset

on load/on mount

form = AshPhoenix.Form.for_create(MyEntity, :create)

on validate

form = AshPhoenix.Form.validate(form, params)

on save

AshPhoenix.Form.submit(form, params: params)

I think i got it working with event handlers for validate and save steps.

But I don’t understand how to create initial changeset on page load.


It seems reasonable (of course not for backend cms, but for light frontend facing interactions) to implement bossiness logic with ash that exposes all available actions and use them via beacon cms to make pretty forms.

Most Liked

APB9785

APB9785

Creator of ECSx

Hey Roberts,

There is currently no way to custiomize mount for a specific page, because navigation between beacon pages does not trigger a mount, it’s all done via patching in the same LiveView process.

However, you can customize mount for the entire Beacon site (similar to how Event Handlers work - you don’t define them for an individual page, but for the entire site). This is done by passing the :on_mount option to beacon_site/2, which works like the normal on_mount/1 that you would define for a live_session in Phoenix.Router.

Hope this helps!

PS. the #beacon-cms channel on Elixir Slack is quite active and many users are also incorporating Ash, so please check that out as well :slight_smile:

APB9785

APB9785

Creator of ECSx

Oh, now that I think about it, if all you’re doing is populating an assign, that could be a better fit for LiveData, which is scoped by path - still not per-page, but at least it’s not global (also changeable at runtime!).

To do this you would:

  • go to the “Live Data” section of the admin dashboard
  • click the button to create a new Live Data path
  • enter the path to your page(s) (can use globs e.g. /topics/:id/create)
  • define the assign with whatever name and code you want

Let me know what you end up going with!

APB9785

APB9785

Creator of ECSx

Ah, the expected variable is actually called event_params (instead of params). Sorry for the misleading text in BeaconLiveAdmin - I didn’t notice that before; we’ll have it fixed for the next release.

Where Next?

Popular in Questions Top

vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
lanycrost
Hi everyone! I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
New
dogweather
I wrote this comment on r/haskell, and it’s not popular there. :wink: But I think I’m on to something… Haskell reminds me of Java, and e...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
romenigld
I am trying to run a deploy with docker and I successfully runned with this command: docker build -t romenigld/blog-prod . but when I t...
New

We're in Beta

About us Mission Statement