2019-09-18 15:29:09 -05:00
|
|
|
package pl.szczodrzynski.edziennik
|
|
|
|
|
|
|
|
import android.app.Activity
|
|
|
|
import android.app.ActivityManager
|
2019-11-05 11:49:40 -06:00
|
|
|
import android.content.BroadcastReceiver
|
|
|
|
import android.content.Context
|
|
|
|
import android.content.Intent
|
|
|
|
import android.content.IntentFilter
|
|
|
|
import android.content.pm.PackageManager
|
2019-09-18 15:29:09 -05:00
|
|
|
import android.graphics.BitmapFactory
|
|
|
|
import android.graphics.drawable.BitmapDrawable
|
|
|
|
import android.os.*
|
2019-11-05 11:49:40 -06:00
|
|
|
import android.provider.Settings
|
2019-09-18 15:29:09 -05:00
|
|
|
import android.view.Gravity
|
|
|
|
import android.view.View
|
|
|
|
import android.widget.Toast
|
|
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
import androidx.appcompat.widget.PopupMenu
|
2019-09-23 14:53:04 -05:00
|
|
|
import androidx.core.graphics.ColorUtils
|
2019-10-22 15:37:02 -05:00
|
|
|
import androidx.lifecycle.Observer
|
2019-09-18 15:29:09 -05:00
|
|
|
import androidx.navigation.NavOptions
|
|
|
|
import com.danimahardhika.cafebar.CafeBar
|
2019-11-03 08:01:12 -06:00
|
|
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
2019-09-18 15:29:09 -05:00
|
|
|
import com.mikepenz.iconics.IconicsColor
|
|
|
|
import com.mikepenz.iconics.IconicsDrawable
|
|
|
|
import com.mikepenz.iconics.IconicsSize
|
2019-10-22 15:37:02 -05:00
|
|
|
import com.mikepenz.iconics.typeface.library.community.material.CommunityMaterial
|
|
|
|
import com.mikepenz.iconics.typeface.library.szkolny.font.SzkolnyFont
|
2019-09-18 15:29:09 -05:00
|
|
|
import com.mikepenz.materialdrawer.model.DividerDrawerItem
|
|
|
|
import com.mikepenz.materialdrawer.model.ProfileDrawerItem
|
2019-10-22 15:37:02 -05:00
|
|
|
import com.mikepenz.materialdrawer.model.ProfileSettingDrawerItem
|
|
|
|
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem
|
2019-09-18 15:29:09 -05:00
|
|
|
import com.mikepenz.materialdrawer.model.interfaces.IProfile
|
2019-10-22 15:37:02 -05:00
|
|
|
import org.greenrobot.eventbus.EventBus
|
|
|
|
import org.greenrobot.eventbus.Subscribe
|
|
|
|
import org.greenrobot.eventbus.ThreadMode
|
2019-09-18 15:29:09 -05:00
|
|
|
import pl.droidsonroids.gif.GifDrawable
|
|
|
|
import pl.szczodrzynski.edziennik.App.APP_URL
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.api.v2.events.*
|
2019-11-03 14:26:48 -06:00
|
|
|
import pl.szczodrzynski.edziennik.api.v2.events.task.EdziennikTask
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.data.db.modules.metadata.Metadata.*
|
2019-09-18 15:29:09 -05:00
|
|
|
import pl.szczodrzynski.edziennik.databinding.ActivitySzkolnyBinding
|
|
|
|
import pl.szczodrzynski.edziennik.network.ServerRequest
|
2019-11-03 08:01:12 -06:00
|
|
|
import pl.szczodrzynski.edziennik.sync.AppManagerDetectedEvent
|
2019-11-03 09:10:30 -06:00
|
|
|
import pl.szczodrzynski.edziennik.sync.SyncWorker
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.dialogs.changelog.ChangelogDialog
|
2019-11-13 02:12:56 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.dialogs.settings.ProfileRemoveDialog
|
2019-11-13 14:57:47 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.dialogs.sync.SyncViewListDialog
|
2019-09-28 17:07:29 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.agenda.AgendaFragment
|
2019-09-28 08:56:07 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.announcements.AnnouncementsFragment
|
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.attendance.AttendanceFragment
|
2019-09-28 07:37:05 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.base.DebugFragment
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.behaviour.BehaviourFragment
|
2019-11-13 14:57:47 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.error.ErrorSnackbar
|
2019-10-02 05:19:12 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.feedback.FeedbackFragment
|
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.feedback.HelpFragment
|
2019-09-28 08:56:07 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.grades.GradesFragment
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.grades.editor.GradesEditorFragment
|
2019-11-24 12:41:17 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.home.HomeFragmentV2
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.homework.HomeworkFragment
|
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.login.LoginActivity
|
2019-11-12 07:11:35 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.messages.MessageFragment
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.messages.MessagesFragment
|
2019-09-28 08:56:07 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.notifications.NotificationsFragment
|
2019-09-28 07:37:05 -05:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.settings.ProfileManagerFragment
|
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.settings.SettingsNewFragment
|
2019-11-10 10:53:10 -06:00
|
|
|
import pl.szczodrzynski.edziennik.ui.modules.timetable.v2.TimetableFragment
|
2019-09-18 15:29:09 -05:00
|
|
|
import pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.utils.Themes
|
2019-09-18 15:29:09 -05:00
|
|
|
import pl.szczodrzynski.edziennik.utils.Utils
|
2019-11-03 14:26:48 -06:00
|
|
|
import pl.szczodrzynski.edziennik.utils.Utils.d
|
2019-10-09 11:22:33 -05:00
|
|
|
import pl.szczodrzynski.edziennik.utils.Utils.dpToPx
|
2019-11-05 11:49:40 -06:00
|
|
|
import pl.szczodrzynski.edziennik.utils.appManagerIntentList
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.edziennik.utils.models.NavTarget
|
2019-10-09 11:22:33 -05:00
|
|
|
import pl.szczodrzynski.navlib.*
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.navlib.SystemBarsUtil.Companion.COLOR_HALF_TRANSPARENT
|
|
|
|
import pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet
|
2019-09-18 15:29:09 -05:00
|
|
|
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetPrimaryItem
|
|
|
|
import pl.szczodrzynski.navlib.bottomsheet.items.BottomSheetSeparatorItem
|
2019-10-22 15:37:02 -05:00
|
|
|
import pl.szczodrzynski.navlib.drawer.NavDrawer
|
|
|
|
import pl.szczodrzynski.navlib.drawer.items.DrawerPrimaryItem
|
|
|
|
import pl.szczodrzynski.navlib.drawer.items.withAppTitle
|
2019-09-18 15:29:09 -05:00
|
|
|
import java.io.File
|
|
|
|
import java.io.IOException
|
|
|
|
import java.util.*
|
2019-11-03 14:26:48 -06:00
|
|
|
import kotlin.math.roundToInt
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
class MainActivity : AppCompatActivity() {
|
|
|
|
companion object {
|
|
|
|
|
|
|
|
var useOldMessages = false
|
|
|
|
|
|
|
|
const val TAG = "MainActivity"
|
|
|
|
|
|
|
|
const val REQUEST_LOGIN_ACTIVITY = 20222
|
|
|
|
|
|
|
|
const val DRAWER_PROFILE_ADD_NEW = 200
|
|
|
|
const val DRAWER_PROFILE_SYNC_ALL = 201
|
|
|
|
const val DRAWER_PROFILE_EXPORT_DATA = 202
|
|
|
|
const val DRAWER_PROFILE_MANAGE = 203
|
|
|
|
const val DRAWER_ITEM_HOME = 1
|
|
|
|
const val DRAWER_ITEM_TIMETABLE = 11
|
|
|
|
const val DRAWER_ITEM_AGENDA = 12
|
|
|
|
const val DRAWER_ITEM_GRADES = 13
|
|
|
|
const val DRAWER_ITEM_MESSAGES = 17
|
2019-09-27 16:27:15 -05:00
|
|
|
const val DRAWER_ITEM_HOMEWORK = 14
|
2019-09-28 08:56:07 -05:00
|
|
|
const val DRAWER_ITEM_BEHAVIOUR = 15
|
|
|
|
const val DRAWER_ITEM_ATTENDANCE = 16
|
2019-09-18 15:29:09 -05:00
|
|
|
const val DRAWER_ITEM_ANNOUNCEMENTS = 18
|
|
|
|
const val DRAWER_ITEM_NOTIFICATIONS = 20
|
|
|
|
const val DRAWER_ITEM_SETTINGS = 101
|
|
|
|
const val DRAWER_ITEM_DEBUG = 102
|
|
|
|
|
|
|
|
const val TARGET_GRADES_EDITOR = 501
|
|
|
|
const val TARGET_HELP = 502
|
|
|
|
const val TARGET_FEEDBACK = 120
|
|
|
|
const val TARGET_MESSAGES_DETAILS = 503
|
|
|
|
|
|
|
|
const val HOME_ID = DRAWER_ITEM_HOME
|
|
|
|
|
|
|
|
val navTargetList: List<NavTarget> by lazy {
|
|
|
|
val list: MutableList<NavTarget> = mutableListOf()
|
|
|
|
|
|
|
|
// home item
|
2019-11-24 12:41:17 -06:00
|
|
|
list += NavTarget(DRAWER_ITEM_HOME, R.string.menu_home_page, HomeFragmentV2::class)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withTitle(R.string.app_name)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_home_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.isInDrawer(true)
|
|
|
|
.isStatic(true)
|
|
|
|
.withPopToHome(false)
|
|
|
|
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_TIMETABLE, R.string.menu_timetable, TimetableFragment::class)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_timetable)
|
|
|
|
.withBadgeTypeId(TYPE_LESSON_CHANGE)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-28 17:07:29 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_AGENDA, R.string.menu_agenda, AgendaFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_calendar_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_EVENT)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_GRADES, R.string.menu_grades, GradesFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_numeric_5_box_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_GRADE)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
|
|
|
list += NavTarget(DRAWER_ITEM_MESSAGES, R.string.menu_messages, MessagesFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_email_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_MESSAGE)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-27 16:27:15 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_HOMEWORK, R.string.menu_homework, HomeworkFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(SzkolnyFont.Icon.szf_notebook_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_HOMEWORK)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_BEHAVIOUR, R.string.menu_notices, BehaviourFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_emoticon_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_NOTICE)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_ATTENDANCE, R.string.menu_attendance, AttendanceFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_calendar_remove_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_ATTENDANCE)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_ANNOUNCEMENTS, R.string.menu_announcements, AnnouncementsFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_bullhorn_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withBadgeTypeId(TYPE_ANNOUNCEMENT)
|
|
|
|
.isInDrawer(true)
|
|
|
|
|
|
|
|
|
|
|
|
// static drawer items
|
2019-09-28 08:56:07 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_NOTIFICATIONS, R.string.menu_notifications, NotificationsFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_bell_ring_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.isInDrawer(true)
|
|
|
|
.isStatic(true)
|
|
|
|
.isBelowSeparator(true)
|
|
|
|
|
|
|
|
list += NavTarget(DRAWER_ITEM_SETTINGS, R.string.menu_settings, SettingsNewFragment::class)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_settings_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.isInDrawer(true)
|
|
|
|
.isStatic(true)
|
|
|
|
.isBelowSeparator(true)
|
|
|
|
|
|
|
|
|
|
|
|
// profile settings items
|
|
|
|
list += NavTarget(DRAWER_PROFILE_ADD_NEW, R.string.menu_add_new_profile, null)
|
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_plus)
|
|
|
|
.withDescription(R.string.drawer_add_new_profile_desc)
|
|
|
|
.isInProfileList(true)
|
|
|
|
|
|
|
|
list += NavTarget(DRAWER_PROFILE_MANAGE, R.string.menu_manage_profiles, ProfileManagerFragment::class)
|
|
|
|
.withTitle(R.string.title_profile_manager)
|
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_account_group)
|
|
|
|
.withDescription(R.string.drawer_manage_profiles_desc)
|
|
|
|
.isInProfileList(false)
|
|
|
|
|
|
|
|
list += NavTarget(DRAWER_PROFILE_SYNC_ALL, R.string.menu_sync_all, null)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_download_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.isInProfileList(true)
|
|
|
|
|
|
|
|
|
|
|
|
// other target items, not directly navigated
|
|
|
|
list += NavTarget(TARGET_GRADES_EDITOR, R.string.menu_grades_editor, GradesEditorFragment::class)
|
|
|
|
list += NavTarget(TARGET_HELP, R.string.menu_help, HelpFragment::class)
|
|
|
|
list += NavTarget(TARGET_FEEDBACK, R.string.menu_feedback, FeedbackFragment::class)
|
2019-11-12 07:11:35 -06:00
|
|
|
list += NavTarget(TARGET_MESSAGES_DETAILS, R.string.menu_message, MessageFragment::class)
|
2019-09-18 15:29:09 -05:00
|
|
|
list += NavTarget(DRAWER_ITEM_DEBUG, R.string.menu_debug, DebugFragment::class)
|
|
|
|
|
|
|
|
list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val b: ActivitySzkolnyBinding by lazy { ActivitySzkolnyBinding.inflate(layoutInflater) }
|
|
|
|
val navView: NavView by lazy { b.navView }
|
|
|
|
val drawer: NavDrawer by lazy { navView.drawer }
|
|
|
|
val bottomSheet: NavBottomSheet by lazy { navView.bottomSheet }
|
2019-11-13 12:44:08 -06:00
|
|
|
val errorSnackbar: ErrorSnackbar by lazy { ErrorSnackbar(this) }
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
val swipeRefreshLayout: SwipeRefreshLayoutNoTouch by lazy { b.swipeRefreshLayout }
|
|
|
|
|
|
|
|
val app: App by lazy {
|
|
|
|
applicationContext as App
|
|
|
|
}
|
|
|
|
|
|
|
|
private val fragmentManager by lazy { supportFragmentManager }
|
|
|
|
private lateinit var navTarget: NavTarget
|
|
|
|
private val navTargetId
|
|
|
|
get() = navTarget.id
|
|
|
|
|
|
|
|
private val navBackStack = mutableListOf<NavTarget>()
|
|
|
|
private var navLoading = true
|
|
|
|
|
|
|
|
/* ____ _____ _
|
|
|
|
/ __ \ / ____| | |
|
|
|
|
| | | |_ __ | | _ __ ___ __ _| |_ ___
|
|
|
|
| | | | '_ \ | | | '__/ _ \/ _` | __/ _ \
|
|
|
|
| |__| | | | | | |____| | | __/ (_| | || __/
|
|
|
|
\____/|_| |_| \_____|_| \___|\__,_|\__\__*/
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
|
|
|
|
setTheme(Themes.appTheme)
|
|
|
|
|
2019-10-27 15:00:23 -05:00
|
|
|
app.appConfig.language?.let {
|
|
|
|
setLanguage(it)
|
|
|
|
}
|
|
|
|
|
2019-09-18 15:29:09 -05:00
|
|
|
setContentView(b.root)
|
|
|
|
|
2019-11-13 12:44:08 -06:00
|
|
|
errorSnackbar.setCoordinator(b.navView.coordinator, b.navView.bottomBar)
|
|
|
|
|
2019-09-18 15:29:09 -05:00
|
|
|
navLoading = true
|
|
|
|
|
|
|
|
b.navView.apply {
|
|
|
|
drawer.init(this@MainActivity)
|
|
|
|
|
|
|
|
SystemBarsUtil(this@MainActivity).run {
|
2019-09-19 03:29:10 -05:00
|
|
|
//paddingByKeyboard = b.navView
|
|
|
|
appFullscreen = false
|
2019-09-18 15:29:09 -05:00
|
|
|
statusBarColor = getColorFromAttr(context, android.R.attr.colorBackground)
|
|
|
|
statusBarDarker = false
|
|
|
|
statusBarFallbackLight = COLOR_HALF_TRANSPARENT
|
|
|
|
statusBarFallbackGradient = COLOR_HALF_TRANSPARENT
|
|
|
|
navigationBarTransparent = false
|
|
|
|
|
|
|
|
b.navView.configSystemBarsUtil(this)
|
|
|
|
|
2019-09-23 14:53:04 -05:00
|
|
|
// fix for setting status bar color to window color, outside of navlib
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
window.statusBarColor = statusBarColor
|
|
|
|
}
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && ColorUtils.calculateLuminance(statusBarColor) > 0.6) {
|
|
|
|
window.decorView.systemUiVisibility = window.decorView.systemUiVisibility or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
|
|
|
}
|
|
|
|
|
2019-09-19 03:29:10 -05:00
|
|
|
// TODO fix navlib navbar detection, orientation change issues, status bar color setting if not fullscreen
|
|
|
|
|
2019-09-18 15:29:09 -05:00
|
|
|
commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
toolbar.apply {
|
|
|
|
subtitleFormat = R.string.toolbar_subtitle
|
|
|
|
subtitleFormatWithUnread = R.plurals.toolbar_subtitle_with_unread
|
|
|
|
}
|
|
|
|
|
|
|
|
bottomBar.apply {
|
|
|
|
fabEnable = false
|
|
|
|
fabExtendable = true
|
|
|
|
fabExtended = false
|
|
|
|
fabGravity = Gravity.CENTER
|
2019-10-09 11:22:33 -05:00
|
|
|
if (Themes.isDark) {
|
|
|
|
setBackgroundColor(blendColors(
|
|
|
|
getColorFromAttr(context, R.attr.colorSurface),
|
|
|
|
getColorFromRes(R.color.colorSurface_4dp)
|
|
|
|
))
|
|
|
|
elevation = dpToPx(4).toFloat()
|
|
|
|
}
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bottomSheet.apply {
|
|
|
|
removeAllItems()
|
|
|
|
toggleGroupEnabled = false
|
|
|
|
textInputEnabled = false
|
|
|
|
}
|
|
|
|
|
|
|
|
drawer.apply {
|
|
|
|
setAccountHeaderBackground(app.appConfig.headerBackground)
|
|
|
|
|
|
|
|
drawerProfileListEmptyListener = {
|
|
|
|
app.appConfig.loginFinished = false
|
|
|
|
app.saveConfig("loginFinished")
|
|
|
|
profileListEmptyListener()
|
|
|
|
}
|
|
|
|
drawerItemSelectedListener = { id, position, drawerItem ->
|
|
|
|
loadTarget(id)
|
|
|
|
true
|
|
|
|
}
|
|
|
|
drawerProfileSelectedListener = { id, profile, _, _ ->
|
|
|
|
loadProfile(id)
|
|
|
|
false
|
|
|
|
}
|
|
|
|
drawerProfileLongClickListener = { _, profile, _, view ->
|
|
|
|
if (profile is ProfileDrawerItem) {
|
|
|
|
showProfileContextMenu(profile, view)
|
|
|
|
true
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawerProfileImageLongClickListener = drawerProfileLongClickListener
|
|
|
|
drawerProfileSettingClickListener = this@MainActivity.profileSettingClickListener
|
|
|
|
|
|
|
|
miniDrawerVisibleLandscape = null
|
|
|
|
miniDrawerVisiblePortrait = app.appConfig.miniDrawerVisible
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
navTarget = navTargetList[0]
|
|
|
|
|
|
|
|
var profileListEmpty = drawer.profileListEmpty
|
|
|
|
|
|
|
|
if (savedInstanceState != null) {
|
|
|
|
intent?.putExtras(savedInstanceState)
|
|
|
|
savedInstanceState.clear()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!profileListEmpty) {
|
|
|
|
handleIntent(intent?.extras)
|
|
|
|
}
|
2019-11-11 16:59:45 -06:00
|
|
|
app.db.profileDao().allFull.observe(this, Observer { profiles ->
|
2019-09-18 15:29:09 -05:00
|
|
|
// TODO fix weird -1 profiles ???
|
|
|
|
profiles.removeAll { it.id < 0 }
|
|
|
|
drawer.setProfileList(profiles)
|
|
|
|
if (profileListEmpty) {
|
|
|
|
profileListEmpty = false
|
|
|
|
handleIntent(intent?.extras)
|
|
|
|
}
|
|
|
|
else if (app.profile != null) {
|
|
|
|
drawer.currentProfile = app.profile.id
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// if null, getAllFull will load a profile and update drawerItems
|
|
|
|
if (app.profile != null)
|
|
|
|
setDrawerItems()
|
|
|
|
|
2019-11-11 16:59:45 -06:00
|
|
|
app.db.metadataDao().unreadCounts.observe(this, Observer { unreadCounters ->
|
2019-09-18 15:29:09 -05:00
|
|
|
unreadCounters.map {
|
|
|
|
it.type = it.thingType
|
|
|
|
}
|
|
|
|
drawer.setUnreadCounterList(unreadCounters)
|
|
|
|
})
|
|
|
|
|
|
|
|
b.swipeRefreshLayout.isEnabled = true
|
|
|
|
b.swipeRefreshLayout.setOnRefreshListener { this.syncCurrentFeature() }
|
2019-11-15 14:16:58 -06:00
|
|
|
b.swipeRefreshLayout.setColorSchemeResources(
|
|
|
|
R.color.md_blue_500,
|
|
|
|
R.color.md_amber_500,
|
|
|
|
R.color.md_green_500
|
|
|
|
)
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
isStoragePermissionGranted()
|
|
|
|
|
2019-11-03 09:10:30 -06:00
|
|
|
SyncWorker.scheduleNext(app)
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
// APP BACKGROUND
|
|
|
|
if (app.appConfig.appBackground != null) {
|
|
|
|
try {
|
|
|
|
var bg = app.appConfig.appBackground
|
|
|
|
val bgDir = File(Environment.getExternalStoragePublicDirectory("Szkolny.eu"), "bg")
|
|
|
|
if (bgDir.exists()) {
|
|
|
|
val files = bgDir.listFiles()
|
|
|
|
val r = Random()
|
|
|
|
val i = r.nextInt(files.size)
|
|
|
|
bg = files[i].toString()
|
|
|
|
}
|
|
|
|
val linearLayout = b.root
|
|
|
|
if (bg.endsWith(".gif")) {
|
|
|
|
linearLayout.background = GifDrawable(bg)
|
|
|
|
} else {
|
|
|
|
linearLayout.background = BitmapDrawable.createFromPath(bg)
|
|
|
|
}
|
|
|
|
} catch (e: IOException) {
|
|
|
|
e.printStackTrace()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WHAT'S NEW DIALOG
|
|
|
|
if (app.appConfig.lastAppVersion != BuildConfig.VERSION_CODE) {
|
|
|
|
ServerRequest(app, app.requestScheme + APP_URL + "main.php?just_updated", "MainActivity/JU")
|
|
|
|
.run { e, result ->
|
|
|
|
Handler(Looper.getMainLooper()).post {
|
|
|
|
try {
|
|
|
|
ChangelogDialog().show(supportFragmentManager, "whats_new")
|
|
|
|
} catch (e2: Exception) {
|
|
|
|
e2.printStackTrace()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (app.appConfig.lastAppVersion < 170) {
|
|
|
|
//Intent intent = new Intent(this, ChangelogIntroActivity.class);
|
|
|
|
//startActivity(intent);
|
|
|
|
} else {
|
|
|
|
app.appConfig.lastAppVersion = BuildConfig.VERSION_CODE
|
|
|
|
app.saveConfig("lastAppVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RATE SNACKBAR
|
|
|
|
if (app.appConfig.appRateSnackbarTime != 0L && app.appConfig.appRateSnackbarTime <= System.currentTimeMillis()) {
|
|
|
|
navView.coordinator.postDelayed({
|
|
|
|
CafeBar.builder(this)
|
|
|
|
.content(R.string.rate_snackbar_text)
|
2019-11-23 11:32:18 -06:00
|
|
|
.icon(IconicsDrawable(this).icon(CommunityMaterial.Icon2.cmd_star_outline).size(IconicsSize.dp(20)).color(IconicsColor.colorInt(Themes.getPrimaryTextColor(this))))
|
2019-09-18 15:29:09 -05:00
|
|
|
.positiveText(R.string.rate_snackbar_positive)
|
|
|
|
.positiveColor(-0xb350b0)
|
|
|
|
.negativeText(R.string.rate_snackbar_negative)
|
|
|
|
.negativeColor(0xff666666.toInt())
|
|
|
|
.neutralText(R.string.rate_snackbar_neutral)
|
|
|
|
.neutralColor(0xff666666.toInt())
|
|
|
|
.onPositive { cafeBar ->
|
|
|
|
Utils.openGooglePlay(this)
|
|
|
|
cafeBar.dismiss()
|
|
|
|
app.appConfig.appRateSnackbarTime = 0
|
|
|
|
app.saveConfig("appRateSnackbarTime")
|
|
|
|
}
|
|
|
|
.onNegative { cafeBar ->
|
|
|
|
Toast.makeText(this, "Szkoda, opinie innych pomagają mi rozwijać aplikację.", Toast.LENGTH_LONG).show()
|
|
|
|
cafeBar.dismiss()
|
|
|
|
app.appConfig.appRateSnackbarTime = 0
|
|
|
|
app.saveConfig("appRateSnackbarTime")
|
|
|
|
}
|
|
|
|
.onNeutral { cafeBar ->
|
|
|
|
Toast.makeText(this, "OK", Toast.LENGTH_LONG).show()
|
|
|
|
cafeBar.dismiss()
|
|
|
|
app.appConfig.appRateSnackbarTime = System.currentTimeMillis() + 7 * 24 * 60 * 60 * 1000
|
|
|
|
app.saveConfig("appRateSnackbarTime")
|
|
|
|
}
|
|
|
|
.autoDismiss(false)
|
|
|
|
.swipeToDismiss(true)
|
|
|
|
.floating(true)
|
|
|
|
.show()
|
|
|
|
}, 10000)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CONTEXT MENU ITEMS
|
|
|
|
bottomSheet.removeAllItems()
|
|
|
|
bottomSheet.appendItems(
|
|
|
|
BottomSheetPrimaryItem(false)
|
|
|
|
.withTitle(R.string.menu_sync)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_download_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withOnClickListener(View.OnClickListener {
|
|
|
|
bottomSheet.close()
|
2019-11-13 14:57:47 -06:00
|
|
|
SyncViewListDialog(this, navTargetId)
|
2019-09-18 15:29:09 -05:00
|
|
|
}),
|
|
|
|
BottomSheetSeparatorItem(false),
|
|
|
|
BottomSheetPrimaryItem(false)
|
|
|
|
.withTitle(R.string.menu_settings)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_settings_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withOnClickListener(View.OnClickListener { loadTarget(DRAWER_ITEM_SETTINGS) }),
|
|
|
|
BottomSheetPrimaryItem(false)
|
|
|
|
.withTitle(R.string.menu_feedback)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon2.cmd_help_circle_outline)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withOnClickListener(View.OnClickListener { loadTarget(TARGET_FEEDBACK) })
|
|
|
|
)
|
|
|
|
if (App.devMode) {
|
|
|
|
bottomSheet += BottomSheetPrimaryItem(false)
|
|
|
|
.withTitle(R.string.menu_debug)
|
2019-11-23 11:32:18 -06:00
|
|
|
.withIcon(CommunityMaterial.Icon.cmd_android_studio)
|
2019-09-18 15:29:09 -05:00
|
|
|
.withOnClickListener(View.OnClickListener { loadTarget(DRAWER_ITEM_DEBUG) })
|
|
|
|
}
|
2019-10-22 15:37:02 -05:00
|
|
|
|
|
|
|
EventBus.getDefault().register(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onDestroy() {
|
|
|
|
EventBus.getDefault().unregister(this)
|
|
|
|
super.onDestroy()
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var profileListEmptyListener = {
|
|
|
|
startActivityForResult(Intent(this, LoginActivity::class.java), REQUEST_LOGIN_ACTIVITY)
|
|
|
|
}
|
|
|
|
private var profileSettingClickListener = { id: Int, view: View? ->
|
|
|
|
when (id) {
|
|
|
|
DRAWER_PROFILE_ADD_NEW -> {
|
|
|
|
LoginActivity.privacyPolicyAccepted = true
|
|
|
|
// else it would try to navigateUp onBackPressed, which it can't do. There is no parent fragment
|
|
|
|
LoginActivity.firstCompleted = false
|
|
|
|
profileListEmptyListener()
|
|
|
|
}
|
|
|
|
DRAWER_PROFILE_SYNC_ALL -> {
|
2019-11-03 14:26:48 -06:00
|
|
|
EdziennikTask.sync().enqueue(this)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
else -> {
|
|
|
|
loadTarget(id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
/* _____
|
|
|
|
/ ____|
|
|
|
|
| (___ _ _ _ __ ___
|
|
|
|
\___ \| | | | '_ \ / __|
|
|
|
|
____) | |_| | | | | (__
|
|
|
|
|_____/ \__, |_| |_|\___|
|
|
|
|
__/ |
|
|
|
|
|__*/
|
|
|
|
fun syncCurrentFeature() {
|
|
|
|
swipeRefreshLayout.isRefreshing = true
|
|
|
|
Toast.makeText(this, fragmentToSyncName(navTargetId), Toast.LENGTH_SHORT).show()
|
2019-10-22 15:37:02 -05:00
|
|
|
val fragmentParam = when (navTargetId) {
|
|
|
|
DRAWER_ITEM_MESSAGES -> MessagesFragment.pageSelection
|
|
|
|
else -> 0
|
|
|
|
}
|
2019-11-23 14:57:30 -06:00
|
|
|
val arguments = when (navTargetId) {
|
2019-11-24 05:08:14 -06:00
|
|
|
DRAWER_ITEM_TIMETABLE -> JsonObject("weekStart" to TimetableFragment.pageSelection?.weekStart?.stringY_m_d)
|
2019-11-23 14:57:30 -06:00
|
|
|
else -> null
|
|
|
|
}
|
2019-11-07 10:50:12 -06:00
|
|
|
EdziennikTask.syncProfile(
|
|
|
|
App.profileId,
|
2019-11-23 14:57:30 -06:00
|
|
|
listOf(navTargetId to fragmentParam),
|
|
|
|
arguments
|
2019-11-07 10:50:12 -06:00
|
|
|
).enqueue(this)
|
2019-10-22 15:37:02 -05:00
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
2019-11-03 14:26:48 -06:00
|
|
|
fun onSyncStartedEvent(event: ApiTaskStartedEvent) {
|
2019-10-22 15:37:02 -05:00
|
|
|
swipeRefreshLayout.isRefreshing = true
|
|
|
|
if (event.profileId == App.profileId) {
|
|
|
|
navView.toolbar.apply {
|
|
|
|
subtitleFormat = null
|
|
|
|
subtitleFormatWithUnread = null
|
|
|
|
subtitle = getString(R.string.toolbar_subtitle_syncing)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
2019-10-22 15:37:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
2019-11-03 14:26:48 -06:00
|
|
|
fun onSyncProgressEvent(event: ApiTaskProgressEvent) {
|
2019-10-22 15:37:02 -05:00
|
|
|
if (event.profileId == App.profileId) {
|
|
|
|
navView.toolbar.apply {
|
|
|
|
subtitleFormat = null
|
|
|
|
subtitleFormatWithUnread = null
|
2019-11-03 14:26:48 -06:00
|
|
|
subtitle = if (event.progress < 0f)
|
|
|
|
event.progressText ?: ""
|
|
|
|
else
|
|
|
|
getString(R.string.toolbar_subtitle_syncing_format, event.progress.roundToInt(), event.progressText ?: "")
|
|
|
|
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
2019-10-22 15:37:02 -05:00
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
2019-11-03 14:26:48 -06:00
|
|
|
fun onSyncProfileFinishedEvent(event: ApiTaskFinishedEvent) {
|
2019-10-22 15:37:02 -05:00
|
|
|
if (event.profileId == App.profileId) {
|
|
|
|
navView.toolbar.apply {
|
|
|
|
subtitleFormat = R.string.toolbar_subtitle
|
|
|
|
subtitleFormatWithUnread = R.plurals.toolbar_subtitle_with_unread
|
|
|
|
subtitle = "Gotowe"
|
|
|
|
}
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
2019-10-22 15:37:02 -05:00
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
2019-11-03 14:26:48 -06:00
|
|
|
fun onSyncFinishedEvent(event: ApiTaskAllFinishedEvent) {
|
2019-10-22 15:37:02 -05:00
|
|
|
swipeRefreshLayout.isRefreshing = false
|
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN)
|
2019-11-03 14:26:48 -06:00
|
|
|
fun onSyncErrorEvent(event: ApiTaskErrorEvent) {
|
2019-11-13 12:44:08 -06:00
|
|
|
navView.toolbar.apply {
|
|
|
|
subtitleFormat = R.string.toolbar_subtitle
|
|
|
|
subtitleFormatWithUnread = R.plurals.toolbar_subtitle_with_unread
|
|
|
|
subtitle = "Gotowe"
|
|
|
|
}
|
|
|
|
errorSnackbar.addError(event.error).show()
|
2019-11-03 08:01:12 -06:00
|
|
|
}
|
|
|
|
@Subscribe(threadMode = ThreadMode.MAIN, sticky = true)
|
|
|
|
fun onAppManagerDetectedEvent(event: AppManagerDetectedEvent) {
|
|
|
|
if (app.appConfig.dontShowAppManagerDialog)
|
|
|
|
return
|
|
|
|
MaterialAlertDialogBuilder(this)
|
|
|
|
.setTitle(R.string.app_manager_dialog_title)
|
|
|
|
.setMessage(R.string.app_manager_dialog_text)
|
|
|
|
.setPositiveButton(R.string.ok) { dialog, which ->
|
|
|
|
try {
|
2019-11-05 11:49:40 -06:00
|
|
|
for (intent in appManagerIntentList) {
|
|
|
|
if (packageManager.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY) != null) {
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
}
|
2019-11-03 08:01:12 -06:00
|
|
|
} catch (e: Exception) {
|
|
|
|
try {
|
2019-11-05 11:49:40 -06:00
|
|
|
startActivity(Intent(Settings.ACTION_SETTINGS))
|
2019-11-03 08:01:12 -06:00
|
|
|
} catch (e: Exception) {
|
2019-11-05 11:49:40 -06:00
|
|
|
e.printStackTrace()
|
|
|
|
Toast.makeText(this, R.string.app_manager_open_failed, Toast.LENGTH_SHORT).show()
|
2019-11-03 08:01:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.setNeutralButton(R.string.dont_ask_again) { dialog, which ->
|
|
|
|
app.appConfig.dontShowAppManagerDialog = true
|
|
|
|
app.saveConfig("dontShowAppManagerDialog")
|
|
|
|
}
|
|
|
|
.setCancelable(false)
|
|
|
|
.show()
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
2019-11-13 15:37:30 -06:00
|
|
|
|
2019-09-18 15:29:09 -05:00
|
|
|
private fun fragmentToSyncName(currentFragment: Int): Int {
|
|
|
|
return when (currentFragment) {
|
|
|
|
DRAWER_ITEM_TIMETABLE -> R.string.sync_feature_timetable
|
|
|
|
DRAWER_ITEM_AGENDA -> R.string.sync_feature_agenda
|
|
|
|
DRAWER_ITEM_GRADES -> R.string.sync_feature_grades
|
2019-09-27 16:27:15 -05:00
|
|
|
DRAWER_ITEM_HOMEWORK -> R.string.sync_feature_homework
|
2019-09-28 08:56:07 -05:00
|
|
|
DRAWER_ITEM_BEHAVIOUR -> R.string.sync_feature_notices
|
|
|
|
DRAWER_ITEM_ATTENDANCE -> R.string.sync_feature_attendance
|
2019-09-18 15:29:09 -05:00
|
|
|
DRAWER_ITEM_MESSAGES -> when (MessagesFragment.pageSelection) {
|
|
|
|
1 -> R.string.sync_feature_messages_outbox
|
|
|
|
else -> R.string.sync_feature_messages_inbox
|
|
|
|
}
|
|
|
|
DRAWER_ITEM_ANNOUNCEMENTS -> R.string.sync_feature_announcements
|
|
|
|
else -> R.string.sync_feature_syncing_all
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* _____ _ _
|
|
|
|
|_ _| | | | |
|
|
|
|
| | _ __ | |_ ___ _ __ | |_ ___
|
|
|
|
| | | '_ \| __/ _ \ '_ \| __/ __|
|
|
|
|
_| |_| | | | || __/ | | | |_\__ \
|
|
|
|
|_____|_| |_|\__\___|_| |_|\__|__*/
|
|
|
|
private val intentReceiver: BroadcastReceiver = object : BroadcastReceiver() {
|
|
|
|
override fun onReceive(context: Context?, intent: Intent?) {
|
|
|
|
handleIntent(intent?.extras)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private fun handleIntent(extras: Bundle?) {
|
|
|
|
|
2019-11-03 14:26:48 -06:00
|
|
|
d(TAG, "handleIntent() {")
|
2019-09-18 15:29:09 -05:00
|
|
|
extras?.keySet()?.forEach { key ->
|
2019-11-03 14:26:48 -06:00
|
|
|
d(TAG, " \"$key\": "+extras.get(key))
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
2019-11-03 14:26:48 -06:00
|
|
|
d(TAG, "}")
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
if (extras?.containsKey("reloadProfileId") == true) {
|
|
|
|
val reloadProfileId = extras.getInt("reloadProfileId", -1)
|
|
|
|
extras.remove("reloadProfileId")
|
|
|
|
if (reloadProfileId == -1 || (app.profile != null && app.profile.id == reloadProfileId)) {
|
|
|
|
reloadTarget()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var intentProfileId = -1
|
|
|
|
var intentTargetId = -1
|
|
|
|
|
|
|
|
if (extras?.containsKey("profileId") == true) {
|
|
|
|
intentProfileId = extras.getInt("profileId", -1)
|
|
|
|
extras.remove("profileId")
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extras?.containsKey("fragmentId") == true) {
|
|
|
|
intentTargetId = extras.getInt("fragmentId", -1)
|
|
|
|
extras.remove("fragmentId")
|
|
|
|
}
|
|
|
|
|
|
|
|
/*if (intentTargetId == -1 && navController.currentDestination?.id == R.id.loadingFragment) {
|
|
|
|
intentTargetId = navTarget.id
|
|
|
|
}*/
|
|
|
|
|
|
|
|
if (navLoading) {
|
|
|
|
navLoading = false
|
|
|
|
b.fragment.removeAllViews()
|
|
|
|
if (intentTargetId == -1)
|
|
|
|
intentTargetId = HOME_ID
|
|
|
|
}
|
|
|
|
|
|
|
|
when {
|
|
|
|
app.profile == null -> {
|
|
|
|
if (intentProfileId == -1)
|
|
|
|
intentProfileId = app.appSharedPrefs.getInt("current_profile_id", 1)
|
2019-11-23 12:37:00 -06:00
|
|
|
loadProfile(intentProfileId, intentTargetId, extras)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
intentProfileId != -1 -> {
|
2019-11-24 12:41:17 -06:00
|
|
|
if (app.profile.id != intentProfileId)
|
|
|
|
loadProfile(intentProfileId, intentTargetId, extras)
|
|
|
|
else
|
|
|
|
loadTarget(intentTargetId, extras)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
intentTargetId != -1 -> {
|
|
|
|
drawer.currentProfile = app.profile.id
|
2019-11-11 16:59:45 -06:00
|
|
|
if (navTargetId != intentTargetId)
|
|
|
|
loadTarget(intentTargetId, extras)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
else -> {
|
|
|
|
drawer.currentProfile = app.profile.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun recreate() {
|
|
|
|
recreate(navTargetId)
|
|
|
|
}
|
|
|
|
fun recreate(targetId: Int) {
|
|
|
|
recreate(targetId, null)
|
|
|
|
}
|
|
|
|
fun recreate(targetId: Int? = null, arguments: Bundle? = null) {
|
|
|
|
val intent = Intent(this, MainActivity::class.java)
|
|
|
|
if (arguments != null)
|
|
|
|
intent.putExtras(arguments)
|
|
|
|
if (targetId != null) {
|
|
|
|
intent.putExtra("fragmentId", targetId)
|
|
|
|
}
|
|
|
|
finish()
|
|
|
|
overridePendingTransition(R.anim.fade_in, R.anim.fade_out)
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onResume() {
|
|
|
|
val filter = IntentFilter()
|
|
|
|
filter.addAction(Intent.ACTION_MAIN)
|
|
|
|
registerReceiver(intentReceiver, filter)
|
|
|
|
super.onResume()
|
|
|
|
}
|
|
|
|
override fun onPause() {
|
|
|
|
unregisterReceiver(intentReceiver)
|
|
|
|
super.onPause()
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onSaveInstanceState(outState: Bundle) {
|
|
|
|
super.onSaveInstanceState(outState)
|
|
|
|
outState.putInt("fragmentId", navTargetId)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onNewIntent(intent: Intent?) {
|
|
|
|
super.onNewIntent(intent)
|
|
|
|
handleIntent(intent?.extras)
|
|
|
|
}
|
|
|
|
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data)
|
|
|
|
if (requestCode == REQUEST_LOGIN_ACTIVITY) {
|
|
|
|
if (resultCode == Activity.RESULT_CANCELED && false) {
|
|
|
|
finish()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!app.appConfig.loginFinished)
|
|
|
|
finish()
|
|
|
|
else {
|
|
|
|
handleIntent(data?.extras)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* _ _ _ _ _
|
|
|
|
| | | | | | | | | |
|
|
|
|
| | ___ __ _ __| | _ __ ___ ___| |_| |__ ___ __| |___
|
|
|
|
| | / _ \ / _` |/ _` | | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
|
|
|
|
| |___| (_) | (_| | (_| | | | | | | | __/ |_| | | | (_) | (_| \__ \
|
|
|
|
|______\___/ \__,_|\__,_| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|__*/
|
|
|
|
val navOptions = NavOptions.Builder()
|
|
|
|
.setEnterAnim(R.anim.task_open_enter) // new fragment enter
|
|
|
|
.setExitAnim(R.anim.task_open_exit) // old fragment exit
|
|
|
|
.setPopEnterAnim(R.anim.task_close_enter) // old fragment enter back
|
|
|
|
.setPopExitAnim(R.anim.task_close_exit) // new fragment exit
|
|
|
|
.build()
|
|
|
|
|
|
|
|
fun loadProfile(id: Int) = loadProfile(id, navTargetId)
|
|
|
|
fun loadProfile(id: Int, arguments: Bundle?) = loadProfile(id, navTargetId, arguments)
|
|
|
|
fun loadProfile(id: Int, drawerSelection: Int, arguments: Bundle? = null) {
|
2019-11-07 10:50:12 -06:00
|
|
|
//d("NavDebug", "loadProfile(id = $id, drawerSelection = $drawerSelection)")
|
2019-09-18 15:29:09 -05:00
|
|
|
if (app.profile != null && App.profileId == id) {
|
|
|
|
drawer.currentProfile = app.profile.id
|
|
|
|
loadTarget(drawerSelection, arguments)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
AsyncTask.execute {
|
|
|
|
app.profileLoadById(id)
|
|
|
|
|
|
|
|
this.runOnUiThread {
|
|
|
|
if (app.profile == null) {
|
|
|
|
LoginActivity.firstCompleted = false
|
|
|
|
if (app.appConfig.loginFinished) {
|
|
|
|
// this shouldn't run
|
|
|
|
profileListEmptyListener()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
setDrawerItems()
|
|
|
|
drawer.currentProfile = app.profile.id
|
|
|
|
loadTarget(drawerSelection, arguments)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun loadTarget(id: Int, arguments: Bundle? = null) {
|
|
|
|
var loadId = id
|
|
|
|
if (loadId == -1) {
|
|
|
|
loadId = DRAWER_ITEM_HOME
|
|
|
|
}
|
|
|
|
val target = navTargetList
|
|
|
|
.singleOrNull { it.id == loadId }
|
|
|
|
if (target == null) {
|
|
|
|
Toast.makeText(this, getString(R.string.error_invalid_fragment, id), Toast.LENGTH_LONG).show()
|
|
|
|
loadTarget(navTargetList.first(), arguments)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
loadTarget(target, arguments)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private fun loadTarget(target: NavTarget, arguments: Bundle? = null) {
|
2019-11-03 14:26:48 -06:00
|
|
|
d("NavDebug", "loadItem(id = ${target.id})")
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
bottomSheet.close()
|
|
|
|
bottomSheet.removeAllContextual()
|
|
|
|
bottomSheet.toggleGroupEnabled = false
|
|
|
|
bottomSheet.onCloseListener = null
|
|
|
|
drawer.close()
|
|
|
|
drawer.setSelection(target.id, fireOnClick = false)
|
|
|
|
navView.toolbar.setTitle(target.title ?: target.name)
|
2019-09-27 16:27:15 -05:00
|
|
|
navView.bottomBar.fabEnable = false
|
2019-09-29 05:44:20 -05:00
|
|
|
navView.bottomBar.fabExtended = false
|
2019-09-27 16:27:15 -05:00
|
|
|
navView.bottomBar.setFabOnClickListener(null)
|
2019-09-18 15:29:09 -05:00
|
|
|
|
2019-11-03 14:26:48 -06:00
|
|
|
d("NavDebug", "Navigating from ${navTarget.fragmentClass?.java?.simpleName} to ${target.fragmentClass?.java?.simpleName}")
|
2019-09-18 15:29:09 -05:00
|
|
|
|
|
|
|
val fragment = target.fragmentClass?.java?.newInstance() ?: return
|
|
|
|
fragment.arguments = arguments
|
|
|
|
val transaction = fragmentManager.beginTransaction()
|
|
|
|
|
|
|
|
if (navTarget == target) {
|
|
|
|
// just reload the current target
|
|
|
|
transaction.setCustomAnimations(
|
|
|
|
R.anim.fade_in,
|
|
|
|
R.anim.fade_out
|
|
|
|
)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
navBackStack.lastIndexOf(target).let {
|
|
|
|
if (it == -1)
|
|
|
|
return@let target
|
|
|
|
// pop the back stack up until that target
|
|
|
|
transaction.setCustomAnimations(
|
|
|
|
R.anim.task_close_enter,
|
|
|
|
R.anim.task_close_exit
|
|
|
|
)
|
|
|
|
|
|
|
|
// navigating grades_add -> grades
|
|
|
|
// navTarget == grades_add
|
|
|
|
// navBackStack = [home, grades, grades_editor]
|
|
|
|
// it == 1
|
|
|
|
//
|
|
|
|
// navTarget = target
|
|
|
|
// remove 1
|
|
|
|
// remove 2
|
|
|
|
val popCount = navBackStack.size - it
|
|
|
|
for (i in 0 until popCount) {
|
|
|
|
navBackStack.removeAt(navBackStack.lastIndex)
|
|
|
|
}
|
|
|
|
navTarget = target
|
|
|
|
|
|
|
|
return@let null
|
|
|
|
}?.let {
|
|
|
|
// target is neither current nor in the back stack
|
|
|
|
// so navigate to it
|
|
|
|
transaction.setCustomAnimations(
|
|
|
|
R.anim.task_open_enter,
|
|
|
|
R.anim.task_open_exit
|
|
|
|
)
|
|
|
|
navBackStack.add(navTarget)
|
|
|
|
navTarget = target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (navTarget.popToHome) {
|
|
|
|
// if the current has popToHome, let only home be in the back stack
|
|
|
|
// probably `if (navTarget.popToHome)` in popBackStack() is not needed now
|
|
|
|
val popCount = navBackStack.size - 1
|
|
|
|
for (i in 0 until popCount) {
|
|
|
|
navBackStack.removeAt(navBackStack.lastIndex)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-03 14:26:48 -06:00
|
|
|
d("NavDebug", "Current fragment ${navTarget.fragmentClass?.java?.simpleName}, pop to home ${navTarget.popToHome}, back stack:")
|
2019-09-18 15:29:09 -05:00
|
|
|
navBackStack.forEachIndexed { index, target2 ->
|
2019-11-03 14:26:48 -06:00
|
|
|
d("NavDebug", " - $index: ${target2.fragmentClass?.java?.simpleName}")
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
transaction.replace(R.id.fragment, fragment)
|
|
|
|
transaction.commitAllowingStateLoss()
|
|
|
|
|
|
|
|
// TASK DESCRIPTION
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
val bm = BitmapFactory.decodeResource(resources, R.mipmap.ic_launcher)
|
|
|
|
val taskDesc = ActivityManager.TaskDescription(
|
|
|
|
if (target.id == HOME_ID) getString(R.string.app_name) else getString(R.string.app_task_format, getString(target.name)),
|
|
|
|
bm,
|
|
|
|
getColorFromAttr(this, R.attr.colorSurface)
|
|
|
|
)
|
|
|
|
setTaskDescription(taskDesc)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
fun reloadTarget() = loadTarget(navTarget)
|
|
|
|
|
|
|
|
private fun popBackStack(): Boolean {
|
|
|
|
if (navBackStack.size == 0) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// TODO back stack argument support
|
|
|
|
if (navTarget.popToHome) {
|
|
|
|
loadTarget(HOME_ID)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
loadTarget(navBackStack.last())
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
fun navigateUp() {
|
|
|
|
if (!popBackStack()) {
|
|
|
|
super.onBackPressed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the NavLib's menu button ripple to gain user attention
|
|
|
|
* that something has changed in the bottom sheet.
|
|
|
|
*/
|
|
|
|
fun gainAttention() {
|
|
|
|
b.navView.postDelayed({
|
|
|
|
navView.gainAttentionOnBottomBar()
|
2019-09-27 16:27:15 -05:00
|
|
|
}, 2000)
|
|
|
|
}
|
|
|
|
|
2019-09-29 05:44:20 -05:00
|
|
|
fun gainAttentionFAB() {
|
|
|
|
navView.bottomBar.fabExtended = false
|
|
|
|
|
|
|
|
b.navView.postDelayed({
|
|
|
|
navView.bottomBar.fabExtended = true
|
|
|
|
}, 1000)
|
|
|
|
|
2019-09-27 16:27:15 -05:00
|
|
|
b.navView.postDelayed({
|
|
|
|
navView.bottomBar.fabExtended = false
|
2019-09-29 05:44:20 -05:00
|
|
|
}, 3000)
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* _____ _ _
|
|
|
|
| __ \ (_) |
|
|
|
|
| | | |_ __ __ ___ _____ _ __ _| |_ ___ _ __ ___ ___
|
|
|
|
| | | | '__/ _` \ \ /\ / / _ \ '__| | | __/ _ \ '_ ` _ \/ __|
|
|
|
|
| |__| | | | (_| |\ V V / __/ | | | || __/ | | | | \__ \
|
|
|
|
|_____/|_| \__,_| \_/\_/ \___|_| |_|\__\___|_| |_| |_|__*/
|
|
|
|
private fun createDrawerItem(target: NavTarget, level: Int = 1): IDrawerItem<*> {
|
|
|
|
val item = DrawerPrimaryItem()
|
|
|
|
.withIdentifier(target.id.toLong())
|
|
|
|
.withName(target.name)
|
2019-11-26 14:55:04 -06:00
|
|
|
.withHiddenInMiniDrawer(!app.config.ui.miniMenuButtons.contains(target.id))
|
2019-09-18 15:29:09 -05:00
|
|
|
.also { if (target.description != null) it.withDescription(target.description!!) }
|
|
|
|
.also { if (target.icon != null) it.withIcon(target.icon!!) }
|
|
|
|
.also { if (target.title != null) it.withAppTitle(getString(target.title!!)) }
|
|
|
|
.also { if (target.badgeTypeId != null) it.withBadgeStyle(drawer.badgeStyle)}
|
|
|
|
|
|
|
|
if (target.badgeTypeId != null)
|
|
|
|
drawer.addUnreadCounterType(target.badgeTypeId!!, target.id)
|
|
|
|
// TODO sub items
|
|
|
|
/*
|
|
|
|
if (target.subItems != null) {
|
|
|
|
for (subItem in target.subItems!!) {
|
|
|
|
item.subItems += createDrawerItem(subItem, level+1)
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
|
|
|
return item
|
|
|
|
}
|
|
|
|
|
|
|
|
fun setDrawerItems() {
|
2019-11-03 14:26:48 -06:00
|
|
|
d("NavDebug", "setDrawerItems() app.profile = ${app.profile ?: "null"}")
|
2019-09-18 15:29:09 -05:00
|
|
|
val drawerItems = arrayListOf<IDrawerItem<*>>()
|
|
|
|
val drawerProfiles = arrayListOf<ProfileSettingDrawerItem>()
|
|
|
|
|
|
|
|
val supportedFragments = if (app.profile == null) arrayListOf<Int>()
|
|
|
|
else app.profile.supportedFragments
|
|
|
|
|
|
|
|
targetPopToHomeList.clear()
|
|
|
|
|
|
|
|
var separatorAdded = false
|
|
|
|
|
|
|
|
for (target in navTargetList) {
|
|
|
|
if (target.isInDrawer && target.isBelowSeparator && !separatorAdded) {
|
|
|
|
separatorAdded = true
|
|
|
|
drawerItems += DividerDrawerItem()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target.popToHome)
|
|
|
|
targetPopToHomeList += target.id
|
|
|
|
|
|
|
|
if (target.isInDrawer && (target.isStatic || supportedFragments.isEmpty() || supportedFragments.contains(target.id))) {
|
|
|
|
drawerItems += createDrawerItem(target)
|
|
|
|
if (target.id == 1) {
|
|
|
|
targetHomeId = target.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target.isInProfileList) {
|
|
|
|
drawerProfiles += ProfileSettingDrawerItem()
|
|
|
|
.withIdentifier(target.id.toLong())
|
|
|
|
.withName(target.name)
|
|
|
|
.also { if (target.description != null) it.withDescription(target.description!!) }
|
|
|
|
.also { if (target.icon != null) it.withIcon(target.icon!!) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// seems that this cannot be open, because the itemAdapter has Profile items
|
|
|
|
// instead of normal Drawer items...
|
|
|
|
drawer.profileSelectionClose()
|
|
|
|
|
|
|
|
drawer.setItems(*drawerItems.toTypedArray())
|
|
|
|
drawer.removeAllProfileSettings()
|
|
|
|
drawer.addProfileSettings(*drawerProfiles.toTypedArray())
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun showProfileContextMenu(profile: IProfile<*>, view: View) {
|
|
|
|
val profileId = profile.identifier.toInt()
|
|
|
|
val popupMenu = PopupMenu(this, view)
|
|
|
|
popupMenu.menu.add(0, 1, 1, R.string.profile_menu_open_settings)
|
|
|
|
popupMenu.menu.add(0, 2, 2, R.string.profile_menu_remove)
|
|
|
|
popupMenu.setOnMenuItemClickListener { item ->
|
|
|
|
if (item.itemId == 1) {
|
|
|
|
if (profileId != app.profile.id) {
|
|
|
|
loadProfile(profileId, DRAWER_ITEM_SETTINGS)
|
|
|
|
return@setOnMenuItemClickListener true
|
|
|
|
}
|
|
|
|
loadTarget(DRAWER_ITEM_SETTINGS, null)
|
|
|
|
} else if (item.itemId == 2) {
|
2019-11-13 02:12:56 -06:00
|
|
|
ProfileRemoveDialog(this, profileId, profile.name?.getText(this)?.toString() ?: "?")
|
2019-09-18 15:29:09 -05:00
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
popupMenu.show()
|
|
|
|
}
|
|
|
|
|
|
|
|
private val targetPopToHomeList = arrayListOf<Int>()
|
|
|
|
private var targetHomeId: Int = -1
|
|
|
|
override fun onBackPressed() {
|
|
|
|
if (!b.navView.onBackPressed()) {
|
|
|
|
|
|
|
|
navigateUp()
|
|
|
|
|
|
|
|
/*val currentDestinationId = navController.currentDestination?.id
|
|
|
|
|
|
|
|
if (if (targetHomeId != -1 && targetPopToHomeList.contains(navController.currentDestination?.id)) {
|
|
|
|
if (!navController.popBackStack(targetHomeId, false)) {
|
|
|
|
navController.navigateUp()
|
|
|
|
}
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
navController.navigateUp()
|
|
|
|
}) {
|
|
|
|
val currentId = navController.currentDestination?.id ?: -1
|
|
|
|
val drawerSelection = navTargetList
|
|
|
|
.singleOrNull {
|
|
|
|
it.navGraphId == currentId
|
|
|
|
}?.also {
|
|
|
|
navView.toolbar.setTitle(it.title ?: it.name)
|
|
|
|
}?.id ?: -1
|
|
|
|
drawer.setSelection(drawerSelection, false)
|
|
|
|
} else {
|
|
|
|
super.onBackPressed()
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|