feat(ui): port web UI/UX improvements to mobile app

Port the 3 redesigned views from prosappweb to prosappco:

- Solicitudes: modern cards with 4px colored left strip, status badge with
  icon+border, avatar with status-colored ring, date/time row, empty state
- Calendario: card-wrapped TableCalendar with custom CalendarStyle (blue
  selected/ring today), day header card with date box + occupied/available
  stat pills, slot cards with colored strip and time badge instead of
  gradient circles
- Perfil profesional: gradient banner header with profession pill + camera
  overlay, section cards with icon+title, payment method chips (animated)
  instead of checkboxes, schedule rows with colored active/inactive dots,
  theme-aware colors throughout (respects dark/light mode)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-06-30 22:38:55 -05:00
co-authored by Claude Sonnet 4.6
parent 1e962af6e8
commit a65e671603
3 changed files with 1203 additions and 1005 deletions
@@ -1,5 +1,3 @@
import 'package:user_repository/user_repository.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_bloc/flutter_bloc.dart';
@@ -10,6 +8,20 @@ import 'package:prosappco/blocs/service_bloc/service_bloc.dart';
import 'package:prosappco/screens/service/professional_service_screen.dart'; import 'package:prosappco/screens/service/professional_service_screen.dart';
import 'package:service_repository/service_repository.dart'; import 'package:service_repository/service_repository.dart';
import 'package:shimmer/shimmer.dart'; import 'package:shimmer/shimmer.dart';
import 'package:user_repository/user_repository.dart';
const _kPrimary = Color(0xFF1565C0);
extension _Th on BuildContext {
ThemeData get _t => Theme.of(this);
Color get bg => _t.scaffoldBackgroundColor;
Color get card => _t.cardColor;
Color get onSurface => _t.colorScheme.onSurface;
Color get muted => _t.colorScheme.onSurface.withOpacity(0.55);
Color get subtle => _t.colorScheme.onSurface.withOpacity(0.35);
bool get isDark => _t.brightness == Brightness.dark;
Color get shadowSm => isDark ? Colors.transparent : Colors.black.withOpacity(0.04);
}
class ProfessionalPendingServiceListScreen extends StatefulWidget { class ProfessionalPendingServiceListScreen extends StatefulWidget {
const ProfessionalPendingServiceListScreen({super.key}); const ProfessionalPendingServiceListScreen({super.key});
@@ -26,10 +38,9 @@ class _ProfessionalPendingServiceListScreenState
@override @override
void initState() { void initState() {
super.initState(); super.initState();
serviceBloc = Injector.appInstance.get<ServiceBloc>(); serviceBloc = Injector.appInstance.get<ServiceBloc>();
serviceBloc.add(
serviceBloc.add(LoadPendingServicesForProfessional(ApiUserRepository.currentUserId ?? '')); LoadPendingServicesForProfessional(ApiUserRepository.currentUserId ?? ''));
} }
@override @override
@@ -37,180 +48,247 @@ class _ProfessionalPendingServiceListScreenState
return BlocProvider<ServiceBloc>( return BlocProvider<ServiceBloc>(
create: (context) => serviceBloc, create: (context) => serviceBloc,
child: Scaffold( child: Scaffold(
backgroundColor: context.bg,
appBar: AppBar(
title: const Text('Solicitudes'),
backgroundColor: _kPrimary,
foregroundColor: Colors.white,
elevation: 0,
),
body: BlocBuilder<ServiceBloc, ServiceState>( body: BlocBuilder<ServiceBloc, ServiceState>(
builder: (context, serviceState) { builder: (context, serviceState) {
if (serviceState is ServicesForUserLoaded) { if (serviceState is ServicesForUserLoaded) {
return serviceState.services.isEmpty if (serviceState.services.isEmpty) return _emptyState(context);
? const Center( return ListView.builder(
child: Text('No tienes solicitudes'), padding: const EdgeInsets.symmetric(vertical: 12),
)
: ListView.builder(
itemCount: serviceState.services.length, itemCount: serviceState.services.length,
itemBuilder: (_, index) { itemBuilder: (_, index) =>
final serviceInfo = serviceState.services[index]; _RequestCard(info: serviceState.services[index]),
final user = serviceInfo.user;
final service = serviceInfo.service;
return Container(
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: Colors.grey.withOpacity(0.2)),
),
),
child: ListTile(
onTap: () {
Navigator.push(
context,
CupertinoPageRoute(
builder: (context) =>
ProfessionalServiceScreen(
serviceId: service.id!,
),
),
); );
}
return _shimmerList();
}, },
leading: Container(
width: 60,
height: 60,
decoration: BoxDecoration(
color: Colors.grey.shade300,
shape: BoxShape.circle,
image: user.picture == null
? null
: DecorationImage(
image: NetworkImage(user.picture!),
fit: BoxFit.contain,
), ),
), ),
child: user.picture == null
? Icon(
CupertinoIcons.person,
color: Colors.grey.shade400,
size: 40,
)
: null,
),
title: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
child: Text(
'${user.name}',
overflow: TextOverflow.ellipsis,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(width: 5),
Text(
'${DateFormat('dd MMMM', 'es').format(DateTime.parse(service.day))} - ${ScheduleEntity.getFormatTime(service.range1Hour1)}',
style: TextStyle(
color: Colors.grey[600],
),
),
],
),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Text(
'Estado:',
style: TextStyle(
fontStyle: FontStyle.italic,
),
),
const SizedBox(width: 5),
customStatus(service),
],
),
service.description.isEmpty
? Container()
: Text(
'"${service.description.trim()}"',
overflow: TextOverflow.ellipsis,
),
],
),
),
);
},
); );
} }
Widget _emptyState(BuildContext context) {
return Center(
child: Padding(
padding: const EdgeInsets.all(32),
child: Column(mainAxisSize: MainAxisSize.min, children: [
Container(
width: 72,
height: 72,
decoration: BoxDecoration(
color: context.subtle.withOpacity(0.1), shape: BoxShape.circle),
child:
Icon(Icons.inbox_outlined, size: 36, color: context.subtle),
),
const SizedBox(height: 16),
Text('Sin solicitudes pendientes',
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
color: context.muted)),
const SizedBox(height: 6),
Text('Cuando un cliente solicite tus servicios\naparecerá aquí.',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 13, color: context.subtle, height: 1.5)),
]),
),
);
}
Widget _shimmerList() {
return Shimmer.fromColors( return Shimmer.fromColors(
baseColor: Colors.grey[300]!, baseColor: Colors.grey[300]!,
highlightColor: Colors.grey[100]!, highlightColor: Colors.grey[100]!,
child: ListView.builder( child: ListView.builder(
itemCount: 10, padding: const EdgeInsets.symmetric(vertical: 12),
itemBuilder: (_, __) => ListTile( itemCount: 8,
leading: CircleAvatar( itemBuilder: (_, __) => Container(
backgroundColor: Colors.grey[300], margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
radius: 30, height: 84,
),
title: Container(
height: 20,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.grey.shade300, color: Colors.white, borderRadius: BorderRadius.circular(14)),
borderRadius: BorderRadius.circular(8),
),
),
subtitle: Container(
height: 15,
decoration: BoxDecoration(
color: Colors.grey.shade300,
borderRadius: BorderRadius.circular(8),
),
),
),
),
);
},
), ),
), ),
); );
} }
Container customStatus(ServiceEntity service) {
if (service.status == ServiceStatus.pending) {
return itemStatus(Colors.black54, 'Pendiente');
}
if (service.status == ServiceStatus.acepted) {
return itemStatus(Colors.green, 'Aceptado');
}
if (service.status == ServiceStatus.active) {
return itemStatus(Colors.blueAccent, 'Activo');
} }
return itemStatus(Colors.red, 'Cancelado'); class _RequestCard extends StatelessWidget {
} final ServiceInfoUI info;
const _RequestCard({required this.info});
@override
Widget build(BuildContext context) {
final service = info.service;
final user = info.user;
final si = _statusInfo(service.status);
final dateStr = DateFormat('dd MMM yyyy', 'es')
.format(DateTime.parse(service.day));
final timeStr = ScheduleEntity.getFormatTime(service.range1Hour1) ?? '';
Container itemStatus(Color color, String text) {
return Container( return Container(
padding: const EdgeInsets.symmetric( margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
horizontal: 8,
vertical: 3,
),
decoration: BoxDecoration( decoration: BoxDecoration(
color: color, color: context.card,
borderRadius: BorderRadius.circular(8), borderRadius: BorderRadius.circular(14),
boxShadow: [
BoxShadow(
color: context.shadowSm,
blurRadius: 10,
offset: const Offset(0, 2))
],
), ),
child: ClipRRect(
borderRadius: BorderRadius.circular(14),
child: InkWell(
onTap: () => Navigator.push(
context,
CupertinoPageRoute(
builder: (_) =>
ProfessionalServiceScreen(serviceId: service.id!)),
),
child: IntrinsicHeight(
child: Row(children: [
Container(width: 4, color: si.color),
Padding(
padding: const EdgeInsets.all(12),
child: Container(
width: 50,
height: 50,
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(
color: si.color.withOpacity(0.35), width: 2)),
child: ClipOval(
child: (user.picture == null || user.picture!.isEmpty)
? Container(
color: _kPrimary.withOpacity(0.1),
child: Center(
child: Text( child: Text(
text, user.name?.isNotEmpty == true
? user.name![0].toUpperCase()
: '?',
style: const TextStyle( style: const TextStyle(
fontStyle: FontStyle.italic, fontSize: 18,
color: Colors.white, fontWeight: FontWeight.w700,
color: _kPrimary),
),
),
)
: Image.network(user.picture!, fit: BoxFit.cover),
),
),
),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 12),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(user.name ?? '',
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w700,
color: context.onSurface)),
if (service.description.isNotEmpty) ...[
const SizedBox(height: 2),
Text('"${service.description}"',
style: TextStyle(
fontSize: 12,
color: context.muted,
fontStyle: FontStyle.italic),
maxLines: 1,
overflow: TextOverflow.ellipsis),
],
const SizedBox(height: 5),
Row(children: [
Icon(Icons.calendar_today_outlined,
size: 11, color: context.subtle),
const SizedBox(width: 4),
Text('$dateStr · $timeStr',
style: TextStyle(
fontSize: 11,
color: context.muted,
fontWeight: FontWeight.w500)),
]),
],
),
),
),
Padding(
padding: const EdgeInsets.fromLTRB(8, 12, 12, 12),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.end,
children: [
_StatusBadge(si: si),
const SizedBox(height: 6),
Icon(Icons.chevron_right, size: 18, color: context.subtle),
],
),
),
]),
),
), ),
), ),
); );
} }
} }
// pending - 0 class _StatusBadge extends StatelessWidget {
// acepted - 1 final _StatusInfo si;
// active - 2 const _StatusBadge({required this.si});
// cancelled - 3
// completed - 4 @override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
decoration: BoxDecoration(
color: si.color.withOpacity(0.1),
borderRadius: BorderRadius.circular(20),
border: Border.all(color: si.color.withOpacity(0.3)),
),
child: Row(mainAxisSize: MainAxisSize.min, children: [
Icon(si.icon, size: 10, color: si.color),
const SizedBox(width: 4),
Text(si.label,
style: TextStyle(
fontSize: 10, fontWeight: FontWeight.w700, color: si.color)),
]),
);
}
}
class _StatusInfo {
final String label;
final Color color;
final IconData icon;
const _StatusInfo(this.label, this.color, this.icon);
}
_StatusInfo _statusInfo(ServiceStatus status) {
switch (status) {
case ServiceStatus.acepted:
return const _StatusInfo('Aceptado', Color(0xFF1565C0), Icons.check_circle_outline);
case ServiceStatus.active:
return const _StatusInfo('En curso', Color(0xFF16A34A), Icons.play_circle_outline);
case ServiceStatus.completed:
return const _StatusInfo('Completado', Color(0xFF64748B), Icons.task_alt_outlined);
case ServiceStatus.denied:
return const _StatusInfo('Rechazado', Color(0xFFDC2626), Icons.cancel_outlined);
case ServiceStatus.cancelled:
return const _StatusInfo('Cancelado', Color(0xFF9CA3AF), Icons.remove_circle_outline);
case ServiceStatus.selfBooked:
return const _StatusInfo('Reservado', Color(0xFF7C3AED), Icons.bookmark_outline);
default:
return const _StatusInfo('Pendiente', Color(0xFFD97706), Icons.hourglass_top_outlined);
}
}
@@ -1,22 +1,33 @@
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:injector/injector.dart';
import 'package:intl/intl.dart';
import 'package:professional_repository/professional_repository.dart';
import 'package:prosappco/blocs/service_bloc/service_bloc.dart'; import 'package:prosappco/blocs/service_bloc/service_bloc.dart';
import 'package:prosappco/screens/service/professional_service_screen.dart'; import 'package:prosappco/screens/service/professional_service_screen.dart';
import 'package:prosappco/utils/time_of_day_extension.dart';
import 'package:provider/provider.dart';
import 'package:table_calendar/table_calendar.dart';
import 'package:injector/injector.dart';
import 'package:professional_repository/professional_repository.dart';
import 'package:intl/intl.dart';
import 'package:prosappco/utils/time_of_day_utils.dart'; import 'package:prosappco/utils/time_of_day_utils.dart';
import 'package:service_repository/service_repository.dart'; import 'package:service_repository/service_repository.dart';
import 'package:setting_repository/setting_repository.dart'; import 'package:table_calendar/table_calendar.dart';
const _kPrimary = Color(0xFF1565C0);
const _kAvailable = Color(0xFF16A34A);
const _kOccupied = Color(0xFFDC2626);
extension _Th on BuildContext {
ThemeData get _t => Theme.of(this);
Color get bg => _t.scaffoldBackgroundColor;
Color get card => _t.cardColor;
Color get onSurface => _t.colorScheme.onSurface;
Color get muted => _t.colorScheme.onSurface.withOpacity(0.55);
Color get subtle => _t.colorScheme.onSurface.withOpacity(0.35);
bool get isDark => _t.brightness == Brightness.dark;
Color get shadow => isDark ? Colors.transparent : Colors.black.withOpacity(0.07);
Color get shadowSm => isDark ? Colors.transparent : Colors.black.withOpacity(0.04);
}
class ProfessionalCalendarScreen extends StatefulWidget { class ProfessionalCalendarScreen extends StatefulWidget {
final ProfessionalEntity userProfessional; final ProfessionalEntity userProfessional;
const ProfessionalCalendarScreen({super.key, required this.userProfessional}); const ProfessionalCalendarScreen({super.key, required this.userProfessional});
@override @override
@@ -24,49 +35,28 @@ class ProfessionalCalendarScreen extends StatefulWidget {
_ProfessionalCalendarScreenState(); _ProfessionalCalendarScreenState();
} }
class _ProfessionalCalendarScreenState extends State<ProfessionalCalendarScreen> { class _ProfessionalCalendarScreenState
final settingRepository = Injector.appInstance.get<SettingRepository>(); extends State<ProfessionalCalendarScreen> {
final serviceRepository = final serviceRepository = Injector.appInstance.get<ApiServiceRepository>();
Injector.appInstance.get<ApiServiceRepository>();
SettingEntity? settings;
DateTime today = DateTime.now(); DateTime today = DateTime.now();
DateTime now = DateTime.now();
late int numDay; late int numDay;
List<ServiceEntity>? _services; List<ServiceEntity>? _services;
CalendarFormat _calendarFormat = CalendarFormat.month; CalendarFormat _calendarFormat = CalendarFormat.month;
bool isLoading = false; bool isLoading = false;
@override @override
void initState() { void initState() {
super.initState(); super.initState();
today = DateTime.utc(today.year, today.month, today.day); today = DateTime.utc(today.year, today.month, today.day);
numDay = today.weekday; numDay = today.weekday;
_loadSettings();
_loadServices(); _loadServices();
} }
void _loadSettings() {
settingRepository.getSettings().then(
(value) => setState(() {
settings = value;
}),
);
}
void _loadServices() { void _loadServices() {
serviceRepository serviceRepository
.getServicesForProfessionalforCalendar(widget.userProfessional.id) .getServicesForProfessionalforCalendar(widget.userProfessional.id)
.then((services) { .then((services) => setState(() => _services = services));
setState(() {
_services = services;
});
});
} }
void _onDaySelected(DateTime day, DateTime focusedDay) { void _onDaySelected(DateTime day, DateTime focusedDay) {
@@ -76,274 +66,317 @@ class _ProfessionalCalendarScreenState extends State<ProfessionalCalendarScreen>
}); });
} }
void _onFormatChange(CalendarFormat format) {
setState(() {
_calendarFormat = format;
});
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
DateTime lastDay = today.add(const Duration(days: 365)); final schedule = _scheduleFromDay(numDay);
final slots = _buildSlots(schedule);
final occupied =
slots.where((t) => _isOccupied(t, _services, today)).length;
final available = slots.length - occupied;
return Scaffold( return Scaffold(
backgroundColor: context.bg,
appBar: AppBar( appBar: AppBar(
title: const Text('Calendario'), title: const Text('Calendario'),
backgroundColor: _kPrimary,
foregroundColor: Colors.white,
elevation: 0,
), ),
floatingActionButtonLocation: kIsWeb
? FloatingActionButtonLocation.startFloat
: FloatingActionButtonLocation.endFloat,
resizeToAvoidBottomInset: false,
body: BlocProvider<ServiceBloc>( body: BlocProvider<ServiceBloc>(
create: (context) => Injector.appInstance.get<ServiceBloc>(), create: (context) => Injector.appInstance.get<ServiceBloc>(),
child: BlocConsumer<ServiceBloc, ServiceState>( child: BlocConsumer<ServiceBloc, ServiceState>(
listener: (context, serviceState) { listener: (context, state) {
if (serviceState is CreateServiceLoading) { if (state is CreateServiceLoading) isLoading = true;
isLoading = true; if (state is CreateServiceFailure) isLoading = false;
}
if (serviceState is CreateServiceFailure) {
isLoading = false;
}
}, },
builder: (context, state) { builder: (context, state) {
return Column( return ListView(
padding: const EdgeInsets.only(bottom: 32),
children: [ children: [
Container( _calendarCard(context),
color: const Color.fromARGB(255, 224, 247, 255), _dayHeader(context, schedule, slots.length, occupied, available),
if (slots.isEmpty)
_emptyState(context)
else
..._slotCards(context, slots, state),
],
);
},
),
),
);
}
Widget _calendarCard(BuildContext context) {
return Container(
margin: const EdgeInsets.fromLTRB(16, 16, 16, 0),
decoration: BoxDecoration(
color: context.card,
borderRadius: BorderRadius.circular(16),
boxShadow: [
BoxShadow(
color: context.shadow,
blurRadius: 16,
offset: const Offset(0, 4))
],
),
child: ClipRRect(
borderRadius: BorderRadius.circular(16),
child: TableCalendar( child: TableCalendar(
locale: 'es_MX', locale: 'es_MX',
firstDay: DateTime.now(), firstDay: DateTime.now(),
lastDay: lastDay, lastDay: today.add(const Duration(days: 365)),
focusedDay: today, focusedDay: today,
availableGestures: AvailableGestures.all, availableGestures: AvailableGestures.all,
onDaySelected: _onDaySelected, onDaySelected: _onDaySelected,
selectedDayPredicate: (day) => isSameDay(day, today), selectedDayPredicate: (day) => isSameDay(day, today),
calendarFormat: _calendarFormat, calendarFormat: _calendarFormat,
onFormatChanged: _onFormatChange, onFormatChanged: (f) => setState(() => _calendarFormat = f),
availableCalendarFormats: const { availableCalendarFormats: const {
CalendarFormat.month: 'Mes', CalendarFormat.month: 'Mes',
CalendarFormat.week: 'Semana', CalendarFormat.week: 'Semana',
CalendarFormat.twoWeeks: '2 Semanas', CalendarFormat.twoWeeks: '2 Semanas',
}, },
calendarStyle: CalendarStyle(
todayDecoration: BoxDecoration(
border: Border.all(color: _kPrimary, width: 2),
shape: BoxShape.circle),
todayTextStyle: const TextStyle(
color: _kPrimary, fontWeight: FontWeight.w700),
selectedDecoration: const BoxDecoration(
color: _kPrimary, shape: BoxShape.circle),
selectedTextStyle: const TextStyle(
color: Colors.white, fontWeight: FontWeight.w700),
weekendTextStyle: TextStyle(color: Colors.red.shade400),
defaultTextStyle: TextStyle(color: context.onSurface),
outsideDaysVisible: false,
), ),
headerStyle: HeaderStyle(
formatButtonDecoration: BoxDecoration(
border: Border.all(color: _kPrimary.withOpacity(0.4)),
borderRadius: BorderRadius.circular(8),
), ),
SizedBox( formatButtonTextStyle:
width: double.infinity, const TextStyle(color: _kPrimary, fontSize: 12),
child: Padding( titleCentered: true,
padding: titleTextStyle: TextStyle(
const EdgeInsets.symmetric(horizontal: 15, vertical: 8), fontSize: 15,
child: Text( fontWeight: FontWeight.w700,
DateFormat('dd MMMM yyyy', 'es').format(today), color: context.onSurface),
style: const TextStyle( leftChevronIcon:
color: Colors.black, const Icon(Icons.chevron_left, color: _kPrimary),
fontSize: 16, rightChevronIcon:
const Icon(Icons.chevron_right, color: _kPrimary),
),
daysOfWeekStyle: DaysOfWeekStyle(
weekdayStyle: TextStyle(
fontSize: 12,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: context.muted),
weekendStyle: const TextStyle(
fontSize: 12,
fontWeight: FontWeight.w600,
color: Color(0xFFEF4444)),
), ),
), ),
), ),
);
}
Widget _dayHeader(BuildContext context, ScheduleEntity? schedule, int total,
int occupied, int available) {
final dayName = DateFormat('EEEE', 'es').format(today);
final dateStr = DateFormat('d MMMM yyyy', 'es').format(today);
final hasSchedule = schedule != null && schedule.enabled && total > 0;
return Container(
margin: const EdgeInsets.fromLTRB(16, 12, 16, 0),
padding: const EdgeInsets.fromLTRB(16, 14, 16, 14),
decoration: BoxDecoration(
color: context.card,
borderRadius: BorderRadius.circular(16),
boxShadow: [
BoxShadow(
color: context.shadowSm,
blurRadius: 12,
offset: const Offset(0, 2))
],
), ),
const Divider( child: Row(children: [
height: 0, Container(
width: 48,
height: 52,
decoration:
BoxDecoration(color: _kPrimary, borderRadius: BorderRadius.circular(12)),
child: Column(mainAxisAlignment: MainAxisAlignment.center, children: [
Text(DateFormat('d').format(today),
style: const TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.w800,
height: 1)),
Text(DateFormat('MMM', 'es').format(today).toUpperCase(),
style: const TextStyle(
color: Colors.white70,
fontSize: 10,
fontWeight: FontWeight.w600)),
]),
), ),
const SizedBox(width: 14),
Expanded(
child: Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
Text(_capitalize(dayName),
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
color: context.onSurface)),
Text(dateStr, style: TextStyle(fontSize: 12, color: context.subtle)),
]),
),
if (hasSchedule) ...[
_StatPill(label: '$occupied', sublabel: 'ocupadas', color: _kOccupied),
const SizedBox(width: 8),
_StatPill(
label: '$available', sublabel: 'libres', color: _kAvailable),
],
]),
);
}
List<Widget> _slotCards(
BuildContext context, List<TimeOfDay> slots, ServiceState state) {
return slots.map((time) {
final occ = _isOccupied(time, _services, today);
final color = occ ? _kOccupied : _kAvailable;
return Container(
margin: const EdgeInsets.fromLTRB(16, 8, 16, 0),
decoration: BoxDecoration(
color: context.card,
borderRadius: BorderRadius.circular(14),
boxShadow: [
BoxShadow(
color: context.shadowSm,
blurRadius: 8,
offset: const Offset(0, 2))
],
),
child: ClipRRect(
borderRadius: BorderRadius.circular(14),
child: InkWell(
onTap: () => occ ? _onOccupied(time) : _onAvailable(context, time, state),
child: IntrinsicHeight(
child: Row(children: [
Container(width: 4, color: color),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 14, vertical: 12),
child: Row(children: [
Container(
padding: const EdgeInsets.symmetric(
horizontal: 12, vertical: 6),
decoration: BoxDecoration(
color: color.withOpacity(0.08),
borderRadius: BorderRadius.circular(8)),
child: Text(
ScheduleEntity.getFormatTime(time) ?? '',
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.w800,
color: color),
),
),
const SizedBox(width: 14),
Expanded( Expanded(
child: SingleChildScrollView(
padding: const EdgeInsets.only(bottom: 15),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
..._rangesItems( Text(occ ? 'Ocupado' : 'Disponible',
_getScheduleFromNumDay(numDay), context), style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w700,
color: color)),
Text(
occ
? 'Toca para ver el servicio'
: 'Horario libre · toca para reservar',
style: TextStyle(
fontSize: 11, color: context.subtle),
),
], ],
), ),
), ),
) Container(
], width: 32,
); height: 32,
}, decoration: BoxDecoration(
color: color.withOpacity(0.1),
shape: BoxShape.circle),
child: Icon(
occ
? Icons.event_busy_outlined
: Icons.event_available_outlined,
size: 17,
color: color),
),
]),
),
),
]),
),
), ),
), ),
); );
}).toList();
} }
ScheduleEntity? _getScheduleFromNumDay(int numDay) { void _onOccupied(TimeOfDay time) {
switch (numDay) { if (_services == null) return;
case 1: for (final event in _services!) {
return widget.userProfessional.schedules.monday; if (today.toString() == event.day && time == event.range1Hour1) {
case 2:
return widget.userProfessional.schedules.tuesday;
case 3:
return widget.userProfessional.schedules.wednesday;
case 4:
return widget.userProfessional.schedules.thursday;
case 5:
return widget.userProfessional.schedules.friday;
case 6:
return widget.userProfessional.schedules.saturday;
case 7:
return widget.userProfessional.schedules.sunday;
default:
return null;
}
}
List<Widget> _rangesItems(ScheduleEntity? schedule, BuildContext context) {
if (schedule == null ||
schedule.enabled == false ||
schedule.range1Hour1 == null ||
schedule.range2Hour2 == null) {
return [
const Padding(
padding: EdgeInsets.symmetric(vertical: 25),
child: Text("No hay horarios disponibles"),
)
];
}
if (schedule.continuousDay) {
List<TimeOfDay> ranges = TimeOfDayUtils.genRanges(
schedule.range1Hour1!,
schedule.range2Hour2!,
);
return rangesItemList(ranges, _services, today, context);
}
List<TimeOfDay> ranges1 = TimeOfDayUtils.genRanges(
schedule.range1Hour1!,
schedule.range1Hour2!,
);
List<TimeOfDay> ranges2 = TimeOfDayUtils.genRanges(
schedule.range2Hour1!,
schedule.range2Hour2!,
);
return [
...rangesItemList(ranges1, _services, today, context),
...rangesItemList(ranges2, _services, today, context),
];
}
bool _isHora1Ocupada(
TimeOfDay hora1, List<ServiceEntity>? events, DateTime selectedDay) {
if (events != null) {
for (ServiceEntity event in events) {
if (selectedDay.toString() == event.day) {
if (hora1 == event.range1Hour1) {
return true;
}
}
}
}
return false;
}
List<Widget> rangesItemList(List<TimeOfDay> ranges, List<ServiceEntity>? events, DateTime selectedDay, BuildContext context) {
return ranges.map((time) {
if (_isHora1Ocupada(time, events, selectedDay)) {
return Card(
elevation: 4,
margin: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: ListTile(
onTap: () {
if (events != null) {
for (ServiceEntity event in events) {
if (selectedDay.toString() == event.day) {
if (time == event.range1Hour1) {
if (event.userId == event.professionalId) { if (event.userId == event.professionalId) {
ScaffoldMessenger.of(context).clearSnackBars(); ScaffoldMessenger.of(context).clearSnackBars();
ScaffoldMessenger.of(context) ScaffoldMessenger.of(context)
.showSnackBar(const SnackBar( .showSnackBar(const SnackBar(content: Text('Horario ocupado por ti')));
content: Text('Horario ocupado por ti'),
));
} else { } else {
Navigator.push( Navigator.push(
context, context,
CupertinoPageRoute( CupertinoPageRoute(
builder: (context) => ProfessionalServiceScreen( builder: (_) =>
serviceId: event.id!, ProfessionalServiceScreen(serviceId: event.id!)),
),
),
); );
} }
return;
} }
} }
} }
}
}, void _onAvailable(BuildContext context, TimeOfDay time, ServiceState state) {
contentPadding: const EdgeInsets.all(16),
leading: Container(
width: 40,
height: 40,
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Colors.yellow, Colors.red, Colors.red],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
shape: BoxShape.circle,
),
child: const Center(
child: Icon(
Icons.access_time,
color: Colors.white,
),
),
),
title: Text(
ScheduleEntity.getFormatTime(time) ?? '',
style: const TextStyle(fontSize: 15, fontWeight: FontWeight.bold),
),
subtitle: const Text(
'Ocupado',
style: TextStyle(
color: Colors.red, fontSize: 13, fontWeight: FontWeight.bold),
),
),
);
} else {
return Card(
elevation: 4,
margin: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: ListTile(
onTap: () {
showDialog( showDialog(
context: context, context: context,
builder: (BuildContext dialogContext) { builder: (dialogContext) => AlertDialog(
return AlertDialog(
title: const Text('Reservar hora'), title: const Text('Reservar hora'),
content: Column( content: Column(mainAxisSize: MainAxisSize.min, children: [
mainAxisSize: MainAxisSize.min,
children: [
Text( Text(
'¿Estás seguro de que deseas reservar a las ${ScheduleEntity.getFormatTime(time)} del ${DateFormat('dd-MM-yyyy').format(today)}?', '¿Reservar a las ${ScheduleEntity.getFormatTime(time)} '
'del ${DateFormat('dd-MM-yyyy').format(today)}?',
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
const Text( const Text('⚠️ Esta acción no se puede deshacer',
'⚠️ Esta accion no se puede deshacer ⚠️', style: TextStyle(fontWeight: FontWeight.bold)),
style: TextStyle(fontWeight: FontWeight.bold), ]),
),
],
),
actions: [ actions: [
TextButton( TextButton(
onPressed: () { onPressed: () => Navigator.pop(dialogContext),
Navigator.pop(dialogContext); child: const Text('Cancelar'),
},
child: const Text('No, cancelar'),
), ),
TextButton( TextButton(
onPressed: () { onPressed: () {
Navigator.pop(dialogContext); Navigator.pop(dialogContext);
Navigator.pop(context); Navigator.pop(context);
context.read<ServiceBloc>().add(CreateService(
context.read<ServiceBloc>().add(
CreateService(
professionalId: widget.userProfessional.id, professionalId: widget.userProfessional.id,
userId: widget.userProfessional.id, userId: widget.userProfessional.id,
address: widget.userProfessional.address, address: widget.userProfessional.address,
@@ -354,54 +387,120 @@ class _ProfessionalCalendarScreenState extends State<ProfessionalCalendarScreen>
createdAt: DateTime.now().toIso8601String(), createdAt: DateTime.now().toIso8601String(),
description: '', description: '',
range1Hour1: time, range1Hour1: time,
range1Hour2: time.add(hour: 2), range1Hour2: time.replacing(hour: time.hour + 2),
rate: '0', rate: '0',
location: ServiceLocationPreferences.office, location: ServiceLocationPreferences.office,
status: ServiceStatus.selfBooked, status: ServiceStatus.selfBooked,
), ));
);
}, },
child: const Text('Si, reservar'), child: const Text('Reservar'),
), ),
], ],
),
); );
}, }
);
}, Widget _emptyState(BuildContext context) {
contentPadding: const EdgeInsets.all(16), return Container(
leading: Container( margin: const EdgeInsets.fromLTRB(16, 12, 16, 0),
width: 40, padding: const EdgeInsets.symmetric(vertical: 40, horizontal: 24),
height: 40, decoration: BoxDecoration(
decoration: const BoxDecoration( color: context.card,
gradient: LinearGradient( borderRadius: BorderRadius.circular(16),
colors: [Colors.blue, Colors.green], boxShadow: [
begin: Alignment.topLeft, BoxShadow(
end: Alignment.bottomRight, color: context.shadowSm,
blurRadius: 12,
offset: const Offset(0, 2))
],
), ),
shape: BoxShape.circle, child: Column(children: [
Container(
width: 64,
height: 64,
decoration: BoxDecoration(
color: context.subtle.withOpacity(0.1), shape: BoxShape.circle),
child: Icon(Icons.event_busy_outlined, size: 32, color: context.subtle),
), ),
child: const Center( const SizedBox(height: 16),
child: Icon( Text('Sin horario este día',
Icons.access_time,
color: Colors.white,
),
),
),
title: Text(
ScheduleEntity.getFormatTime(time) ?? '',
style: const TextStyle(fontSize: 15, fontWeight: FontWeight.bold),
),
subtitle: const Text(
'Disponible',
style: TextStyle( style: TextStyle(
color: Colors.green, fontSize: 15, fontWeight: FontWeight.w700, color: context.muted)),
fontSize: 13, const SizedBox(height: 6),
fontWeight: FontWeight.bold, Text(
), 'No tienes horario de atención configurado\npara este día de la semana.',
), textAlign: TextAlign.center,
), style: TextStyle(fontSize: 13, color: context.subtle, height: 1.5)),
]),
); );
} }
}).toList();
ScheduleEntity? _scheduleFromDay(int day) {
switch (day) {
case 1: return widget.userProfessional.schedules.monday;
case 2: return widget.userProfessional.schedules.tuesday;
case 3: return widget.userProfessional.schedules.wednesday;
case 4: return widget.userProfessional.schedules.thursday;
case 5: return widget.userProfessional.schedules.friday;
case 6: return widget.userProfessional.schedules.saturday;
default: return widget.userProfessional.schedules.sunday;
}
}
List<TimeOfDay> _buildSlots(ScheduleEntity? s) {
if (s == null || !s.enabled || s.range1Hour1 == null || s.range2Hour2 == null) {
return [];
}
if (s.continuousDay) {
return TimeOfDayUtils.genRanges(s.range1Hour1!, s.range2Hour2!);
}
if (s.range1Hour2 == null || s.range2Hour1 == null) return [];
return [
...TimeOfDayUtils.genRanges(s.range1Hour1!, s.range1Hour2!),
...TimeOfDayUtils.genRanges(s.range2Hour1!, s.range2Hour2!),
];
}
bool _isOccupied(
TimeOfDay time, List<ServiceEntity>? services, DateTime day) {
if (services == null) return false;
return services
.any((s) => day.toString() == s.day && s.range1Hour1 == time);
}
String _capitalize(String s) =>
s.isEmpty ? s : s[0].toUpperCase() + s.substring(1);
}
class _StatPill extends StatelessWidget {
final String label;
final String sublabel;
final Color color;
const _StatPill(
{required this.label, required this.sublabel, required this.color});
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
decoration: BoxDecoration(
color: color.withOpacity(0.08),
borderRadius: BorderRadius.circular(8),
border: Border.all(color: color.withOpacity(0.25)),
),
child: Column(mainAxisSize: MainAxisSize.min, children: [
Text(label,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w800,
color: color,
height: 1)),
Text(sublabel,
style: TextStyle(
fontSize: 9,
color: color.withOpacity(0.8),
fontWeight: FontWeight.w600)),
]),
);
} }
} }
File diff suppressed because it is too large Load Diff