This commit is contained in:
Carlos Correia
2026-05-15 11:04:00 +01:00
parent 85a289806e
commit bb0c4fc2a5
5 changed files with 969 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
import 'package:flutter/material.dart';
import 'package:supabase_flutter/supabase_flutter.dart';
import 'perfil_screen.dart';
import 'add_item_screen.dart';
import '../constants/item_categories.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@@ -50,9 +53,40 @@ class _HomeScreenState extends State<HomeScreen> {
}
}
class _HomeContent extends StatelessWidget {
class _HomeContent extends StatefulWidget {
const _HomeContent();
@override
State<_HomeContent> createState() => _HomeContentState();
}
class _HomeContentState extends State<_HomeContent> {
int _itemCount = 0;
@override
void initState() {
super.initState();
_loadItemCount();
}
Future<void> _loadItemCount() async {
try {
final user = Supabase.instance.client.auth.currentUser;
if (user != null) {
final response = await Supabase.instance.client
.from('items')
.select('id')
.eq('user_id', user.id);
setState(() {
_itemCount = response.length;
});
}
} catch (e) {
print('Error loading item count: $e');
}
}
@override
Widget build(BuildContext context) {
return SafeArea(
@@ -70,10 +104,10 @@ class _HomeContent extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Column(
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
const Text(
'DayMaker',
style: TextStyle(
color: Colors.white,
@@ -81,10 +115,13 @@ class _HomeContent extends StatelessWidget {
fontWeight: FontWeight.bold,
),
),
SizedBox(height: 4),
const SizedBox(height: 4),
Text(
'6 itens',
style: TextStyle(color: Colors.white70, fontSize: 14),
'$_itemCount itens',
style: const TextStyle(
color: Colors.white70,
fontSize: 14,
),
),
],
),
@@ -251,11 +288,8 @@ class _HomeContent extends StatelessWidget {
right: 20,
child: FloatingActionButton(
onPressed: () {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Adicionar novo item'),
backgroundColor: Color(0xFF0066CC),
),
Navigator.of(context).push(
MaterialPageRoute(builder: (_) => const AddItemScreen()),
);
},
backgroundColor: const Color(0xFF0066CC),
@@ -268,12 +302,213 @@ class _HomeContent extends StatelessWidget {
}
}
class _ItemsScreen extends StatelessWidget {
class _ItemsScreen extends StatefulWidget {
const _ItemsScreen();
@override
State<_ItemsScreen> createState() => _ItemsScreenState();
}
class _ItemsScreenState extends State<_ItemsScreen> {
List<Map<String, dynamic>> _items = [];
bool _isLoading = true;
@override
void initState() {
super.initState();
_loadItems();
}
Future<void> _loadItems() async {
try {
final user = Supabase.instance.client.auth.currentUser;
if (user != null) {
final response = await Supabase.instance.client
.from('items')
.select()
.eq('user_id', user.id)
.order('created_at', ascending: false);
setState(() {
_items = List<Map<String, dynamic>>.from(response);
_isLoading = false;
});
}
} catch (e) {
print('Error loading items: $e');
setState(() => _isLoading = false);
}
}
String _getCategoryName(String categoryId) {
final category = ITEM_CATEGORIES.firstWhere(
(cat) => cat.id == categoryId,
orElse: () => ITEM_CATEGORIES.last,
);
return category.name;
}
String _getCategoryIcon(String categoryId) {
final category = ITEM_CATEGORIES.firstWhere(
(cat) => cat.id == categoryId,
orElse: () => ITEM_CATEGORIES.last,
);
return category.icon;
}
@override
Widget build(BuildContext context) {
return const Center(child: Text('Itens'));
return Scaffold(
backgroundColor: const Color(0xFFFFE5CC),
appBar: AppBar(
backgroundColor: const Color(0xFF0066CC),
elevation: 0,
title: const Text(
'Meus Itens',
style: TextStyle(color: Colors.white, fontSize: 20),
),
centerTitle: true,
),
body: _isLoading
? const Center(child: CircularProgressIndicator())
: _items.isEmpty
? Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.inventory_2_outlined,
size: 64,
color: Colors.grey[400],
),
const SizedBox(height: 16),
const Text(
'Nenhum item ainda',
style: TextStyle(fontSize: 18, color: Color(0xFF666666)),
),
const SizedBox(height: 8),
const Text(
'Toque no + para adicionar',
style: TextStyle(fontSize: 14, color: Color(0xFF999999)),
),
],
),
)
: ListView.builder(
padding: const EdgeInsets.all(16),
itemCount: _items.length,
itemBuilder: (context, index) {
final item = _items[index];
final categoryName = _getCategoryName(item['category_id']);
final categoryIcon = _getCategoryIcon(item['category_id']);
final tags = List<String>.from(item['context_tags'] ?? []);
return Card(
margin: const EdgeInsets.only(bottom: 12),
elevation: 2,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Container(
width: 48,
height: 48,
decoration: BoxDecoration(
color: const Color(0xFF0066CC).withOpacity(0.1),
borderRadius: BorderRadius.circular(8),
),
child: Center(
child: Text(
categoryIcon,
style: const TextStyle(fontSize: 24),
),
),
),
const SizedBox(width: 12),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
item['name'] ?? 'Sem nome',
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: Color(0xFF333333),
),
),
const SizedBox(height: 4),
Text(
categoryName,
style: const TextStyle(
fontSize: 14,
color: Color(0xFF666666),
),
),
],
),
),
],
),
if (item['description'] != null &&
item['description'].toString().isNotEmpty) ...[
const SizedBox(height: 12),
Text(
item['description'],
style: const TextStyle(
fontSize: 14,
color: Color(0xFF666666),
),
),
],
if (tags.isNotEmpty) ...[
const SizedBox(height: 12),
Wrap(
spacing: 8,
runSpacing: 8,
children: tags.map((tag) {
final contextTag = CONTEXT_TAGS.firstWhere(
(t) => t.id == tag,
orElse: () => CONTEXT_TAGS.first,
);
return Chip(
label: Text(contextTag.name),
backgroundColor: const Color(
0xFF0066CC,
).withOpacity(0.1),
labelStyle: const TextStyle(
color: Color(0xFF0066CC),
fontSize: 12,
),
padding: EdgeInsets.zero,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
);
}).toList(),
),
],
],
),
),
);
},
),
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.of(context)
.push(MaterialPageRoute(builder: (_) => const AddItemScreen()))
.then((_) => _loadItems());
},
backgroundColor: const Color(0xFF0066CC),
child: const Icon(Icons.add, color: Colors.white),
),
);
}
}