547 lines
24 KiB
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
// ignore_for_file: public_member_api_docs, sort_constructors_first
2025-08-03 13:15:09 +07:00
import 'package:enaklo_pos/data/datasources/auth_local_datasource.dart';
2025-08-03 12:56:13 +07:00
import 'package:enaklo_pos/presentation/home/bloc/outlet_loader/outlet_loader_bloc.dart';
2025-08-03 00:35:00 +07:00
import 'package:enaklo_pos/presentation/home/bloc/product_loader/product_loader_bloc.dart';
2025-07-31 19:25:45 +07:00
import 'package:enaklo_pos/presentation/home/widgets/home_right_title.dart';
2025-07-30 22:38:44 +07:00
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:enaklo_pos/core/extensions/build_context_ext.dart';
import 'package:enaklo_pos/core/extensions/int_ext.dart';
import 'package:enaklo_pos/data/models/response/table_model.dart';
import 'package:enaklo_pos/presentation/home/pages/confirm_payment_page.dart';
import 'package:enaklo_pos/data/models/response/product_response_model.dart';
import '../../../core/assets/assets.gen.dart';
import '../../../core/components/buttons.dart';
import '../../../core/components/spaces.dart';
import '../../../core/constants/colors.dart';
import '../bloc/checkout/checkout_bloc.dart';
import '../widgets/custom_tab_bar.dart';
import '../widgets/home_title.dart';
import '../widgets/order_menu.dart';
import '../widgets/product_card.dart';
class HomePage extends StatefulWidget {
final bool isTable;
final TableModel? table;
const HomePage({
2025-07-31 23:22:34 +07:00
super.key,
2025-07-30 22:38:44 +07:00
required this.isTable,
this.table,
2025-07-31 23:22:34 +07:00
});
2025-07-30 22:38:44 +07:00
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
final searchController = TextEditingController();
String searchQuery = '';
2025-08-03 13:15:09 +07:00
test() async {
// await AuthLocalDataSource().removeAuthData();
}
2025-07-30 22:38:44 +07:00
@override
void initState() {
2025-08-03 13:15:09 +07:00
test();
2025-07-30 22:38:44 +07:00
// First sync products from API, then load local products
_syncAndLoadProducts();
super.initState();
}
void _syncAndLoadProducts() {
// Trigger sync from API first
2025-08-03 00:35:00 +07:00
// context.read<SyncProductBloc>().add(const SyncProductEvent.syncProduct());
2025-07-31 19:25:45 +07:00
2025-07-30 22:38:44 +07:00
// Also load local products initially in case sync fails or takes time
2025-08-03 00:35:00 +07:00
// context
// .read<LocalProductBloc>()
// .add(const LocalProductEvent.getLocalProduct());
2025-07-30 22:38:44 +07:00
context
2025-08-03 00:35:00 +07:00
.read<ProductLoaderBloc>()
.add(const ProductLoaderEvent.getProduct());
2025-07-31 19:25:45 +07:00
2025-07-30 22:38:44 +07:00
// Initialize checkout with tax and service charge settings
context.read<CheckoutBloc>().add(const CheckoutEvent.started());
2025-08-03 12:56:13 +07:00
// Get Outlets
context.read<OutletLoaderBloc>().add(const OutletLoaderEvent.getOutlet());
2025-07-30 22:38:44 +07:00
}
void onCategoryTap(int index) {
searchController.clear();
setState(() {
searchQuery = '';
});
}
List<Product> _filterProducts(List<Product> products) {
if (searchQuery.isEmpty) {
return products;
}
2025-07-31 19:25:45 +07:00
2025-07-30 22:38:44 +07:00
return products.where((product) {
final productName = product.name?.toLowerCase() ?? '';
final queryLower = searchQuery.toLowerCase();
return productName.contains(queryLower);
}).toList();
}
2025-07-31 19:25:45 +07:00
List<Product> _filterProductsByCategory(
List<Product> products, int categoryId) {
2025-07-30 22:38:44 +07:00
final filteredBySearch = _filterProducts(products);
2025-07-31 19:25:45 +07:00
return filteredBySearch
2025-08-03 00:35:00 +07:00
.where((element) => element.price == categoryId)
2025-07-31 19:25:45 +07:00
.toList();
2025-07-30 22:38:44 +07:00
}
@override
Widget build(BuildContext context) {
return Hero(
tag: 'confirmation_screen',
child: Scaffold(
2025-07-31 23:22:34 +07:00
backgroundColor: AppColors.white,
2025-08-03 00:35:00 +07:00
body: Row(
children: [
Expanded(
flex: 3,
child: Align(
alignment: AlignmentDirectional.topStart,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
HomeTitle(
controller: searchController,
onChanged: (value) {
setState(() {
searchQuery = value;
});
},
),
BlocBuilder<ProductLoaderBloc, ProductLoaderState>(
builder: (context, state) {
return Expanded(
child: CustomTabBarV2(
tabTitles: const [
'Semua',
'Makanan',
'Minuman',
'Paket'
],
tabViews: [
// All Products Tab
SizedBox(
child: state.maybeWhen(orElse: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loading: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loaded: (products) {
final filteredProducts =
_filterProducts(products);
if (filteredProducts.isEmpty) {
2025-07-31 19:25:45 +07:00
return const Center(
2025-08-03 00:35:00 +07:00
child: Text('No Items Found'),
2025-07-31 19:25:45 +07:00
);
2025-08-03 00:35:00 +07:00
}
return GridView.builder(
itemCount: filteredProducts.length,
padding: const EdgeInsets.all(16),
gridDelegate:
SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent: 180,
mainAxisSpacing: 30,
crossAxisSpacing: 30,
childAspectRatio: 180 / 240,
),
itemBuilder: (context, index) =>
ProductCard(
data: filteredProducts[index],
onCartButton: () {},
),
);
}),
),
// Makanan Tab
SizedBox(
child: state.maybeWhen(orElse: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loading: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loaded: (products) {
if (products.isEmpty) {
2025-07-31 19:25:45 +07:00
return const Center(
2025-08-03 00:35:00 +07:00
child: Text('No Items'),
2025-07-31 19:25:45 +07:00
);
2025-08-03 00:35:00 +07:00
}
final filteredProducts =
_filterProductsByCategory(products, 1);
return filteredProducts.isEmpty
? const _IsEmpty()
: GridView.builder(
itemCount: filteredProducts.length,
padding: const EdgeInsets.all(16),
gridDelegate:
SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent:
200, // Lebar maksimal tiap item (bisa kamu ubah)
mainAxisSpacing: 30,
crossAxisSpacing: 30,
childAspectRatio: 0.85,
),
itemBuilder: (context, index) =>
ProductCard(
data: filteredProducts[index],
onCartButton: () {},
),
);
}),
),
// Minuman Tab
SizedBox(
child: state.maybeWhen(orElse: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loading: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loaded: (products) {
if (products.isEmpty) {
2025-07-31 19:25:45 +07:00
return const Center(
2025-08-03 00:35:00 +07:00
child: Text('No Items'),
2025-07-31 19:25:45 +07:00
);
2025-08-03 00:35:00 +07:00
}
final filteredProducts =
_filterProductsByCategory(products, 2);
return filteredProducts.isEmpty
? const _IsEmpty()
: GridView.builder(
itemCount: filteredProducts.length,
padding: const EdgeInsets.all(16),
gridDelegate:
SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent:
200, // Lebar maksimal tiap item (bisa kamu ubah)
mainAxisSpacing: 30,
crossAxisSpacing: 30,
childAspectRatio: 0.85,
),
itemBuilder: (context, index) {
return ProductCard(
data: filteredProducts[index],
onCartButton: () {},
);
},
);
}),
),
// Snack Tab
SizedBox(
child: state.maybeWhen(orElse: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loading: () {
return const Center(
child: CircularProgressIndicator(),
);
}, loaded: (products) {
if (products.isEmpty) {
2025-07-31 19:25:45 +07:00
return const Center(
2025-08-03 00:35:00 +07:00
child: Text('No Items'),
2025-07-31 19:25:45 +07:00
);
2025-08-03 00:35:00 +07:00
}
final filteredProducts =
_filterProductsByCategory(products, 3);
return filteredProducts.isEmpty
? const _IsEmpty()
: GridView.builder(
itemCount: filteredProducts.length,
padding: const EdgeInsets.all(16),
gridDelegate:
SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent:
200, // Lebar maksimal tiap item (bisa kamu ubah)
mainAxisSpacing: 30,
crossAxisSpacing: 30,
childAspectRatio: 0.85,
),
itemBuilder: (context, index) {
return ProductCard(
2025-07-31 19:25:45 +07:00
data: filteredProducts[index],
onCartButton: () {},
2025-08-03 00:35:00 +07:00
);
},
);
}),
),
],
),
);
},
),
],
),
),
),
Expanded(
flex: 2,
child: Align(
alignment: Alignment.topCenter,
child: Material(
color: Colors.white,
child: Column(
children: [
HomeRightTitle(
table: widget.table,
),
Padding(
padding: const EdgeInsets.all(16.0)
.copyWith(bottom: 0, top: 27),
child: Column(
children: [
const Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'Item',
style: TextStyle(
color: AppColors.primary,
fontSize: 16,
fontWeight: FontWeight.w600,
),
2025-07-31 19:25:45 +07:00
),
SizedBox(
2025-08-03 00:35:00 +07:00
width: 130,
2025-07-31 19:25:45 +07:00
),
SizedBox(
2025-08-03 00:35:00 +07:00
width: 50.0,
child: Text(
'Qty',
2025-07-30 22:38:44 +07:00
style: TextStyle(
2025-07-31 23:22:34 +07:00
color: AppColors.primary,
2025-07-30 22:38:44 +07:00
fontSize: 16,
2025-07-31 23:22:34 +07:00
fontWeight: FontWeight.w600,
2025-07-30 22:38:44 +07:00
),
),
2025-08-03 00:35:00 +07:00
),
SizedBox(
child: Text(
'Price',
style: TextStyle(
color: AppColors.primary,
fontSize: 16,
fontWeight: FontWeight.w600,
2025-07-31 23:22:34 +07:00
),
),
2025-08-03 00:35:00 +07:00
),
],
),
const SpaceHeight(8),
const Divider(),
],
),
),
Expanded(
child: SingleChildScrollView(
padding: const EdgeInsets.all(16.0).copyWith(top: 0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
BlocBuilder<CheckoutBloc, CheckoutState>(
builder: (context, state) {
return state.maybeWhen(
orElse: () => const Center(
child: Text('No Items'),
2025-07-30 22:38:44 +07:00
),
2025-08-03 00:35:00 +07:00
loaded: (products,
discountModel,
discount,
discountAmount,
tax,
serviceCharge,
totalQuantity,
totalPrice,
draftName,
orderType) {
if (products.isEmpty) {
return const Center(
child: Text('No Items'),
);
}
return ListView.separated(
shrinkWrap: true,
physics:
const NeverScrollableScrollPhysics(),
itemBuilder: (context, index) =>
OrderMenu(data: products[index]),
separatorBuilder: (context, index) =>
const SpaceHeight(1.0),
itemCount: products.length,
);
},
);
},
2025-07-31 19:25:45 +07:00
),
2025-08-03 00:35:00 +07:00
const SpaceHeight(8.0),
2025-07-31 23:22:34 +07:00
],
),
2025-07-31 19:25:45 +07:00
),
2025-08-03 00:35:00 +07:00
),
Padding(
padding: const EdgeInsets.all(16.0).copyWith(top: 0),
child: Column(
children: [
const Divider(),
const SpaceHeight(16.0),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
2025-07-30 22:38:44 +07:00
children: [
2025-08-03 00:35:00 +07:00
const Text(
'Pajak',
style: TextStyle(
color: AppColors.black,
fontWeight: FontWeight.bold,
),
),
2025-07-30 22:38:44 +07:00
BlocBuilder<CheckoutBloc, CheckoutState>(
builder: (context, state) {
2025-08-03 00:35:00 +07:00
final tax = state.maybeWhen(
orElse: () => 0,
loaded: (products,
discountModel,
discount,
discountAmount,
tax,
serviceCharge,
totalQuantity,
totalPrice,
draftName,
orderType) {
if (products.isEmpty) {
return 0;
}
return tax;
});
return Text(
'$tax %',
style: const TextStyle(
color: AppColors.primary,
fontWeight: FontWeight.w600,
2025-07-30 22:38:44 +07:00
),
);
},
),
],
),
2025-08-03 00:35:00 +07:00
const SpaceHeight(16.0),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text(
'Sub total',
style: TextStyle(
color: AppColors.black,
fontWeight: FontWeight.bold,
2025-07-31 19:25:45 +07:00
),
2025-08-03 00:35:00 +07:00
),
BlocBuilder<CheckoutBloc, CheckoutState>(
builder: (context, state) {
final price = state.maybeWhen(
orElse: () => 0,
loaded: (products,
discountModel,
discount,
discountAmount,
tax,
serviceCharge,
totalQuantity,
totalPrice,
draftName,
orderType) {
if (products.isEmpty) {
return 0;
}
return products
.map((e) =>
e.product.price! * e.quantity)
.reduce((value, element) =>
value + element);
});
2025-07-31 23:22:34 +07:00
2025-08-03 00:35:00 +07:00
return Text(
price.currencyFormatRp,
style: const TextStyle(
color: AppColors.primary,
fontWeight: FontWeight.w900,
),
);
},
),
],
),
SpaceHeight(16.0),
Align(
alignment: Alignment.bottomCenter,
child: Expanded(
child: Button.filled(
borderRadius: 12,
elevation: 1,
onPressed: () {
context.push(ConfirmPaymentPage(
2025-08-03 12:26:47 +07:00
isTable:
widget.table == null ? false : true,
2025-08-03 00:35:00 +07:00
table: widget.table,
));
},
label: 'Lanjutkan Pembayaran',
2025-07-30 22:38:44 +07:00
),
2025-07-31 19:25:45 +07:00
),
2025-08-03 00:35:00 +07:00
),
],
2025-07-30 22:38:44 +07:00
),
2025-08-03 00:35:00 +07:00
),
],
2025-07-30 22:38:44 +07:00
),
),
),
2025-08-03 00:35:00 +07:00
),
],
2025-07-30 22:38:44 +07:00
),
),
);
}
}
class _IsEmpty extends StatelessWidget {
const _IsEmpty();
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SpaceHeight(40),
Assets.icons.noProduct.svg(),
const SizedBox(height: 40.0),
const Text(
'Belum Ada Produk',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 16),
),
],
);
}
}