-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Start using diffutil to persist ripple effect.
- Loading branch information
1 parent
0181535
commit 04c30c2
Showing
3 changed files
with
25 additions
and
12 deletions.
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
19 changes: 19 additions & 0 deletions
19
...ries/dialogs/src/main/java/com/trendyol/uicomponents/dialogs/list/ListItemDiffCallback.kt
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.trendyol.uicomponents.dialogs.list | ||
|
||
import androidx.recyclerview.widget.DiffUtil | ||
|
||
class ListItemDiffCallback: DiffUtil.ItemCallback<Pair<Boolean, CharSequence>>() { | ||
override fun areContentsTheSame( | ||
oldItem: Pair<Boolean, CharSequence>, | ||
newItem: Pair<Boolean, CharSequence> | ||
): Boolean { | ||
return oldItem.first == newItem.first && oldItem.second.toString() == newItem.second.toString() | ||
} | ||
|
||
override fun areItemsTheSame( | ||
oldItem: Pair<Boolean, CharSequence>, | ||
newItem: Pair<Boolean, CharSequence> | ||
): Boolean { | ||
return oldItem.second == newItem.second | ||
} | ||
} |
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