393 lines
16 KiB
Dart
393 lines
16 KiB
Dart
import 'package:e_porter/_core/component/appbar/appbar_component.dart';
|
|
import 'package:e_porter/_core/component/button/button_fill.dart';
|
|
import 'package:e_porter/_core/component/card/custome_shadow_cotainner.dart';
|
|
import 'package:e_porter/_core/component/icons/icons_library.dart';
|
|
import 'package:e_porter/_core/constants/colors.dart';
|
|
import 'package:e_porter/_core/constants/typography.dart';
|
|
import 'package:e_porter/domain/models/airport.dart';
|
|
import 'package:e_porter/presentation/screens/home/component/flight_class_radio.dart';
|
|
import 'package:e_porter/presentation/screens/home/component/flight_date_selector.dart';
|
|
import 'package:e_porter/presentation/screens/home/component/flight_selector.dart';
|
|
import 'package:e_porter/presentation/screens/routes/app_rountes.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:zoom_tap_animation/zoom_tap_animation.dart';
|
|
|
|
class BookingTickets extends StatefulWidget {
|
|
const BookingTickets({super.key});
|
|
|
|
@override
|
|
State<BookingTickets> createState() => _BookingTicketsState();
|
|
}
|
|
|
|
class _BookingTicketsState extends State<BookingTickets> {
|
|
DateTime selectedDate = DateTime.now();
|
|
String selectedDateText = 'dd/mm/yyyy';
|
|
final ValueNotifier<String> selectedClass = ValueNotifier<String>('');
|
|
|
|
Airport? selectedAirportFrom;
|
|
Airport? selectedAirportTo;
|
|
|
|
int selectedPassengerCount = 1;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: GrayColors.gray50,
|
|
appBar: DefaultAppbarComponent(
|
|
title: 'Pesan Tiket',
|
|
backgroundColors: Colors.white,
|
|
onTab: () {
|
|
Get.back();
|
|
},
|
|
),
|
|
body: SafeArea(
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w, vertical: 20.h),
|
|
child: Stack(
|
|
children: [
|
|
IntrinsicHeight(
|
|
child: CustomeShadowCotainner(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
FlightSelector(
|
|
label: 'Dari',
|
|
hintText: selectedAirportFrom == null
|
|
? 'Pilih Bandara'
|
|
: '${selectedAirportFrom!.code} - ${selectedAirportFrom!.city}',
|
|
svgIconPath: CustomeIcons.PlaneRightOutline(),
|
|
onTap: () async {
|
|
final result = await Get.toNamed(Routes.SEARCHFLIGHT);
|
|
if (result != null) {
|
|
setState(() {
|
|
selectedAirportFrom = result;
|
|
});
|
|
print('Daparture: ${selectedAirportFrom!.code} - ${selectedAirportFrom!.city}');
|
|
}
|
|
},
|
|
),
|
|
SizedBox(height: 16.h),
|
|
FlightSelector(
|
|
label: 'Ke',
|
|
hintText: selectedAirportTo == null
|
|
? 'Pilih Bandara'
|
|
: '${selectedAirportTo!.code} - ${selectedAirportTo!.city}',
|
|
svgIconPath: CustomeIcons.PlaneLeftOutline(),
|
|
onTap: () async {
|
|
final result = await Get.toNamed(Routes.SEARCHFLIGHT);
|
|
if (result != null) {
|
|
setState(() {
|
|
selectedAirportTo = result;
|
|
});
|
|
}
|
|
},
|
|
),
|
|
SizedBox(height: 16.h),
|
|
FlightDateSelector(
|
|
label: 'Tanggal pergi',
|
|
valueText: selectedDateText,
|
|
svgIconPath: 'assets/icons/ic_calendar.svg',
|
|
onTap: () async {
|
|
final DateTime? picked = await showDatePicker(
|
|
context: context,
|
|
initialDate: selectedDate,
|
|
firstDate: DateTime.now(),
|
|
lastDate: DateTime(2045),
|
|
builder: (context, child) {
|
|
return Theme(
|
|
data: ThemeData.light().copyWith(
|
|
colorScheme: ColorScheme.light(
|
|
primary: PrimaryColors.primary800,
|
|
onPrimary: Colors.white,
|
|
surface: Colors.white,
|
|
),
|
|
dialogBackgroundColor: Colors.white,
|
|
),
|
|
child: child!,
|
|
);
|
|
},
|
|
);
|
|
|
|
if (picked != null && picked != selectedDate) {
|
|
setState(() {
|
|
selectedDate = picked;
|
|
selectedDateText = DateFormat('EEE, d MMM yyyy', 'en_US').format(selectedDate);
|
|
print(selectedDate);
|
|
});
|
|
}
|
|
},
|
|
),
|
|
SizedBox(height: 16.h),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
ValueListenableBuilder<String>(
|
|
valueListenable: selectedClass,
|
|
builder: (context, value, child) {
|
|
return FlightSelector(
|
|
// width: MediaQuery.of(context).size.height * 0.21,
|
|
widthText: MediaQuery.of(context).size.height * 0.12,
|
|
label: 'Kelas penerbangan',
|
|
hintText: value.isEmpty ? 'Pilih Kelas' : value,
|
|
svgIconPath: CustomeIcons.FlightSeatOutline(),
|
|
onTap: () {
|
|
showModalBottomSheet(
|
|
context: context,
|
|
backgroundColor: Colors.white,
|
|
isScrollControlled: true,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(10.r),
|
|
topRight: Radius.circular(10.r),
|
|
),
|
|
),
|
|
builder: (context) {
|
|
return Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w),
|
|
child: Wrap(
|
|
children: [
|
|
_buildTitleShowModal('Kelas Penerbangan'),
|
|
_buildFlightClassRadio(),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
FlightSelector(
|
|
// width: MediaQuery.of(context).size.height * 0.17,
|
|
widthText: 80.w,
|
|
label: 'Penumpang',
|
|
hintText: '${selectedPassengerCount} Dewasa',
|
|
svgIconPath: CustomeIcons.PassengerOutline(),
|
|
onTap: () {
|
|
showModalBottomSheet(
|
|
context: context,
|
|
backgroundColor: Colors.white,
|
|
isScrollControlled: true,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(10.r),
|
|
topRight: Radius.circular(10.r),
|
|
),
|
|
),
|
|
builder: (context) {
|
|
return Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w),
|
|
child: Wrap(
|
|
children: [
|
|
_buildTitleShowModal('Tambah Penumpang'),
|
|
_buildFlightAddPassenger(),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
SizedBox(height: 16.h),
|
|
TypographyStyles.small(
|
|
'Penumpang bayi tidak mendapatkan kursi sendiri',
|
|
color: GrayColors.gray500,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
SizedBox(height: 20.h),
|
|
ZoomTapAnimation(
|
|
child: ButtonFill(
|
|
text: 'Cari Tiket',
|
|
textColor: Colors.white,
|
|
onTap: () {
|
|
if (selectedAirportFrom != null && selectedAirportTo != null) {
|
|
final searchParams = {
|
|
"from": '${selectedAirportFrom!.city}',
|
|
"to": '${selectedAirportTo!.city}',
|
|
"leavingDate": selectedDate,
|
|
"flightClass": selectedClass.value,
|
|
"passengerCount": selectedPassengerCount,
|
|
};
|
|
Get.toNamed(Routes.SEARCHTICKETS, arguments: searchParams);
|
|
} else {
|
|
Get.snackbar("Error", "Silakan pilih bandara keberangkatan dan tujuan");
|
|
}
|
|
},
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Positioned(
|
|
right: 40.w, // geser agak ke dalam dari sisi kanan
|
|
top: 65.h, // posisikan di tengah2 antara dua card
|
|
child: InkWell(
|
|
onTap: () {},
|
|
child: Container(
|
|
padding: EdgeInsets.symmetric(
|
|
horizontal: 10.w,
|
|
vertical: 10.h,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
shape: BoxShape.circle,
|
|
border: Border.all(
|
|
strokeAlign: 1.5,
|
|
color: GrayColors.gray200,
|
|
),
|
|
),
|
|
child: CustomeIcons.DataTransferOutline(),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildTitleShowModal(String text) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 166.w, vertical: 16.h),
|
|
child: Divider(
|
|
thickness: 4,
|
|
color: Color(0xFFD9D9D9),
|
|
),
|
|
),
|
|
TypographyStyles.h6(text, color: GrayColors.gray800),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildFlightClassRadio() {
|
|
return Padding(
|
|
padding: EdgeInsets.symmetric(
|
|
vertical: 16.h,
|
|
),
|
|
child: ValueListenableBuilder<String>(
|
|
valueListenable: selectedClass,
|
|
builder: (context, selectedValue, child) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
FlightClassRadio(
|
|
title: 'Economy',
|
|
subTitle: 'Memenuhi kebutuhan utama Anda dengan biaya terendah',
|
|
value: 'Economy',
|
|
groupValue: selectedValue,
|
|
onChanged: (value) {
|
|
selectedClass.value = value!;
|
|
},
|
|
),
|
|
SizedBox(height: 10.h),
|
|
FlightClassRadio(
|
|
title: 'Premium Economy',
|
|
subTitle: 'Perjalanan terjangkau dengan makanan lezat dan ruang lebih lega',
|
|
value: 'Premium Economy',
|
|
groupValue: selectedValue,
|
|
onChanged: (value) {
|
|
selectedClass.value = value!;
|
|
},
|
|
),
|
|
SizedBox(height: 10.h),
|
|
FlightClassRadio(
|
|
title: 'Business',
|
|
subTitle: 'Terbang nyaman dengan konter check-in dan kursi eksklusif',
|
|
value: 'Business',
|
|
groupValue: selectedValue,
|
|
onChanged: (value) {
|
|
selectedClass.value = value!;
|
|
},
|
|
),
|
|
SizedBox(height: 10.h),
|
|
FlightClassRadio(
|
|
title: 'First Class',
|
|
subTitle: 'Kelas paling mewah dengan layanan terbaik dan personal',
|
|
value: 'First Class',
|
|
groupValue: selectedValue,
|
|
onChanged: (value) {
|
|
selectedClass.value = value!;
|
|
},
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildFlightAddPassenger() {
|
|
int tempPassengerCount = selectedPassengerCount;
|
|
return StatefulBuilder(
|
|
builder: (context, setModalState) {
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
SizedBox(height: 20.h),
|
|
TypographyStyles.caption(
|
|
'Dewasa',
|
|
color: GrayColors.gray800,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
SizedBox(height: 2.h),
|
|
TypographyStyles.small(
|
|
'3 Tahun ke atas',
|
|
color: GrayColors.gray600,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
SizedBox(height: 14.h),
|
|
Container(
|
|
height: 100.h,
|
|
child: CupertinoPicker(
|
|
scrollController: FixedExtentScrollController(initialItem: tempPassengerCount - 1),
|
|
itemExtent: 45.0,
|
|
selectionOverlay: CircleAvatar(
|
|
radius: 18.r,
|
|
backgroundColor: PrimaryColors.primary800.withOpacity(0.7),
|
|
),
|
|
onSelectedItemChanged: (index) {
|
|
setModalState(() {
|
|
tempPassengerCount = index + 1;
|
|
});
|
|
},
|
|
children: List<Widget>.generate(10, (index) {
|
|
return Center(
|
|
child: TypographyStyles.body('${index + 1}'),
|
|
);
|
|
}),
|
|
),
|
|
),
|
|
SizedBox(height: 20.h),
|
|
Padding(
|
|
padding: EdgeInsets.only(bottom: 16.h),
|
|
child: ZoomTapAnimation(
|
|
child: ButtonFill(
|
|
text: 'Selesai',
|
|
textColor: Colors.white,
|
|
onTap: () {
|
|
setState(() {
|
|
selectedPassengerCount = tempPassengerCount;
|
|
});
|
|
Navigator.pop(context);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|