conseguir vizualisar os clubes
This commit is contained in:
@@ -28,12 +28,8 @@ public class Club implements Serializable {
|
||||
@PropertyName("presidente")
|
||||
private String president;
|
||||
|
||||
@PropertyName("jogadores")
|
||||
private HashMap<String, Player> players;
|
||||
|
||||
public Club() {
|
||||
// Default constructor for Firebase
|
||||
players = new HashMap<>();
|
||||
}
|
||||
|
||||
public Club(int id, String name, String imageUrl, String stadium, int foundationYear, String address,
|
||||
@@ -45,7 +41,6 @@ public class Club implements Serializable {
|
||||
this.foundationYear = foundationYear;
|
||||
this.address = address;
|
||||
this.president = president;
|
||||
this.players = new HashMap<>();
|
||||
}
|
||||
|
||||
@PropertyName("id")
|
||||
@@ -118,19 +113,4 @@ public class Club implements Serializable {
|
||||
this.president = president;
|
||||
}
|
||||
|
||||
@PropertyName("jogadores")
|
||||
public HashMap<String, Player> getPlayersMap() {
|
||||
return players;
|
||||
}
|
||||
|
||||
@PropertyName("jogadores")
|
||||
public void setPlayersMap(HashMap<String, Player> players) {
|
||||
this.players = players;
|
||||
}
|
||||
|
||||
public List<Player> getPlayersList() {
|
||||
if (players == null)
|
||||
return new ArrayList<>();
|
||||
return new ArrayList<>(players.values());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,13 +10,25 @@ public class Player implements Serializable {
|
||||
@PropertyName("nome")
|
||||
private String nome;
|
||||
|
||||
@PropertyName("foto")
|
||||
private String foto;
|
||||
|
||||
@PropertyName("data_nascimento")
|
||||
private String dataNascimento;
|
||||
|
||||
@PropertyName("naturalidade")
|
||||
private String naturalidade;
|
||||
|
||||
public Player() {
|
||||
// Default constructor required for calls to DataSnapshot.getValue(Player.class)
|
||||
}
|
||||
|
||||
public Player(int id, String nome) {
|
||||
public Player(int id, String nome, String foto, String dataNascimento, String naturalidade) {
|
||||
this.id = id;
|
||||
this.nome = nome;
|
||||
this.foto = foto;
|
||||
this.dataNascimento = dataNascimento;
|
||||
this.naturalidade = naturalidade;
|
||||
}
|
||||
|
||||
@PropertyName("id")
|
||||
@@ -38,4 +50,34 @@ public class Player implements Serializable {
|
||||
public void setNome(String nome) {
|
||||
this.nome = nome;
|
||||
}
|
||||
|
||||
@PropertyName("foto")
|
||||
public String getFoto() {
|
||||
return foto;
|
||||
}
|
||||
|
||||
@PropertyName("foto")
|
||||
public void setFoto(String foto) {
|
||||
this.foto = foto;
|
||||
}
|
||||
|
||||
@PropertyName("data_nascimento")
|
||||
public String getDataNascimento() {
|
||||
return dataNascimento;
|
||||
}
|
||||
|
||||
@PropertyName("data_nascimento")
|
||||
public void setDataNascimento(String dataNascimento) {
|
||||
this.dataNascimento = dataNascimento;
|
||||
}
|
||||
|
||||
@PropertyName("naturalidade")
|
||||
public String getNaturalidade() {
|
||||
return naturalidade;
|
||||
}
|
||||
|
||||
@PropertyName("naturalidade")
|
||||
public void setNaturalidade(String naturalidade) {
|
||||
this.naturalidade = naturalidade;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -55,7 +55,8 @@ public class ClubPlayersFragment extends Fragment {
|
||||
binding.progressBarPlayers.setVisibility(View.VISIBLE);
|
||||
|
||||
if (clubId != null && escalao != null) {
|
||||
mDatabase = FirebaseDatabase.getInstance().getReference().child("clubes").child(escalao).child(clubId);
|
||||
mDatabase = FirebaseDatabase.getInstance().getReference().child("clubes").child(clubId).child("jogadores")
|
||||
.child(escalao);
|
||||
loadPlayers();
|
||||
} else {
|
||||
binding.progressBarPlayers.setVisibility(View.GONE);
|
||||
@@ -68,21 +69,25 @@ public class ClubPlayersFragment extends Fragment {
|
||||
mDatabase.addListenerForSingleValueEvent(new ValueEventListener() {
|
||||
@Override
|
||||
public void onDataChange(@NonNull DataSnapshot snapshot) {
|
||||
Club club = snapshot.getValue(Club.class);
|
||||
binding.progressBarPlayers.setVisibility(View.GONE);
|
||||
|
||||
if (club != null) {
|
||||
List<Player> playerList = club.getPlayersList();
|
||||
if (playerList != null && !playerList.isEmpty()) {
|
||||
List<Player> playerList = new ArrayList<>();
|
||||
if (snapshot.exists()) {
|
||||
for (DataSnapshot playerSnapshot : snapshot.getChildren()) {
|
||||
Player player = playerSnapshot.getValue(Player.class);
|
||||
if (player != null) {
|
||||
playerList.add(player);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!playerList.isEmpty()) {
|
||||
PlayerAdapter adapter = new PlayerAdapter(playerList);
|
||||
binding.recyclerPlayersList.setAdapter(adapter);
|
||||
binding.textNoPlayers.setVisibility(View.GONE);
|
||||
} else {
|
||||
binding.textNoPlayers.setVisibility(View.VISIBLE);
|
||||
}
|
||||
} else {
|
||||
binding.textNoPlayers.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -63,7 +63,7 @@ public class ClubsFragment extends Fragment {
|
||||
|
||||
private void loadClubsData(RecyclerView recyclerView, ProgressBar progressBar) {
|
||||
progressBar.setVisibility(View.VISIBLE);
|
||||
mDatabase = FirebaseDatabase.getInstance().getReference().child("clubes").child(currentEscalao);
|
||||
mDatabase = FirebaseDatabase.getInstance().getReference().child("clubes");
|
||||
|
||||
// Remove previous listener to avoid duplicate data or leaks
|
||||
if (mValueEventListener != null) {
|
||||
|
||||
@@ -3,11 +3,14 @@ package com.example.vdcscore.ui.clubs;
|
||||
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.recyclerview.widget.RecyclerView;
|
||||
|
||||
import com.bumptech.glide.Glide;
|
||||
|
||||
import com.example.vdcscore.R;
|
||||
import com.example.vdcscore.models.Player;
|
||||
|
||||
@@ -42,15 +45,43 @@ public class PlayerAdapter extends RecyclerView.Adapter<PlayerAdapter.PlayerView
|
||||
|
||||
static class PlayerViewHolder extends RecyclerView.ViewHolder {
|
||||
private final TextView name;
|
||||
private final TextView details;
|
||||
private final ImageView photo;
|
||||
|
||||
public PlayerViewHolder(@NonNull View itemView) {
|
||||
super(itemView);
|
||||
name = itemView.findViewById(R.id.text_player_name);
|
||||
details = itemView.findViewById(R.id.text_player_details);
|
||||
photo = itemView.findViewById(R.id.image_player_icon);
|
||||
}
|
||||
|
||||
public void bind(Player player) {
|
||||
if (player != null) {
|
||||
name.setText(player.getNome());
|
||||
|
||||
String detailsText = "";
|
||||
if (player.getNaturalidade() != null && !player.getNaturalidade().isEmpty()) {
|
||||
detailsText += player.getNaturalidade() + " ";
|
||||
}
|
||||
if (player.getDataNascimento() != null && !player.getDataNascimento().isEmpty()) {
|
||||
detailsText += " | " + player.getDataNascimento();
|
||||
}
|
||||
|
||||
if (details != null) {
|
||||
details.setText(detailsText.trim().startsWith("|") ? detailsText.replaceFirst("\\|", "").trim()
|
||||
: detailsText.trim());
|
||||
}
|
||||
|
||||
if (player.getFoto() != null && !player.getFoto().isEmpty()) {
|
||||
Glide.with(itemView.getContext())
|
||||
.load(player.getFoto())
|
||||
.circleCrop()
|
||||
.placeholder(R.drawable.ic_menu_camera)
|
||||
.error(R.drawable.ic_menu_camera)
|
||||
.into(photo);
|
||||
} else {
|
||||
photo.setImageResource(R.drawable.ic_menu_camera);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,18 +8,37 @@
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/image_player_icon"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:src="@drawable/ic_menu_camera"
|
||||
android:scaleType="centerCrop"
|
||||
android:contentDescription="Player Icon"
|
||||
android:layout_marginEnd="16dp"/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_player_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Player Name"
|
||||
android:textSize="16sp"
|
||||
android:textColor="@color/black"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_player_details"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Details"
|
||||
android:textSize="12sp"
|
||||
android:textColor="#555555"
|
||||
android:layout_marginTop="2dp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
1
gradle/wrapper/gradle-wrapper.properties
vendored
1
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,3 +1,4 @@
|
||||
#Tue Mar 10 15:29:15 WET 2026
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
|
||||
|
||||
Reference in New Issue
Block a user