@@ -17,11 +17,22 @@ export default class extends Controller {
17
17
this . checkboxTargets . forEach ( checkbox => {
18
18
checkbox . checked = checkbox . disabled ? false : event . target . checked
19
19
} )
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
+
25
36
this . #batchUpdateUserRows( this . attributeToToggle )
26
37
}
27
38
@@ -34,6 +45,40 @@ export default class extends Controller {
34
45
this . #updateRow( url , this . attributeToToggle , isChecked )
35
46
}
36
47
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
+
37
82
#batchUpdateUserRows( ) {
38
83
const url = `/user_list_uploads/${ this . userListUploadId } /user_rows/batch_update`
39
84
@@ -86,33 +131,18 @@ export default class extends Controller {
86
131
document . body . removeChild ( form )
87
132
}
88
133
89
- handleFormatOptionChange ( event ) {
90
- const selectedFormats = this . invitationFormatOptionTargets . filter ( option => option . checked ) . map ( option => option . dataset . format )
91
134
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
+ }
114
139
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
+ ) ;
116
146
}
117
147
}
118
148
0 commit comments