Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsUserMuteBlockDialogFragm...

75 lines
3.1 KiB
Kotlin
Raw Normal View History

2016-12-11 08:38:33 +01:00
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.fragment
import android.app.Dialog
import android.content.DialogInterface
import android.os.Bundle
2020-01-26 08:35:15 +01:00
import androidx.appcompat.app.AlertDialog
2016-12-11 08:38:33 +01:00
import android.widget.CheckBox
2017-06-19 15:45:41 +02:00
import kotlinx.android.synthetic.main.dialog_block_mute_filter_user_confirm.*
2017-05-13 08:19:23 +02:00
import org.mariotaku.ktextension.spannable
2016-12-11 08:38:33 +01:00
import org.mariotaku.twidere.R
import org.mariotaku.twidere.constant.IntentConstants.EXTRA_USER
2017-06-19 15:45:41 +02:00
import org.mariotaku.twidere.extension.applyOnShow
2017-02-05 14:42:20 +01:00
import org.mariotaku.twidere.extension.applyTheme
2016-12-11 08:38:33 +01:00
import org.mariotaku.twidere.model.ParcelableUser
abstract class AbsUserMuteBlockDialogFragment : BaseDialogFragment(), DialogInterface.OnClickListener {
2020-01-26 08:35:15 +01:00
private val user: ParcelableUser by lazy { arguments?.getParcelable<ParcelableUser>(EXTRA_USER)!! }
2016-12-11 08:38:33 +01:00
override fun onClick(dialog: DialogInterface, which: Int) {
when (which) {
DialogInterface.BUTTON_POSITIVE -> {
2017-06-19 06:11:28 +02:00
val filterEverywhere = (dialog as Dialog).findViewById<CheckBox>(R.id.filterEverywhereToggle).isChecked
2016-12-11 08:38:33 +01:00
performUserAction(user, filterEverywhere)
}
else -> {
}
}
}
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val builder = AlertDialog.Builder(requireContext())
2016-12-11 08:38:33 +01:00
builder.setTitle(getTitle(user))
builder.setView(R.layout.dialog_block_mute_filter_user_confirm)
2016-12-26 17:26:09 +01:00
builder.setPositiveButton(getPositiveButtonTitle(user), this)
2016-12-11 08:38:33 +01:00
builder.setNegativeButton(android.R.string.cancel, null)
val dialog = builder.create()
2017-06-19 15:45:41 +02:00
dialog.applyOnShow {
// Workaround for "Invalid Android class type: UNKNOWN"
applyTheme()
2016-12-11 08:38:33 +01:00
filterEverywhereHelp.setOnClickListener {
MessageDialogFragment.show(childFragmentManager, title = getString(R.string.filter_everywhere),
message = getString(R.string.filter_everywhere_description), tag = "filter_everywhere_help")
}
2017-06-19 15:45:41 +02:00
confirmMessage.spannable = getMessage(user)
2016-12-11 08:38:33 +01:00
}
return dialog
}
abstract fun performUserAction(user: ParcelableUser, filterEverywhere: Boolean)
2016-12-26 17:26:09 +01:00
protected abstract fun getTitle(user: ParcelableUser): String
protected abstract fun getMessage(user: ParcelableUser): String
protected open fun getPositiveButtonTitle(user: ParcelableUser): String = getString(android.R.string.ok)
2016-12-11 08:38:33 +01:00
}