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

106 lines
4.0 KiB
Kotlin
Raw Normal View History

2016-06-29 15:47:52 +02: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.content.Context
import android.os.Bundle
import android.support.v4.content.Loader
import org.mariotaku.twidere.TwidereConstants.*
import org.mariotaku.twidere.loader.UserFavoritesLoader
import org.mariotaku.twidere.model.ParcelableStatus
import org.mariotaku.twidere.model.UserKey
import org.mariotaku.twidere.model.event.FavoriteTaskEvent
2016-06-29 15:47:52 +02:00
import org.mariotaku.twidere.util.Utils
import java.util.*
/**
* Created by mariotaku on 14/12/2.
*/
class UserFavoritesFragment : ParcelableStatusesFragment() {
override val savedStatusesFileArgs: Array<String>?
get() {
2017-04-12 08:12:45 +02:00
val accountKey = Utils.getAccountKey(context, arguments)
val userKey = arguments.getParcelable<UserKey>(EXTRA_USER_KEY)
val screenName = arguments.getString(EXTRA_SCREEN_NAME)
2016-06-29 15:47:52 +02:00
val result = ArrayList<String>()
result.add(AUTHORITY_USER_FAVORITES)
result.add("account=$accountKey")
if (userKey != null) {
result.add("user_id=$userKey")
} else if (screenName != null) {
result.add("screen_name=$screenName")
} else {
return null
}
return result.toTypedArray()
}
override val readPositionTagWithArguments: String?
get() {
2017-04-12 08:12:45 +02:00
val tabPosition = arguments.getInt(EXTRA_TAB_POSITION, -1)
2016-06-29 15:47:52 +02:00
val sb = StringBuilder("user_favorites_")
if (tabPosition < 0) return null
2017-04-12 08:12:45 +02:00
val userKey = arguments.getParcelable<UserKey>(EXTRA_USER_KEY)
val screenName = arguments.getString(EXTRA_SCREEN_NAME)
2016-06-29 15:47:52 +02:00
if (userKey != null) {
sb.append(userKey)
} else if (screenName != null) {
sb.append(screenName)
} else {
return null
}
return sb.toString()
}
override fun onCreateStatusesLoader(context: Context, args: Bundle, fromUser: Boolean):
Loader<List<ParcelableStatus>?> {
refreshing = true
val accountKey = Utils.getAccountKey(context, args)
val maxId = args.getString(EXTRA_MAX_ID)
val sinceId = args.getString(EXTRA_SINCE_ID)
val page = args.getInt(EXTRA_PAGE, -1)
val userKey = args.getParcelable<UserKey>(EXTRA_USER_KEY)
val screenName = args.getString(EXTRA_SCREEN_NAME)
val tabPosition = args.getInt(EXTRA_TAB_POSITION, -1)
val loadingMore = args.getBoolean(EXTRA_LOADING_MORE, false)
return UserFavoritesLoader(context, accountKey, userKey, screenName, sinceId, maxId,
page, adapterData, savedStatusesFileArgs, tabPosition, fromUser,
loadingMore)
}
override fun notifyFavoriteTask(event: FavoriteTaskEvent) {
if (event.action == FavoriteTaskEvent.Action.DESTROY && event.isSucceeded) {
event.status?.let { status ->
val args = arguments!!
val userKey = args.getParcelable<UserKey>(EXTRA_USER_KEY)
if (status.account_key == userKey) {
removeStatus(event.statusId)
triggerRefresh()
return
}
}
}
super.notifyFavoriteTask(event)
}
2016-06-29 15:47:52 +02:00
}