mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-21 06:00:55 +01:00
Updated commons and refactored PermissionRequiredDialog
This commit is contained in:
parent
1d9ea4a69b
commit
627938e535
@ -72,7 +72,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:7176c52fd8'
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:8814cd2d4b'
|
||||||
implementation 'androidx.multidex:multidex:2.0.1'
|
implementation 'androidx.multidex:multidex:2.0.1'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||||
|
@ -31,7 +31,6 @@ import com.simplemobiletools.calendar.pro.adapters.AutoCompleteTextViewAdapter
|
|||||||
import com.simplemobiletools.calendar.pro.dialogs.*
|
import com.simplemobiletools.calendar.pro.dialogs.*
|
||||||
import com.simplemobiletools.calendar.pro.extensions.*
|
import com.simplemobiletools.calendar.pro.extensions.*
|
||||||
import com.simplemobiletools.calendar.pro.helpers.*
|
import com.simplemobiletools.calendar.pro.helpers.*
|
||||||
import com.simplemobiletools.calendar.pro.helpers.Formatter
|
|
||||||
import com.simplemobiletools.calendar.pro.models.*
|
import com.simplemobiletools.calendar.pro.models.*
|
||||||
import com.simplemobiletools.commons.dialogs.ColorPickerDialog
|
import com.simplemobiletools.commons.dialogs.ColorPickerDialog
|
||||||
import com.simplemobiletools.commons.dialogs.ConfirmationAdvancedDialog
|
import com.simplemobiletools.commons.dialogs.ConfirmationAdvancedDialog
|
||||||
@ -42,11 +41,13 @@ import com.simplemobiletools.commons.helpers.*
|
|||||||
import com.simplemobiletools.commons.models.RadioItem
|
import com.simplemobiletools.commons.models.RadioItem
|
||||||
import com.simplemobiletools.commons.views.MyAutoCompleteTextView
|
import com.simplemobiletools.commons.views.MyAutoCompleteTextView
|
||||||
import kotlinx.android.synthetic.main.activity_event.*
|
import kotlinx.android.synthetic.main.activity_event.*
|
||||||
import kotlinx.android.synthetic.main.activity_event.view.*
|
import kotlinx.android.synthetic.main.activity_event.view.event_reminder_2
|
||||||
|
import kotlinx.android.synthetic.main.activity_event.view.event_reminder_3
|
||||||
import kotlinx.android.synthetic.main.item_attendee.view.*
|
import kotlinx.android.synthetic.main.item_attendee.view.*
|
||||||
import org.joda.time.DateTime
|
import org.joda.time.DateTime
|
||||||
import org.joda.time.DateTimeZone
|
import org.joda.time.DateTimeZone
|
||||||
import java.util.*
|
import java.util.Calendar
|
||||||
|
import java.util.TimeZone
|
||||||
import java.util.regex.Pattern
|
import java.util.regex.Pattern
|
||||||
|
|
||||||
class EventActivity : SimpleActivity() {
|
class EventActivity : SimpleActivity() {
|
||||||
@ -1320,7 +1321,15 @@ class EventActivity : SimpleActivity() {
|
|||||||
storeEvent(wasRepeatable)
|
storeEvent(wasRepeatable)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PermissionRequiredDialog(this, R.string.allow_notifications_reminders)
|
PermissionRequiredDialog(
|
||||||
|
this,
|
||||||
|
R.string.allow_notifications_reminders,
|
||||||
|
positiveActionCallback = {
|
||||||
|
handleNotificationPermission {
|
||||||
|
openNotificationSettings()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -1374,6 +1383,7 @@ class EventActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EDIT_FUTURE_OCCURRENCES -> {
|
EDIT_FUTURE_OCCURRENCES -> {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
val eventId = mEvent.id!!
|
val eventId = mEvent.id!!
|
||||||
@ -1392,6 +1402,7 @@ class EventActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EDIT_ALL_OCCURRENCES -> {
|
EDIT_ALL_OCCURRENCES -> {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
applyOriginalStartEndTimes()
|
applyOriginalStartEndTimes()
|
||||||
|
@ -1067,7 +1067,15 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PermissionRequiredDialog(this, R.string.allow_notifications_reminders)
|
PermissionRequiredDialog(
|
||||||
|
this,
|
||||||
|
R.string.allow_notifications_reminders,
|
||||||
|
positiveActionCallback = {
|
||||||
|
handleNotificationPermission {
|
||||||
|
openNotificationSettings()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -85,7 +85,15 @@ open class SimpleActivity : BaseSimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PermissionRequiredDialog(this, R.string.allow_notifications_reminders)
|
PermissionRequiredDialog(
|
||||||
|
this,
|
||||||
|
R.string.allow_notifications_reminders,
|
||||||
|
positiveActionCallback = {
|
||||||
|
handleNotificationPermission {
|
||||||
|
openNotificationSettings()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -433,7 +433,15 @@ class TaskActivity : SimpleActivity() {
|
|||||||
storeTask(wasRepeatable)
|
storeTask(wasRepeatable)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PermissionRequiredDialog(this, R.string.allow_notifications_reminders)
|
PermissionRequiredDialog(
|
||||||
|
this,
|
||||||
|
R.string.allow_notifications_reminders,
|
||||||
|
positiveActionCallback = {
|
||||||
|
handleNotificationPermission {
|
||||||
|
openNotificationSettings()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -36,7 +36,15 @@ class SetRemindersDialog(val activity: SimpleActivity, val eventType: Int, val c
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PermissionRequiredDialog(activity, R.string.allow_notifications_reminders)
|
PermissionRequiredDialog(
|
||||||
|
activity,
|
||||||
|
R.string.allow_notifications_reminders,
|
||||||
|
positiveActionCallback = {
|
||||||
|
activity.handleNotificationPermission {
|
||||||
|
activity.openNotificationSettings()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user