302 lines
11 KiB
Dart
302 lines
11 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:playmaker/pages/PlacarPage.dart'; // Garante que o import está correto
|
|
import '../controllers/team_controller.dart';
|
|
import '../controllers/game_controller.dart';
|
|
|
|
// --- CARD DE EXIBIÇÃO DO JOGO ---
|
|
class GameResultCard extends StatelessWidget {
|
|
final String gameId;
|
|
final String myTeam, opponentTeam, myScore, opponentScore, status, season;
|
|
final String? myTeamLogo; // NOVA VARIÁVEL
|
|
final String? opponentTeamLogo; // NOVA VARIÁVEL
|
|
|
|
const GameResultCard({
|
|
super.key,
|
|
required this.gameId,
|
|
required this.myTeam,
|
|
required this.opponentTeam,
|
|
required this.myScore,
|
|
required this.opponentScore,
|
|
required this.status,
|
|
required this.season,
|
|
this.myTeamLogo, // ADICIONADO AO CONSTRUTOR
|
|
this.opponentTeamLogo, // ADICIONADO AO CONSTRUTOR
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
margin: const EdgeInsets.only(bottom: 16),
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
borderRadius: BorderRadius.circular(20),
|
|
boxShadow: const [BoxShadow(color: Colors.black12, blurRadius: 10)],
|
|
),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
// Passamos a imagem para a função
|
|
Expanded(child: _buildTeamInfo(myTeam, const Color(0xFFE74C3C), myTeamLogo)),
|
|
_buildScoreCenter(context, gameId),
|
|
// Passamos a imagem para a função
|
|
Expanded(child: _buildTeamInfo(opponentTeam, Colors.black87, opponentTeamLogo)),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
// ATUALIZADO para desenhar a imagem
|
|
Widget _buildTeamInfo(String name, Color color, String? logoUrl) {
|
|
return Column(
|
|
children: [
|
|
CircleAvatar(
|
|
backgroundColor: color,
|
|
backgroundImage: (logoUrl != null && logoUrl.isNotEmpty)
|
|
? NetworkImage(logoUrl)
|
|
: null,
|
|
child: (logoUrl == null || logoUrl.isEmpty)
|
|
? const Icon(Icons.shield, color: Colors.white)
|
|
: null,
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(name,
|
|
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 12),
|
|
textAlign: TextAlign.center,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildScoreCenter(BuildContext context, String id) {
|
|
return Column(
|
|
children: [
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
_scoreBox(myScore, Colors.green),
|
|
const Text(" : ", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20)),
|
|
_scoreBox(opponentScore, Colors.grey),
|
|
],
|
|
),
|
|
const SizedBox(height: 8),
|
|
TextButton.icon(
|
|
onPressed: () {
|
|
// NAVEGAÇÃO PARA O PLACAR (Usando o ID real)
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => PlacarPage(
|
|
gameId: id,
|
|
myTeam: myTeam,
|
|
opponentTeam: opponentTeam,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
icon: const Icon(Icons.play_circle_fill, size: 16, color: Color(0xFFE74C3C)),
|
|
label: const Text("RETORNAR", style: TextStyle(fontSize: 10, color: Color(0xFFE74C3C), fontWeight: FontWeight.bold)),
|
|
style: TextButton.styleFrom(
|
|
backgroundColor: const Color(0xFFE74C3C).withOpacity(0.1),
|
|
padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
|
|
visualDensity: VisualDensity.compact,
|
|
),
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(status, style: const TextStyle(fontSize: 10, color: Colors.blue, fontWeight: FontWeight.bold)),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _scoreBox(String pts, Color c) => Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 5),
|
|
decoration: BoxDecoration(color: c, borderRadius: BorderRadius.circular(8)),
|
|
child: Text(pts, style: const TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
|
|
);
|
|
}
|
|
|
|
// --- POPUP DE CRIAÇÃO ---
|
|
class CreateGameDialogManual extends StatefulWidget {
|
|
final TeamController teamController;
|
|
final GameController gameController;
|
|
|
|
const CreateGameDialogManual({
|
|
super.key,
|
|
required this.teamController,
|
|
required this.gameController
|
|
});
|
|
|
|
@override
|
|
State<CreateGameDialogManual> createState() => _CreateGameDialogManualState();
|
|
}
|
|
|
|
class _CreateGameDialogManualState extends State<CreateGameDialogManual> {
|
|
late TextEditingController _seasonController;
|
|
final TextEditingController _myTeamController = TextEditingController();
|
|
final TextEditingController _opponentController = TextEditingController();
|
|
|
|
bool _isLoading = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_seasonController = TextEditingController(text: _calculateSeason());
|
|
}
|
|
|
|
String _calculateSeason() {
|
|
final now = DateTime.now();
|
|
return now.month >= 7 ? "${now.year}/${(now.year + 1).toString().substring(2)}" : "${now.year - 1}/${now.year.toString().substring(2)}";
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AlertDialog(
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
|
|
title: const Text('Configurar Partida', style: TextStyle(fontWeight: FontWeight.bold)),
|
|
content: SingleChildScrollView(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
TextField(
|
|
controller: _seasonController,
|
|
decoration: const InputDecoration(labelText: 'Temporada', border: OutlineInputBorder(), prefixIcon: Icon(Icons.calendar_today)),
|
|
),
|
|
const SizedBox(height: 15),
|
|
|
|
_buildSearch(label: "Minha Equipa", controller: _myTeamController),
|
|
|
|
const Padding(padding: EdgeInsets.symmetric(vertical: 8), child: Text("VS", style: TextStyle(fontWeight: FontWeight.bold, color: Colors.grey))),
|
|
|
|
_buildSearch(label: "Adversário", controller: _opponentController),
|
|
],
|
|
),
|
|
),
|
|
actions: [
|
|
TextButton(onPressed: () => Navigator.pop(context), child: const Text('CANCELAR')),
|
|
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFFE74C3C),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
|
|
),
|
|
onPressed: _isLoading ? null : () async {
|
|
if (_myTeamController.text.isNotEmpty && _opponentController.text.isNotEmpty) {
|
|
setState(() => _isLoading = true);
|
|
|
|
String? newGameId = await widget.gameController.createGame(
|
|
_myTeamController.text,
|
|
_opponentController.text,
|
|
_seasonController.text,
|
|
);
|
|
|
|
setState(() => _isLoading = false);
|
|
|
|
if (newGameId != null && context.mounted) {
|
|
Navigator.pop(context);
|
|
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => PlacarPage(
|
|
gameId: newGameId,
|
|
myTeam: _myTeamController.text,
|
|
opponentTeam: _opponentController.text,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
},
|
|
child: _isLoading
|
|
? const SizedBox(width: 20, height: 20, child: CircularProgressIndicator(color: Colors.white, strokeWidth: 2))
|
|
: const Text('CRIAR', style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
// ATUALIZADO para usar Map e mostrar a imagem na lista de pesquisa
|
|
Widget _buildSearch({required String label, required TextEditingController controller}) {
|
|
return StreamBuilder<List<Map<String, dynamic>>>(
|
|
stream: widget.teamController.teamsStream,
|
|
builder: (context, snapshot) {
|
|
List<Map<String, dynamic>> teamList = snapshot.hasData ? snapshot.data! : [];
|
|
|
|
return Autocomplete<Map<String, dynamic>>(
|
|
displayStringForOption: (Map<String, dynamic> option) => option['name'].toString(),
|
|
|
|
optionsBuilder: (TextEditingValue val) {
|
|
if (val.text.isEmpty) return const Iterable<Map<String, dynamic>>.empty();
|
|
return teamList.where((t) =>
|
|
t['name'].toString().toLowerCase().contains(val.text.toLowerCase()));
|
|
},
|
|
|
|
onSelected: (Map<String, dynamic> selection) {
|
|
controller.text = selection['name'].toString();
|
|
},
|
|
|
|
optionsViewBuilder: (context, onSelected, options) {
|
|
return Align(
|
|
alignment: Alignment.topLeft,
|
|
child: Material(
|
|
elevation: 4.0,
|
|
borderRadius: BorderRadius.circular(8),
|
|
child: ConstrainedBox(
|
|
// Ajuste do tamanho máximo do pop-up de sugestões
|
|
constraints: BoxConstraints(maxHeight: 250, maxWidth: MediaQuery.of(context).size.width * 0.7),
|
|
child: ListView.builder(
|
|
padding: EdgeInsets.zero,
|
|
shrinkWrap: true,
|
|
itemCount: options.length,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
final option = options.elementAt(index);
|
|
final String name = option['name'].toString();
|
|
final String? imageUrl = option['image_url'];
|
|
|
|
return ListTile(
|
|
leading: CircleAvatar(
|
|
backgroundColor: Colors.grey.shade200,
|
|
backgroundImage: (imageUrl != null && imageUrl.isNotEmpty)
|
|
? NetworkImage(imageUrl)
|
|
: null,
|
|
child: (imageUrl == null || imageUrl.isEmpty)
|
|
? const Icon(Icons.shield, color: Colors.grey)
|
|
: null,
|
|
),
|
|
title: Text(name, style: const TextStyle(fontWeight: FontWeight.bold)),
|
|
onTap: () {
|
|
onSelected(option);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
);
|
|
},
|
|
|
|
fieldViewBuilder: (ctx, txtCtrl, node, submit) {
|
|
if (txtCtrl.text.isEmpty && controller.text.isNotEmpty) {
|
|
txtCtrl.text = controller.text;
|
|
}
|
|
txtCtrl.addListener(() {
|
|
controller.text = txtCtrl.text;
|
|
});
|
|
|
|
return TextField(
|
|
controller: txtCtrl,
|
|
focusNode: node,
|
|
decoration: InputDecoration(
|
|
labelText: label,
|
|
prefixIcon: const Icon(Icons.search),
|
|
border: const OutlineInputBorder()
|
|
),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|
|
} |