mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-12-28 11:58:23 +01:00
Refactor onFetchMoreCommentFailed callback (#1263)
Unified branches, extracted repeatedly used expressions. Fortunately both branches had the same logic, except for placeholder position hint calculation.
This commit is contained in:
parent
282817c192
commit
56ac5ad6d6
@ -736,28 +736,16 @@ public class CommentsRecyclerViewAdapter extends RecyclerView.Adapter<RecyclerVi
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onFetchMoreCommentFailed() {
|
public void onFetchMoreCommentFailed() {
|
||||||
if (parentPosition < mVisibleComments.size()
|
int currentParentPosition = findCommentPosition(parentComment.getFullName(), parentPosition);
|
||||||
&& parentComment.getFullName().equals(mVisibleComments.get(parentPosition).getFullName())) {
|
if (currentParentPosition == -1) {
|
||||||
if (mVisibleComments.get(parentPosition).isExpanded()) {
|
// note: returning here is probably a mistake, because
|
||||||
int commentPosition = mIsSingleCommentThreadMode ? holder.getBindingAdapterPosition() - 1 : holder.getBindingAdapterPosition();
|
// parent is just not visible, but it can still exist in the comments tree.
|
||||||
int placeholderPosition = findLoadMoreCommentsPlaceholderPosition(parentComment.getFullName(), commentPosition);
|
return;
|
||||||
|
|
||||||
if (placeholderPosition != -1) {
|
|
||||||
mVisibleComments.get(placeholderPosition).setLoadingMoreChildren(false);
|
|
||||||
mVisibleComments.get(placeholderPosition).setLoadMoreChildrenFailed(true);
|
|
||||||
}
|
|
||||||
((LoadMoreChildCommentsViewHolder) holder).placeholderTextView.setText(R.string.comment_load_more_comments_failed);
|
|
||||||
}
|
}
|
||||||
|
Comment currentParentComment = mVisibleComments.get(currentParentPosition);
|
||||||
|
|
||||||
mVisibleComments.get(parentPosition).getChildren().get(mVisibleComments.get(parentPosition).getChildren().size() - 1)
|
if (currentParentComment.isExpanded()) {
|
||||||
.setLoadingMoreChildren(false);
|
int placeholderPositionHint = currentParentPosition + currentParentComment.getChildren().size();
|
||||||
mVisibleComments.get(parentPosition).getChildren().get(mVisibleComments.get(parentPosition).getChildren().size() - 1)
|
|
||||||
.setLoadMoreChildrenFailed(true);
|
|
||||||
} else {
|
|
||||||
for (int i = 0; i < mVisibleComments.size(); i++) {
|
|
||||||
if (mVisibleComments.get(i).getFullName().equals(parentComment.getFullName())) {
|
|
||||||
if (mVisibleComments.get(i).isExpanded()) {
|
|
||||||
int placeholderPositionHint = i + mVisibleComments.get(i).getChildren().size();
|
|
||||||
int placeholderPosition = findLoadMoreCommentsPlaceholderPosition(parentComment.getFullName(), placeholderPositionHint);
|
int placeholderPosition = findLoadMoreCommentsPlaceholderPosition(parentComment.getFullName(), placeholderPositionHint);
|
||||||
|
|
||||||
if (placeholderPosition != -1) {
|
if (placeholderPosition != -1) {
|
||||||
@ -766,14 +754,10 @@ public class CommentsRecyclerViewAdapter extends RecyclerView.Adapter<RecyclerVi
|
|||||||
}
|
}
|
||||||
((LoadMoreChildCommentsViewHolder) holder).placeholderTextView.setText(R.string.comment_load_more_comments_failed);
|
((LoadMoreChildCommentsViewHolder) holder).placeholderTextView.setText(R.string.comment_load_more_comments_failed);
|
||||||
}
|
}
|
||||||
|
currentParentComment.getChildren().get(currentParentComment.getChildren().size() - 1)
|
||||||
mVisibleComments.get(i).getChildren().get(mVisibleComments.get(i).getChildren().size() - 1).setLoadingMoreChildren(false);
|
.setLoadingMoreChildren(false);
|
||||||
mVisibleComments.get(i).getChildren().get(mVisibleComments.get(i).getChildren().size() - 1).setLoadMoreChildrenFailed(true);
|
currentParentComment.getChildren().get(currentParentComment.getChildren().size() - 1)
|
||||||
|
.setLoadMoreChildrenFailed(true);
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -805,25 +789,37 @@ public class CommentsRecyclerViewAdapter extends RecyclerView.Adapter<RecyclerVi
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find position of comment with given {@code fullName} and
|
||||||
|
* {@link Comment#NOT_PLACEHOLDER} placeholder type
|
||||||
|
* @return position of the placeholder or -1 if not found
|
||||||
|
*/
|
||||||
|
private int findCommentPosition(String fullName, int positionHint) {
|
||||||
|
return findCommentPosition(fullName, positionHint, Comment.NOT_PLACEHOLDER);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find position of comment with given {@code fullName} and
|
* Find position of comment with given {@code fullName} and
|
||||||
* {@link Comment#PLACEHOLDER_LOAD_MORE_COMMENTS} placeholder type
|
* {@link Comment#PLACEHOLDER_LOAD_MORE_COMMENTS} placeholder type
|
||||||
* @return position of the placeholder or -1 if not found
|
* @return position of the placeholder or -1 if not found
|
||||||
*/
|
*/
|
||||||
private int findLoadMoreCommentsPlaceholderPosition(String fullName, int positionHint) {
|
private int findLoadMoreCommentsPlaceholderPosition(String fullName, int positionHint) {
|
||||||
|
return findCommentPosition(fullName, positionHint, Comment.PLACEHOLDER_LOAD_MORE_COMMENTS);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int findCommentPosition(String fullName, int positionHint, int placeholderType) {
|
||||||
if (0 <= positionHint && positionHint < mVisibleComments.size()
|
if (0 <= positionHint && positionHint < mVisibleComments.size()
|
||||||
&& mVisibleComments.get(positionHint).getFullName().equals(fullName)
|
&& mVisibleComments.get(positionHint).getFullName().equals(fullName)
|
||||||
&& mVisibleComments.get(positionHint).getPlaceholderType() == Comment.PLACEHOLDER_LOAD_MORE_COMMENTS) {
|
&& mVisibleComments.get(positionHint).getPlaceholderType() == placeholderType) {
|
||||||
return positionHint;
|
return positionHint;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < mVisibleComments.size(); i++) {
|
for (int i = 0; i < mVisibleComments.size(); i++) {
|
||||||
Comment comment = mVisibleComments.get(i);
|
Comment comment = mVisibleComments.get(i);
|
||||||
if (comment.getFullName().equals(fullName) && comment.getPlaceholderType() == Comment.PLACEHOLDER_LOAD_MORE_COMMENTS) {
|
if (comment.getFullName().equals(fullName) && comment.getPlaceholderType() == placeholderType) {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user