Sha256: 7fe945e3f9318d85a5106c76eed430ec4ded6b8c1f3e78555ccc137c672e018e

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

require_dependency "renalware/clinical"

module Renalware
  module Clinical
    class ProfilesController < Clinical::BaseController
      def show
        authorize patient
        render locals: {
          patient: patient,
          profile: Clinical::ProfilePresenter.new(patient: patient, params: params)
        }
      end

      def edit
        authorize patient
        render locals: { patient: patient }
      end

      def update
        authorize patient
        if update_patient
          redirect_to patient_clinical_profile_path(patient),
                      notice: t(".success", model_name: "clinical history")
        else
          render :edit, locals: { patient: patient }
        end
      end

      private

      def update_patient
        document = patient.document
        document.diabetes = profile_params[:diabetes].symbolize_keys
        document.history = profile_params[:history].symbolize_keys
        patient.by = current_user
        patient.save!
      end

      def profile_params
        params
          .require(:clinical_profile)
          .permit(diabetes: %i(diagnosis diagnosed_on), history: %i(alcohol smoking))
          .to_h
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
renalware-core-2.0.21 app/controllers/renalware/clinical/profiles_controller.rb
renalware-core-2.0.20 app/controllers/renalware/clinical/profiles_controller.rb
renalware-core-2.0.18 app/controllers/renalware/clinical/profiles_controller.rb
renalware-core-2.0.17 app/controllers/renalware/clinical/profiles_controller.rb