415 lines
18 KiB
Dart
415 lines
18 KiB
Dart
import 'package:citycards_customer/common_packages/app_bar.dart';
|
|
import 'package:citycards_customer/common_packages/custom_filled_button.dart';
|
|
import 'package:citycards_customer/common_packages/custom_text.dart';
|
|
import 'package:citycards_customer/common_packages/custom_textfield.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import '../../cart/blocs/myPostcardsCart/my_postcards_cart_bloc.dart';
|
|
import '../../core/route_constants.dart';
|
|
import 'package:citycards_customer/my_pass/blocs/myPasses/my_passes_event.dart';
|
|
import '../../itinerary_creation/bloc/get_itinerary_bloc.dart';
|
|
import '../../localPreference/local_preference.dart';
|
|
import '../../my_pass/blocs/myPasses/my_passes_bloc.dart';
|
|
import '../../postcard/blocs/myPostCards/my_postcard_bloc.dart';
|
|
import '../../postcard/blocs/myPostCards/my_postcard_event.dart';
|
|
import '../../profile/bloc/profile/profile_bloc.dart';
|
|
import '../../profile/bloc/profile/profile_event.dart';
|
|
import '../bloc/create_account_bloc.dart';
|
|
import '../bloc/create_account_event.dart';
|
|
import '../bloc/create_account_state.dart';
|
|
import '../repository/create_account_repository.dart';
|
|
|
|
class CreateAccountView extends StatefulWidget {
|
|
final String email;
|
|
const CreateAccountView({super.key, required this.email});
|
|
|
|
@override
|
|
State<CreateAccountView> createState() => _CreateAccountViewState();
|
|
}
|
|
|
|
class _CreateAccountViewState extends State<CreateAccountView> {
|
|
final TextEditingController firstNameController = TextEditingController();
|
|
final TextEditingController lastNameController = TextEditingController();
|
|
final TextEditingController emailController = TextEditingController();
|
|
final TextEditingController phoneController = TextEditingController();
|
|
final TextEditingController addressController = TextEditingController();
|
|
final TextEditingController cityController = TextEditingController();
|
|
final TextEditingController postalController = TextEditingController();
|
|
|
|
String? selectedState;
|
|
String? selectedCountry;
|
|
|
|
void _submitForm(BuildContext context) {
|
|
if (firstNameController.text.trim().isEmpty ||
|
|
lastNameController.text.trim().isEmpty ||
|
|
emailController.text.trim().isEmpty ||
|
|
phoneController.text.trim().isEmpty ||
|
|
addressController.text.trim().isEmpty ||
|
|
cityController.text.trim().isEmpty ||
|
|
selectedState == null ||
|
|
selectedCountry == null ||
|
|
postalController.text.trim().isEmpty) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
const SnackBar(content: Text('Please fill all fields')),
|
|
);
|
|
return;
|
|
}
|
|
|
|
context.read<CreateAccountBloc>().add(
|
|
CreateAccountSubmitted(
|
|
firstName: firstNameController.text.trim(),
|
|
lastName: lastNameController.text.trim(),
|
|
emailAddress: emailController.text.trim(),
|
|
mobileNumber: phoneController.text.trim(),
|
|
address1: addressController.text.trim(),
|
|
address2: '',
|
|
city: cityController.text.trim(),
|
|
state: selectedState!,
|
|
country: selectedCountry!,
|
|
postalCode: postalController.text.trim(),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
firstNameController.dispose();
|
|
lastNameController.dispose();
|
|
emailController.dispose();
|
|
phoneController.dispose();
|
|
addressController.dispose();
|
|
cityController.dispose();
|
|
postalController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
emailController.text = widget.email;
|
|
return BlocProvider(
|
|
create: (context) =>
|
|
CreateAccountBloc(repository: CreateAccountRepository()),
|
|
child: BlocListener<CreateAccountBloc, CreateAccountState>(
|
|
listener: (ctx, state) async {
|
|
if (state is CreateAccountSuccess) {
|
|
await LocalPreference.setLogin(true);
|
|
final userId = await LocalPreference.getUserId();
|
|
context.read<ProfileBloc>().add(FetchProfileEvent(userId: userId!));
|
|
context.read<ProfileBloc>().add(CheckLoginStatusEvent());
|
|
context.read<MyPostCardBloc>().add(CheckLoginStatus());
|
|
context.read<GetItineraryBloc>().add(CheckLoginAndFetchItinerary());
|
|
// context.read<MyPostCardBloc>().add(FetchDraftPostCards());
|
|
context.read<MyPostCardBloc>().add(RefreshDraftPostCards());
|
|
context.read<MyPostCardBloc>().add(RefreshOrderPostCards());
|
|
context.read<MyPassesBloc>().add(CheckLoginAndFetchPasses());
|
|
context.read<MyPostCardsCartBloc>().add(CheckLoginAndFetchPostcardsCart());
|
|
Navigator.pop(context);
|
|
ScaffoldMessenger.of(
|
|
context,
|
|
).showSnackBar(SnackBar(content: Text(state.message)));
|
|
} else if (state is CreateAccountFailure) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(state.errorMessage),
|
|
backgroundColor: Colors.red,
|
|
),
|
|
);
|
|
}
|
|
},
|
|
child: Scaffold(
|
|
backgroundColor: Colors.white,
|
|
body: SafeArea(
|
|
child: Column(
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 20.w),
|
|
child: CommonAppBar(
|
|
isWhiteLogo: false,
|
|
isProfilePage: false,
|
|
showCart: false,
|
|
showDivider: true,
|
|
),
|
|
),
|
|
|
|
/// 🔹 Scrollable content starts here
|
|
Expanded(
|
|
child: SingleChildScrollView(
|
|
padding: EdgeInsets.symmetric(horizontal: 20.w),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {
|
|
Navigator.pop(context);
|
|
},
|
|
child: const Icon(Icons.arrow_back),
|
|
),
|
|
SizedBox(width: 8.w),
|
|
CustomText(
|
|
text: "Create your account",
|
|
size: 12.sp,
|
|
),
|
|
],
|
|
),
|
|
|
|
SizedBox(height: 26.h),
|
|
|
|
CustomText(
|
|
text: "Personal Information",
|
|
size: 18.sp,
|
|
weight: FontWeight.w500,
|
|
),
|
|
|
|
SizedBox(height: 12.h),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "First Name *",
|
|
hint: "Enter your first name",
|
|
controller: firstNameController,
|
|
onlyLetters: true,
|
|
noSpace: true,
|
|
maxLength: 50,
|
|
keyboardType: TextInputType.name,
|
|
isFirstLetterCapital: true,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "Last Name *",
|
|
hint: "Enter your last name",
|
|
controller: lastNameController,
|
|
onlyLetters: true,
|
|
maxLength: 50,
|
|
noSpace: true,
|
|
keyboardType: TextInputType.name,
|
|
isFirstLetterCapital: true,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "Email *",
|
|
hint: "Enter your email address",
|
|
controller: emailController,
|
|
enabled: false,
|
|
keyboardType: TextInputType.emailAddress,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "Phone Number *",
|
|
hint: "Enter your phone number",
|
|
controller: phoneController,
|
|
keyboardType: TextInputType.number,
|
|
maxLength: 10,
|
|
isMobileNumber: true,
|
|
),
|
|
),
|
|
|
|
SizedBox(height: 12.h),
|
|
|
|
CustomText(
|
|
text: "Location Details *",
|
|
size: 18.sp,
|
|
weight: FontWeight.w500,
|
|
),
|
|
|
|
SizedBox(height: 16.h),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "Address *",
|
|
hint: "Enter address manually or tap to search",
|
|
controller: addressController,
|
|
maxLength: 50,
|
|
// noSpecialCharacters: true,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "City *",
|
|
hint: "Enter your city",
|
|
maxLength: 50,
|
|
noSpace: true,
|
|
controller: cityController,
|
|
isFirstLetterCapital: true,
|
|
),
|
|
),
|
|
|
|
// State Dropdown
|
|
Padding(
|
|
padding: EdgeInsets.only(bottom: 12.h, left: 12.w, right: 12.w),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
CustomText(text: "State *", size: 14.sp),
|
|
SizedBox(height: 6.h),
|
|
Container(
|
|
height: 42.h,
|
|
padding: EdgeInsets.symmetric(horizontal: 24.w),
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFFFF5F5),
|
|
borderRadius: BorderRadius.circular(8.r),
|
|
border: Border.all(
|
|
color: const Color(0xBBC83B61).withOpacity(0.4),
|
|
width: 0.4.w,
|
|
),
|
|
),
|
|
child: DropdownButtonHideUnderline(
|
|
child: DropdownButton<String>(
|
|
value: selectedState,
|
|
isExpanded: true,
|
|
icon: const Icon(
|
|
Icons.keyboard_arrow_down,
|
|
color: Color(0xFF8E8E8E),
|
|
),
|
|
hint: Text(
|
|
"Select state",
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: const Color(0xFF8E8E8E),
|
|
),
|
|
),
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: const Color(0xFF2D3134),
|
|
),
|
|
onChanged: (value) {
|
|
setState(() {
|
|
selectedState = value;
|
|
});
|
|
},
|
|
items: [
|
|
"New South Wales",
|
|
"Victoria",
|
|
"Queensland",
|
|
"South Australia",
|
|
"Western Australia",
|
|
"Tasmania",
|
|
"Northern Territory",
|
|
"Australian Capital Territory"
|
|
].map((value) {
|
|
return DropdownMenuItem<String>(
|
|
value: value,
|
|
child: Text(
|
|
value,
|
|
style: TextStyle(fontSize: 14.sp),
|
|
),
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
// Country Dropdown
|
|
Padding(
|
|
padding: EdgeInsets.only(bottom: 12.h, left: 12.w, right: 12.w),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
CustomText(text: "Country *", size: 14.sp),
|
|
SizedBox(height: 6.h),
|
|
Container(
|
|
height: 42.h,
|
|
padding: EdgeInsets.symmetric(horizontal: 24.w),
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFFFF5F5),
|
|
borderRadius: BorderRadius.circular(8.r),
|
|
border: Border.all(
|
|
color: const Color(0xBBC83B61).withOpacity(0.4),
|
|
width: 0.4.w,
|
|
),
|
|
),
|
|
child: DropdownButtonHideUnderline(
|
|
child: DropdownButton<String>(
|
|
value: selectedCountry,
|
|
isExpanded: true,
|
|
icon: const Icon(
|
|
Icons.keyboard_arrow_down,
|
|
color: Color(0xFF8E8E8E),
|
|
),
|
|
hint: Text(
|
|
"Select country",
|
|
style: TextStyle(
|
|
fontSize: 12.sp,
|
|
color: const Color(0xFF8E8E8E),
|
|
),
|
|
),
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: const Color(0xFF2D3134),
|
|
),
|
|
onChanged: (value) {
|
|
setState(() {
|
|
selectedCountry = value;
|
|
});
|
|
},
|
|
items: ["Australia"].map((value) {
|
|
return DropdownMenuItem<String>(
|
|
value: value,
|
|
child: Text(
|
|
value,
|
|
style: TextStyle(fontSize: 14.sp),
|
|
),
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w),
|
|
child: CustomTextField(
|
|
label: "Zip Code *",
|
|
hint: "Enter the zip code you reside in",
|
|
controller: postalController,
|
|
keyboardType: TextInputType.number,
|
|
maxLength: 6,
|
|
),
|
|
),
|
|
SizedBox(height: 20.h),
|
|
BlocBuilder<CreateAccountBloc, CreateAccountState>(
|
|
builder: (context, state) {
|
|
if (state is CreateAccountLoading) {
|
|
return CustomFilledButton(
|
|
width: double.infinity,
|
|
onTap: () {},
|
|
label: "Creating...",
|
|
);
|
|
}
|
|
return CustomFilledButton(
|
|
width: double.infinity,
|
|
onTap: () => _submitForm(context),
|
|
label: "Create Account",
|
|
);
|
|
},
|
|
),
|
|
|
|
SizedBox(height: 20.h),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |