forked from github/szkolny
[Messages/Compose] Add dropdown icon to show all recipient categories. Add before-send confirmation dialog.
This commit is contained in:
parent
c8c1fe5367
commit
82b232d0e5
@ -17,6 +17,7 @@ import android.text.style.StyleSpan
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.AutoCompleteTextView
|
||||
import android.widget.Toast
|
||||
import androidx.core.text.HtmlCompat
|
||||
import androidx.core.widget.addTextChangedListener
|
||||
@ -72,8 +73,6 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
context ?: return null
|
||||
app = activity.application as App
|
||||
context!!.theme.applyStyle(Themes.appTheme, true)
|
||||
if (app.profile == null)
|
||||
return inflater.inflate(R.layout.fragment_loading, container, false)
|
||||
// activity, context and profile is valid
|
||||
b = MessagesComposeFragmentBinding.inflate(inflater)
|
||||
return b.root
|
||||
@ -84,7 +83,7 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
}
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
// TODO check if app, activity, b can be null
|
||||
if (app.profile == null || !isAdded)
|
||||
if (!isAdded)
|
||||
return
|
||||
|
||||
EventBus.getDefault().register(this)
|
||||
@ -190,17 +189,40 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
override fun createChip(context: Context, text: CharSequence, data: Any?): ChipSpan? {
|
||||
if (data == null || data !is Teacher)
|
||||
return null
|
||||
if (data.id in -24L..0L) {
|
||||
if (data.id !in -24L..0L) {
|
||||
b.recipients.allChips.forEach {
|
||||
if (it.data == data) {
|
||||
Toast.makeText(activity, R.string.messages_compose_recipient_exists, Toast.LENGTH_SHORT).show()
|
||||
return null
|
||||
}
|
||||
}
|
||||
val chipSpan = ChipSpan(context, data.fullName, BitmapDrawable(context.resources, data.image), data)
|
||||
chipSpan.setIconBackgroundColor(Colors.stringToMaterialColor(data.fullName))
|
||||
return chipSpan
|
||||
}
|
||||
|
||||
val type = (data.id * -1).toInt()
|
||||
|
||||
val textColorPrimary = android.R.attr.textColorPrimary.resolveAttr(activity)
|
||||
val textColorSecondary = android.R.attr.textColorSecondary.resolveAttr(activity)
|
||||
|
||||
val sortByCategory = type in listOf(
|
||||
Teacher.TYPE_PARENTS_COUNCIL,
|
||||
Teacher.TYPE_EDUCATOR,
|
||||
Teacher.TYPE_STUDENT
|
||||
)
|
||||
val teachers = if (sortByCategory)
|
||||
teachers.sortedBy { it.typeDescription }
|
||||
else
|
||||
teachers
|
||||
|
||||
val category = mutableListOf<Teacher>()
|
||||
val categoryNames = mutableListOf<CharSequence>()
|
||||
val categoryCheckedItems = mutableListOf<Boolean>()
|
||||
teachers.forEach { teacher ->
|
||||
if (teacher.isType(type)) {
|
||||
if (!teacher.isType(type))
|
||||
return@forEach
|
||||
|
||||
category += teacher
|
||||
val name = teacher.fullName
|
||||
val description = when (type) {
|
||||
@ -228,9 +250,10 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
AbsoluteSizeSpan(14.dp)
|
||||
)
|
||||
).concat("\n")
|
||||
|
||||
// check the teacher if already added as a recipient
|
||||
categoryCheckedItems += b.recipients.allChips.firstOrNull { it.data == teacher } != null
|
||||
}
|
||||
}
|
||||
|
||||
MaterialAlertDialogBuilder(activity)
|
||||
.setTitle("Dodaj odbiorców - "+ Teacher.typeName(activity, type))
|
||||
@ -255,16 +278,6 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
.show()
|
||||
return null
|
||||
}
|
||||
b.recipients.allChips.forEach {
|
||||
if (it.data == data) {
|
||||
Toast.makeText(activity, R.string.messages_compose_recipient_exists, Toast.LENGTH_SHORT).show()
|
||||
return null
|
||||
}
|
||||
}
|
||||
val chipSpan = ChipSpan(context, data.fullName, BitmapDrawable(context.resources, data.image), data)
|
||||
chipSpan.setIconBackgroundColor(Colors.stringToMaterialColor(data.fullName))
|
||||
return chipSpan
|
||||
}
|
||||
|
||||
override fun configureChip(chip: ChipSpan, chipConfiguration: ChipConfiguration) {
|
||||
super.configureChip(chip, chipConfiguration)
|
||||
@ -276,23 +289,33 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
b.recipients.setIllegalCharacterIdentifier { c ->
|
||||
c.toString().matches("[\\n;:_ ]".toRegex())
|
||||
}
|
||||
/*b.recipients.setOnChipClickListener { chip, _ ->
|
||||
Toast.makeText(app, "onChipClick: " + chip.text, Toast.LENGTH_SHORT).show()
|
||||
}*/
|
||||
b.recipients.setOnChipRemoveListener { chip ->
|
||||
b.recipients.setOnChipRemoveListener { _ ->
|
||||
b.recipients.setSelection(b.recipients.text.length)
|
||||
}
|
||||
|
||||
b.recipients.addTextChangedListener( beforeTextChanged = { _, _, _, _ ->
|
||||
b.recipients.ignoreThreshold = false
|
||||
})
|
||||
b.recipients.onDismissListener = AutoCompleteTextView.OnDismissListener {
|
||||
b.recipients.ignoreThreshold = false
|
||||
}
|
||||
b.recipientsLayout.setEndIconOnClickListener {
|
||||
b.recipients.error = null
|
||||
b.recipients.ignoreThreshold = true
|
||||
b.recipients.showDropDown()
|
||||
val adapter = b.recipients.adapter ?: return@setEndIconOnClickListener
|
||||
if (adapter is MessagesComposeSuggestionAdapter)
|
||||
adapter.filter.filter(null)
|
||||
}
|
||||
|
||||
b.recipientsLayout.isEnabled = false
|
||||
b.subjectLayout.isEnabled = false
|
||||
b.textLayout.isEnabled = false
|
||||
|
||||
activity.navView.apply {
|
||||
bottomBar.apply {
|
||||
activity.navView.bottomBar.apply {
|
||||
fabEnable = true
|
||||
fabExtendedText = getString(R.string.messages_compose_send)
|
||||
fabIcon = CommunityMaterial.Icon2.cmd_send
|
||||
}
|
||||
|
||||
setFabOnClickListener(View.OnClickListener {
|
||||
sendMessage()
|
||||
@ -438,8 +461,15 @@ class MessagesComposeFragment : Fragment(), CoroutineScope {
|
||||
|
||||
activity.bottomSheet.hideKeyboard()
|
||||
|
||||
MaterialAlertDialogBuilder(activity)
|
||||
.setTitle(R.string.messages_compose_confirm_title)
|
||||
.setMessage(R.string.messages_compose_confirm_text)
|
||||
.setPositiveButton(R.string.send) { _, _ ->
|
||||
EdziennikTask.messageSend(App.profileId, recipients, subject.trim(), textHtml.trim()).enqueue(activity)
|
||||
}
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.show()
|
||||
}
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN, sticky = true)
|
||||
fun onRecipientListGetEvent(event: RecipientListGetEvent) {
|
||||
|
@ -71,7 +71,12 @@ class MessagesComposeSuggestionAdapter(
|
||||
override fun performFiltering(prefix: CharSequence?): FilterResults {
|
||||
val results = FilterResults()
|
||||
|
||||
if (prefix.isNullOrEmpty()) {
|
||||
if (prefix == null) {
|
||||
originalList.filter { it.id in -24L..0L }.let {
|
||||
results.values = it
|
||||
results.count = it.size
|
||||
}
|
||||
} else if (prefix.isEmpty()) {
|
||||
results.values = originalList
|
||||
results.count = originalList.size
|
||||
} else {
|
||||
|
@ -21,7 +21,9 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:boxBackgroundColor="@android:color/transparent"
|
||||
app:boxBackgroundMode="filled">
|
||||
app:boxBackgroundMode="filled"
|
||||
app:endIconMode="custom"
|
||||
app:endIconDrawable="@drawable/dropdown_arrow">
|
||||
|
||||
<com.hootsuite.nachos.NachoTextView
|
||||
android:id="@+id/recipients"
|
||||
|
@ -1174,4 +1174,6 @@
|
||||
<string name="other">Inne</string>
|
||||
<string name="menu_grades_config">Ustawienia ocen</string>
|
||||
<string name="timetable_generate_show_teachers_names">Pokaż imiona i nazwiska nauczycieli</string>
|
||||
<string name="messages_compose_confirm_title">Potwierdź wysłanie wiadomości</string>
|
||||
<string name="messages_compose_confirm_text">Czy na pewno chcesz wysłać wiadomość do wybranych odbiorców?</string>
|
||||
</resources>
|
||||
|
@ -1078,6 +1078,22 @@ public class NachoTextView extends MultiAutoCompleteTextView implements TextWatc
|
||||
return chipAndTokenValues;
|
||||
}
|
||||
|
||||
public boolean ignoreThreshold = false;
|
||||
|
||||
@Override
|
||||
public boolean enoughToFilter() {
|
||||
return ignoreThreshold || super.enoughToFilter();
|
||||
}
|
||||
|
||||
public OnDismissListener onDismissListener = null;
|
||||
|
||||
@Override
|
||||
public void dismissDropDown() {
|
||||
if (onDismissListener != null)
|
||||
onDismissListener.onDismiss();
|
||||
super.dismissDropDown();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user