mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
113 lines
No EOL
3.9 KiB
Java
113 lines
No EOL
3.9 KiB
Java
package com.cappielloantonio.play.adapter;
|
|
|
|
import android.content.Context;
|
|
import android.text.Html;
|
|
import android.util.Log;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
import com.cappielloantonio.play.App;
|
|
import com.cappielloantonio.play.R;
|
|
import com.cappielloantonio.play.glide.CustomGlideRequest;
|
|
import com.cappielloantonio.play.interfaces.MediaCallback;
|
|
import com.cappielloantonio.play.model.Song;
|
|
import com.cappielloantonio.play.repository.QueueRepository;
|
|
import com.cappielloantonio.play.repository.SongRepository;
|
|
import com.cappielloantonio.play.service.MusicPlayerRemote;
|
|
import com.cappielloantonio.play.ui.activity.MainActivity;
|
|
import com.cappielloantonio.play.util.MusicUtil;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class DiscoverSongAdapter extends RecyclerView.Adapter<DiscoverSongAdapter.ViewHolder> {
|
|
private static final String TAG = "DiscoverSongAdapter";
|
|
|
|
private List<Song> songs;
|
|
private LayoutInflater inflater;
|
|
private Context context;
|
|
private MainActivity activity;
|
|
|
|
public DiscoverSongAdapter(MainActivity activity, Context context) {
|
|
this.activity = activity;
|
|
this.context = context;
|
|
this.inflater = LayoutInflater.from(context);
|
|
this.songs = new ArrayList<>();
|
|
}
|
|
|
|
@Override
|
|
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
|
View view = inflater.inflate(R.layout.item_home_discover_song, parent, false);
|
|
return new ViewHolder(view);
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(ViewHolder holder, int position) {
|
|
Song song = songs.get(position);
|
|
|
|
holder.textTitle.setText(MusicUtil.getReadableInfo(song.getTitle()));
|
|
holder.textAlbum.setText(MusicUtil.getReadableInfo(song.getAlbumName()));
|
|
|
|
CustomGlideRequest.Builder
|
|
.from(context, song.getPrimary(), song.getBlurHash(), CustomGlideRequest.SONG_PIC)
|
|
.build()
|
|
.into(holder.cover);
|
|
}
|
|
|
|
@Override
|
|
public int getItemCount() {
|
|
return songs.size();
|
|
}
|
|
|
|
public void setItems(List<Song> songs) {
|
|
this.songs = songs;
|
|
notifyDataSetChanged();
|
|
}
|
|
|
|
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
|
|
TextView textTitle;
|
|
TextView textAlbum;
|
|
ImageView cover;
|
|
|
|
ViewHolder(View itemView) {
|
|
super(itemView);
|
|
|
|
textTitle = itemView.findViewById(R.id.title_discover_song_label);
|
|
textAlbum = itemView.findViewById(R.id.album_discover_song_label);
|
|
cover = itemView.findViewById(R.id.discover_song_cover_image_view);
|
|
|
|
itemView.setOnClickListener(this);
|
|
}
|
|
|
|
@Override
|
|
public void onClick(View view) {
|
|
List<Song> opener = new ArrayList<>();
|
|
opener.add(songs.get(getBindingAdapterPosition()));
|
|
MusicPlayerRemote.openQueue(opener, 0, true);
|
|
|
|
QueueRepository queueRepository = new QueueRepository(App.getInstance());
|
|
queueRepository.insertAllAndStartNew(opener);
|
|
|
|
activity.isBottomSheetInPeek(true);
|
|
activity.setBottomSheetMusicInfo(songs.get(getBindingAdapterPosition()));
|
|
|
|
SongRepository songRepository = new SongRepository(App.getInstance());
|
|
songRepository.getInstantMix(songs.get(getBindingAdapterPosition()), 20, new MediaCallback() {
|
|
@Override
|
|
public void onError(Exception exception) {
|
|
Log.e(TAG, "onError: " + exception.getMessage());
|
|
}
|
|
|
|
@Override
|
|
public void onLoadMedia(List<?> media) {
|
|
MusicPlayerRemote.enqueue((List<Song>) media);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
} |