SubwayTooter-Android-App/app/src/main/java/jp/juggler/subwaytooter/SideMenuAdapter.kt

369 lines
9.1 KiB
Kotlin
Raw Normal View History

2019-08-23 14:50:04 +02:00
package jp.juggler.subwaytooter
import android.content.Intent
import android.graphics.drawable.StateListDrawable
import android.view.View
import android.view.ViewGroup
import android.widget.BaseAdapter
import android.widget.FrameLayout
import android.widget.ListView
import android.widget.TextView
import androidx.core.view.GravityCompat
import androidx.drawerlayout.widget.DrawerLayout
import com.google.android.material.navigation.NavigationView
import jp.juggler.subwaytooter.action.Action_Account
import jp.juggler.subwaytooter.action.Action_App
import jp.juggler.subwaytooter.table.SavedAccount
import jp.juggler.util.createColoredDrawable
import jp.juggler.util.getAttributeColor
import org.jetbrains.anko.backgroundColor
class SideMenuAdapter(
val activity : ActMain,
navigationView : NavigationView,
private val drawer : DrawerLayout
) : BaseAdapter() {
private class Item(
val title : Int = 0,
val icon : Int = 0,
val action : ActMain.() -> Unit = {}
)
2019-08-23 15:06:35 +02:00
2019-08-23 14:50:04 +02:00
/*
no title => section divider
else no icon => section header with title
else => menu item with icon and title
*/
private val list = arrayOf(
Item(title = R.string.account),
Item(title = R.string.account_add, icon = R.drawable.ic_account_add) {
Action_Account.add(this)
},
Item(icon = R.drawable.ic_settings, title = R.string.account_setting) {
Action_Account.setting(this)
},
Item(),
Item(title = R.string.column),
Item(icon = R.drawable.ic_list_numbered, title = R.string.column_list) {
Action_App.columnList(this)
},
Item(icon = R.drawable.ic_close, title = R.string.close_all_columns) {
closeColumnAll()
},
Item(icon = R.drawable.ic_home, title = R.string.home) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.HOME
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_announcement, title = R.string.notifications) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.NOTIFICATIONS
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_mail, title = R.string.direct_messages) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.DIRECT_MESSAGES
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_share, title = R.string.misskey_hybrid_timeline_long) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.MISSKEY_HYBRID
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_run, title = R.string.local_timeline) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.LOCAL
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_bike, title = R.string.federate_timeline) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.FEDERATE
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_list_list, title = R.string.lists) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.LIST_LIST
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_search, title = R.string.search) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.SEARCH
, args = arrayOf("", false)
)
},
Item(icon = R.drawable.ic_hashtag, title = R.string.trend_tag) {
Action_Account.timeline(
this,
defaultInsertPosition,
ColumnType.TREND_TAG
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_star, title = R.string.favourites) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.FAVOURITES
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_account_box, title = R.string.profile) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.PROFILE
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_follow_wait, title = R.string.follow_requests) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.FOLLOW_REQUESTS
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_follow_plus, title = R.string.follow_suggestion) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.FOLLOW_SUGGESTION
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_follow_plus, title = R.string.endorse_set) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.ENDORSEMENT
)
},
Item(icon = R.drawable.ic_follow_plus, title = R.string.profile_directory) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.PROFILE_DIRECTORY
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_volume_off, title = R.string.muted_users) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.MUTES
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_block, title = R.string.blocked_users) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.BLOCKS
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_volume_off, title = R.string.keyword_filters) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.KEYWORD_FILTER
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_cloud_off, title = R.string.blocked_domains) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.DOMAIN_BLOCKS
2019-08-23 14:50:04 +02:00
)
},
Item(icon = R.drawable.ic_timer, title = R.string.scheduled_status_list) {
Action_Account.timeline(
this
, defaultInsertPosition
, ColumnType.SCHEDULED_STATUS
2019-08-23 14:50:04 +02:00
)
},
Item(),
Item(title = R.string.toot_search),
Item(icon = R.drawable.ic_search, title = R.string.tootsearch) {
addColumn(
defaultInsertPosition
, SavedAccount.na
, ColumnType.SEARCH_TS
, ""
)
},
Item(),
Item(title = R.string.setting),
Item(icon = R.drawable.ic_settings, title = R.string.app_setting) {
ActAppSetting.open(this, ActMain.REQUEST_CODE_APP_SETTING)
},
Item(icon = R.drawable.ic_settings, title = R.string.highlight_word) {
startActivity(Intent(this, ActHighlightWordList::class.java))
},
Item(icon = R.drawable.ic_volume_off, title = R.string.muted_app) {
startActivity(Intent(this, ActMutedApp::class.java))
},
Item(icon = R.drawable.ic_volume_off, title = R.string.muted_word) {
startActivity(Intent(this, ActMutedWord::class.java))
},
Item(icon = R.drawable.ic_volume_off, title = R.string.fav_muted_user) {
startActivity(Intent(this, ActFavMute::class.java))
},
Item(
icon = R.drawable.ic_volume_off,
title = R.string.muted_users_from_pseudo_account
) {
startActivity(Intent(this, ActMutedPseudoAccount::class.java))
},
Item(icon = R.drawable.ic_info, title = R.string.app_about) {
startActivityForResult(
Intent(this, ActAbout::class.java),
ActMain.REQUEST_APP_ABOUT
)
},
Item(icon = R.drawable.ic_info, title = R.string.oss_license) {
startActivity(Intent(this, ActOSSLicense::class.java))
},
Item(icon = R.drawable.ic_hot_tub, title = R.string.app_exit) {
finish()
}
)
private val iconColor = getAttributeColor(activity, R.attr.colorTimeSmall)
2019-08-23 15:06:35 +02:00
override fun getCount() : Int = list.size
override fun getItem(position : Int) : Any = list[position]
2019-08-23 14:50:04 +02:00
override fun getItemId(position : Int) : Long = 0L
override fun getViewTypeCount() : Int = 3
2019-08-23 15:06:35 +02:00
override fun getItemViewType(position : Int) : Int =
list[position].run {
when {
title == 0 -> 0
icon == 0 -> 1
else -> 2
}
2019-08-23 14:50:04 +02:00
}
private inline fun <reified T : View> viewOrInflate(
view : View?,
parent : ViewGroup?,
resId : Int
2019-08-23 15:06:35 +02:00
) : T =
(view ?: activity.layoutInflater.inflate(resId, parent, false))
as? T ?: error("invalid view type! ${T::class.java.simpleName}")
2019-08-23 14:50:04 +02:00
2019-08-23 15:06:35 +02:00
override fun getView(position : Int, view : View?, parent : ViewGroup?) : View =
list[position].run {
when {
title == 0 -> viewOrInflate(view, parent, R.layout.lv_sidemenu_separator)
icon == 0 -> viewOrInflate<TextView>(view, parent, R.layout.lv_sidemenu_group)
.apply {
text = activity.getString(title)
}
else -> viewOrInflate<TextView>(view, parent, R.layout.lv_sidemenu_item)
.apply {
isAllCaps = false
text = activity.getString(title)
val drawable = createColoredDrawable(activity, icon, iconColor, 1f)
setCompoundDrawablesRelativeWithIntrinsicBounds(drawable, null, null, null)
setOnClickListener {
action(activity)
drawer.closeDrawer(GravityCompat.START)
}
2019-08-23 14:50:04 +02:00
}
2019-08-23 15:06:35 +02:00
}
2019-08-23 14:50:04 +02:00
}
init {
2019-08-23 15:06:35 +02:00
ListView(activity).apply {
2019-08-23 14:50:04 +02:00
adapter = this@SideMenuAdapter
layoutParams = FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT
)
backgroundColor = getAttributeColor(activity, R.attr.colorWindowBackground)
selector = StateListDrawable()
divider = null
dividerHeight = 0
val pad_tb = (activity.density * 12f + 0.5f).toInt()
setPadding(0, pad_tb, 0, pad_tb)
clipToPadding = false
scrollBarStyle = ListView.SCROLLBARS_OUTSIDE_OVERLAY
2019-08-23 15:06:35 +02:00
navigationView.addView(this)
}
2019-08-23 14:50:04 +02:00
}
}