-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a filter for selecting application forms according to their stage.
- Loading branch information
1 parent
e066920
commit e710cbb
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
class Filters::Stage < Filters::Base | ||
def apply | ||
return scope if stage.empty? | ||
|
||
scope.where(stage:) | ||
end | ||
|
||
private | ||
|
||
def stage | ||
Array(params[:stage]).compact_blank | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rails_helper" | ||
|
||
RSpec.describe Filters::Stage do | ||
subject(:filtered_scope) { described_class.apply(scope:, params:) } | ||
|
||
context "the params includes a stage" do | ||
let(:params) { { stage: "not_started" } } | ||
let(:scope) { ApplicationForm.all } | ||
|
||
let!(:included) { create(:application_form, :not_started_stage) } | ||
let!(:excluded) { create(:application_form, :assessment_stage) } | ||
|
||
it { is_expected.to contain_exactly(included) } | ||
end | ||
|
||
context "the params include multiple stage" do | ||
let(:params) { { stage: %w[not_started assessment] } } | ||
let(:scope) { ApplicationForm.all } | ||
|
||
let!(:included) { create(:application_form, :not_started_stage) } | ||
let!(:excluded) { create(:application_form, :completed_stage) } | ||
|
||
it { is_expected.to contain_exactly(included) } | ||
end | ||
|
||
context "the params don't include stage" do | ||
let(:params) { {} } | ||
let(:scope) { double } | ||
|
||
it { is_expected.to eq(scope) } | ||
end | ||
end |