|
|
|
@ -1,20 +1,17 @@ |
|
|
|
|
package io.legado.app.ui.main.bookshelf |
|
|
|
|
|
|
|
|
|
import android.text.TextUtils.isEmpty |
|
|
|
|
import android.view.LayoutInflater |
|
|
|
|
import android.view.View |
|
|
|
|
import android.view.ViewGroup |
|
|
|
|
import androidx.paging.PagedListAdapter |
|
|
|
|
import androidx.recyclerview.widget.DiffUtil |
|
|
|
|
import androidx.recyclerview.widget.RecyclerView |
|
|
|
|
import com.bumptech.glide.Glide |
|
|
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy |
|
|
|
|
import io.legado.app.R |
|
|
|
|
import io.legado.app.data.entities.Book |
|
|
|
|
import io.legado.app.help.ImageLoader |
|
|
|
|
import io.legado.app.lib.theme.ThemeStore |
|
|
|
|
import kotlinx.android.synthetic.main.item_bookshelf_list.view.* |
|
|
|
|
import kotlinx.android.synthetic.main.item_relace_rule.view.tv_name |
|
|
|
|
import java.io.File |
|
|
|
|
|
|
|
|
|
class BookshelfAdapter : PagedListAdapter<Book, BookshelfAdapter.MyViewHolder>(DIFF_CALLBACK) { |
|
|
|
|
|
|
|
|
@ -22,12 +19,12 @@ class BookshelfAdapter : PagedListAdapter<Book, BookshelfAdapter.MyViewHolder>(D |
|
|
|
|
@JvmField |
|
|
|
|
val DIFF_CALLBACK = object : DiffUtil.ItemCallback<Book>() { |
|
|
|
|
override fun areItemsTheSame(oldItem: Book, newItem: Book): Boolean = |
|
|
|
|
oldItem.descUrl == newItem.descUrl |
|
|
|
|
oldItem.descUrl == newItem.descUrl |
|
|
|
|
|
|
|
|
|
override fun areContentsTheSame(oldItem: Book, newItem: Book): Boolean = |
|
|
|
|
oldItem.descUrl == newItem.descUrl |
|
|
|
|
&& oldItem.durChapterTitle == newItem.durChapterTitle |
|
|
|
|
&& oldItem.latestChapterTitle == newItem.latestChapterTitle |
|
|
|
|
oldItem.descUrl == newItem.descUrl |
|
|
|
|
&& oldItem.durChapterTitle == newItem.durChapterTitle |
|
|
|
|
&& oldItem.latestChapterTitle == newItem.latestChapterTitle |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -42,6 +39,7 @@ class BookshelfAdapter : PagedListAdapter<Book, BookshelfAdapter.MyViewHolder>(D |
|
|
|
|
holder.bind(it, callBack) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class MyViewHolder(view: View) : RecyclerView.ViewHolder(view) { |
|
|
|
|
|
|
|
|
|
init { |
|
|
|
@ -53,21 +51,12 @@ class BookshelfAdapter : PagedListAdapter<Book, BookshelfAdapter.MyViewHolder>(D |
|
|
|
|
tv_author.text = book.author |
|
|
|
|
tv_read.text = book.durChapterTitle |
|
|
|
|
tv_last.text = book.latestChapterTitle |
|
|
|
|
val cover = if (isEmpty(book.customCoverUrl)) book.coverUrl else book.customCoverUrl |
|
|
|
|
cover?.let { |
|
|
|
|
if (it.startsWith("http")) { |
|
|
|
|
Glide.with(itemView).load(it) |
|
|
|
|
.placeholder(R.drawable.img_cover_default) |
|
|
|
|
.centerCrop() |
|
|
|
|
.diskCacheStrategy(DiskCacheStrategy.RESOURCE) |
|
|
|
|
.into(iv_cover) |
|
|
|
|
} else { |
|
|
|
|
Glide.with(itemView).load(File(it)) |
|
|
|
|
.placeholder(R.drawable.img_cover_default) |
|
|
|
|
.centerCrop() |
|
|
|
|
.diskCacheStrategy(DiskCacheStrategy.RESOURCE) |
|
|
|
|
.into(iv_cover) |
|
|
|
|
} |
|
|
|
|
book.getDisplayCover()?.let { |
|
|
|
|
ImageLoader.load(context, it)//Glide自动识别http://和file:// |
|
|
|
|
.placeholder(R.drawable.img_cover_default) |
|
|
|
|
.error(R.drawable.img_cover_default) |
|
|
|
|
.centerCrop() |
|
|
|
|
.setAsDrawable(iv_cover) |
|
|
|
|
} |
|
|
|
|
itemView.setOnClickListener { callBack?.open(book) } |
|
|
|
|
} |
|
|
|
|