Skip to content

Commit c573f65

Browse files
committed
Clarify cookie mechanism
1 parent d6a5d70 commit c573f65

File tree

4 files changed

+69
-35
lines changed

4 files changed

+69
-35
lines changed

app/helpers/user_list_upload/invitation_attempts_helper.rb

+3-4
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ def invitation_format_checked?(format, user_list_upload_id)
6060
end
6161

6262
def selected_invitation_formats(user_list_upload_id)
63-
selected_invitation_formats =
64-
cookies["selected_invitation_formats_#{user_list_upload_id}"] || %w[sms email]
65-
selected_invitation_formats = JSON.parse(selected_invitation_formats) if selected_invitation_formats.is_a?(String)
66-
selected_invitation_formats
63+
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}") rescue {}
64+
formats = cookie_data.dig(user_list_upload_id.to_s, "selected_invitation_formats")
65+
formats.is_a?(Array) ? formats : %w[sms email]
6766
end
6867
end

app/helpers/user_list_upload/user_list_upload_helper.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def show_row_attribute?(attribute_name, user_list_upload)
151151
end
152152

153153
def checkbox_to_select_all_checked?(attribute_name, user_list_upload_id)
154-
cookies["checkbox_to_select_all_#{attribute_name}_checked_#{user_list_upload_id}"] != "false"
154+
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}") rescue {}
155+
cookie_data.dig(user_list_upload_id.to_s, "checkbox_all", attribute_name.to_s) != false
155156
end
156157
end
157158
# rubocop:enable Metrics/ModuleLength

app/javascript/controllers/select_user_rows_controller.js

+60-30
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,22 @@ export default class extends Controller {
1717
this.checkboxTargets.forEach(checkbox => {
1818
checkbox.checked = checkbox.disabled ? false : event.target.checked
1919
})
20-
Cookies.set(
21-
`checkbox_to_select_all_${this.attributeToToggle}_checked_${this.userListUploadId}`,
22-
event.target.checked,
23-
{ path: "/", expires: 0.01 } // ~10 minutes
24-
)
20+
21+
// We set the state of the checkbox in the cookie
22+
const cookieData = this.#getUserListUploadsCookie();
23+
24+
if (!cookieData[this.userListUploadId]) {
25+
cookieData[this.userListUploadId] = {};
26+
}
27+
if (!cookieData[this.userListUploadId].checkbox_all) {
28+
cookieData[this.userListUploadId].checkbox_all = {};
29+
}
30+
31+
cookieData[this.userListUploadId].checkbox_all[this.attributeToToggle] = event.target.checked;
32+
33+
// We save the updated cookie
34+
this.#updateUserListUploadsCookie(cookieData);
35+
2536
this.#batchUpdateUserRows(this.attributeToToggle)
2637
}
2738

@@ -34,6 +45,40 @@ export default class extends Controller {
3445
this.#updateRow(url, this.attributeToToggle, isChecked)
3546
}
3647

48+
handleFormatOptionChange(event) {
49+
const selectedFormats = this.invitationFormatOptionTargets.filter(option => option.checked).map(option => option.dataset.format)
50+
51+
// We set the selected formats in the cookie
52+
const cookieData = this.#getUserListUploadsCookie();
53+
54+
if (!cookieData[this.userListUploadId]) {
55+
cookieData[this.userListUploadId] = {};
56+
}
57+
58+
cookieData[this.userListUploadId].selected_invitation_formats = selectedFormats;
59+
60+
this.#updateUserListUploadsCookie(cookieData);
61+
62+
if (event.target.checked) {
63+
// we just reload the page if we are enabling the invitation format
64+
window.Turbo.visit(window.location.href, { action: "replace" });
65+
return
66+
}
67+
68+
this.checkboxTargets.forEach(checkbox => {
69+
const isInvitable = selectedFormats.length > 0 &&
70+
(selectedFormats.includes("email") && checkbox.dataset.userEmail) ||
71+
(selectedFormats.includes("sms") && checkbox.dataset.userPhone)
72+
73+
if (!isInvitable) {
74+
checkbox.checked = false
75+
checkbox.disabled = true
76+
}
77+
})
78+
79+
this.#batchUpdateUserRows()
80+
}
81+
3782
#batchUpdateUserRows() {
3883
const url = `/user_list_uploads/${this.userListUploadId}/user_rows/batch_update`
3984

@@ -86,33 +131,18 @@ export default class extends Controller {
86131
document.body.removeChild(form)
87132
}
88133

89-
handleFormatOptionChange(event) {
90-
const selectedFormats = this.invitationFormatOptionTargets.filter(option => option.checked).map(option => option.dataset.format)
91134

92-
Cookies.set(
93-
`selected_invitation_formats_${this.userListUploadId}`,
94-
JSON.stringify(selectedFormats),
95-
{ path: "/", expires: 0.01 }
96-
)
97-
98-
if (event.target.checked) {
99-
// we just reload the page if we are enabling the invitation format
100-
window.Turbo.visit(window.location.href, { action: "replace" });
101-
return
102-
}
103-
104-
this.checkboxTargets.forEach(checkbox => {
105-
const isInvitable = selectedFormats.length > 0 &&
106-
(selectedFormats.includes("email") && checkbox.dataset.userEmail) ||
107-
(selectedFormats.includes("sms") && checkbox.dataset.userPhone)
108-
109-
if (!isInvitable) {
110-
checkbox.checked = false
111-
checkbox.disabled = true
112-
}
113-
})
135+
#getUserListUploadsCookie() {
136+
const cookieData = Cookies.get("user_list_uploads");
137+
return cookieData ? JSON.parse(cookieData) : {};
138+
}
114139

115-
this.#batchUpdateUserRows()
140+
#updateUserListUploadsCookie(newData) {
141+
Cookies.set(
142+
"user_list_uploads",
143+
JSON.stringify(newData),
144+
{ path: "/", expires: 1/24 } // 1 hour
145+
);
116146
}
117147
}
118148

spec/features/agent_can_upload_user_list_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,10 @@
235235
expect(page).to have_css("input[type='checkbox'][data-user-row-id='#{christian_row.id}']:not(:checked)")
236236
expect(page).to have_css("input[type='checkbox'][data-user-row-id='#{hernan_row.id}']:not(:checked)")
237237

238+
# All rows selection is preserved after page refresh
239+
page.refresh
240+
expect(page).to have_css("input[type='checkbox'][data-action='click->select-user-rows#toggleAll']:not(:checked)")
241+
238242
# Check all rows
239243
check_all_button.click
240244

0 commit comments

Comments
 (0)