Sha256: b2b8cec1ccb0ea7101bf693c3e0ae4afc409eae04ae19b70ca2724e0d667573a

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

module Renalware
  module Patients
    class BookmarksController < BaseController
      before_action :load_patient, only: :create

      # idempotent
      def create
        Bookmark.find_or_create_by!(user: user, patient: patient) do |bookmark|
          bookmark.assign_attributes(bookmark_params)
        end
        redirect_back(fallback_location: patient_path(patient),
                      notice: success_msg_for("bookmark"))
      end

      # idempotent
      def destroy
        bookmark = user.bookmarks.find_by(id: params[:id])
        patient = bookmark&.patient
        if bookmark.present?
          authorize bookmark
          bookmark.destroy
        else
          skip_authorization
        end
        fallback_location = patient.present? ? patient : root_path
        redirect_back(fallback_location: patient_path(fallback_location),
                      notice: success_msg_for("bookmark"))
      end

      private

      def user
        @user ||= Renalware::Patients.cast_user(current_user)
      end

      def bookmark_params
        params.require(:patients_bookmark).permit(:notes, :urgent)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta11 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta10 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta9 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta8 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta7 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta6 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta5 app/controllers/renalware/patients/bookmarks_controller.rb
renalware-core-2.0.0.pre.beta4 app/controllers/renalware/patients/bookmarks_controller.rb