baldwindavid

baldwindavid

My app has leases of units. A lease has a move in and a move out date. Depending upon those dates a lease is implicitly “past”, “active”, or “future”. I have composable queries like filter_past_leases and filter_future_leases and such. I would like to have an additional filter query that returns leases AND includes their status.

This could be done with a specialized query that returns leases in a list of maps with something like [%{lease: lease, status: "past"}, ...]. This is mostly fine to work with, but is not composable. I’d rather return a list of Lease structs and have the status included somehow and still be able to further filter the query as needed.

One way to do this is to use a virtual field. Basically, add a virtual status field on a Lease struct. Then a query uses select_merge to merge the calculated status into the Lease struct. This works really well and the query can then be further composed like any other ecto query.

Lease
|> preload_lease_unit()
# composable query in a pipeline that fills in "status" field
|> calculate_lease_statuses()
|> filter_leases_by_property(property)

I guess my only hesitancy is that it seems like virtual fields have a bit of a bad reputation. Perhaps that reputation has more to do with overusing virtual fields in cases where a changeset or different struct could be used to encapsulate the logic (e.g. setting a password).

Does using a virtual field and select_merge seem reasonable or should I consider alternate methods?

I should note that I’d like to avoid hard-coding a status because 1) it becomes something that needs to be updated in multiple scenarios and 2) I need to be able to calculate “past”, “active”, and “future” for any given day rather than just the current day (e.g. occupancy 30 days out).

Showing Posts 1 to 2

al2o3cr

al2o3cr

Are you sure this is a property that needs to be calculated with SQL? Seems like a plain Elixir function that takes a Lease and a Date and returns "past" | "active" | "future" would do just as well.

baldwindavid

baldwindavid OP

Yeah, totally fair question. I have both that plain Elixir function, as well as, SQL queries for those in the specific categories. They have been enough up to this point, but I need to be able to filter and sort the entire collection of leases across multiple properties and these statuses are an important criteria. Being able to do so is also important for various reporting being built out.

Are you thinking there are some potential gotchas/smells to the virtual field / select_merge route I mentioned?

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
kszambelanczyk
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
psy-q
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
Damirados
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews