Merge pull request #456 from KryptKode/feat/checklist-sort

Feat/checklist sort
This commit is contained in:
Tibor Kaputa
2021-10-08 18:31:22 +02:00
committed by GitHub
9 changed files with 184 additions and 11 deletions

View File

@ -1,3 +1,24 @@
package com.simplemobiletools.notes.pro.models
data class ChecklistItem(val id: Int, var title: String, var isDone: Boolean)
import com.simplemobiletools.commons.helpers.AlphanumericComparator
import com.simplemobiletools.commons.helpers.SORT_BY_TITLE
import com.simplemobiletools.commons.helpers.SORT_DESCENDING
data class ChecklistItem(val id: Int, val dateCreated: Long = 0L, var title: String, var isDone: Boolean) : Comparable<ChecklistItem> {
companion object {
var sorting = 0
}
override fun compareTo(other: ChecklistItem): Int {
var result = when {
sorting and SORT_BY_TITLE != 0 -> AlphanumericComparator().compare(title.lowercase(), other.title.lowercase())
else -> dateCreated.compareTo(other.dateCreated)
}
if (sorting and SORT_DESCENDING != 0) {
result *= -1
}
return result
}
}