Item add
This commit is contained in:
370
lib/Screens/add_item_screen.dart
Normal file
370
lib/Screens/add_item_screen.dart
Normal file
@@ -0,0 +1,370 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:supabase_flutter/supabase_flutter.dart';
|
||||
import '../constants/item_categories.dart';
|
||||
|
||||
class AddItemScreen extends StatefulWidget {
|
||||
const AddItemScreen({super.key});
|
||||
|
||||
@override
|
||||
State<AddItemScreen> createState() => _AddItemScreenState();
|
||||
}
|
||||
|
||||
class _AddItemScreenState extends State<AddItemScreen> {
|
||||
final TextEditingController _nameController = TextEditingController();
|
||||
final TextEditingController _descriptionController = TextEditingController();
|
||||
|
||||
ItemCategory? _selectedCategory;
|
||||
Subcategory? _selectedSubcategory;
|
||||
final Set<String> _selectedTags = {};
|
||||
|
||||
bool _isLoading = false;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_nameController.dispose();
|
||||
_descriptionController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
void _onCategoryChanged(ItemCategory? category) {
|
||||
setState(() {
|
||||
_selectedCategory = category;
|
||||
_selectedSubcategory = null;
|
||||
_selectedTags.clear();
|
||||
|
||||
if (category != null && category.subcategories.isNotEmpty) {
|
||||
_selectedSubcategory = category.subcategories.first;
|
||||
_autoAssignTags(category.id, category.subcategories.first.id);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void _onSubcategoryChanged(Subcategory? subcategory) {
|
||||
setState(() {
|
||||
_selectedSubcategory = subcategory;
|
||||
_selectedTags.clear();
|
||||
|
||||
if (_selectedCategory != null && subcategory != null) {
|
||||
_autoAssignTags(_selectedCategory!.id, subcategory.id);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void _autoAssignTags(String categoryId, String subcategoryId) {
|
||||
final autoTags = getAutoContextTags(categoryId, subcategoryId);
|
||||
setState(() {
|
||||
_selectedTags.addAll(autoTags);
|
||||
});
|
||||
}
|
||||
|
||||
void _toggleTag(String tagId) {
|
||||
setState(() {
|
||||
if (_selectedTags.contains(tagId)) {
|
||||
_selectedTags.remove(tagId);
|
||||
} else if (_selectedTags.length < 10) {
|
||||
_selectedTags.add(tagId);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Future<void> _saveItem() async {
|
||||
if (_nameController.text.trim().isEmpty) {
|
||||
_showErrorSnackBar('Por favor, insira o nome do item');
|
||||
return;
|
||||
}
|
||||
|
||||
if (_selectedCategory == null) {
|
||||
_showErrorSnackBar('Por favor, selecione uma categoria');
|
||||
return;
|
||||
}
|
||||
|
||||
setState(() => _isLoading = true);
|
||||
|
||||
try {
|
||||
final user = Supabase.instance.client.auth.currentUser;
|
||||
if (user == null) {
|
||||
_showErrorSnackBar('Usuário não autenticado');
|
||||
return;
|
||||
}
|
||||
|
||||
await Supabase.instance.client.from('items').insert({
|
||||
'user_id': user.id,
|
||||
'name': _nameController.text.trim(),
|
||||
'description': _descriptionController.text.trim(),
|
||||
'category_id': _selectedCategory!.id,
|
||||
'subcategory_id': _selectedSubcategory?.id,
|
||||
'context_tags': _selectedTags.toList(),
|
||||
});
|
||||
|
||||
_showSuccessSnackBar('Item adicionado com sucesso!');
|
||||
Navigator.pop(context);
|
||||
} catch (e) {
|
||||
_showErrorSnackBar('Erro ao salvar item: $e');
|
||||
} finally {
|
||||
setState(() => _isLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
void _showErrorSnackBar(String message) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text(message), backgroundColor: Colors.red),
|
||||
);
|
||||
}
|
||||
|
||||
void _showSuccessSnackBar(String message) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text(message), backgroundColor: Colors.green),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: const Color(0xFFFFE5CC),
|
||||
appBar: AppBar(
|
||||
backgroundColor: const Color(0xFF0066CC),
|
||||
elevation: 0,
|
||||
title: const Text(
|
||||
'Adicionar Item',
|
||||
style: TextStyle(color: Colors.white, fontSize: 20),
|
||||
),
|
||||
centerTitle: true,
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
// Name field
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(color: const Color(0xFFE0E0E0)),
|
||||
),
|
||||
child: TextField(
|
||||
controller: _nameController,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Nome do item',
|
||||
hintText: 'Ex: Camiseta Azul',
|
||||
border: InputBorder.none,
|
||||
contentPadding: EdgeInsets.symmetric(
|
||||
horizontal: 16,
|
||||
vertical: 16,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 16),
|
||||
|
||||
// Description field
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(color: const Color(0xFFE0E0E0)),
|
||||
),
|
||||
child: TextField(
|
||||
controller: _descriptionController,
|
||||
maxLines: 3,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Descrição (opcional)',
|
||||
hintText: 'Detalhes sobre o item',
|
||||
border: InputBorder.none,
|
||||
contentPadding: EdgeInsets.symmetric(
|
||||
horizontal: 16,
|
||||
vertical: 16,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 24),
|
||||
|
||||
// Category selection
|
||||
const Text(
|
||||
'Categoria',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.bold,
|
||||
color: Color(0xFF333333),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
|
||||
Container(
|
||||
width: double.infinity,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(color: const Color(0xFFE0E0E0)),
|
||||
),
|
||||
child: DropdownButtonHideUnderline(
|
||||
child: DropdownButton<ItemCategory>(
|
||||
value: _selectedCategory,
|
||||
hint: const Text('Selecione uma categoria'),
|
||||
isExpanded: true,
|
||||
items: ITEM_CATEGORIES.map((category) {
|
||||
return DropdownMenuItem<ItemCategory>(
|
||||
value: category,
|
||||
child: Row(
|
||||
children: [
|
||||
Text(category.icon, style: const TextStyle(fontSize: 24)),
|
||||
const SizedBox(width: 12),
|
||||
Text(category.name),
|
||||
],
|
||||
),
|
||||
);
|
||||
}).toList(),
|
||||
onChanged: _onCategoryChanged,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 16),
|
||||
|
||||
// Subcategory selection
|
||||
if (_selectedCategory != null && _selectedCategory!.subcategories.isNotEmpty) ...[
|
||||
const Text(
|
||||
'Subcategoria',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.bold,
|
||||
color: Color(0xFF333333),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
|
||||
SizedBox(
|
||||
height: 60,
|
||||
child: ListView.builder(
|
||||
scrollDirection: Axis.horizontal,
|
||||
itemCount: _selectedCategory!.subcategories.length,
|
||||
itemBuilder: (context, index) {
|
||||
final subcategory = _selectedCategory!.subcategories[index];
|
||||
final isSelected = _selectedSubcategory == subcategory;
|
||||
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(right: 8),
|
||||
child: GestureDetector(
|
||||
onTap: () => _onSubcategoryChanged(subcategory),
|
||||
child: Container(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
||||
decoration: BoxDecoration(
|
||||
color: isSelected ? const Color(0xFF0066CC) : Colors.white,
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
border: Border.all(
|
||||
color: isSelected ? const Color(0xFF0066CC) : const Color(0xFFE0E0E0),
|
||||
),
|
||||
),
|
||||
child: Center(
|
||||
child: Text(
|
||||
subcategory.name,
|
||||
style: TextStyle(
|
||||
color: isSelected ? Colors.white : const Color(0xFF333333),
|
||||
fontWeight: FontWeight.w500,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 8),
|
||||
if (_selectedSubcategory != null)
|
||||
Text(
|
||||
_selectedSubcategory!.examples,
|
||||
style: const TextStyle(
|
||||
fontSize: 12,
|
||||
color: Color(0xFF666666),
|
||||
fontStyle: FontStyle.italic,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
const SizedBox(height: 24),
|
||||
|
||||
// Context tags
|
||||
const Text(
|
||||
'Tags de Contexto',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.bold,
|
||||
color: Color(0xFF333333),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
children: CONTEXT_TAGS.map((tag) {
|
||||
final isSelected = _selectedTags.contains(tag.id);
|
||||
return FilterChip(
|
||||
label: Text(tag.name),
|
||||
selected: isSelected,
|
||||
onSelected: (selected) => _toggleTag(tag.id),
|
||||
selectedColor: const Color(0xFF0066CC).withOpacity(0.2),
|
||||
checkmarkColor: const Color(0xFF0066CC),
|
||||
backgroundColor: Colors.white,
|
||||
labelStyle: TextStyle(
|
||||
color: isSelected ? const Color(0xFF0066CC) : const Color(0xFF333333),
|
||||
),
|
||||
);
|
||||
}).toList(),
|
||||
),
|
||||
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
'Tags selecionadas: ${_selectedTags.length}/10',
|
||||
style: const TextStyle(
|
||||
fontSize: 12,
|
||||
color: Color(0xFF666666),
|
||||
),
|
||||
),
|
||||
|
||||
const SizedBox(height: 32),
|
||||
|
||||
// Save button
|
||||
SizedBox(
|
||||
width: double.infinity,
|
||||
height: 56,
|
||||
child: ElevatedButton(
|
||||
onPressed: _isLoading ? null : _saveItem,
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: const Color(0xFF0066CC),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
elevation: 0,
|
||||
),
|
||||
child: _isLoading
|
||||
? const SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
|
||||
),
|
||||
)
|
||||
: const Text(
|
||||
'Salvar Item',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user