Code Monkey home page Code Monkey logo

Comments (4)

whysthatso avatar whysthatso commented on June 20, 2024
class Client < Hanami::Entity
end
class ClientRepository < Hanami::Repository
  associations do
    has_one :contact_point
    has_many :invoices
  end

  def create_with_contact_point(data)
    assoc(:contact_point).create(data)
  end

  def find_with_contact_point(id)
    aggregate(:contact_point).where(id: id).map_to(Client).one
  end

  def find_all_with_contact_point
    aggregate(:contact_points)
  end
end
Hanami::Model.migration do
  change do
    create_table :clients do
      primary_key :id

      foreign_key :tax_id, :taxes

      column :city, String, default: 'n/a'
      column :name, String, default: 'n/a'
      column :country, String, default: 'n/a'
      column :email, String, default: 'n/a'
      column :form_of_adressing, String, default: 'n/a'
      column :street, String, default: 'n/a'
      column :street_nr, String, default: 'n/a'
      column :vat_id, String, default: 'n/a'
      column :vat_id_country, String, default: 'n/a'
      column :zip_code, String, default: 'n/a'

      column :created_at, DateTime, null: false
      column :updated_at, DateTime, null: false
    end
  end
end

from model.

cllns avatar cllns commented on June 20, 2024

Can you handle the default values at the model layer instead? A "Custom schema" might get you what you want.

Semantically, the city is nil (or null in SQL lingo): it wasn't provided. That you want to present it as "n/a" shouldn't affect how you store it.

Honestly, I'd probably go higher than the model and handle this in a Presenter.

I know this might not be the answer you want, and there might be some underlying issue here that we need to fix, it just seems like there's a better way to accomplish what you're trying to do. (Maybe this DB interacts with another app and that's why you have to do it this way, I don't know.)

from model.

kaikuchn avatar kaikuchn commented on June 20, 2024

I guess a work-around would be to convert the entity into a hash and compact it. Then all keys where the value is nil would be removed (empty strings would still be around though!) and defaults of the database should be filled in.

A better approach would be to have defaults specified in the entity. In that case one needs to create a custom schema... @cllns Couldn't the auto-discovery of the schema also consider defaults?

from model.

mereghost avatar mereghost commented on June 20, 2024

If the column allows NULLs and you send a nil, this one will get persisted as this was what you asked for (or so the underlying layers think).

Same goes with the empty string. @whysthatso You can probably properly handle these with a validator either on the Action or Interactor level.

from model.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.