File tree 4 files changed +30
-2
lines changed
spec/features/opportunities
4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,21 @@ def filtered?
6
6
@opportunities . filterer . params [ :department_id ] . present?
7
7
end
8
8
9
+ def existing_saved_search
10
+ current_user &&
11
+ filtered? &&
12
+ current_user . saved_searches . detect do |saved_search |
13
+ normalize_search_params ( saved_search . search_params ) ==
14
+ normalize_search_params ( current_filter_params )
15
+ end
16
+ end
17
+
18
+ def normalize_search_params ( search_params )
19
+ search_params . stringify_keys . select do |_ , v |
20
+ v . present?
21
+ end
22
+ end
23
+
9
24
def current_filter_params
10
25
pick ( @opportunities . filterer . params , *SavedSearch ::PERMITTED_SEARCH_PARAMS )
11
26
end
Original file line number Diff line number Diff line change 24
24
< ul class ='sidebar_sub_actions '>
25
25
< li >
26
26
<% if signed_in? %>
27
- < a href ='<%= saved_searches_path ( current_filter_params ) %> ' data-method ='post '> <%= t ( 'email_me' ) %> </ a >
27
+ <% if existing_saved_search %>
28
+ < a href ='<%= saved_search_path ( existing_saved_search ) %> ' data-method ='delete '> <%= t ( 'unsubscribe_from_search' ) %> </ a >
29
+ <% else %>
30
+ < a href ='<%= saved_searches_path ( current_filter_params ) %> ' data-method ='post '> <%= t ( 'email_me' ) %> </ a >
31
+ <% end %>
28
32
<% else %>
29
33
< a href ='<%= new_user_session_path %> '> <%= t ( 'email_me' ) %> </ a >
30
34
<% end %>
Original file line number Diff line number Diff line change 192
192
other : Answer %{count} questions
193
193
unapprove : Un-approve
194
194
unsubscribe : Unsubscribe
195
+ unsubscribe_from_search : Unsubscribe from these search results
195
196
users :
196
197
registrations :
197
198
confirm :
Original file line number Diff line number Diff line change 27
27
context 'when signed in' do
28
28
before { login_as vendor }
29
29
30
- it 'saved a search' do
30
+ it 'saves a search' do
31
31
visit opportunities_path
32
+
33
+ # No links without filter
34
+ expect ( page ) . to_not have_link t ( 'unsubscribe_from_search' )
35
+ expect ( page ) . to_not have_link t ( 'email_me' )
36
+
32
37
fill_in :opportunity_filters_text , with : 'nothingmatchesthis'
33
38
find ( '.opportunity_filters button' ) . click
34
39
expect { click_link t ( 'email_me' ) } .
35
40
to change { vendor . saved_searches . count } . by ( 1 )
41
+
42
+ expect { click_link t ( 'unsubscribe_from_search' ) } .
43
+ to change { vendor . saved_searches . count } . by ( -1 )
36
44
end
37
45
end
38
46
end
You can’t perform that action at this time.
0 commit comments