Append age/years for birthdays/anniversaries to event title
This commit is contained in:
parent
2f7664c8b7
commit
e20d8aa616
|
@ -744,23 +744,11 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getBirthdaysEventTypeId(): Long {
|
private fun getBirthdaysEventTypeId(): Long {
|
||||||
val birthdays = getString(R.string.birthdays)
|
return eventsHelper.getBirthdaysEventTypeId()
|
||||||
var eventTypeId = eventsHelper.getEventTypeIdWithTitle(birthdays)
|
|
||||||
if (eventTypeId == -1L) {
|
|
||||||
val eventType = EventType(null, birthdays, resources.getColor(R.color.default_birthdays_color))
|
|
||||||
eventTypeId = eventsHelper.insertOrUpdateEventTypeSync(eventType)
|
|
||||||
}
|
|
||||||
return eventTypeId
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getAnniversariesEventTypeId(): Long {
|
private fun getAnniversariesEventTypeId(): Long {
|
||||||
val anniversaries = getString(R.string.anniversaries)
|
return eventsHelper.getAnniversariesEventTypeId()
|
||||||
var eventTypeId = eventsHelper.getEventTypeIdWithTitle(anniversaries)
|
|
||||||
if (eventTypeId == -1L) {
|
|
||||||
val eventType = EventType(null, anniversaries, resources.getColor(R.color.default_anniversaries_color))
|
|
||||||
eventTypeId = eventsHelper.insertOrUpdateEventTypeSync(eventType)
|
|
||||||
}
|
|
||||||
return eventTypeId
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateView(view: Int) {
|
private fun updateView(view: Int) {
|
||||||
|
|
|
@ -3,11 +3,13 @@ package com.simplemobiletools.calendar.pro.helpers
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.collection.LongSparseArray
|
import androidx.collection.LongSparseArray
|
||||||
|
import com.simplemobiletools.calendar.pro.R
|
||||||
import com.simplemobiletools.calendar.pro.extensions.*
|
import com.simplemobiletools.calendar.pro.extensions.*
|
||||||
import com.simplemobiletools.calendar.pro.models.Event
|
import com.simplemobiletools.calendar.pro.models.Event
|
||||||
import com.simplemobiletools.calendar.pro.models.EventType
|
import com.simplemobiletools.calendar.pro.models.EventType
|
||||||
import com.simplemobiletools.commons.helpers.CHOPPED_LIST_DEFAULT_SIZE
|
import com.simplemobiletools.commons.helpers.CHOPPED_LIST_DEFAULT_SIZE
|
||||||
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
|
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
|
||||||
|
import java.util.Date
|
||||||
|
|
||||||
class EventsHelper(val context: Context) {
|
class EventsHelper(val context: Context) {
|
||||||
private val config = context.config
|
private val config = context.config
|
||||||
|
@ -259,6 +261,9 @@ class EventsHelper(val context: Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getEventsSync(fromTS: Long, toTS: Long, eventId: Long = -1L, applyTypeFilter: Boolean, callback: (events: ArrayList<Event>) -> Unit) {
|
fun getEventsSync(fromTS: Long, toTS: Long, eventId: Long = -1L, applyTypeFilter: Boolean, callback: (events: ArrayList<Event>) -> Unit) {
|
||||||
|
val birthDayEventId = getBirthdaysEventTypeId(createIfNotExists = false)
|
||||||
|
val anniversaryEventId = getAnniversariesEventTypeId(createIfNotExists = false)
|
||||||
|
|
||||||
var events = if (applyTypeFilter) {
|
var events = if (applyTypeFilter) {
|
||||||
val displayEventTypes = context.config.displayEventTypes
|
val displayEventTypes = context.config.displayEventTypes
|
||||||
if (displayEventTypes.isEmpty()) {
|
if (displayEventTypes.isEmpty()) {
|
||||||
|
@ -294,12 +299,37 @@ class EventsHelper(val context: Context) {
|
||||||
|
|
||||||
events.forEach {
|
events.forEach {
|
||||||
it.updateIsPastEvent()
|
it.updateIsPastEvent()
|
||||||
|
if((birthDayEventId != -1L && it.eventType == birthDayEventId) or
|
||||||
|
(anniversaryEventId != -1L && it.eventType == anniversaryEventId)){
|
||||||
|
val years = Date().year - Date(it.startTS).year
|
||||||
|
it.title = "${it.title} ($years)"
|
||||||
|
}
|
||||||
it.color = eventTypeColors.get(it.eventType) ?: config.primaryColor
|
it.color = eventTypeColors.get(it.eventType) ?: config.primaryColor
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(events)
|
callback(events)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun getBirthdaysEventTypeId(createIfNotExists: Boolean = true): Long {
|
||||||
|
val birthdays = context.getString(R.string.birthdays)
|
||||||
|
var eventTypeId = getEventTypeIdWithTitle(birthdays)
|
||||||
|
if (eventTypeId == -1L && createIfNotExists) {
|
||||||
|
val eventType = EventType(null, birthdays, context.resources.getColor(R.color.default_birthdays_color))
|
||||||
|
eventTypeId = insertOrUpdateEventTypeSync(eventType)
|
||||||
|
}
|
||||||
|
return eventTypeId
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getAnniversariesEventTypeId(createIfNotExists: Boolean = true): Long {
|
||||||
|
val anniversaries = context.getString(R.string.anniversaries)
|
||||||
|
var eventTypeId = getEventTypeIdWithTitle(anniversaries)
|
||||||
|
if (eventTypeId == -1L && createIfNotExists) {
|
||||||
|
val eventType = EventType(null, anniversaries, context.resources.getColor(R.color.default_anniversaries_color))
|
||||||
|
eventTypeId = insertOrUpdateEventTypeSync(eventType)
|
||||||
|
}
|
||||||
|
return eventTypeId
|
||||||
|
}
|
||||||
|
|
||||||
fun getRepeatableEventsFor(fromTS: Long, toTS: Long, eventId: Long = -1L, applyTypeFilter: Boolean = false): List<Event> {
|
fun getRepeatableEventsFor(fromTS: Long, toTS: Long, eventId: Long = -1L, applyTypeFilter: Boolean = false): List<Event> {
|
||||||
val events = if (applyTypeFilter) {
|
val events = if (applyTypeFilter) {
|
||||||
val displayEventTypes = context.config.displayEventTypes
|
val displayEventTypes = context.config.displayEventTypes
|
||||||
|
|
Loading…
Reference in New Issue