2017-11-06 08:32:36 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Tusky 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 Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.fragment
|
|
|
|
|
|
|
|
import android.content.Intent
|
|
|
|
import android.graphics.Color
|
|
|
|
import android.os.Bundle
|
|
|
|
import android.support.v4.app.ActivityOptionsCompat
|
|
|
|
import android.support.v4.content.ContextCompat
|
|
|
|
import android.support.v4.view.ViewCompat
|
|
|
|
import android.support.v7.widget.GridLayoutManager
|
|
|
|
import android.support.v7.widget.RecyclerView
|
|
|
|
import android.util.Log
|
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
|
|
|
import android.widget.ImageView
|
|
|
|
import com.keylesspalace.tusky.R
|
|
|
|
import com.keylesspalace.tusky.ViewMediaActivity
|
|
|
|
import com.keylesspalace.tusky.ViewVideoActivity
|
2018-03-28 04:47:00 +11:00
|
|
|
import com.keylesspalace.tusky.di.Injectable
|
2017-12-01 06:12:09 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Attachment
|
2017-11-06 08:32:36 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Status
|
|
|
|
import com.keylesspalace.tusky.network.MastodonApi
|
2018-01-20 23:39:01 +11:00
|
|
|
import com.keylesspalace.tusky.util.ThemeUtils
|
2017-11-06 08:32:36 +11:00
|
|
|
import com.keylesspalace.tusky.view.SquareImageView
|
2018-05-11 04:13:25 +10:00
|
|
|
import com.keylesspalace.tusky.viewdata.AttachmentViewData
|
2017-11-06 08:32:36 +11:00
|
|
|
import com.squareup.picasso.Picasso
|
2018-06-18 05:49:51 +10:00
|
|
|
import kotlinx.android.synthetic.main.fragment_timeline.*
|
2017-11-06 08:32:36 +11:00
|
|
|
import retrofit2.Call
|
|
|
|
import retrofit2.Callback
|
|
|
|
import retrofit2.Response
|
|
|
|
import java.util.*
|
2018-03-28 04:47:00 +11:00
|
|
|
import javax.inject.Inject
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by charlag on 26/10/2017.
|
|
|
|
*
|
|
|
|
* Fragment with multiple columns of media previews for the specified account.
|
|
|
|
*/
|
|
|
|
|
2018-03-28 04:47:00 +11:00
|
|
|
class AccountMediaFragment : BaseFragment(), Injectable {
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
companion object {
|
|
|
|
@JvmStatic
|
|
|
|
fun newInstance(accountId: String): AccountMediaFragment {
|
|
|
|
val fragment = AccountMediaFragment()
|
2017-11-10 00:35:52 +11:00
|
|
|
val args = Bundle()
|
|
|
|
args.putString(ACCOUNT_ID_ARG, accountId)
|
|
|
|
fragment.arguments = args
|
2017-11-06 08:32:36 +11:00
|
|
|
return fragment
|
|
|
|
}
|
|
|
|
|
|
|
|
private const val ACCOUNT_ID_ARG = "account_id"
|
|
|
|
private const val TAG = "AccountMediaFragment"
|
|
|
|
}
|
|
|
|
|
2018-03-28 04:47:00 +11:00
|
|
|
@Inject
|
|
|
|
lateinit var api: MastodonApi
|
|
|
|
|
2017-11-06 08:32:36 +11:00
|
|
|
private val adapter = MediaGridAdapter()
|
|
|
|
private var currentCall: Call<List<Status>>? = null
|
|
|
|
private val statuses = mutableListOf<Status>()
|
|
|
|
private var fetchingStatus = FetchingStatus.NOT_FETCHING
|
|
|
|
|
|
|
|
private val callback = object : Callback<List<Status>> {
|
|
|
|
override fun onFailure(call: Call<List<Status>>?, t: Throwable?) {
|
|
|
|
fetchingStatus = FetchingStatus.NOT_FETCHING
|
2018-07-08 19:41:08 +10:00
|
|
|
if(isAdded) {
|
|
|
|
swipe_refresh_layout.isRefreshing = false
|
|
|
|
progress_bar.visibility = View.GONE
|
|
|
|
}
|
2018-06-18 05:49:51 +10:00
|
|
|
|
2017-11-06 08:32:36 +11:00
|
|
|
Log.d(TAG, "Failed to fetch account media", t)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onResponse(call: Call<List<Status>>, response: Response<List<Status>>) {
|
|
|
|
fetchingStatus = FetchingStatus.NOT_FETCHING
|
2018-07-08 19:41:08 +10:00
|
|
|
if(isAdded) {
|
|
|
|
swipe_refresh_layout.isRefreshing = false
|
|
|
|
progress_bar.visibility = View.GONE
|
|
|
|
}
|
2017-11-06 08:32:36 +11:00
|
|
|
val body = response.body()
|
|
|
|
body?.let { fetched ->
|
|
|
|
statuses.addAll(0, fetched)
|
|
|
|
// flatMap requires iterable but I don't want to box each array into list
|
2018-05-11 04:13:25 +10:00
|
|
|
val result = mutableListOf<AttachmentViewData>()
|
2017-11-06 08:32:36 +11:00
|
|
|
for (status in fetched) {
|
2018-05-11 04:13:25 +10:00
|
|
|
result.addAll(AttachmentViewData.list(status))
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
adapter.addTop(result)
|
2018-06-18 05:49:51 +10:00
|
|
|
nothing_message.visibility = if (statuses.isEmpty()) View.VISIBLE else View.GONE
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private val bottomCallback = object : Callback<List<Status>> {
|
|
|
|
override fun onFailure(call: Call<List<Status>>?, t: Throwable?) {
|
|
|
|
fetchingStatus = FetchingStatus.NOT_FETCHING
|
|
|
|
Log.d(TAG, "Failed to fetch account media", t)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onResponse(call: Call<List<Status>>, response: Response<List<Status>>) {
|
|
|
|
fetchingStatus = FetchingStatus.NOT_FETCHING
|
|
|
|
val body = response.body()
|
|
|
|
body?.let { fetched ->
|
|
|
|
Log.d(TAG, "fetched ${fetched.size} statuses")
|
|
|
|
if (fetched.isNotEmpty()) Log.d(TAG, "first: ${fetched.first().id}, last: ${fetched.last().id}")
|
|
|
|
statuses.addAll(fetched)
|
|
|
|
Log.d(TAG, "now there are ${statuses.size} statuses")
|
|
|
|
// flatMap requires iterable but I don't want to box each array into list
|
2018-05-11 04:13:25 +10:00
|
|
|
val result = mutableListOf<AttachmentViewData>()
|
2017-11-06 08:32:36 +11:00
|
|
|
for (status in fetched) {
|
2018-05-11 04:13:25 +10:00
|
|
|
result.addAll(AttachmentViewData.list(status))
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
adapter.addBottom(result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
|
|
|
|
savedInstanceState: Bundle?): View? {
|
2018-06-18 05:49:51 +10:00
|
|
|
return inflater.inflate(R.layout.fragment_timeline, container, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
|
|
super.onViewCreated(view, savedInstanceState)
|
|
|
|
|
|
|
|
|
2017-11-10 00:35:52 +11:00
|
|
|
val columnCount = context?.resources?.getInteger(R.integer.profile_media_column_count) ?: 2
|
2017-11-06 08:32:36 +11:00
|
|
|
val layoutManager = GridLayoutManager(context, columnCount)
|
|
|
|
|
2018-01-20 23:39:01 +11:00
|
|
|
val bgRes = ThemeUtils.getColorId(context, R.attr.window_background)
|
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
adapter.baseItemColor = ContextCompat.getColor(recycler_view.context, bgRes)
|
2017-11-06 08:32:36 +11:00
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
recycler_view.layoutManager = layoutManager
|
|
|
|
recycler_view.adapter = adapter
|
2017-11-06 08:32:36 +11:00
|
|
|
|
2017-11-10 00:35:52 +11:00
|
|
|
val accountId = arguments?.getString(ACCOUNT_ID_ARG)
|
2017-11-06 08:32:36 +11:00
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
swipe_refresh_layout.setOnRefreshListener {
|
2017-11-06 08:32:36 +11:00
|
|
|
if (fetchingStatus != FetchingStatus.NOT_FETCHING) return@setOnRefreshListener
|
|
|
|
currentCall = if (statuses.isEmpty()) {
|
|
|
|
fetchingStatus = FetchingStatus.INITIAL_FETCHING
|
2018-06-18 21:26:18 +10:00
|
|
|
api.accountStatuses(accountId, null, null, null, null, true)
|
2017-11-06 08:32:36 +11:00
|
|
|
} else {
|
|
|
|
fetchingStatus = FetchingStatus.REFRESHING
|
2018-06-18 21:26:18 +10:00
|
|
|
api.accountStatuses(accountId, null, statuses[0].id, null, null, true)
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
currentCall?.enqueue(callback)
|
|
|
|
|
|
|
|
}
|
2018-06-18 05:49:51 +10:00
|
|
|
swipe_refresh_layout.setColorSchemeResources(R.color.primary)
|
|
|
|
swipe_refresh_layout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground))
|
2017-11-06 08:32:36 +11:00
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
nothing_message.visibility = View.GONE
|
2017-11-06 08:32:36 +11:00
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
recycler_view.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
|
|
|
|
|
|
|
override fun onScrolled(recycler_view: RecyclerView?, dx: Int, dy: Int) {
|
2017-11-06 08:32:36 +11:00
|
|
|
if (dy > 0) {
|
|
|
|
val itemCount = layoutManager.itemCount
|
|
|
|
val lastItem = layoutManager.findLastCompletelyVisibleItemPosition()
|
|
|
|
if (itemCount <= lastItem + 3 && fetchingStatus == FetchingStatus.NOT_FETCHING) {
|
|
|
|
statuses.lastOrNull()?.let { last ->
|
|
|
|
Log.d(TAG, "Requesting statuses with max_id: ${last.id}, (bottom)")
|
|
|
|
fetchingStatus = FetchingStatus.FETCHING_BOTTOM
|
2018-06-18 21:26:18 +10:00
|
|
|
currentCall = api.accountStatuses(accountId, last.id, null, null, null, true)
|
2017-11-06 08:32:36 +11:00
|
|
|
currentCall?.enqueue(bottomCallback)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// That's sort of an optimization to only load media once user has opened the tab
|
|
|
|
override fun setUserVisibleHint(isVisibleToUser: Boolean) {
|
|
|
|
super.setUserVisibleHint(isVisibleToUser)
|
|
|
|
if (!isVisibleToUser) return
|
2017-11-10 00:35:52 +11:00
|
|
|
val accountId = arguments?.getString(ACCOUNT_ID_ARG)
|
2017-11-06 08:32:36 +11:00
|
|
|
if (fetchingStatus == FetchingStatus.NOT_FETCHING && statuses.isEmpty()) {
|
|
|
|
fetchingStatus = FetchingStatus.INITIAL_FETCHING
|
2018-06-18 21:26:18 +10:00
|
|
|
currentCall = api.accountStatuses(accountId, null, null, null, null, true)
|
2017-11-06 08:32:36 +11:00
|
|
|
currentCall?.enqueue(callback)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:13:25 +10:00
|
|
|
private fun viewMedia(items: List<AttachmentViewData>, currentIndex: Int, view: View?) {
|
|
|
|
val type = items[currentIndex].attachment.type
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
when (type) {
|
2017-12-01 06:12:09 +11:00
|
|
|
Attachment.Type.IMAGE -> {
|
2018-05-11 04:13:25 +10:00
|
|
|
val intent = ViewMediaActivity.newIntent(context, items, currentIndex)
|
2017-11-10 00:35:52 +11:00
|
|
|
if (view != null && activity != null) {
|
2018-05-11 04:13:25 +10:00
|
|
|
val url = items[currentIndex].attachment.url
|
2017-11-06 08:32:36 +11:00
|
|
|
ViewCompat.setTransitionName(view, url)
|
2017-11-10 00:35:52 +11:00
|
|
|
val options = ActivityOptionsCompat.makeSceneTransitionAnimation(activity!!, view, url)
|
2017-11-06 08:32:36 +11:00
|
|
|
startActivity(intent, options.toBundle())
|
|
|
|
} else {
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
}
|
2017-12-01 06:12:09 +11:00
|
|
|
Attachment.Type.GIFV, Attachment.Type.VIDEO -> {
|
2017-11-06 08:32:36 +11:00
|
|
|
val intent = Intent(context, ViewVideoActivity::class.java)
|
2018-05-11 04:13:25 +10:00
|
|
|
intent.putExtra("url", items[currentIndex].attachment.url)
|
2017-11-06 08:32:36 +11:00
|
|
|
startActivity(intent)
|
|
|
|
}
|
2018-03-03 23:24:03 +11:00
|
|
|
Attachment.Type.UNKNOWN -> {
|
2017-11-06 08:32:36 +11:00
|
|
|
}/* Intentionally do nothing. This case is here is to handle when new attachment
|
|
|
|
* types are added to the API before code is added here to handle them. So, the
|
|
|
|
* best fallback is to just show the preview and ignore requests to view them. */
|
2018-07-08 19:41:08 +10:00
|
|
|
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private enum class FetchingStatus {
|
|
|
|
NOT_FETCHING, INITIAL_FETCHING, FETCHING_BOTTOM, REFRESHING
|
|
|
|
}
|
|
|
|
|
|
|
|
inner class MediaGridAdapter
|
|
|
|
: RecyclerView.Adapter<MediaGridAdapter.MediaViewHolder>() {
|
|
|
|
|
|
|
|
var baseItemColor = Color.BLACK
|
|
|
|
|
2018-05-11 04:13:25 +10:00
|
|
|
private val items = mutableListOf<AttachmentViewData>()
|
2017-11-06 08:32:36 +11:00
|
|
|
private val itemBgBaseHSV = FloatArray(3)
|
|
|
|
private val random = Random()
|
|
|
|
|
2018-05-11 04:13:25 +10:00
|
|
|
fun addTop(newItems: List<AttachmentViewData>) {
|
2017-11-06 08:32:36 +11:00
|
|
|
items.addAll(0, newItems)
|
|
|
|
notifyItemRangeInserted(0, newItems.size)
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:13:25 +10:00
|
|
|
fun addBottom(newItems: List<AttachmentViewData>) {
|
2017-11-06 08:32:36 +11:00
|
|
|
if (newItems.isEmpty()) return
|
|
|
|
|
|
|
|
val oldLen = items.size
|
|
|
|
items.addAll(newItems)
|
|
|
|
notifyItemRangeInserted(oldLen, newItems.size)
|
|
|
|
}
|
|
|
|
|
2018-06-18 05:49:51 +10:00
|
|
|
override fun onAttachedToRecyclerView(recycler_view: RecyclerView) {
|
2017-11-06 08:32:36 +11:00
|
|
|
val hsv = FloatArray(3)
|
|
|
|
Color.colorToHSV(baseItemColor, hsv)
|
2018-06-18 05:49:51 +10:00
|
|
|
super.onAttachedToRecyclerView(recycler_view)
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MediaViewHolder {
|
|
|
|
val view = SquareImageView(parent.context)
|
|
|
|
view.scaleType = ImageView.ScaleType.CENTER_CROP
|
|
|
|
return MediaViewHolder(view)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun getItemCount(): Int = items.size
|
|
|
|
|
|
|
|
override fun onBindViewHolder(holder: MediaViewHolder, position: Int) {
|
|
|
|
itemBgBaseHSV[2] = random.nextFloat() * (1f - 0.3f) + 0.3f
|
|
|
|
holder.imageView.setBackgroundColor(Color.HSVToColor(itemBgBaseHSV))
|
|
|
|
val item = items[position]
|
|
|
|
Picasso.with(holder.imageView.context)
|
2018-05-11 04:13:25 +10:00
|
|
|
.load(item.attachment.previewUrl)
|
2017-11-06 08:32:36 +11:00
|
|
|
.into(holder.imageView)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inner class MediaViewHolder(val imageView: ImageView)
|
|
|
|
: RecyclerView.ViewHolder(imageView),
|
|
|
|
View.OnClickListener {
|
|
|
|
init {
|
|
|
|
itemView.setOnClickListener(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
// saving some allocations
|
|
|
|
override fun onClick(v: View?) {
|
|
|
|
viewMedia(items, adapterPosition, imageView)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|