Sha256: 50cd30843d669633d55d167fe0763901aae25f45ccc2864225ae1fed7bff21cf

Contents?: true

Size: 1.44 KB

Versions: 23

Compression:

Stored size: 1.44 KB

Contents

# frozen_string_literal: true

require_dependency "renalware/renal"
require_dependency "renalware/renal/base_controller"

module Renalware
  module Renal
    class ProfilesController < BaseController
      before_action :load_patient

      def show
        render locals: {
          patient: patient,
          profile: find_profile
        }
      end

      def edit
        render locals: {
          patient: patient,
          profile: find_profile
        }
      end

      def update
        profile = find_profile

        if profile.update(profile_params)
          redirect_to patient_renal_profile_path(patient),
            notice: t(".success", model_name: "profile")
        else
          render :edit, locals: {
            patient: patient,
            profile: find_profile
          }
        end
      end

      private

      def profile_params
        params
          .require(:renal_profile)
          .permit(
            :esrf_on, :first_seen_on, :prd_description_id, :weight_at_esrf,
            :modality_at_esrf, :comorbidities_updated_on,
            address_at_diagnosis_attributes: address_params, document: {}
          )
      end

      def address_params
        [
          :id, :name, :organisation_name, :street_1, :street_2, :street_3, :county, :country_id,
          :town, :postcode, :telephone, :email
        ]
      end

      def find_profile
        patient.profile || patient.build_profile
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
renalware-core-2.0.77 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.76 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.75 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.74 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.73 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.72 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.71 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.70 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.69 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.68 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.67 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.64 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.63 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.62 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.61 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.60 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.58 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.57 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.56 app/controllers/renalware/renal/profiles_controller.rb
renalware-core-2.0.55 app/controllers/renalware/renal/profiles_controller.rb