Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4175 add request type flag #4271

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
35c4e27
Adds type enum to request model.
nathangthomas Mar 15, 2024
d1911fe
Adds request type enum to request model.
nathangthomas Mar 19, 2024
3007e64
Adds request_type to request.
nathangthomas Mar 19, 2024
7ae36b4
Adds request_type to request.
nathangthomas Mar 19, 2024
a2c79df
Passes request_type to FamilyRequestCreateService.new
nathangthomas Mar 19, 2024
7e17565
Passes request_type to FamilyRequestCreateService.new
nathangthomas Mar 19, 2024
9b5977e
Passes request_type to RequestCreateService.new
nathangthomas Mar 19, 2024
854cd39
Passes request_type to Request.new.
nathangthomas Mar 19, 2024
8435518
Adds hidden field in order to pass request_type param on submit.
nathangthomas Mar 19, 2024
45a9495
Adds request type flag to index and show pages as well as the request…
nathangthomas Mar 19, 2024
4791021
Adds by_request_type scope for filtering by request type.
nathangthomas Mar 19, 2024
3866a8f
Adds request type flag to index and show pages as well as the request…
nathangthomas Mar 19, 2024
8a775ec
Adds by_request_type filter.
nathangthomas Mar 19, 2024
a037b1c
Updates flag names and removes flag styles based on feedback from rub…
nathangthomas Apr 2, 2024
26afeb4
Adds test for request_type enum.
nathangthomas Apr 3, 2024
5c2997b
Removes unnecessary line.
nathangthomas Apr 8, 2024
0cd4451
Adds Type to expected_headers.
nathangthomas Apr 8, 2024
94a1be4
Adds request_type traits to request factory.
nathangthomas Apr 8, 2024
42f1f84
Adds request_type to family_request_create_service_spec args.
nathangthomas Apr 8, 2024
c6e45c8
Adds request_type to args.
nathangthomas Apr 8, 2024
0cfddca
Merge branch 'main' into 4175-add-request-type-flag
nathangthomas Apr 12, 2024
67e9d71
Pass request_type directly.
nathangthomas Apr 22, 2024
d8e9806
Remove request_type partial and enter text directly into reqest_row
nathangthomas Apr 22, 2024
1e19d30
Revert changes to database.yml
nathangthomas Apr 22, 2024
43f7365
Revert changes to request_spec.rb
nathangthomas Apr 22, 2024
c1792ac
Remove request_type
nathangthomas Apr 22, 2024
6441532
Remove hidden request_type fields.
nathangthomas Apr 22, 2024
a27b4e6
Fix merge conflicts / merge remote.
nathangthomas Apr 23, 2024
d53785c
Change request_type data_type to string, replace request_type string …
nathangthomas May 15, 2024
56b7c04
Merge branch 'main' of github.com:unabridged/human-essentials into 41…
nathangthomas May 15, 2024
36cb9b2
Merge branch 'main' into 4175-add-request-type-flag
nathangthomas May 15, 2024
41a0429
Remove request_type from tests
nathangthomas May 15, 2024
c0af65c
Merge branch '4175-add-request-type-flag' of github.com:unabridged/hu…
nathangthomas May 15, 2024
f46736e
Add request_type_label method
nathangthomas May 16, 2024
656e712
Undo changes to versions
nathangthomas May 16, 2024
3a0e841
Add request_type_label method
nathangthomas May 16, 2024
389e6d9
Add request_type to initialize
nathangthomas May 17, 2024
c1acb98
Merge branch 'main' into 4175-add-request-type-flag
nathangthomas May 17, 2024
15ecc79
Fix request_type bug
nathangthomas May 21, 2024
9c0572b
Merge branch '4175-add-request-type-flag' of github.com:unabridged/hu…
nathangthomas May 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/controllers/partners/family_requests_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def create
{ item_id: item_id, person_count: item_requested_children.size, children: item_requested_children }
end
create_service = Partners::FamilyRequestCreateService.new(
request_type: 2,
request_type: "child",
partner_user_id: current_user.id,
family_requests_attributes: family_requests_attributes,
for_families: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def new

def create
create_service = Partners::FamilyRequestCreateService.new(
request_type: 1,
request_type: "individual",
partner_user_id: current_user.id,
comments: individuals_request_params[:comments],
family_requests_attributes: individuals_request_params[:items_attributes]&.values
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/partners/requests_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def show

def create
create_service = Partners::RequestCreateService.new(
request_type: 0,
request_type: "quantity",
partner_user_id: current_user.id,
comments: partner_request_params[:comments],
item_requests_attributes: partner_request_params[:item_requests_attributes]&.values || []
Expand Down
4 changes: 2 additions & 2 deletions app/models/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# discard_reason :text
# discarded_at :datetime
# request_items :jsonb
# request_type :integer
# request_type :string
# status :integer default("pending")
# created_at :datetime not null
# updated_at :datetime not null
Expand All @@ -32,7 +32,7 @@ class Request < ApplicationRecord
has_many :child_item_requests, through: :item_requests

enum status: { pending: 0, started: 1, fulfilled: 2, discarded: 3 }, _prefix: true
enum request_type: { quantity: 0, individual: 1, child: 2 }, _prefix: true
enum request_type: %w[quantity individual child].map { |v| [v, v] }.to_h

validates :distribution_id, uniqueness: true, allow_nil: true
before_save :sanitize_items_data
Expand Down
4 changes: 1 addition & 3 deletions app/services/partners/family_request_create_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ class FamilyRequestCreateService

attr_reader :partner_user_id, :comments, :family_requests_attributes, :partner_request

def initialize(request_type:, partner_user_id:, family_requests_attributes:, comments: nil, for_families: false)
@request_type = request_type
def initialize(partner_user_id:, family_requests_attributes:, comments: nil, for_families: false)
@partner_user_id = partner_user_id
@comments = comments
@family_requests_attributes = family_requests_attributes.presence || []
Expand All @@ -20,7 +19,6 @@ def call
return self unless valid?

request_create_svc = Partners::RequestCreateService.new(
request_type: @request_type.to_i,
partner_user_id: partner_user_id,
comments: comments,
for_families: @for_families,
Expand Down
9 changes: 6 additions & 3 deletions app/services/partners/request_create_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ class RequestCreateService

attr_reader :partner_request

def initialize(request_type:, partner_user_id:, comments: nil, for_families: false, item_requests_attributes: [], additional_attrs: {})
@request_type = request_type
def initialize(partner_user_id:, comments: nil, for_families: false, item_requests_attributes: [], additional_attrs: {})
@partner_user_id = partner_user_id
@comments = comments
@for_families = for_families
Expand All @@ -15,7 +14,7 @@ def initialize(request_type:, partner_user_id:, comments: nil, for_families: fal

def call
@partner_request = ::Request.new(
request_type: @request_type.to_i,
request_type: request_type,
partner_id: partner.id,
organization_id: organization_id,
comments: comments,
Expand Down Expand Up @@ -103,5 +102,9 @@ def organization_id
def partner
@partner ||= ::User.find(partner_user_id).partner
end

def request_type
@for_families ? "child" : "individual"
end
end
end
2 changes: 1 addition & 1 deletion app/views/requests/_request_row.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<%= request_row.comments %>
</td>
<td>
<%= request_row&.request_type&.titleize %>
<%= request_row&.request_type&.first&.capitalize %>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we extract this into a method on request? It's a bit obscure. If you call it something like request_type_label with a comment it'd be more obvious.

</td>
<td>
<%= render partial: "status", locals: {status: request_row.status} %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/requests/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<tr>
<td><%= @request.partner.name %></td>
<td><%= @request.partner_user&.formatted_email %></td>
<td><%= render partial: "request_type", locals: {request_type: @request.request_type} %></td>
<td><%= @request.request_type&.first&.capitalize %></td>
<td><%= render partial: "status", locals: {status: @request.status} %></td>
<td><%= @request.comments || 'None' %></td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20240315190152_add_type_to_requests.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class AddTypeToRequests < ActiveRecord::Migration[7.0]
def change
add_column :requests, :request_type, :integer
add_column :requests, :request_type, :string
end
end
7 changes: 4 additions & 3 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2024_03_15_190152) do
ActiveRecord::Schema[7.0].define(version: 2024_04_19_225137) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

Expand Down Expand Up @@ -737,7 +737,7 @@
t.datetime "discarded_at", precision: nil
t.text "discard_reason"
t.integer "partner_user_id"
t.integer "request_type"
t.string "request_type"
t.index ["discarded_at"], name: "index_requests_on_discarded_at"
t.index ["distribution_id"], name: "index_requests_on_distribution_id", unique: true
t.index ["organization_id"], name: "index_requests_on_organization_id"
Expand Down Expand Up @@ -849,7 +849,8 @@
end

create_table "versions", force: :cascade do |t|
t.string "item_type", null: false
t.string "item_type"
t.string "{:null=>false}"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is supposed to be here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was automatically changed when I ran the migrations last. I reverted it.

t.bigint "item_id", null: false
t.string "event", null: false
t.string "whodunnit"
Expand Down
2 changes: 1 addition & 1 deletion spec/factories/requests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# discard_reason :text
# discarded_at :datetime
# request_items :jsonb
# request_type :integer
# request_type :string
# status :integer default("pending")
# created_at :datetime not null
# updated_at :datetime not null
Expand Down
2 changes: 1 addition & 1 deletion spec/models/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# discard_reason :text
# discarded_at :datetime
# request_items :jsonb
# request_type :integer
# request_type :string
# status :integer default("pending")
# created_at :datetime not null
# updated_at :datetime not null
Expand Down
3 changes: 1 addition & 2 deletions spec/services/partners/family_request_create_service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
subject { described_class.new(**args).call }
let(:args) do
{
request_type: 0,
partner_user_id: partner_user.id,
comments: comments,
for_families: for_families,
Expand Down Expand Up @@ -112,7 +111,7 @@
let(:fake_request_create_service) { instance_double(Partners::RequestCreateService, call: -> {}, errors: [], partner_request: -> {}) }

before do
allow(Partners::RequestCreateService).to receive(:new).with(request_type: 0, partner_user_id: partner_user.id, comments: comments, for_families: false, item_requests_attributes: contain_exactly(*expected_item_request_attributes)).and_return(fake_request_create_service)
allow(Partners::RequestCreateService).to receive(:new).with(partner_user_id: partner_user.id, comments: comments, for_families: false, item_requests_attributes: contain_exactly(*expected_item_request_attributes)).and_return(fake_request_create_service)
end

it 'should send the correct request payload to the Partners::RequestCreateService and call it' do
Expand Down
1 change: 0 additions & 1 deletion spec/services/partners/request_create_service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
subject { described_class.new(**args).call }
let(:args) do
{
request_type: 0,
partner_user_id: partner_user.id,
comments: comments,
item_requests_attributes: item_requests_attributes
Expand Down
Loading