feat: update billing UI for pending cancellations and add service area modal to agent profile

This commit is contained in:
pradeepkumar
2026-04-18 11:44:25 +05:30
parent afa1f3489a
commit 4a842e9098
2 changed files with 145 additions and 34 deletions

View File

@@ -760,31 +760,67 @@ class _AgentHomeContentState extends ConsumerState<_AgentHomeContent> {
], ],
const SizedBox(height: 8), const SizedBox(height: 8),
// Location + Member Since (center-aligned, uniform sizing) // Location + Member Since (center-aligned, uniform sizing)
if (locationDisplay.isNotEmpty) ...[ // Show up to 4 locations with "+N more" matching web's ProfileCard.
Row( if (state.locationParts.isNotEmpty ||
mainAxisAlignment: MainAxisAlignment.center, locationDisplay.isNotEmpty) ...[
crossAxisAlignment: CrossAxisAlignment.center, Builder(builder: (_) {
children: [ final parts = state.locationParts.isNotEmpty
SvgPicture.asset( ? state.locationParts
'assets/icons/location_filled_icon.svg', : locationDisplay
width: 16, .split(',')
height: 16, .map((s) => s.trim())
), .where((s) => s.isNotEmpty)
const SizedBox(width: 4), .toList();
Flexible( const maxVisible = 4;
child: Text( final visible = parts.take(maxVisible).join(', ');
locationDisplay, final remaining = parts.length - maxVisible;
style: const TextStyle(
fontFamily: 'SourceSerif4', return GestureDetector(
fontSize: 14, onTap: remaining > 0
fontWeight: FontWeight.w600, ? () => _showLocationModal(context, parts)
color: AppColors.primaryDark, : null,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SvgPicture.asset(
'assets/icons/location_filled_icon.svg',
width: 16,
height: 16,
), ),
textAlign: TextAlign.center, const SizedBox(width: 4),
), Flexible(
child: Text.rich(
TextSpan(
children: [
TextSpan(
text: visible,
style: const TextStyle(
fontFamily: 'SourceSerif4',
fontSize: 14,
fontWeight: FontWeight.w600,
color: AppColors.primaryDark,
),
),
if (remaining > 0)
TextSpan(
text: ' +$remaining more',
style: const TextStyle(
fontFamily: 'SourceSerif4',
fontSize: 14,
fontWeight: FontWeight.w500,
color: AppColors.accentOrange,
),
),
],
),
textAlign: TextAlign.center,
),
),
],
), ),
], );
), }),
const SizedBox(height: 6), const SizedBox(height: 6),
], ],
Row( Row(
@@ -835,6 +871,74 @@ class _AgentHomeContentState extends ConsumerState<_AgentHomeContent> {
} }
// ── Experience Section ── // ── Experience Section ──
// Full service-areas list modal (matches web's ProfileCard location modal)
void _showLocationModal(BuildContext context, List<String> locations) {
showModalBottomSheet(
context: context,
isScrollControlled: true,
backgroundColor: Colors.transparent,
builder: (ctx) => Container(
decoration: const BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.vertical(top: Radius.circular(20)),
),
padding: EdgeInsets.fromLTRB(
24, 24, 24, 24 + MediaQuery.of(ctx).padding.bottom,
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text(
'Service Areas',
style: TextStyle(
fontFamily: 'Fractul',
fontSize: 18,
fontWeight: FontWeight.w700,
color: AppColors.primaryDark,
),
),
GestureDetector(
onTap: () => Navigator.of(ctx).pop(),
child: Icon(
Icons.close,
color: AppColors.primaryDark.withValues(alpha: 0.5),
),
),
],
),
const SizedBox(height: 16),
Wrap(
spacing: 8,
runSpacing: 8,
children: locations
.map((loc) => Container(
padding: const EdgeInsets.symmetric(
horizontal: 12, vertical: 6),
decoration: BoxDecoration(
color: const Color(0xFFE8E8E8),
borderRadius: BorderRadius.circular(10),
),
child: Text(
loc,
style: const TextStyle(
fontFamily: 'SourceSerif4',
fontSize: 13,
color: AppColors.primaryDark,
),
),
))
.toList(),
),
],
),
),
);
}
Widget _buildExperienceSection(AgentDetailState state) { Widget _buildExperienceSection(AgentDetailState state) {
return Padding( return Padding(
padding: const EdgeInsets.symmetric(horizontal: 16), padding: const EdgeInsets.symmetric(horizontal: 16),

View File

@@ -19,6 +19,9 @@ class _BillingTabState extends ConsumerState<BillingTab>
bool _isLoadingSubscription = false; bool _isLoadingSubscription = false;
bool _openedExternalCheckout = false; bool _openedExternalCheckout = false;
bool get cancelAtPeriodEnd =>
_subscription?['cancelAtPeriodEnd'] == true;
@override @override
void initState() { void initState() {
super.initState(); super.initState();
@@ -179,7 +182,9 @@ class _BillingTabState extends ConsumerState<BillingTab>
const Spacer(), const Spacer(),
if (_subscription?['currentPeriodEnd'] != null) if (_subscription?['currentPeriodEnd'] != null)
Text( Text(
'Renews ${_formatDate(_subscription!['currentPeriodEnd'] as String)}', cancelAtPeriodEnd
? 'Cancels on ${_formatDate(_subscription!['currentPeriodEnd'] as String)}'
: 'Renews ${_formatDate(_subscription!['currentPeriodEnd'] as String)}',
style: TextStyle( style: TextStyle(
fontFamily: 'SourceSerif4', fontFamily: 'SourceSerif4',
fontSize: 13, fontSize: 13,
@@ -256,17 +261,19 @@ class _BillingTabState extends ConsumerState<BillingTab>
const SizedBox(height: 16), const SizedBox(height: 16),
..._buildPlanFeatures(), ..._buildPlanFeatures(),
const SizedBox(height: 16), const SizedBox(height: 16),
Center( // Hide Cancel Subscription once cancellation is pending (matches web)
child: TextButton( if (!cancelAtPeriodEnd)
onPressed: _cancelSubscription, Center(
style: TextButton.styleFrom(foregroundColor: Colors.red), child: TextButton(
child: const Text('Cancel Subscription', onPressed: _cancelSubscription,
style: TextStyle( style: TextButton.styleFrom(foregroundColor: Colors.red),
fontFamily: 'Fractul', child: const Text('Cancel Subscription',
fontSize: 14, style: TextStyle(
fontWeight: FontWeight.w500)), fontFamily: 'Fractul',
fontSize: 14,
fontWeight: FontWeight.w500)),
),
), ),
),
], ],
), ),
); );