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 7 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
3 changes: 1 addition & 2 deletions app/controllers/partners/family_requests_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ def create
family_requests_attributes = children_grouped_by_item_id.map do |item_id, item_requested_children|
{ item_id: item_id, person_count: item_requested_children.size, children: item_requested_children }
end

create_service = Partners::FamilyRequestCreateService.new(
request_type: params[:request_type],
request_type: 2,
nathangthomas marked this conversation as resolved.
Show resolved Hide resolved
partner_user_id: current_user.id,
family_requests_attributes: family_requests_attributes,
for_families: true
Expand Down
4 changes: 2 additions & 2 deletions app/controllers/partners/individuals_requests_controller.rb
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: params[:request_type],
request_type: 1,
partner_user_id: current_user.id,
comments: individuals_request_params[:comments],
family_requests_attributes: individuals_request_params[:items_attributes]&.values
Expand All @@ -37,7 +37,7 @@ def create

def individuals_request_params
params.require(:partners_family_request)
.permit(:request_type, :comments, items_attributes: %i[item_id person_count])
.permit(:comments, items_attributes: %i[item_id person_count])
end
end
end
4 changes: 2 additions & 2 deletions 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: params[:request_type],
request_type: 0,
partner_user_id: current_user.id,
comments: partner_request_params[:comments],
item_requests_attributes: partner_request_params[:item_requests_attributes]&.values || []
Expand All @@ -46,7 +46,7 @@ def create
private

def partner_request_params
params.require(:request).permit(:request_type, :comments, item_requests_attributes: [:item_id, :quantity])
params.require(:request).permit(:comments, item_requests_attributes: [:item_id, :quantity])
end
end
end
3 changes: 1 addition & 2 deletions app/views/partners/family_requests/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@
<hr>

<div class="card-footer">
<%= hidden_field_tag :request_type, 2 %>
<%= submit_tag("Submit Essentials Request", class: "btn btn-success") %>
<%= submit_tag("Submit Essentials Request", class: "btn btn-primary") %>
<%= link_to "Cancel Request", partners_requests_path, class: "btn btn-danger" %>
</div>
<% end %>
Expand Down
1 change: 0 additions & 1 deletion app/views/partners/individuals_requests/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
<hr>

<div class="card-footer">
<%= hidden_field_tag :request_type, 1 %>
<!-- TODO(chaserx): we should add some js to prevent submission if the items selected are the blank option or any item has an empty quantity -->
<%= form.submit("Submit Essentials Request", class: "btn btn-success") %>
<%= link_to "Cancel Request", partners_requests_path, class: "btn btn-danger" %>
Expand Down
1 change: 0 additions & 1 deletion app/views/partners/requests/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@

</div>
<div class="card-footer">
<%= hidden_field_tag :request_type, 0 %>
<!-- TODO(chaserx): we should add some js to prevent submission if the items selected are the blank option or any item has an empty quantity -->
<%= form.submit("Submit Essentials Request", class: "btn btn-success") %> <%= link_to "Cancel Request", partners_requests_path, class: "btn btn-danger" %>
</div>
Expand Down
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>
<%= render partial: "request_type", locals: {request_type: request_row.request_type} %>
<%= request_row&.request_type&.titleize %>
</td>
<td>
<%= render partial: "status", locals: {status: request_row.status} %>
Expand Down
8 changes: 0 additions & 8 deletions app/views/requests/_request_type.html.erb

This file was deleted.

3 changes: 1 addition & 2 deletions config/database.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
default: &default
adapter: postgresql
encoding: unicode
host: <%= ENV['DB_HOST'] || 'localhost' %>

host: <%= ENV.fetch("PG_HOST", 'localhost') %>
database: diaper_dev
username: <%= ENV.fetch("PG_USERNAME", 'postgres') %>
password: <%= ENV.fetch("PG_PASSWORD", nil) %>
Expand Down
17 changes: 1 addition & 16 deletions spec/models/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,12 @@
let!(:request_started) { create(:request, :started) }
let!(:request_fulfilled) { create(:request, :fulfilled) }

it "scopes by status" do
it "scopes" do
expect(Request.status_pending).to eq([request_pending])
expect(Request.status_started).to eq([request_started])
expect(Request.status_fulfilled).to eq([request_fulfilled])
end
end

describe "#request_type" do
it "scopes by request_type" do
request = Request.new

request.request_type = :quantity
assert_equal "quantity", request.request_type

request.request_type = :individual
assert_equal "individual", request.request_type

request.request_type = :child
assert_equal "child", request.request_type
end
end
end

describe "item data" do
Expand Down
Loading