262 lines
9.1 KiB
Dart
262 lines
9.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../models/delivery.dart';
|
|
import '../theme/animation_system.dart';
|
|
import '../theme/color_system.dart';
|
|
|
|
class DeliveryListItem extends StatefulWidget {
|
|
final Delivery delivery;
|
|
final bool isSelected;
|
|
final VoidCallback onTap;
|
|
final VoidCallback? onCall;
|
|
final Function(String)? onAction;
|
|
final int? animationIndex;
|
|
final bool isCollapsed;
|
|
|
|
const DeliveryListItem({
|
|
super.key,
|
|
required this.delivery,
|
|
required this.isSelected,
|
|
required this.onTap,
|
|
this.onCall,
|
|
this.onAction,
|
|
this.animationIndex,
|
|
this.isCollapsed = false,
|
|
});
|
|
|
|
@override
|
|
State<DeliveryListItem> createState() => _DeliveryListItemState();
|
|
}
|
|
|
|
class _DeliveryListItemState extends State<DeliveryListItem>
|
|
with SingleTickerProviderStateMixin {
|
|
late AnimationController _controller;
|
|
late Animation<double> _slideAnimation;
|
|
late Animation<double> _fadeAnimation;
|
|
late Animation<double> _scaleAnimation;
|
|
bool _isHovered = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_controller = AnimationController(
|
|
duration: const Duration(milliseconds: 400),
|
|
vsync: this,
|
|
);
|
|
|
|
final staggerDelay = Duration(
|
|
milliseconds:
|
|
(widget.animationIndex ?? 0) * AppAnimations.staggerDelayMs,
|
|
);
|
|
|
|
Future.delayed(staggerDelay, () {
|
|
if (mounted) {
|
|
_controller.forward();
|
|
}
|
|
});
|
|
|
|
_slideAnimation = Tween<double>(begin: 0, end: 0).animate(
|
|
CurvedAnimation(parent: _controller, curve: Curves.easeOut),
|
|
);
|
|
|
|
_fadeAnimation = Tween<double>(begin: 0, end: 1).animate(
|
|
CurvedAnimation(parent: _controller, curve: Curves.easeOut),
|
|
);
|
|
|
|
_scaleAnimation = Tween<double>(begin: 0.95, end: 1).animate(
|
|
CurvedAnimation(parent: _controller, curve: Curves.easeOut),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
Color _getStatusColor(Delivery delivery) {
|
|
if (delivery.isSkipped == true) return SvrntyColors.statusCancelled;
|
|
if (delivery.delivered == true) return SvrntyColors.statusCompleted;
|
|
// Default: in-transit or pending deliveries
|
|
return SvrntyColors.statusInTransit;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final isDark = Theme.of(context).brightness == Brightness.dark;
|
|
final statusColor = _getStatusColor(widget.delivery);
|
|
|
|
// Collapsed view: Show only the badge
|
|
if (widget.isCollapsed) {
|
|
return ScaleTransition(
|
|
scale: _scaleAnimation,
|
|
child: FadeTransition(
|
|
opacity: _fadeAnimation,
|
|
child: MouseRegion(
|
|
onEnter: (_) => setState(() => _isHovered = true),
|
|
onExit: (_) => setState(() => _isHovered = false),
|
|
child: GestureDetector(
|
|
onTap: widget.onTap,
|
|
child: Container(
|
|
margin: const EdgeInsets.symmetric(
|
|
horizontal: 10,
|
|
vertical: 10,
|
|
),
|
|
child: Center(
|
|
child: Container(
|
|
width: 60,
|
|
height: 60,
|
|
decoration: BoxDecoration(
|
|
color: statusColor,
|
|
borderRadius: BorderRadius.circular(10),
|
|
boxShadow: (_isHovered || widget.isSelected)
|
|
? [
|
|
BoxShadow(
|
|
color: Colors.black.withValues(
|
|
alpha: isDark ? 0.3 : 0.15,
|
|
),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, 4),
|
|
),
|
|
]
|
|
: [],
|
|
),
|
|
child: Center(
|
|
child: Text(
|
|
'${widget.delivery.deliveryIndex + 1}',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 26,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
// Expanded view: Show full layout
|
|
return ScaleTransition(
|
|
scale: _scaleAnimation,
|
|
child: FadeTransition(
|
|
opacity: _fadeAnimation,
|
|
child: Transform.translate(
|
|
offset: Offset(_slideAnimation.value, 0),
|
|
child: MouseRegion(
|
|
onEnter: (_) => setState(() => _isHovered = true),
|
|
onExit: (_) => setState(() => _isHovered = false),
|
|
child: GestureDetector(
|
|
onTap: widget.onTap,
|
|
child: AnimatedContainer(
|
|
duration: AppAnimations.durationFast,
|
|
margin: const EdgeInsets.symmetric(
|
|
horizontal: 2,
|
|
vertical: 4,
|
|
),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(8),
|
|
color: widget.delivery.delivered
|
|
? Colors.green.withValues(alpha: 0.15)
|
|
: Theme.of(context).colorScheme.surfaceContainer,
|
|
boxShadow: (_isHovered || widget.isSelected) && !widget.delivery.delivered
|
|
? [
|
|
BoxShadow(
|
|
color: Colors.black.withValues(
|
|
alpha: isDark ? 0.3 : 0.08,
|
|
),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, 4),
|
|
),
|
|
]
|
|
: [],
|
|
),
|
|
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 12),
|
|
child: Column(
|
|
children: [
|
|
// Main delivery info row
|
|
Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
// Order number badge (left of status bar)
|
|
Container(
|
|
width: 40,
|
|
height: 40,
|
|
decoration: BoxDecoration(
|
|
color: statusColor,
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Center(
|
|
child: Text(
|
|
'${widget.delivery.deliveryIndex + 1}',
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
// Left accent bar (vertical status bar)
|
|
Container(
|
|
width: 4,
|
|
height: 50,
|
|
decoration: BoxDecoration(
|
|
color: statusColor,
|
|
borderRadius: BorderRadius.circular(2),
|
|
),
|
|
),
|
|
const SizedBox(width: 10),
|
|
// Delivery info
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// Customer Name
|
|
Text(
|
|
widget.delivery.name,
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.titleMedium
|
|
?.copyWith(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
const SizedBox(height: 4),
|
|
// Address
|
|
Text(
|
|
widget.delivery.deliveryAddress
|
|
?.formattedAddress ??
|
|
'No address',
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.bodyMedium
|
|
?.copyWith(
|
|
fontSize: 13,
|
|
),
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|