mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-01-30 14:22:05 +00:00
118 lines
4.0 KiB
Java
118 lines
4.0 KiB
Java
package com.cappielloantonio.play.adapter;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.media3.session.MediaBrowser;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
import com.bumptech.glide.load.resource.bitmap.CenterCrop;
|
|
import com.bumptech.glide.load.resource.bitmap.RoundedCorners;
|
|
import com.cappielloantonio.play.R;
|
|
import com.cappielloantonio.play.glide.CustomGlideRequest;
|
|
import com.cappielloantonio.play.interfaces.ClickCallback;
|
|
import com.cappielloantonio.play.service.MediaManager;
|
|
import com.cappielloantonio.play.subsonic.models.Child;
|
|
import com.cappielloantonio.play.util.MusicUtil;
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public class PlayerSongQueueAdapter extends RecyclerView.Adapter<PlayerSongQueueAdapter.ViewHolder> {
|
|
private final Context context;
|
|
private final ClickCallback click;
|
|
|
|
private ListenableFuture<MediaBrowser> mediaBrowserListenableFuture;
|
|
private List<Child> songs;
|
|
|
|
public PlayerSongQueueAdapter(Context context, ClickCallback click) {
|
|
this.context = context;
|
|
this.click = click;
|
|
this.songs = Collections.emptyList();
|
|
}
|
|
|
|
@NonNull
|
|
@Override
|
|
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
|
View view = LayoutInflater.from(context).inflate(R.layout.item_player_queue_song, parent, false);
|
|
return new ViewHolder(view);
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(ViewHolder holder, int position) {
|
|
Child song = songs.get(position);
|
|
|
|
holder.songTitle.setText(MusicUtil.getReadableString(song.getTitle()));
|
|
holder.songSubtitle.setText(context.getString(R.string.song_subtitle_formatter, MusicUtil.getReadableString(song.getArtist()), MusicUtil.getReadableDurationString(song.getDuration(), false)));
|
|
|
|
CustomGlideRequest.Builder
|
|
.from(context, song.getCoverArtId(), CustomGlideRequest.SONG_PIC, null)
|
|
.build()
|
|
.transform(new CenterCrop(), new RoundedCorners(CustomGlideRequest.CORNER_RADIUS))
|
|
.into(holder.cover);
|
|
|
|
MediaManager.getCurrentIndex(mediaBrowserListenableFuture, index -> {
|
|
holder.play.setVisibility(position == index ? View.VISIBLE : View.INVISIBLE);
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public int getItemCount() {
|
|
return songs.size();
|
|
}
|
|
|
|
public List<Child> getItems() {
|
|
return this.songs;
|
|
}
|
|
|
|
public void setItems(List<Child> songs) {
|
|
this.songs = songs;
|
|
notifyDataSetChanged();
|
|
}
|
|
|
|
public void setMediaBrowserListenableFuture(ListenableFuture<MediaBrowser> mediaBrowserListenableFuture) {
|
|
this.mediaBrowserListenableFuture = mediaBrowserListenableFuture;
|
|
}
|
|
|
|
public Child getItem(int id) {
|
|
return songs.get(id);
|
|
}
|
|
|
|
public class ViewHolder extends RecyclerView.ViewHolder {
|
|
TextView songTitle;
|
|
TextView songSubtitle;
|
|
ImageView cover;
|
|
ImageView play;
|
|
|
|
ViewHolder(View itemView) {
|
|
super(itemView);
|
|
|
|
songTitle = itemView.findViewById(R.id.queue_song_title_text_view);
|
|
songSubtitle = itemView.findViewById(R.id.queue_song_subtitle_text_view);
|
|
cover = itemView.findViewById(R.id.queue_song_cover_image_view);
|
|
play = itemView.findViewById(R.id.queue_song_play_image_view);
|
|
|
|
songTitle.setSelected(true);
|
|
songSubtitle.setSelected(true);
|
|
|
|
itemView.setOnClickListener(v -> onClick());
|
|
}
|
|
|
|
public void onClick() {
|
|
Bundle bundle = new Bundle();
|
|
bundle.putParcelableArrayList("songs_object", new ArrayList<>(songs));
|
|
bundle.putInt("position", getBindingAdapterPosition());
|
|
|
|
click.onMediaClick(bundle);
|
|
}
|
|
}
|
|
}
|