Sha256: e26792560480388bdad7c435822f80ef58e2413a7fbed0365afc41ebaf87cbc7
Contents?: true
Size: 1.24 KB
Versions: 34
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true require_dependency "renalware" module Renalware module HD class MDMPresenter < Renalware::MDMPresenter NullObject = Naught.build do |config| config.black_hole config.define_explicit_conversions config.singleton config.predicates_return false end def sessions @sessions ||= begin sessions = Sessions::LatestPatientSessionsQuery .new(patient: patient) .call(max_sessions: 6).includes(:patient, :hospital_unit) CollectionPresenter.new(sessions, SessionPresenter, view_context) end end def hd_profile @hd_profile ||= begin profile = HD::Profile.for_patient(patient).first if profile.present? HD::ProfilePresenter.new(profile) else NullObject.instance end end end def preference_set @preference_set ||= PreferenceSet.for_patient(patient).first || NullObject.instance end def audits @audits ||= PatientStatistics.for_patient(patient).limit(6).ordered end def rolling_audit @rolling_audit ||= audits.find_by(rolling: true) end end end end
Version data entries
34 entries across 34 versions & 1 rubygems