567 lines
26 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-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/core/extensions/string_ext.dart';
import 'package:enaklo_pos/data/models/response/table_model.dart';
import 'package:enaklo_pos/presentation/home/bloc/local_product/local_product_bloc.dart';
import 'package:enaklo_pos/presentation/home/pages/confirm_payment_page.dart';
import 'package:enaklo_pos/data/datasources/product_local_datasource.dart';
import 'package:enaklo_pos/presentation/setting/bloc/sync_product/sync_product_bloc.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 = '';
@override
void initState() {
// First sync products from API, then load local products
_syncAndLoadProducts();
super.initState();
}
void _syncAndLoadProducts() {
// Trigger sync from API first
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
context
.read<LocalProductBloc>()
.add(const LocalProductEvent.getLocalProduct());
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());
}
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
.where((element) => element.category?.id == categoryId)
.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-07-30 22:38:44 +07:00
body: BlocListener<SyncProductBloc, SyncProductState>(
listener: (context, state) {
state.maybeWhen(
orElse: () {},
error: (message) {
// If sync fails, still try to load local products
context
.read<LocalProductBloc>()
.add(const LocalProductEvent.getLocalProduct());
},
loaded: (productResponseModel) async {
// Store context reference before async operations
final localProductBloc = context.read<LocalProductBloc>();
2025-07-31 19:25:45 +07:00
2025-07-30 22:38:44 +07:00
// Save synced products to local database
await ProductLocalDatasource.instance.deleteAllProducts();
await ProductLocalDatasource.instance.insertProducts(
productResponseModel.data!,
);
// Then load local products to display
localProductBloc.add(const LocalProductEvent.getLocalProduct());
},
);
},
child: Row(
children: [
Expanded(
flex: 3,
child: Align(
alignment: AlignmentDirectional.topStart,
2025-07-31 19:25:45 +07:00
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
HomeTitle(
controller: searchController,
onChanged: (value) {
setState(() {
searchQuery = value;
});
},
),
BlocBuilder<LocalProductBloc, LocalProductState>(
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-30 22:38:44 +07:00
return const Center(
2025-07-31 19:25:45 +07:00
child: Text('No Items Found'),
2025-07-30 22:38:44 +07:00
);
2025-07-31 19:25:45 +07:00
}
return GridView.builder(
itemCount: filteredProducts.length,
padding: const EdgeInsets.all(16),
gridDelegate:
SliverGridDelegateWithMaxCrossAxisExtent(
2025-08-02 11:00:30 +07:00
maxCrossAxisExtent: 180,
2025-07-31 19:25:45 +07:00
mainAxisSpacing: 30,
crossAxisSpacing: 30,
2025-08-02 11:00:30 +07:00
childAspectRatio: 180 / 240,
2025-07-31 19:25:45 +07:00
),
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-30 22:38:44 +07:00
return const Center(
2025-07-31 19:25:45 +07:00
child: Text('No Items'),
2025-07-30 22:38:44 +07:00
);
2025-07-31 19:25:45 +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-30 22:38:44 +07:00
return const Center(
2025-07-31 19:25:45 +07:00
child: Text('No Items'),
2025-07-30 22:38:44 +07:00
);
2025-07-31 19:25:45 +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(
2025-07-30 22:38:44 +07:00
data: filteredProducts[index],
onCartButton: () {},
2025-07-31 19:25:45 +07:00
);
},
);
}),
),
// 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-30 22:38:44 +07:00
return const Center(
2025-07-31 19:25:45 +07:00
child: Text('No Items'),
2025-07-30 22:38:44 +07:00
);
2025-07-31 19:25:45 +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(
data: filteredProducts[index],
onCartButton: () {},
);
},
);
}),
),
],
),
);
},
2025-07-30 22:38:44 +07:00
),
2025-07-31 19:25:45 +07:00
],
2025-07-30 22:38:44 +07:00
),
),
),
Expanded(
flex: 2,
child: Align(
alignment: Alignment.topCenter,
2025-07-31 19:25:45 +07:00
child: Material(
color: Colors.white,
child: Column(
children: [
2025-07-31 23:22:34 +07:00
HomeRightTitle(
table: widget.table,
),
Padding(
padding: const EdgeInsets.all(16.0)
.copyWith(bottom: 0, top: 27),
child: Column(
children: [
const Row(
2025-07-31 19:25:45 +07:00
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
Text(
2025-07-31 23:22:34 +07:00
'Item',
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-07-31 23:22:34 +07:00
SizedBox(
width: 130,
),
SizedBox(
width: 50.0,
child: Text(
'Qty',
style: TextStyle(
color: AppColors.primary,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
),
SizedBox(
child: Text(
'Price',
style: TextStyle(
color: AppColors.primary,
fontSize: 16,
fontWeight: FontWeight.w600,
),
2025-07-30 22:38:44 +07:00
),
),
2025-07-31 19:25:45 +07:00
],
),
2025-07-31 23:22:34 +07:00
const SpaceHeight(8),
const Divider(),
],
),
2025-07-31 19:25:45 +07:00
),
Expanded(
child: SingleChildScrollView(
2025-07-31 23:22:34 +07:00
padding:
const EdgeInsets.all(16.0).copyWith(top: 0),
2025-07-31 19:25:45 +07:00
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
2025-07-30 22:38:44 +07:00
children: [
BlocBuilder<CheckoutBloc, CheckoutState>(
builder: (context, state) {
2025-07-31 19:25:45 +07:00
return state.maybeWhen(
orElse: () => const Center(
child: Text('No Items'),
2025-07-30 22:38:44 +07:00
),
2025-07-31 19:25:45 +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-30 22:38:44 +07:00
);
},
),
2025-07-31 19:25:45 +07:00
const SpaceHeight(8.0),
2025-07-30 22:38:44 +07:00
],
),
2025-07-31 19:25:45 +07:00
),
),
2025-07-31 23:22:34 +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-31 19:25:45 +07:00
children: [
2025-07-31 23:22:34 +07:00
const Text(
'Pajak',
style: TextStyle(
color: AppColors.black,
fontWeight: FontWeight.bold,
),
2025-07-31 19:25:45 +07:00
),
2025-07-31 23:22:34 +07:00
BlocBuilder<CheckoutBloc, CheckoutState>(
builder: (context, state) {
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-31 19:25:45 +07:00
),
2025-07-31 23:22:34 +07:00
);
},
2025-07-31 19:25:45 +07:00
),
2025-07-31 23:22:34 +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-07-31 23:22:34 +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!
.toIntegerFromText *
e.quantity)
.reduce((value, element) =>
value + element);
});
return Text(
price.currencyFormatRp,
style: const TextStyle(
color: AppColors.primary,
fontWeight: FontWeight.w900,
2025-07-31 19:25:45 +07:00
),
2025-07-31 23:22:34 +07:00
);
},
2025-07-31 19:25:45 +07:00
),
],
),
2025-07-31 23:22:34 +07:00
SpaceHeight(16.0),
Align(
alignment: Alignment.bottomCenter,
2025-07-31 19:25:45 +07:00
child: Expanded(
child: Button.filled(
2025-07-31 23:22:34 +07:00
borderRadius: 12,
elevation: 1,
2025-07-31 19:25:45 +07:00
onPressed: () {
context.push(ConfirmPaymentPage(
isTable: widget.isTable,
table: widget.table,
));
},
label: 'Lanjutkan Pembayaran',
),
2025-07-30 22:38:44 +07:00
),
2025-07-31 19:25:45 +07:00
),
2025-07-31 23:22:34 +07:00
],
),
2025-07-30 22:38:44 +07:00
),
2025-07-31 19:25:45 +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),
),
],
);
}
}