1
+ # rubocop:disable Metrics/ModuleLength
1
2
module UserListUpload ::UserListUploadHelper
2
3
def rows_with_errors?
3
4
params [ :rows_with_errors ] . present?
@@ -13,6 +14,14 @@ def user_row_status_badge_class(user_row)
13
14
} [ user_row . before_user_save_status ]
14
15
end
15
16
17
+ def user_row_background_color ( user_row )
18
+ if user_row . archived?
19
+ "background-brown-light"
20
+ else
21
+ "background-light"
22
+ end
23
+ end
24
+
16
25
def user_row_icon_for_status ( errors )
17
26
return if errors . empty?
18
27
@@ -56,16 +65,97 @@ def attribute_to_highlight?(user_row, attribute)
56
65
user_row . matching_user_attribute_changed? ( attribute ) || user_row . attribute_changed_by_cnaf_data? ( attribute )
57
66
end
58
67
59
- def tooltip_for_user_row_errors ( errors )
60
- return if errors . empty?
68
+ def badge_class_for_user_row_organisation ( user_row , organisation )
69
+ if user_row . association_already_persisted? ( organisation , :organisations )
70
+ if user_row . archives . map ( &:organisation_id ) . include? ( organisation . id )
71
+ "background-brown-light text-brown"
72
+ else
73
+ "background-blue-light text-dark-blue"
74
+ end
75
+ else
76
+ "background-green-light text-dark-green"
77
+ end
78
+ end
61
79
62
- tooltip_errors (
63
- title : "Erreurs des données du dossier" ,
64
- errors : errors . full_messages
65
- )
80
+ def badge_class_for_user_row_motif_category ( user_row , motif_category )
81
+ if user_row . association_already_persisted? ( motif_category , :motif_categories )
82
+ if user_row . user . follow_up_for ( motif_category ) &.closed?
83
+ "background-dark-green text-white"
84
+ else
85
+ "background-blue-light text-dark-blue"
86
+ end
87
+ else
88
+ "background-green-light text-dark-green"
89
+ end
90
+ end
91
+
92
+ def tooltip_for_user_row ( user_row )
93
+ if user_row . user_errors . any?
94
+ tooltip_errors (
95
+ title : "Erreurs des données du dossier" ,
96
+ errors : user_row . user_errors . full_messages
97
+ )
98
+ else
99
+ tooltip ( content : tooltip_content_for_user_row ( user_row ) )
100
+ end
101
+ end
102
+
103
+ def tooltip_content_for_user_row ( user_row )
104
+ tooltip_content_array = [ ]
105
+ tooltip_content_array << tooltip_content_for_user_row_archived ( user_row ) if user_row . archived?
106
+ tooltip_content_array << tooltip_content_for_user_row_follow_up_closed if user_row . matching_follow_up_closed?
107
+ if tooltip_content_array . empty?
108
+ tooltip_content_array << if user_row . matching_user_id
109
+ "Ce dossier existe déjà. Si coché, les données seront mises à jour"
110
+ else
111
+ "Ce dossier n'existe pas encore. Si coché, celui-ci sera créé"
112
+ end
113
+ end
114
+ safe_join ( tooltip_content_array , safe_join ( [ tag . br , tag . br ] ) )
115
+ end
116
+
117
+ # rubocop:disable Metrics/AbcSize
118
+ def tooltip_content_for_user_row_archived ( user_row )
119
+ if user_row . department_level?
120
+ safe_join (
121
+ [
122
+ tag . b ( "Dossier archivé sur #{ strip_tags ( user_row . archives . map ( &:organisation ) . map ( &:name ) . join ( ', ' ) ) } ." ) ,
123
+ tag . br ,
124
+ "Motifs d'archivage : #{ strip_tags ( user_row . archiving_reasons . join ( ', ' ) ) } " ,
125
+ tag . br ,
126
+ "Si mis à jour dans l'organisation d'archivage, le dossier sera désarchivé dans cette organisation."
127
+ ]
128
+ )
129
+ else
130
+ safe_join ( [
131
+ tag . b ( "Dossier archivé sur cette organisation." ) ,
132
+ tag . br ,
133
+ "Motif d'archivage : \" #{ strip_tags ( user_row . archiving_reasons . first ) } \" " ,
134
+ tag . br ,
135
+ "Si coché, le dossier sera désarchivé lors de la mise à jour."
136
+ ] )
137
+ end
138
+ end
139
+ # rubocop:enable Metrics/AbcSize
140
+
141
+ def tooltip_content_for_user_row_follow_up_closed
142
+ safe_join ( [
143
+ tag . b ( "Dossier traité sur cette catégorie" ) ,
144
+ tag . br ,
145
+ "Si coché, le dossier sera rouvert sur cette catégorie de suivi."
146
+ ] )
66
147
end
67
148
68
149
def show_row_attribute? ( attribute_name , user_list_upload )
69
150
user_list_upload . restricted_user_attributes . exclude? ( attribute_name . to_sym )
70
151
end
152
+
153
+ def checkbox_to_select_all_checked? ( attribute_name , user_list_upload_id )
154
+ cookie_data = JSON . parse ( cookies [ "user_list_uploads" ] || "{}" )
155
+ cookie_data . dig ( user_list_upload_id . to_s , "checkbox_all" , attribute_name . to_s ) != false
156
+ rescue JSON ::ParserError
157
+ Sentry . capture_exception ( JSON ::ParserError , extra : { cookies : cookies [ "user_list_uploads" ] } )
158
+ false
159
+ end
71
160
end
161
+ # rubocop:enable Metrics/ModuleLength
0 commit comments