2022-06-09 12:45:51 +05:30
|
|
|
package com.github.libretube.dialogs
|
|
|
|
|
|
|
|
import android.app.Dialog
|
|
|
|
import android.content.Intent
|
|
|
|
import android.net.Uri
|
|
|
|
import android.os.Bundle
|
|
|
|
import androidx.fragment.app.DialogFragment
|
|
|
|
import com.github.libretube.R
|
|
|
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
|
|
|
|
|
|
|
class UpdateAvailableDialog(
|
|
|
|
private val versionTag: String,
|
|
|
|
private val updateLink: String
|
|
|
|
) : DialogFragment() {
|
|
|
|
|
|
|
|
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
|
|
|
return activity?.let {
|
|
|
|
MaterialAlertDialogBuilder(requireContext())
|
|
|
|
.setTitle(context?.getString(R.string.update_available, versionTag))
|
|
|
|
.setMessage(context?.getString(R.string.update_available_text))
|
|
|
|
.setNegativeButton(context?.getString(R.string.cancel)) { _, _ ->
|
|
|
|
dismiss()
|
|
|
|
}
|
|
|
|
.setPositiveButton(context?.getString(R.string.okay)) { _, _ ->
|
|
|
|
val uri = Uri.parse(updateLink)
|
|
|
|
val intent = Intent(Intent.ACTION_VIEW).setData(uri)
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
.create()
|
|
|
|
} ?: throw IllegalStateException("Activity cannot be null")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-18 17:54:08 +05:30
|
|
|
class NoUpdateAvailableDialog : DialogFragment() {
|
2022-06-09 12:45:51 +05:30
|
|
|
|
|
|
|
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
|
|
|
return activity?.let {
|
|
|
|
MaterialAlertDialogBuilder(requireContext())
|
|
|
|
.setTitle(context?.getString(R.string.app_uptodate))
|
|
|
|
.setMessage(context?.getString(R.string.no_update_available))
|
|
|
|
.setPositiveButton(context?.getString(R.string.okay)) { _, _ -> }
|
|
|
|
.create()
|
|
|
|
} ?: throw IllegalStateException("Activity cannot be null")
|
|
|
|
}
|
|
|
|
}
|