Sha256: 46d92a617e0f9868cb8fb1ddb22b21c232a26b6ba08d0318b3662a3255313167
Contents?: true
Size: 1.33 KB
Versions: 20
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true require_dependency "renalware" module Renalware module Clinical class ProfilePresenter attr_reader :patient, :params delegate :allergies, to: :patient delegate :diagnosis, :diagnosed_on, to: :diabetes, prefix: true def initialize(patient:, params:) @params = params @patient = Clinical.cast_patient(patient) end def swabs @swabs ||= Renalware::Events::Swab.for_patient(patient) .ordered .page(params[:page]) .per(params.fetch(:per_page, 10)) end def smoking_history history.smoking || NullObject.instance end def alcohol_history history.alcohol || NullObject.instance end def history patient.document.history || NullObject.instance end def diabetes patient.document.diabetes || NullObject.instance end def dry_weights @dry_weights ||= DryWeight.for_patient(patient).ordered end def body_compositions @body_compositions ||= begin BodyComposition .for_patient(patient) .includes([:modality_description, :assessor]) .ordered end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems