643 lines
22 KiB
Dart
643 lines
22 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:nethive_neo/providers/nethive/empresas_negocios_provider.dart';
|
|
import 'package:nethive_neo/pages/empresa_negocios/widgets/empresa_selector_sidebar.dart';
|
|
import 'package:nethive_neo/pages/empresa_negocios/widgets/negocios_table.dart';
|
|
import 'package:nethive_neo/pages/empresa_negocios/widgets/negocios_cards_view.dart';
|
|
import 'package:nethive_neo/pages/empresa_negocios/widgets/mobile_empresa_selector.dart';
|
|
import 'package:nethive_neo/pages/empresa_negocios/widgets/negocios_map_view.dart';
|
|
import 'package:nethive_neo/theme/theme.dart';
|
|
|
|
class EmpresaNegociosPage extends StatefulWidget {
|
|
const EmpresaNegociosPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<EmpresaNegociosPage> createState() => _EmpresaNegociosPageState();
|
|
}
|
|
|
|
class _EmpresaNegociosPageState extends State<EmpresaNegociosPage>
|
|
with TickerProviderStateMixin {
|
|
bool showMapView = false;
|
|
late AnimationController _animationController;
|
|
late Animation<double> _fadeAnimation;
|
|
late Animation<Offset> _slideAnimation;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_animationController = AnimationController(
|
|
duration: const Duration(milliseconds: 800),
|
|
vsync: this,
|
|
);
|
|
_fadeAnimation = Tween<double>(
|
|
begin: 0.0,
|
|
end: 1.0,
|
|
).animate(CurvedAnimation(
|
|
parent: _animationController,
|
|
curve: Curves.easeInOut,
|
|
));
|
|
_slideAnimation = Tween<Offset>(
|
|
begin: const Offset(0, 0.3),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: _animationController,
|
|
curve: Curves.easeOutCubic,
|
|
));
|
|
_animationController.forward();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_animationController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final isLargeScreen = MediaQuery.of(context).size.width > 1200;
|
|
|
|
return Scaffold(
|
|
backgroundColor: AppTheme.of(context).primaryBackground,
|
|
body: Container(
|
|
decoration: BoxDecoration(
|
|
gradient: AppTheme.of(context).darkBackgroundGradient,
|
|
),
|
|
child: Consumer<EmpresasNegociosProvider>(
|
|
builder: (context, provider, child) {
|
|
if (isLargeScreen) {
|
|
// Vista de escritorio
|
|
return Row(
|
|
children: [
|
|
// Sidebar izquierdo con empresas
|
|
SlideTransition(
|
|
position: Tween<Offset>(
|
|
begin: const Offset(-1, 0),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: _animationController,
|
|
curve: Curves.easeOutCubic,
|
|
)),
|
|
child: SizedBox(
|
|
width: 320,
|
|
child: EmpresaSelectorSidebar(
|
|
provider: provider,
|
|
onEmpresaSelected: (empresaId) {
|
|
provider.setEmpresaSeleccionada(empresaId);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
|
|
// Área principal
|
|
Expanded(
|
|
child: SlideTransition(
|
|
position: _slideAnimation,
|
|
child: FadeTransition(
|
|
opacity: _fadeAnimation,
|
|
child: Container(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// Header con título y switch
|
|
_buildEnhancedHeader(provider),
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
// Contenido principal (tabla o mapa)
|
|
Expanded(
|
|
child: showMapView
|
|
? _buildMapView()
|
|
: _buildTableView(provider),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
} else {
|
|
// Vista móvil/tablet
|
|
return Column(
|
|
children: [
|
|
// Header móvil
|
|
_buildMobileHeader(provider),
|
|
|
|
// Contenido principal
|
|
Expanded(
|
|
child: showMapView
|
|
? _buildMapView()
|
|
: NegociosCardsView(provider: provider),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
},
|
|
),
|
|
),
|
|
// FAB para vista móvil
|
|
floatingActionButton: MediaQuery.of(context).size.width <= 800
|
|
? _buildMobileFAB(context)
|
|
: null,
|
|
);
|
|
}
|
|
|
|
Widget _buildEnhancedHeader(EmpresasNegociosProvider provider) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(24),
|
|
decoration: BoxDecoration(
|
|
gradient: AppTheme.of(context).primaryGradient,
|
|
borderRadius: BorderRadius.circular(20),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: AppTheme.of(context).primaryColor.withOpacity(0.3),
|
|
blurRadius: 20,
|
|
offset: const Offset(0, 8),
|
|
),
|
|
BoxShadow(
|
|
color: Colors.black.withOpacity(0.1),
|
|
blurRadius: 10,
|
|
offset: const Offset(0, 4),
|
|
),
|
|
],
|
|
),
|
|
child: Row(
|
|
children: [
|
|
// Icono animado
|
|
TweenAnimationBuilder<double>(
|
|
duration: const Duration(milliseconds: 1000),
|
|
tween: Tween(begin: 0.0, end: 1.0),
|
|
builder: (context, value, child) {
|
|
return Transform.rotate(
|
|
angle: value * 0.1,
|
|
child: Container(
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.2),
|
|
borderRadius: BorderRadius.circular(16),
|
|
border: Border.all(
|
|
color: Colors.white.withOpacity(0.3),
|
|
width: 2,
|
|
),
|
|
),
|
|
child: Icon(
|
|
Icons.business_center,
|
|
color: Colors.white,
|
|
size: 32,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
|
|
const SizedBox(width: 20),
|
|
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// Título principal con gradiente
|
|
ShaderMask(
|
|
shaderCallback: (bounds) => LinearGradient(
|
|
colors: [Colors.white, Colors.white.withOpacity(0.8)],
|
|
).createShader(bounds),
|
|
child: Text(
|
|
provider.empresaSeleccionada != null
|
|
? 'Sucursales de ${provider.empresaSeleccionada!.nombre}'
|
|
: 'Gestión de Empresas y Sucursales',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 28,
|
|
fontWeight: FontWeight.bold,
|
|
letterSpacing: 0.5,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 12),
|
|
if (provider.empresaSeleccionada != null) ...[
|
|
Row(
|
|
children: [
|
|
// Badge animado
|
|
TweenAnimationBuilder<double>(
|
|
duration: const Duration(milliseconds: 600),
|
|
tween: Tween(begin: 0.0, end: 1.0),
|
|
builder: (context, value, child) {
|
|
return Transform.scale(
|
|
scale: value,
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 16,
|
|
vertical: 8,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.9),
|
|
borderRadius: BorderRadius.circular(25),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withOpacity(0.1),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, 2),
|
|
),
|
|
],
|
|
),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(
|
|
Icons.store,
|
|
color: AppTheme.of(context).primaryColor,
|
|
size: 18,
|
|
),
|
|
const SizedBox(width: 8),
|
|
Text(
|
|
'${provider.negocios.length} sucursales',
|
|
style: TextStyle(
|
|
color: AppTheme.of(context).primaryColor,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: Text(
|
|
provider.empresaSeleccionada!.rfc,
|
|
style: TextStyle(
|
|
color: Colors.white.withOpacity(0.9),
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
|
|
// Switch mejorado para cambiar vista
|
|
Container(
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.1),
|
|
borderRadius: BorderRadius.circular(16),
|
|
border: Border.all(
|
|
color: Colors.white.withOpacity(0.2),
|
|
),
|
|
),
|
|
child: Column(
|
|
children: [
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(
|
|
Icons.table_chart,
|
|
color: Colors.white,
|
|
size: 20,
|
|
),
|
|
const SizedBox(width: 8),
|
|
Text(
|
|
'Vista',
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Icon(
|
|
Icons.map,
|
|
color: Colors.white,
|
|
size: 20,
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 12),
|
|
Switch(
|
|
value: showMapView,
|
|
onChanged: (value) {
|
|
setState(() {
|
|
showMapView = value;
|
|
});
|
|
},
|
|
activeColor: Colors.white,
|
|
activeTrackColor: Colors.white.withOpacity(0.3),
|
|
inactiveThumbColor: Colors.white.withOpacity(0.7),
|
|
inactiveTrackColor: Colors.white.withOpacity(0.1),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildMobileHeader(EmpresasNegociosProvider provider) {
|
|
return Container(
|
|
padding: const EdgeInsets.fromLTRB(20, 40, 20, 20),
|
|
decoration: BoxDecoration(
|
|
gradient: AppTheme.of(context).primaryGradient,
|
|
borderRadius: const BorderRadius.only(
|
|
bottomLeft: Radius.circular(30),
|
|
bottomRight: Radius.circular(30),
|
|
),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: AppTheme.of(context).primaryColor.withOpacity(0.3),
|
|
blurRadius: 15,
|
|
offset: const Offset(0, 5),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
Container(
|
|
padding: const EdgeInsets.all(12),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.2),
|
|
borderRadius: BorderRadius.circular(12),
|
|
),
|
|
child: Icon(
|
|
Icons.business,
|
|
color: Colors.white,
|
|
size: 24,
|
|
),
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: Text(
|
|
'NETHIVE',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
letterSpacing: 1.2,
|
|
),
|
|
),
|
|
),
|
|
// Switch para modo vista
|
|
Switch(
|
|
value: showMapView,
|
|
onChanged: (value) {
|
|
setState(() {
|
|
showMapView = value;
|
|
});
|
|
},
|
|
activeColor: Colors.white,
|
|
),
|
|
],
|
|
),
|
|
if (provider.empresaSeleccionada != null) ...[
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
provider.empresaSeleccionada!.nombre,
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.2),
|
|
borderRadius: BorderRadius.circular(20),
|
|
),
|
|
child: Text(
|
|
'${provider.negocios.length} sucursales',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildTableView(EmpresasNegociosProvider provider) {
|
|
if (provider.empresaSeleccionada == null) {
|
|
return _buildEmptyState();
|
|
}
|
|
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
color: AppTheme.of(context).secondaryBackground,
|
|
borderRadius: BorderRadius.circular(20),
|
|
border: Border.all(
|
|
color: AppTheme.of(context).primaryColor.withOpacity(0.2),
|
|
width: 1,
|
|
),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withOpacity(0.1),
|
|
blurRadius: 15,
|
|
offset: const Offset(0, 5),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
children: [
|
|
// Header de la tabla mejorado
|
|
Container(
|
|
padding: const EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
gradient: AppTheme.of(context).modernGradient,
|
|
borderRadius: const BorderRadius.only(
|
|
topLeft: Radius.circular(20),
|
|
topRight: Radius.circular(20),
|
|
),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
padding: const EdgeInsets.all(8),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.2),
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Icon(
|
|
Icons.store,
|
|
color: Colors.white,
|
|
size: 20,
|
|
),
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Sucursales',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.bold,
|
|
letterSpacing: 0.5,
|
|
),
|
|
),
|
|
Text(
|
|
'Gestión y control de ubicaciones',
|
|
style: TextStyle(
|
|
color: Colors.white.withOpacity(0.8),
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Container(
|
|
padding:
|
|
const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white.withOpacity(0.2),
|
|
borderRadius: BorderRadius.circular(20),
|
|
),
|
|
child: Text(
|
|
'${provider.negocios.length} registros',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
// Tabla de negocios
|
|
Expanded(
|
|
child: NegociosTable(provider: provider),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildEmptyState() {
|
|
return Center(
|
|
child: TweenAnimationBuilder<double>(
|
|
duration: const Duration(milliseconds: 1000),
|
|
tween: Tween(begin: 0.0, end: 1.0),
|
|
builder: (context, value, child) {
|
|
return Transform.scale(
|
|
scale: value,
|
|
child: Container(
|
|
padding: const EdgeInsets.all(40),
|
|
decoration: BoxDecoration(
|
|
gradient: AppTheme.of(context).primaryGradient,
|
|
borderRadius: BorderRadius.circular(20),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: AppTheme.of(context).primaryColor.withOpacity(0.3),
|
|
blurRadius: 20,
|
|
offset: const Offset(0, 10),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(
|
|
Icons.business_center,
|
|
size: 80,
|
|
color: Colors.white,
|
|
),
|
|
const SizedBox(height: 20),
|
|
Text(
|
|
'Selecciona una empresa',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
const SizedBox(height: 12),
|
|
Text(
|
|
'Elige una empresa del panel lateral\npara ver y gestionar sus sucursales',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Colors.white.withOpacity(0.9),
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildMapView() {
|
|
return Consumer<EmpresasNegociosProvider>(
|
|
builder: (context, provider, child) {
|
|
return NegociosMapView(provider: provider);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildMobileFAB(BuildContext context) {
|
|
return Consumer<EmpresasNegociosProvider>(
|
|
builder: (context, provider, child) {
|
|
return FloatingActionButton.extended(
|
|
onPressed: () {
|
|
_showMobileEmpresaSelector(context, provider);
|
|
},
|
|
backgroundColor: AppTheme.of(context).primaryColor,
|
|
icon: const Icon(Icons.business, color: Colors.white),
|
|
label: Text(
|
|
provider.empresaSeleccionada != null
|
|
? provider.empresaSeleccionada!.nombre.length > 15
|
|
? '${provider.empresaSeleccionada!.nombre.substring(0, 15)}...'
|
|
: provider.empresaSeleccionada!.nombre
|
|
: 'Empresas',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
void _showMobileEmpresaSelector(
|
|
BuildContext context, EmpresasNegociosProvider provider) {
|
|
showModalBottomSheet(
|
|
context: context,
|
|
isScrollControlled: true,
|
|
backgroundColor: Colors.transparent,
|
|
builder: (context) => DraggableScrollableSheet(
|
|
initialChildSize: 0.7,
|
|
maxChildSize: 0.95,
|
|
minChildSize: 0.3,
|
|
builder: (context, scrollController) => MobileEmpresaSelector(
|
|
provider: provider,
|
|
onEmpresaSelected: (empresaId) {
|
|
provider.setEmpresaSeleccionada(empresaId);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|