147 lines
No EOL
6 KiB
Kotlin
147 lines
No EOL
6 KiB
Kotlin
package ani.dantotsu.profile
|
|
|
|
import android.annotation.SuppressLint
|
|
import android.content.Intent
|
|
import android.os.Bundle
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
import androidx.core.content.ContextCompat
|
|
import androidx.core.view.updateLayoutParams
|
|
import androidx.fragment.app.Fragment
|
|
import androidx.fragment.app.FragmentManager
|
|
import androidx.lifecycle.Lifecycle
|
|
import androidx.lifecycle.lifecycleScope
|
|
import androidx.viewpager2.adapter.FragmentStateAdapter
|
|
import ani.dantotsu.R
|
|
import ani.dantotsu.connections.anilist.Anilist
|
|
import ani.dantotsu.connections.anilist.api.Query
|
|
import ani.dantotsu.databinding.ActivityProfileBinding
|
|
import ani.dantotsu.initActivity
|
|
import ani.dantotsu.loadImage
|
|
import ani.dantotsu.media.Media
|
|
import ani.dantotsu.media.MediaDetailsActivity
|
|
import ani.dantotsu.media.user.ListActivity
|
|
import ani.dantotsu.navBarHeight
|
|
import ani.dantotsu.others.ImageViewDialog
|
|
import ani.dantotsu.settings.saving.PrefManager
|
|
import ani.dantotsu.settings.saving.PrefName
|
|
import ani.dantotsu.snackString
|
|
import ani.dantotsu.statusBarHeight
|
|
import ani.dantotsu.themes.ThemeManager
|
|
import kotlinx.coroutines.Dispatchers
|
|
import kotlinx.coroutines.launch
|
|
import kotlinx.coroutines.withContext
|
|
import nl.joery.animatedbottombar.AnimatedBottomBar
|
|
|
|
|
|
class ProfileActivity : AppCompatActivity(){
|
|
private lateinit var binding: ActivityProfileBinding
|
|
private var selected: Int = 0
|
|
private lateinit var navBar: AnimatedBottomBar
|
|
@SuppressLint("SetTextI18n")
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
ThemeManager(this).applyTheme()
|
|
initActivity(this)
|
|
binding = ActivityProfileBinding.inflate(layoutInflater)
|
|
setContentView(binding.root)
|
|
navBar = binding.profileNavBar
|
|
navBar.updateLayoutParams<ViewGroup.MarginLayoutParams> { bottomMargin = navBarHeight }
|
|
val profileTab = navBar.createTab(R.drawable.ic_round_person_24, "Profile")
|
|
val statsTab = navBar.createTab(R.drawable.ic_stats_24, "Stats")
|
|
navBar.addTab(profileTab)
|
|
navBar.addTab(statsTab)
|
|
navBar.visibility = View.GONE
|
|
binding.mediaViewPager.isUserInputEnabled = false
|
|
lifecycleScope.launch(Dispatchers.IO) {
|
|
val userid = intent.getIntExtra("userId", 0)
|
|
val respond = Anilist.query.getUserProfile(userid)
|
|
val user = respond?.data?.user
|
|
if (user == null) {
|
|
snackString("User not found")
|
|
finish()
|
|
return@launch
|
|
}
|
|
withContext(Dispatchers.Main) {
|
|
binding.mediaViewPager.adapter = ViewPagerAdapter(supportFragmentManager, lifecycle, user, this@ProfileActivity)
|
|
navBar.visibility = View.VISIBLE
|
|
navBar.selectTabAt(selected)
|
|
navBar.setOnTabSelectListener(object : AnimatedBottomBar.OnTabSelectListener {
|
|
override fun onTabSelected(
|
|
lastIndex: Int,
|
|
lastTab: AnimatedBottomBar.Tab?,
|
|
newIndex: Int,
|
|
newTab: AnimatedBottomBar.Tab
|
|
) {
|
|
selected = newIndex
|
|
binding.mediaViewPager.setCurrentItem(selected, true)
|
|
}
|
|
})
|
|
val userLevel = intent.getStringExtra("username")?: ""
|
|
|
|
binding.profileProgressBar.visibility = View.GONE
|
|
binding.profileTopContainer.visibility = View.VISIBLE
|
|
binding.profileBannerImage.loadImage(user.bannerImage)
|
|
binding.profileBannerImage.setOnLongClickListener {
|
|
ImageViewDialog.newInstance(
|
|
this@ProfileActivity,
|
|
"${user.name}'s [Banner]",
|
|
user.bannerImage
|
|
)
|
|
}
|
|
binding.profileUserAvatar.loadImage(user.avatar?.medium)
|
|
binding.profileUserAvatar.setOnLongClickListener {
|
|
ImageViewDialog.newInstance(
|
|
this@ProfileActivity,
|
|
"${user.name}'s [Avatar]",
|
|
user.avatar?.medium
|
|
)
|
|
}
|
|
binding.profileUserName.text = "${user.name} $userLevel"
|
|
if (!(PrefManager.getVal(PrefName.BannerAnimations) as Boolean)) binding.profileBannerImage.pause()
|
|
binding.profileBannerImage.loadImage(user.bannerImage)
|
|
binding.profileBannerImage.updateLayoutParams { height += statusBarHeight }
|
|
binding.profileBannerImage.setOnLongClickListener {
|
|
ImageViewDialog.newInstance(
|
|
this@ProfileActivity,
|
|
user.name + " [Banner]",
|
|
user.bannerImage
|
|
)
|
|
}
|
|
binding.profileUserAvatar.loadImage(user.avatar?.medium)
|
|
binding.profileUserAvatar.setOnLongClickListener {
|
|
ImageViewDialog.newInstance(
|
|
this@ProfileActivity,
|
|
user.name + " [Avatar]",
|
|
user.avatar?.medium
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
override fun onResume() {
|
|
if (this::navBar.isInitialized) {
|
|
navBar.selectTabAt(selected)
|
|
}
|
|
super.onResume()
|
|
}
|
|
|
|
private class ViewPagerAdapter(
|
|
fragmentManager: FragmentManager,
|
|
lifecycle: Lifecycle,
|
|
private val user: Query.UserProfile,
|
|
private val activity: ProfileActivity
|
|
) :
|
|
FragmentStateAdapter(fragmentManager, lifecycle) {
|
|
|
|
override fun getItemCount(): Int = 2
|
|
override fun createFragment(position: Int): Fragment = when (position) {
|
|
0 -> ProfileFragment(user, activity)
|
|
1 -> StatsFragment(user, activity)
|
|
else -> ProfileFragment(user, activity)
|
|
}
|
|
}
|
|
} |