This commit is contained in:
kunfei
2022-03-07 11:49:01 +08:00
parent 3ebd0b9974
commit 38489cc37b
@@ -59,24 +59,13 @@ class ImportBookViewModel(application: Application) : BaseViewModel(application)
}.map { docList -> }.map { docList ->
when (sort) { when (sort) {
2 -> docList.sortedWith( 2 -> docList.sortedWith(
compareBy( compareBy({ !it.isDir }, { it.date }, { it.name })
{ !it.isDir },
{ it.date },
{ it.name }
)
) )
1 -> docList.sortedWith( 1 -> docList.sortedWith(
compareBy( compareBy({ !it.isDir }, { it.size }, { it.name })
{ !it.isDir },
{ it.size },
{ it.name }
)
) )
else -> docList.sortedWith( else -> docList.sortedWith(
compareBy( compareBy({ !it.isDir }, { it.name })
{ !it.isDir },
{ it.name }
)
) )
} }
}.flowOn(IO) }.flowOn(IO)