Skip to content

Commit

Permalink
fix: most recent watch at beginning of list
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelonion committed Feb 22, 2024
1 parent 21b9d51 commit 458f4d1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,14 @@ class AnilistQueries {
}
}
}
val set = PrefManager.getCustomVal<Set<Int>>("continue_$type", setOf()).toMutableSet()
if (type != "ANIME") {
returnArray.addAll(map.values)
return returnArray
}
val set = PrefManager.getVal<Set<String>>(PrefName.ContinuedAnimeSet).toMutableSet()
if (set.isNotEmpty()) {
set.reversed().forEach {
if (map.containsKey(it)) returnArray.add(map[it]!!)
set.forEach {
if (map.containsKey(it.toInt())) returnArray.add(map[it.toInt()]!!)
}
for (i in map) {
if (i.value !in returnArray) returnArray.add(i.value)
Expand Down Expand Up @@ -448,11 +452,15 @@ class AnilistQueries {
subMap[m.id] = m
}
}
val set = PrefManager.getCustomVal<Set<Int>>("continue_${type.uppercase()}", setOf())
.toMutableSet()
if (type != "Anime") {
returnArray.addAll(subMap.values)
returnMap["current$type"] = returnArray
return
}
val set = PrefManager.getVal<Set<String>>(PrefName.ContinuedAnimeSet).toMutableSet()
if (set.isNotEmpty()) {
set.reversed().forEach {
if (subMap.containsKey(it)) returnArray.add(subMap[it]!!)
set.forEach {
if (subMap.containsKey(it.toInt())) returnArray.add(subMap[it.toInt()]!!)
}
for (i in subMap) {
if (i.value !in returnArray) returnArray.add(i.value)
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/java/ani/dantotsu/media/anime/ExoplayerView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1245,10 +1245,10 @@ class ExoplayerView : AppCompatActivity(), Player.Listener, SessionAvailabilityL
media.anime!!.selectedEpisode!!
)

val list = PrefManager.getVal<Set<Int>>(PrefName.ContinuedAnime).toMutableList()
if (list.contains(media.id)) list.remove(media.id)
list.add(media.id)
PrefManager.setVal(PrefName.ContinuedAnime, list.toList())
val list = PrefManager.getVal<Set<String>>(PrefName.ContinuedAnimeSet).toMutableList()
if (list.contains(media.id.toString())) list.remove(media.id.toString())
list.add(media.id.toString())
PrefManager.setVal(PrefName.ContinuedAnimeSet, list.toSet())

lifecycleScope.launch(Dispatchers.IO) {
extractor?.onVideoStopped(video)
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/ani/dantotsu/settings/saving/Preferences.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ enum class PrefName(val data: Pref) { //TODO: Split this into multiple files
SharedUserID(Pref(Location.General, Boolean::class, true)),
OfflineView(Pref(Location.General, Int::class, 0)),
DownloadManager(Pref(Location.General, Int::class, 0)),
NSFWExtension(Pref(Location.General, Boolean::class, false)),
NSFWExtension(Pref(Location.General, Boolean::class, true)),
SdDl(Pref(Location.General, Boolean::class, false)),
ContinueMedia(Pref(Location.General, Boolean::class, true)),
RecentlyListOnly(Pref(Location.General, Boolean::class, false)),
Expand Down Expand Up @@ -98,7 +98,7 @@ enum class PrefName(val data: Pref) { //TODO: Split this into multiple files
UseInternalCast(Pref(Location.Player, Boolean::class, false)),
Pip(Pref(Location.Player, Boolean::class, true)),
RotationPlayer(Pref(Location.Player, Boolean::class, true)),
ContinuedAnime(Pref(Location.Player, List::class, listOf<String>())),
ContinuedAnimeSet(Pref(Location.Player, Set::class, setOf<String>())),

//Reader
ShowSource(Pref(Location.Reader, Boolean::class, true)),
Expand Down

0 comments on commit 458f4d1

Please sign in to comment.