-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(upload): save selected user row info #2697
Closed
Closed
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f69d6ba
feat(upload): save selected user row info
Michaelvilleneuve 5ea4caf
minor fix
Michaelvilleneuve 2e97e50
selectable user rows
Michaelvilleneuve 890c3d9
minor fix
Michaelvilleneuve 64d3b09
remove useless column
Michaelvilleneuve 55cd8b6
Merge branch 'staging' into feat/keep-selection-when-changing-tab
Michaelvilleneuve 63f66e4
minor linter fix
Michaelvilleneuve File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -45,7 +45,10 @@ def user_rows_enriched_with_cnaf_data | |
end | ||
|
||
def user_rows_marked_for_user_save | ||
user_rows.select(&:marked_for_user_save?) | ||
# .reject do |user_row| | ||
# user_row.last_user_save_attempt.success? | ||
# end | ||
user_rows.select(&:user_valid?).select(&:marked_for_user_save?) | ||
end | ||
|
||
def user_rows_with_user_save_attempted | ||
|
@@ -57,17 +60,18 @@ def user_rows_with_user_save_success | |
end | ||
|
||
def user_rows_with_user_save_errors | ||
user_rows_with_user_save_attempted.reject do |user_row| | ||
user_row.last_user_save_attempt.success? | ||
end | ||
user_rows_with_user_save_attempted.reject(&:user_save_succeded?) | ||
end | ||
|
||
def all_saves_attempted? | ||
user_rows_marked_for_user_save.all?(&:attempted_user_save?) | ||
end | ||
|
||
def user_rows_marked_for_invitation | ||
user_rows.select(&:marked_for_invitation?) | ||
# .reject do |user_row| | ||
# user_row.invitation_succeeded? | ||
# end | ||
user_rows.select(&:marked_for_invitation?).select(&:user_save_succeded?) | ||
Comment on lines
+71
to
+74
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Idem ici, j'imagine qu'on ne veut pas ceux qui ont déjà été invités ? |
||
end | ||
|
||
def all_invitations_attempted? | ||
|
@@ -82,22 +86,6 @@ def user_rows_with_invitation_errors | |
user_rows_with_invitation_attempted.select(&:all_invitations_failed?) | ||
end | ||
|
||
def mark_selected_rows_for_invitation!(selected_ids) | ||
user_rows.each do |user_row| | ||
user_row.mark_for_invitation! if selected_ids.include?(user_row.id) | ||
end | ||
|
||
save!(user_rows.select(&:marked_for_invitation?)) | ||
end | ||
|
||
def mark_selected_rows_for_user_save!(selected_ids) | ||
user_rows.each do |user_row| | ||
user_row.mark_for_user_save! if selected_ids.include?(user_row.id) | ||
end | ||
|
||
save!(user_rows.select(&:marked_for_user_save?)) | ||
end | ||
|
||
def sort_by!(sort_by:, sort_direction:) | ||
user_rows.sort_by! do |user_row| | ||
# we place nil values at the 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 |
---|---|---|
|
@@ -197,6 +197,10 @@ def invitation_attempted? | |
invitation_attempts.any? | ||
end | ||
|
||
def invitation_succeeded? | ||
invitation_attempts.any?(&:success?) | ||
end | ||
Comment on lines
+200
to
+202
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Uniquement nécessaire si le code cité au dessus l'est |
||
|
||
def last_invitation_attempt | ||
invitation_attempts.max_by(&:created_at) | ||
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai le sentiment qu'ici on ne devrait pas prendre ceux qui sont déjà créés non ? Avec le code en commentaire