agonzalezro

agonzalezro

Help thinking in Ash domains & resources

Hi folks :wave:

TLDR; I have an idea explained at the end, but I am not sure that’s how I should be doing it in Ash.

I am trying to understand how my domains & resources should look like.

I have a domain Portofolio where I want to store Assets and the price of those Assets for a given date.

A simplified version of what I have is:

defmodule Portfolio.Asset do
  attributes do
    ...
    attribute :name, :string, allow_nil?: false
    ...
  end

  relationships do
    belongs_to :user, Accounts.User, allow_nil?: false
    has_many :snapshots, AssetSnapshot
  end
end

defmodule Portfolio.AssetSnapshot do
  attributes do
    ...
    attribute :amount, :decimal, allow_nil?: false
    create_timestamp :created_at
    ...
  end

  relationships do
    belongs_to :asset, Portfolio.Asset, allow_nil?: false
  end
end

With these resources I could “easily” get user.assets and then for each asset a asset.last_snapshot or even have a calculation in the Portfolio for it. But at the moment that I need a bit more flexibility getting, for example, the last year snapshots I think it will get complicated.

I was thinking in adding an intermediary Snapshot for the whole Portfolio and not for the asset that would be simply:

attributes do
  ...
  date :date
  ...
end

relationships do
  has_many :assets, Portfolio.Asset, allow_nil?: false
  has_many :asset_snapshots, Porfolio.AssetSnapshot, allow_nil?: false
end

This way the Snapshot just saves the date and I can easily query there and create some calculations.

In the past I did something similar with a JSONB and I think I could get a similar behaviour here with a :map but I am not sure that’s the Ash-way.

Any insight would be more than welcome! :pray:

First Post!

agonzalezro

agonzalezro

This is what I was thinking about when I talked about the JSONB:

diff --git a/lib/mcduck/accounts/user.ex b/lib/mcduck/accounts/user.ex
index 1c35cb5..7be6539 100644
--- a/lib/mcduck/accounts/user.ex
+++ b/lib/mcduck/accounts/user.ex
@@ -100,6 +100,7 @@ defmodule Mcduck.Accounts.User do
 
   relationships do
     has_many :assets, Mcduck.Portfolio.Asset
+    has_many :snapshots, Mcduck.Portfolio.Snapshot
   end
 
   identities do
diff --git a/lib/mcduck/portfolio/snapshot.ex b/lib/mcduck/portfolio/snapshot.ex
index 6427ca5..fbced4c 100644
--- a/lib/mcduck/portfolio/snapshot.ex
+++ b/lib/mcduck/portfolio/snapshot.ex
@@ -16,16 +16,32 @@ defmodule Mcduck.Portfolio.Snapshot do
   attributes do
     uuid_primary_key :id
 
-    attribute :amount, :decimal, allow_nil?: false
+    attribute :date, :date, allow_nil?: false
+
+    attribute :asset_snapshots, :map do
+      allow_nil? false
+
+      constraints fields: [
+                    asset_id: [
+                      type: :uuid,
+                      allow_nil?: false
+                    ],
+                    rate_id: [
+                      type: :string,
+                      allow_nil?: false
+                    ],
+                    amount: [
+                      type: :decimal,
+                      allow_nil?: false
+                    ]
+                  ]
+    end
 
     create_timestamp :created_at
     update_timestamp :updated_at
-
-    attribute :rates_id, :uuid
   end
 
   relationships do
-    belongs_to :asset, Mcduck.Portfolio.Asset, allow_nil?: false
-    belongs_to :rate, Mcduck.Money.Rates, allow_nil?: true
+    belongs_to :user, Mcduck.Accounts.User, allow_nil?: false
   end
 end

But I will need to validate that the asset_snapshot maps includes real data as I can’t use the reference. Same when I delete et al. It seems more like a workaround than a real solution.

WDYT?

Last Post!

agonzalezro

agonzalezro

So do you think that the two resources I have defined make sense for the kind of queries I want to do later?

In case I want to query between two dates, for example one year, I might end up with few hundreds of AssetSnapshots vs few dozens in the case of the Snapshot I shared later. Maybe it’s simply an early optimization and nothing to worry about yet.

Where Next?

Popular in Questions Top

JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
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

Other popular topics Top

vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
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