report product

This commit is contained in:
efrilm
2025-11-03 19:34:46 +07:00
parent 3bb6bd653e
commit 14c3c69ad6
19 changed files with 2557 additions and 2 deletions
@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import '../../../../../application/analytic/dashboard_analytic_loader/dashboard_analytic_loader_bloc.dart';
import '../../../../../application/analytic/product_analytic_loader/product_analytic_loader_bloc.dart';
import '../../../../../application/analytic/sales_analytic_loader/sales_analytic_loader_bloc.dart';
import '../../../../../application/report/report_bloc.dart';
import '../../../../../common/data/report_menu.dart';
@@ -14,6 +15,7 @@ import '../../../../components/picker/date_range_picker.dart';
import '../../../../components/spaces/space.dart';
import '../../../../router/app_router.gr.dart';
import 'sections/report_dashboard_section.dart';
import 'sections/report_product_section.dart';
import 'sections/report_sales_section.dart';
import 'widgets/report_menu_card.dart';
@@ -135,7 +137,20 @@ class ReportPage extends StatelessWidget implements AutoRouteWrapper {
);
},
),
3 => Text(state.title),
3 =>
BlocBuilder<
ProductAnalyticLoaderBloc,
ProductAnalyticLoaderState
>(
builder: (context, product) {
return ReportProductSection(
state: product,
menu: reportMenus[state.selectedMenu],
startDate: state.startDate,
endDate: state.endDate,
);
},
),
4 => Text(state.title),
5 => Text(state.title),
6 => Text(state.title),
@@ -173,6 +188,12 @@ class ReportPage extends StatelessWidget implements AutoRouteWrapper {
),
);
case 3:
return context.read<ProductAnalyticLoaderBloc>().add(
ProductAnalyticLoaderEvent.fetched(
startDate: state.startDate,
endDate: state.endDate,
),
);
case 4:
case 5:
case 6:
@@ -204,6 +225,15 @@ class ReportPage extends StatelessWidget implements AutoRouteWrapper {
),
),
),
BlocProvider(
create: (context) => getIt<ProductAnalyticLoaderBloc>()
..add(
ProductAnalyticLoaderEvent.fetched(
startDate: DateTime.now().subtract(const Duration(days: 30)),
endDate: DateTime.now(),
),
),
),
],
child: this,
);
@@ -0,0 +1,314 @@
import 'package:flutter/material.dart';
import '../../../../../../application/analytic/product_analytic_loader/product_analytic_loader_bloc.dart';
import '../../../../../../common/data/report_menu.dart';
import '../../../../../../common/extension/extension.dart';
import '../../../../../../common/theme/theme.dart';
import '../../../../../../domain/analytic/analytic.dart';
import '../../../../../components/loader/loader_with_text.dart';
import '../../../../../components/spaces/space.dart';
import '../../../../../components/widgets/report/report_header.dart';
import '../../../../../components/widgets/report/report_summary_card.dart';
class ReportProductSection extends StatelessWidget {
final ReportMenu menu;
final ProductAnalyticLoaderState state;
final DateTime startDate;
final DateTime endDate;
const ReportProductSection({
super.key,
required this.state,
required this.menu,
required this.startDate,
required this.endDate,
});
@override
Widget build(BuildContext context) {
if (state.isFetching) {
return const Center(child: LoaderWithText());
}
return Column(
children: [
Expanded(
child: SingleChildScrollView(
padding: EdgeInsets.all(16),
child: Column(
children: [
ReportHeader(
menu: menu,
endDate: endDate,
startDate: startDate,
),
Container(
height: 90,
margin: EdgeInsets.only(top: 16),
child: ListView.builder(
scrollDirection: Axis.horizontal,
itemCount: state.productAnalytic.categories.length,
itemBuilder: (context, index) {
final category = state.productAnalytic.categories[index];
return Container(
width: 200,
padding: EdgeInsets.only(
right:
index ==
state.productAnalytic.categories.length - 1
? 0
: 12,
),
child: ReportSummaryCard(
color: AppColor.primary,
icon: Icons.category_outlined,
title: category.categoryName,
value: category.totalRevenue.currencyFormatRpV2,
subtitle: "${category.productCount} Item",
),
);
},
),
),
Container(
margin: EdgeInsets.only(top: 16),
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: AppColor.white,
borderRadius: BorderRadius.circular(16),
),
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'Produk Berkinerja Terbaik',
style: AppStyle.lg.copyWith(
fontWeight: FontWeight.w600,
color: AppColor.textPrimary,
),
),
Container(
padding: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 4,
),
decoration: BoxDecoration(
color: AppColor.primary.withOpacity(0.1),
borderRadius: BorderRadius.circular(4),
border: Border.all(
color: AppColor.primary,
width: 1,
),
),
child: Text(
'Berdasarkan Pendapatan',
style: AppStyle.xs.copyWith(
fontWeight: FontWeight.w500,
color: AppColor.primary,
fontSize: 10,
),
),
),
],
),
SpaceHeight(12),
ListView.builder(
itemCount: state.productAnalytic.data.length,
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
itemBuilder: (context, index) {
final product = state.productAnalytic.data[index];
return _buildProductItem(
rank: index + 1,
product: product,
isTopPerformer:
product == state.productAnalytic.bestProduct,
categoryColor: AppColor.primary,
);
},
),
],
),
),
],
),
),
),
_buildBottomSummary(),
],
);
}
Widget _buildBottomSummary() {
return Container(
padding: EdgeInsets.symmetric(vertical: 8, horizontal: 16),
decoration: BoxDecoration(color: AppColor.white),
child: Column(
children: [
Container(
padding: const EdgeInsets.all(14),
decoration: BoxDecoration(
color: AppColor.success.withOpacity(0.1),
borderRadius: BorderRadius.circular(8),
border: Border.all(color: AppColor.success, width: 1),
),
child: Row(
children: [
Icon(Icons.star, color: AppColor.success, size: 16),
const SizedBox(width: 8),
Expanded(
child: Text(
'${state.productAnalytic.bestProduct.productName} memimpin dengan ${state.productAnalytic.bestProduct.quantitySold} unit terjual dan pendapatan ${state.productAnalytic.bestProduct.revenue.currencyFormatRpV2}',
style: AppStyle.sm.copyWith(
fontWeight: FontWeight.bold,
color: AppColor.success,
),
),
),
],
),
),
],
),
);
}
Widget _buildProductItem({
required int rank,
required ProductAnalyticItem product,
required bool isTopPerformer,
required Color categoryColor,
}) {
return Container(
margin: const EdgeInsets.only(bottom: 10),
padding: const EdgeInsets.all(14),
decoration: BoxDecoration(
color: isTopPerformer
? AppColor.primary.withOpacity(0.1)
: AppColor.white,
borderRadius: BorderRadius.circular(8),
border: Border.all(
color: isTopPerformer ? AppColor.primary : AppColor.border,
width: isTopPerformer ? 2 : 1,
),
),
child: Row(
children: [
// Rank Badge
Container(
width: 28,
height: 28,
decoration: BoxDecoration(
color: isTopPerformer ? AppColor.primary : AppColor.textSecondary,
borderRadius: BorderRadius.circular(14),
),
child: Center(
child: Text(
'$rank',
style: AppStyle.sm.copyWith(
fontWeight: FontWeight.w700,
color: Colors.white,
),
),
),
),
SpaceWidth(12),
// Product Info
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Text(
product.productName,
style: AppStyle.md.copyWith(
fontWeight: FontWeight.w600,
color: AppColor.textPrimary,
),
),
),
Row(
children: [
if (isTopPerformer)
Container(
padding: const EdgeInsets.symmetric(
horizontal: 6,
vertical: 2,
),
margin: const EdgeInsets.only(right: 8),
decoration: BoxDecoration(
color: AppColor.success,
borderRadius: BorderRadius.circular(3),
),
child: Text(
'BEST',
style: AppStyle.xs.copyWith(
fontSize: 8,
fontWeight: FontWeight.w700,
color: Colors.white,
),
),
),
Text(
product.revenue.currencyFormatRpV2,
style: AppStyle.md.copyWith(
fontWeight: FontWeight.w700,
color: AppColor.primary,
),
),
],
),
],
),
SpaceHeight(6),
Row(
children: [
// Category Badge
Container(
padding: const EdgeInsets.symmetric(
horizontal: 6,
vertical: 2,
),
decoration: BoxDecoration(
color: categoryColor.withOpacity(0.1),
borderRadius: BorderRadius.circular(4),
),
child: Text(
product.categoryName,
style: AppStyle.xs.copyWith(
fontSize: 9,
fontWeight: FontWeight.w500,
color: categoryColor,
),
),
),
const SizedBox(width: 8),
// Stats
Expanded(
child: Text(
'${product.quantitySold} units • ${product.orderCount} orders • Avg ${product.averagePrice.round()}',
style: AppStyle.xs.copyWith(
fontSize: 11,
fontWeight: FontWeight.w400,
color: AppColor.textSecondary,
),
),
),
],
),
],
),
),
],
),
);
}
}