antes de agregar el id
This commit is contained in:
@@ -29,7 +29,10 @@ class ServiceBloc extends Bloc<ServiceEvent, ServiceState> {
|
|||||||
on<LoadService>(_onLoadService);
|
on<LoadService>(_onLoadService);
|
||||||
on<UpdateServiceStatus>(_onUpdateServiceStatus);
|
on<UpdateServiceStatus>(_onUpdateServiceStatus);
|
||||||
on<LoadServicesForUser>(_onLoadServicesForUser);
|
on<LoadServicesForUser>(_onLoadServicesForUser);
|
||||||
|
on<LoadServicesForProfessional>(_onLoadServicesForProfessional);
|
||||||
on<LoadServicesHistoryForUser>(_onLoadServicesHistoryForUser);
|
on<LoadServicesHistoryForUser>(_onLoadServicesHistoryForUser);
|
||||||
|
on<LoadServicesHistoryForProfessional>(
|
||||||
|
_onLoadServicesHistoryForProfessional);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _onCreateService(CreateService event, Emitter<ServiceState> emit) async {
|
void _onCreateService(CreateService event, Emitter<ServiceState> emit) async {
|
||||||
@@ -115,6 +118,39 @@ class ServiceBloc extends Bloc<ServiceEvent, ServiceState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _onLoadServicesHistoryForProfessional(
|
||||||
|
LoadServicesHistoryForProfessional event,
|
||||||
|
Emitter<ServiceState> emit) async {
|
||||||
|
try {
|
||||||
|
final servicesStream =
|
||||||
|
_serviceRepository.getServicesHistoryForProfessional(event.userId);
|
||||||
|
|
||||||
|
await for (var services in servicesStream) {
|
||||||
|
if (services.isEmpty) {
|
||||||
|
emit(const ServicesForUserLoaded([]));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final userIds = services.map((e) => e.userId);
|
||||||
|
final List<MyUser> users =
|
||||||
|
await _userRepository.getUsersFromIds(userIds);
|
||||||
|
|
||||||
|
final usersDir = {for (var e in users) e.id: e};
|
||||||
|
|
||||||
|
final servicesInfo = services.map((e) {
|
||||||
|
return ServiceInfoUI(
|
||||||
|
service: e,
|
||||||
|
user: usersDir[e.userId]!,
|
||||||
|
);
|
||||||
|
}).toList();
|
||||||
|
|
||||||
|
emit(ServicesForUserLoaded(servicesInfo));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
log(e.toString());
|
||||||
|
emit(CreateServiceFailure());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void _onLoadServicesForUser(
|
void _onLoadServicesForUser(
|
||||||
LoadServicesForUser event, Emitter<ServiceState> emit) async {
|
LoadServicesForUser event, Emitter<ServiceState> emit) async {
|
||||||
try {
|
try {
|
||||||
@@ -154,6 +190,39 @@ class ServiceBloc extends Bloc<ServiceEvent, ServiceState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _onLoadServicesForProfessional(
|
||||||
|
LoadServicesForProfessional event, Emitter<ServiceState> emit) async {
|
||||||
|
try {
|
||||||
|
final servicesStream =
|
||||||
|
_serviceRepository.getServicesForProfessional(event.userId);
|
||||||
|
|
||||||
|
await for (var services in servicesStream) {
|
||||||
|
if (services.isEmpty) {
|
||||||
|
emit(const ServicesForUserLoaded([]));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final userIds = services.map((e) => e.userId);
|
||||||
|
|
||||||
|
final List<MyUser> users =
|
||||||
|
await _userRepository.getUsersFromIds(userIds);
|
||||||
|
|
||||||
|
final usersDir = {for (var e in users) e.id: e};
|
||||||
|
|
||||||
|
final servicesInfo = services.map((e) {
|
||||||
|
return ServiceInfoUI(
|
||||||
|
service: e,
|
||||||
|
user: usersDir[e.userId]!,
|
||||||
|
);
|
||||||
|
}).toList();
|
||||||
|
|
||||||
|
emit(ServicesForUserLoaded(servicesInfo));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
log(e.toString());
|
||||||
|
emit(CreateServiceFailure());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void _onUpdateServiceStatus(
|
void _onUpdateServiceStatus(
|
||||||
UpdateServiceStatus event, Emitter<ServiceState> emit) async {
|
UpdateServiceStatus event, Emitter<ServiceState> emit) async {
|
||||||
try {
|
try {
|
||||||
@@ -171,11 +240,11 @@ class ServiceBloc extends Bloc<ServiceEvent, ServiceState> {
|
|||||||
class ServiceInfoUI {
|
class ServiceInfoUI {
|
||||||
final ServiceEntity service;
|
final ServiceEntity service;
|
||||||
final MyUser user;
|
final MyUser user;
|
||||||
final ProfessionalEntity professional;
|
final ProfessionalEntity? professional;
|
||||||
|
|
||||||
ServiceInfoUI({
|
ServiceInfoUI({
|
||||||
required this.service,
|
required this.service,
|
||||||
required this.user,
|
required this.user,
|
||||||
required this.professional,
|
this.professional,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,6 +35,24 @@ class LoadServicesForUser extends ServiceEvent {
|
|||||||
List<Object> get props => [userId];
|
List<Object> get props => [userId];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class LoadServicesForProfessional extends ServiceEvent {
|
||||||
|
final String userId;
|
||||||
|
|
||||||
|
const LoadServicesForProfessional(this.userId);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<Object> get props => [userId];
|
||||||
|
}
|
||||||
|
|
||||||
|
class LoadServicesHistoryForProfessional extends ServiceEvent {
|
||||||
|
final String userId;
|
||||||
|
|
||||||
|
const LoadServicesHistoryForProfessional(this.userId);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<Object> get props => [userId];
|
||||||
|
}
|
||||||
|
|
||||||
class LoadServicesHistoryForUser extends ServiceEvent {
|
class LoadServicesHistoryForUser extends ServiceEvent {
|
||||||
final String userId;
|
final String userId;
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import 'package:prosappco/screens/configuration/configuration_screen.dart';
|
|||||||
import 'package:prosappco/screens/configuration/configuration_support_screen.dart';
|
import 'package:prosappco/screens/configuration/configuration_support_screen.dart';
|
||||||
import 'package:prosappco/screens/lists/professional_list_screen.dart';
|
import 'package:prosappco/screens/lists/professional_list_screen.dart';
|
||||||
import 'package:prosappco/screens/lists/professional_service_history_list_screen.dart';
|
import 'package:prosappco/screens/lists/professional_service_history_list_screen.dart';
|
||||||
|
import 'package:prosappco/screens/lists/professional_service_list_screen.dart';
|
||||||
import 'package:prosappco/screens/lists/user_service_history_list_screen.dart';
|
import 'package:prosappco/screens/lists/user_service_history_list_screen.dart';
|
||||||
import 'package:prosappco/screens/lists/user_service_list_screen.dart';
|
import 'package:prosappco/screens/lists/user_service_list_screen.dart';
|
||||||
import 'package:prosappco/screens/professional/professional_calendar_screen.dart';
|
import 'package:prosappco/screens/professional/professional_calendar_screen.dart';
|
||||||
@@ -17,6 +18,7 @@ import 'package:prosappco/screens/professional/professional_denied_screen.dart';
|
|||||||
import 'package:prosappco/screens/professional/professional_form_screen.dart';
|
import 'package:prosappco/screens/professional/professional_form_screen.dart';
|
||||||
import 'package:prosappco/screens/professional/professional_pending_screen.dart';
|
import 'package:prosappco/screens/professional/professional_pending_screen.dart';
|
||||||
import 'package:prosappco/screens/professional/professional_profile_screen.dart';
|
import 'package:prosappco/screens/professional/professional_profile_screen.dart';
|
||||||
|
import 'package:prosappco/screens/professional/professional_services_screen.dart';
|
||||||
import 'package:prosappco/screens/profile/profile_screen.dart';
|
import 'package:prosappco/screens/profile/profile_screen.dart';
|
||||||
import 'package:prosappco/screens/user/user_history_services_screen.dart';
|
import 'package:prosappco/screens/user/user_history_services_screen.dart';
|
||||||
import 'package:prosappco/screens/web/web_view_screen.dart';
|
import 'package:prosappco/screens/web/web_view_screen.dart';
|
||||||
@@ -81,14 +83,23 @@ class GeneralDrawer extends StatelessWidget {
|
|||||||
leading: Icons.checklist_outlined,
|
leading: Icons.checklist_outlined,
|
||||||
label: 'Mis servicios',
|
label: 'Mis servicios',
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
shouldProModeActive(context, professionalState)
|
||||||
context,
|
? Navigator.push(
|
||||||
CupertinoPageRoute(
|
context,
|
||||||
builder: (context) =>
|
CupertinoPageRoute(
|
||||||
const UserServiceListScreen(),
|
builder: (context) =>
|
||||||
// const UserServicesScreen(),
|
const ProfessionalServiceListScreen(),
|
||||||
),
|
// const UserServicesScreen(),
|
||||||
);
|
),
|
||||||
|
)
|
||||||
|
: Navigator.push(
|
||||||
|
context,
|
||||||
|
CupertinoPageRoute(
|
||||||
|
builder: (context) =>
|
||||||
|
const UserServiceListScreen(),
|
||||||
|
// const UserServicesScreen(),
|
||||||
|
),
|
||||||
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
GeneralDrawerItem(
|
GeneralDrawerItem(
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import 'package:injector/injector.dart';
|
|||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:professional_repository/professional_repository.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/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';
|
||||||
|
|
||||||
@@ -27,8 +28,8 @@ class _ProfessionalServiceHistoryListScreenState
|
|||||||
|
|
||||||
serviceBloc = Injector.appInstance.get<ServiceBloc>();
|
serviceBloc = Injector.appInstance.get<ServiceBloc>();
|
||||||
|
|
||||||
serviceBloc.add(
|
serviceBloc.add(LoadServicesHistoryForProfessional(
|
||||||
LoadServicesHistoryForUser(FirebaseAuth.instance.currentUser!.uid));
|
FirebaseAuth.instance.currentUser!.uid));
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -62,7 +63,15 @@ class _ProfessionalServiceHistoryListScreenState
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
onTap: () {},
|
onTap: () {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
CupertinoPageRoute(
|
||||||
|
builder: (context) =>
|
||||||
|
const ServiceScreen(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
leading: Container(
|
leading: Container(
|
||||||
width: 60,
|
width: 60,
|
||||||
height: 60,
|
height: 60,
|
||||||
|
|||||||
@@ -0,0 +1,214 @@
|
|||||||
|
import 'package:firebase_auth/firebase_auth.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.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/screens/service/service_screen.dart';
|
||||||
|
import 'package:service_repository/service_repository.dart';
|
||||||
|
import 'package:shimmer/shimmer.dart';
|
||||||
|
|
||||||
|
class ProfessionalServiceListScreen extends StatefulWidget {
|
||||||
|
const ProfessionalServiceListScreen({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<ProfessionalServiceListScreen> createState() =>
|
||||||
|
_ProfessionalServiceListScreenState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ProfessionalServiceListScreenState
|
||||||
|
extends State<ProfessionalServiceListScreen> {
|
||||||
|
late final ServiceBloc serviceBloc;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
|
||||||
|
serviceBloc = Injector.appInstance.get<ServiceBloc>();
|
||||||
|
|
||||||
|
serviceBloc.add(
|
||||||
|
LoadServicesForProfessional(FirebaseAuth.instance.currentUser!.uid));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return BlocProvider<ServiceBloc>(
|
||||||
|
create: (context) => serviceBloc,
|
||||||
|
child: Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('Mis Servicios'),
|
||||||
|
),
|
||||||
|
body: BlocBuilder<ServiceBloc, ServiceState>(
|
||||||
|
builder: (context, serviceState) {
|
||||||
|
if (serviceState is ServicesForUserLoaded) {
|
||||||
|
return serviceState.services.isEmpty
|
||||||
|
? const Center(
|
||||||
|
child: Text('No tienes servicios'),
|
||||||
|
)
|
||||||
|
: ListView.builder(
|
||||||
|
itemCount: serviceState.services.length,
|
||||||
|
itemBuilder: (_, index) {
|
||||||
|
final serviceInfo = 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) => const ServiceScreen(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
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),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'"${service.description.trim()}"',
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Shimmer.fromColors(
|
||||||
|
baseColor: Colors.grey[300]!,
|
||||||
|
highlightColor: Colors.grey[100]!,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: 10,
|
||||||
|
itemBuilder: (_, __) => ListTile(
|
||||||
|
leading: CircleAvatar(
|
||||||
|
backgroundColor: Colors.grey[300],
|
||||||
|
radius: 30,
|
||||||
|
),
|
||||||
|
title: Container(
|
||||||
|
height: 20,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.grey.shade300,
|
||||||
|
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');
|
||||||
|
}
|
||||||
|
|
||||||
|
Container itemStatus(Color color, String text) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8,
|
||||||
|
vertical: 3,
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: color,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
text,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// pending - 0
|
||||||
|
// acepted - 1
|
||||||
|
// active - 2
|
||||||
|
// cancelled - 3
|
||||||
|
// completed - 4
|
||||||
@@ -6,6 +6,7 @@ import 'package:injector/injector.dart';
|
|||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:professional_repository/professional_repository.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/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';
|
||||||
|
|
||||||
@@ -62,7 +63,14 @@ class _UserServiceHistoryListScreenState
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
onTap: () {},
|
onTap: () {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
CupertinoPageRoute(
|
||||||
|
builder: (context) => const ServiceScreen(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
leading: Container(
|
leading: Container(
|
||||||
width: 60,
|
width: 60,
|
||||||
height: 60,
|
height: 60,
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import 'package:injector/injector.dart';
|
|||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:professional_repository/professional_repository.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/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';
|
||||||
|
|
||||||
@@ -60,7 +61,14 @@ class _UserServiceListScreenState extends State<UserServiceListScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
onTap: () {},
|
onTap: () {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
CupertinoPageRoute(
|
||||||
|
builder: (context) => const ServiceScreen(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
leading: Container(
|
leading: Container(
|
||||||
width: 60,
|
width: 60,
|
||||||
height: 60,
|
height: 60,
|
||||||
|
|||||||
@@ -1,15 +1,389 @@
|
|||||||
|
import 'package:firebase_auth/firebase_auth.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: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/components/general_primary_button.dart';
|
||||||
|
import 'package:service_repository/service_repository.dart';
|
||||||
|
import 'package:setting_repository/setting_repository.dart';
|
||||||
|
import 'package:user_repository/user_repository.dart';
|
||||||
|
|
||||||
class ServiceScreen extends StatefulWidget {
|
class ServiceScreen extends StatefulWidget {
|
||||||
const ServiceScreen({super.key});
|
// final String serviceId;
|
||||||
|
const ServiceScreen({
|
||||||
|
super.key,
|
||||||
|
// required this.serviceId
|
||||||
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<ServiceScreen> createState() => _ServiceScreenState();
|
State<ServiceScreen> createState() => _ServiceScreenState();
|
||||||
}
|
}
|
||||||
|
|
||||||
class _ServiceScreenState extends State<ServiceScreen> {
|
class _ServiceScreenState extends State<ServiceScreen> {
|
||||||
|
final settingRepository = Injector.appInstance.get<SettingRepository>();
|
||||||
|
SettingEntity? settings;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
|
||||||
|
_loadSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _loadSettings() {
|
||||||
|
settingRepository.getSettings().then(
|
||||||
|
(value) => setState(() {
|
||||||
|
settings = value;
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Container();
|
return BlocProvider<ServiceBloc>(
|
||||||
|
create: (context) => Injector.appInstance.get<ServiceBloc>(),
|
||||||
|
child: Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('Servicio'),
|
||||||
|
),
|
||||||
|
body: BlocBuilder<ServiceBloc, ServiceState>(
|
||||||
|
builder: (context, state) {
|
||||||
|
if (state is ServiceLoaded) {
|
||||||
|
final service = state.service;
|
||||||
|
return FutureBuilder(
|
||||||
|
future: _getUserAndProfessionalInfo(service),
|
||||||
|
builder: (BuildContext context,
|
||||||
|
AsyncSnapshot<List<dynamic>> snapshot) {
|
||||||
|
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||||
|
return const Center(child: CircularProgressIndicator());
|
||||||
|
} else {
|
||||||
|
if (snapshot.hasError) {
|
||||||
|
return Center(
|
||||||
|
child: Text('Error inesperado: ${snapshot.error}'),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
final userInfo = snapshot.data![0] as MyUser;
|
||||||
|
final professionalInfo =
|
||||||
|
snapshot.data![1] as ProfessionalEntity;
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
ListTile(
|
||||||
|
leading: Container(
|
||||||
|
width: 60,
|
||||||
|
height: 60,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.grey.shade300,
|
||||||
|
shape: BoxShape.circle,
|
||||||
|
image: userInfo.picture == null
|
||||||
|
? null
|
||||||
|
: DecorationImage(
|
||||||
|
image: NetworkImage(userInfo.picture!),
|
||||||
|
fit: BoxFit.contain,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: userInfo.picture == null
|
||||||
|
? Icon(
|
||||||
|
CupertinoIcons.person,
|
||||||
|
color: Colors.grey.shade400,
|
||||||
|
size: 40,
|
||||||
|
)
|
||||||
|
: null,
|
||||||
|
),
|
||||||
|
title: Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'${userInfo.name}',
|
||||||
|
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: const Text('Rating: 5.0'),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
margin: const EdgeInsets.only(
|
||||||
|
left: 40, right: 40, top: 20, bottom: 20),
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 20, vertical: 15),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: const Color(0xFFD6F4FF),
|
||||||
|
borderRadius: BorderRadius.circular(20),
|
||||||
|
boxShadow: [
|
||||||
|
BoxShadow(
|
||||||
|
color: Colors.grey.withOpacity(0.5),
|
||||||
|
spreadRadius: 1,
|
||||||
|
blurRadius: 5,
|
||||||
|
offset: const Offset(1, 3),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
const Icon(
|
||||||
|
Icons.error_outline,
|
||||||
|
size: 27,
|
||||||
|
color: Colors.black54,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 15),
|
||||||
|
service.location ==
|
||||||
|
ServiceLocationPreferences.delivery
|
||||||
|
? const Text(
|
||||||
|
'Servicio a su domicilio.',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.black, fontSize: 14),
|
||||||
|
)
|
||||||
|
: const Text(
|
||||||
|
'Servicio en sitio / consultorio',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.black, fontSize: 14),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Visibility(
|
||||||
|
visible: settings?.tarifas ?? false,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
formatCurrency(
|
||||||
|
int.tryParse(service.rate) ?? 0),
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontSize: 25),
|
||||||
|
),
|
||||||
|
const Text('Tarifa de consulta'),
|
||||||
|
const SizedBox(height: 15),
|
||||||
|
const Text(
|
||||||
|
'Metodos de pago',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 18,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
professionalInfo.paymentMethods.datafono ||
|
||||||
|
professionalInfo.paymentMethods.nequi ||
|
||||||
|
professionalInfo
|
||||||
|
.paymentMethods.transferencia
|
||||||
|
? Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 8,
|
||||||
|
alignment: WrapAlignment.center,
|
||||||
|
children: [
|
||||||
|
Visibility(
|
||||||
|
visible: professionalInfo
|
||||||
|
.paymentMethods.datafono,
|
||||||
|
child: const Chip(
|
||||||
|
label: Text('Datafono')),
|
||||||
|
),
|
||||||
|
Visibility(
|
||||||
|
visible: professionalInfo
|
||||||
|
.paymentMethods.nequi,
|
||||||
|
child: const Chip(
|
||||||
|
label: Text('Nequi')),
|
||||||
|
),
|
||||||
|
Visibility(
|
||||||
|
visible: professionalInfo
|
||||||
|
.paymentMethods.transferencia,
|
||||||
|
child: const Chip(
|
||||||
|
label: Text(
|
||||||
|
'Transferencia Bancaria')),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: const Text(
|
||||||
|
'No hay metodos de pago registrados',
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15,
|
||||||
|
color: Colors.black45,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
leading: const Icon(Icons.near_me),
|
||||||
|
title: Text(
|
||||||
|
service.address,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15, color: Colors.grey[600]),
|
||||||
|
),
|
||||||
|
subtitle: service.aditionalAddress.isEmpty
|
||||||
|
? null
|
||||||
|
: Text(
|
||||||
|
service.aditionalAddress,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15, color: Colors.grey[600]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
service.description.isEmpty
|
||||||
|
? const SizedBox()
|
||||||
|
: Container(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
width:
|
||||||
|
MediaQuery.of(context).size.width * 0.8,
|
||||||
|
child: Text(
|
||||||
|
'"${service.description.trim()}"',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.grey[600],
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: customMessageStatus(service),
|
||||||
|
),
|
||||||
|
customButton(service, context),
|
||||||
|
const SizedBox(height: 20),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// BlocProvider.of<ServiceBloc>(context)
|
||||||
|
// .add(LoadService(widget.serviceId));
|
||||||
|
return const Center(
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Center customMessageStatus(ServiceEntity service) {
|
||||||
|
if (service.status == ServiceStatus.cancelled) {
|
||||||
|
return const Center(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 20),
|
||||||
|
child: Icon(
|
||||||
|
CupertinoIcons.xmark_circle,
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
size: 70,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Servicio cancelado exitosamente',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
fontSize: 17,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (service.status == ServiceStatus.completed) {
|
||||||
|
return const Center(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 20),
|
||||||
|
child: Icon(
|
||||||
|
Icons.favorite_outline_sharp,
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
size: 70,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Servicio terminado exitosamente',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
fontSize: 17,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return const Center(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 20),
|
||||||
|
child: Icon(
|
||||||
|
Icons.check_circle_outline_rounded,
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
size: 70,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Servicio solicitado exitosamente',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Color(0xFF35A8ED),
|
||||||
|
fontSize: 17,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
GeneralPrimaryButton customButton(
|
||||||
|
ServiceEntity service, BuildContext context) {
|
||||||
|
if (service.status == ServiceStatus.pending) {
|
||||||
|
return GeneralPrimaryButton(
|
||||||
|
onPressed: () {
|
||||||
|
final currentState = context.read<ServiceBloc>().state;
|
||||||
|
if (currentState is ServiceLoaded) {
|
||||||
|
// context.read<ServiceBloc>().add(
|
||||||
|
// UpdateServiceStatus(
|
||||||
|
// widget.serviceId,
|
||||||
|
// ServiceStatus.cancelled,
|
||||||
|
// ),
|
||||||
|
// );
|
||||||
|
}
|
||||||
|
},
|
||||||
|
color: Colors.red,
|
||||||
|
label: 'Cancelar Servicio',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return GeneralPrimaryButton(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
|
label: 'Volver',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String formatCurrency(int number) {
|
||||||
|
final formatter =
|
||||||
|
NumberFormat.currency(locale: 'es_CO', decimalDigits: 0, symbol: '');
|
||||||
|
return '\$${formatter.format(number)}';
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<List<dynamic>> _getUserAndProfessionalInfo(
|
||||||
|
ServiceEntity service) async {
|
||||||
|
final userRepo = FirebaseUserRepository(FirebaseAuth.instance);
|
||||||
|
final userInfo = await userRepo.getMyUser(service.professionalId);
|
||||||
|
|
||||||
|
final professionalRepo = FirebaseProfessionalRepository();
|
||||||
|
final professionalInfo =
|
||||||
|
await professionalRepo.getProInfo(service.professionalId);
|
||||||
|
|
||||||
|
return [userInfo, professionalInfo];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,6 +38,17 @@ class FirebaseServiceRepository {
|
|||||||
.toList());
|
.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Stream<List<ServiceEntity>> getServicesForProfessional(
|
||||||
|
String professionalId) {
|
||||||
|
return serviceCollection
|
||||||
|
.where('professional_id', isEqualTo: professionalId)
|
||||||
|
.where('status', whereIn: [0, 1, 2])
|
||||||
|
.snapshots()
|
||||||
|
.map((querySnapshot) => querySnapshot.docs
|
||||||
|
.map((doc) => ServiceEntity.fromDocument(doc.data()))
|
||||||
|
.toList());
|
||||||
|
}
|
||||||
|
|
||||||
Stream<List<ServiceEntity>> getServicesHistoryForUser(String userId) {
|
Stream<List<ServiceEntity>> getServicesHistoryForUser(String userId) {
|
||||||
return serviceCollection
|
return serviceCollection
|
||||||
.where('user_id', isEqualTo: userId)
|
.where('user_id', isEqualTo: userId)
|
||||||
@@ -47,4 +58,15 @@ class FirebaseServiceRepository {
|
|||||||
.map((doc) => ServiceEntity.fromDocument(doc.data()))
|
.map((doc) => ServiceEntity.fromDocument(doc.data()))
|
||||||
.toList());
|
.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Stream<List<ServiceEntity>> getServicesHistoryForProfessional(
|
||||||
|
String professionalId) {
|
||||||
|
return serviceCollection
|
||||||
|
.where('professional_id', isEqualTo: professionalId)
|
||||||
|
.where('status', whereIn: [3, 4])
|
||||||
|
.snapshots()
|
||||||
|
.map((querySnapshot) => querySnapshot.docs
|
||||||
|
.map((doc) => ServiceEntity.fromDocument(doc.data()))
|
||||||
|
.toList());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -407,8 +407,7 @@ class FirebaseUserRepository implements UserRepository {
|
|||||||
@override
|
@override
|
||||||
Future<List<MyUser>> getUsersFromIds(Iterable<String> ids) async {
|
Future<List<MyUser>> getUsersFromIds(Iterable<String> ids) async {
|
||||||
try {
|
try {
|
||||||
final querySnapshot =
|
final querySnapshot = await usersCollection.where(FieldPath.documentId, whereIn: ids).get();
|
||||||
await usersCollection.where(FieldPath.documentId, whereIn: ids).get();
|
|
||||||
|
|
||||||
return querySnapshot.docs
|
return querySnapshot.docs
|
||||||
.map((e) => MyUser.fromEntity(MyUserEntity.fromDocument(e.data())))
|
.map((e) => MyUser.fromEntity(MyUserEntity.fromDocument(e.data())))
|
||||||
|
|||||||
Reference in New Issue
Block a user