156 lines
5.1 KiB
Dart
156 lines
5.1 KiB
Dart
/// Payment Method Section Widget
|
|
///
|
|
/// Payment method selection with dynamic options from API.
|
|
library;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:worker/core/constants/ui_constants.dart';
|
|
import 'package:worker/features/orders/domain/entities/payment_term.dart';
|
|
|
|
/// Payment Method Section
|
|
///
|
|
/// Displays payment options from API matching checkout.html design.
|
|
class PaymentMethodSection extends HookWidget {
|
|
final ValueNotifier<String> paymentMethod;
|
|
final List<PaymentTerm> paymentTerms;
|
|
|
|
const PaymentMethodSection({
|
|
super.key,
|
|
required this.paymentMethod,
|
|
required this.paymentTerms,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final colorScheme = Theme.of(context).colorScheme;
|
|
|
|
// Show empty state if no payment terms available
|
|
if (paymentTerms.isEmpty) {
|
|
return Container(
|
|
margin: const EdgeInsets.symmetric(horizontal: AppSpacing.md),
|
|
padding: const EdgeInsets.all(AppSpacing.md),
|
|
decoration: BoxDecoration(
|
|
color: colorScheme.surface,
|
|
borderRadius: BorderRadius.circular(AppRadius.card),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withValues(alpha: 0.05),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, 2),
|
|
),
|
|
],
|
|
),
|
|
child: Center(
|
|
child: Text(
|
|
'Không có phương thức thanh toán khả dụng',
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: colorScheme.onSurfaceVariant,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
return Container(
|
|
margin: const EdgeInsets.symmetric(horizontal: AppSpacing.md),
|
|
padding: const EdgeInsets.all(AppSpacing.md),
|
|
decoration: BoxDecoration(
|
|
color: colorScheme.surface,
|
|
borderRadius: BorderRadius.circular(AppRadius.card),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withValues(alpha: 0.05),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, 2),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// Section Title
|
|
Text(
|
|
'Phương thức thanh toán',
|
|
style: TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.bold,
|
|
color: colorScheme.onSurface,
|
|
),
|
|
),
|
|
|
|
const SizedBox(height: AppSpacing.md),
|
|
|
|
// Dynamic Payment Options from API
|
|
...paymentTerms.asMap().entries.map((entry) {
|
|
final index = entry.key;
|
|
final term = entry.value;
|
|
|
|
// Choose icon based on payment term name
|
|
IconData icon = FontAwesomeIcons.buildingColumns;
|
|
if (term.name.toLowerCase().contains('trả trước') ||
|
|
term.name.toLowerCase().contains('một phần')) {
|
|
icon = FontAwesomeIcons.creditCard;
|
|
}
|
|
|
|
return Column(
|
|
children: [
|
|
if (index > 0) const Divider(height: 1),
|
|
InkWell(
|
|
onTap: () => paymentMethod.value = term.name,
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8),
|
|
child: Row(
|
|
children: [
|
|
Radio<String>(
|
|
value: term.name,
|
|
groupValue: paymentMethod.value,
|
|
onChanged: (value) {
|
|
paymentMethod.value = value!;
|
|
},
|
|
activeColor: colorScheme.primary,
|
|
),
|
|
const SizedBox(width: 12),
|
|
Icon(
|
|
icon,
|
|
color: colorScheme.onSurfaceVariant,
|
|
size: 24,
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
term.name,
|
|
style: const TextStyle(
|
|
fontSize: 15,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(
|
|
term.customDescription,
|
|
style: TextStyle(
|
|
fontSize: 13,
|
|
color: colorScheme.onSurfaceVariant,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|