import 'package:flutter/material.dart'; import '../controllers/sms_scan_controller.dart'; import '../widgets/sms_scan/scan_loading_widget.dart'; import '../widgets/sms_scan/scan_initial_widget.dart'; import '../widgets/sms_scan/scan_progress_widget.dart'; import '../widgets/sms_scan/subscription_card_widget.dart'; import '../widgets/common/snackbar/app_snackbar.dart'; import '../l10n/app_localizations.dart'; import '../widgets/payment_card/payment_card_form_sheet.dart'; import '../routes/app_routes.dart'; import '../models/payment_card_suggestion.dart'; import '../theme/ui_constants.dart'; class SmsScanScreen extends StatefulWidget { const SmsScanScreen({super.key}); @override State createState() => _SmsScanScreenState(); } class _SmsScanScreenState extends State { late SmsScanController _controller; late final ScrollController _scrollController; @override void initState() { super.initState(); _controller = SmsScanController(); _controller.addListener(_handleControllerUpdate); _scrollController = ScrollController(); } @override void dispose() { _controller.removeListener(_handleControllerUpdate); _controller.dispose(); _scrollController.dispose(); super.dispose(); } void _handleControllerUpdate() { if (mounted) { setState(() {}); } } @override void didChangeDependencies() { super.didChangeDependencies(); _controller.initializeWebsiteUrl(); } Widget _buildContent() { if (_controller.isLoading) { return const ScanLoadingWidget(); } if (_controller.scannedSubscriptions.isEmpty) { return ScanInitialWidget( onScanPressed: () => _controller.startScan(context), errorMessage: _controller.errorMessage, ); } // 모든 구독 처리 완료 확인 if (_controller.currentIndex >= _controller.scannedSubscriptions.length) { // 중복 스낵바 방지를 위해 바로 초기 화면으로 WidgetsBinding.instance.addPostFrameCallback((_) { if (mounted && _controller.scannedSubscriptions.isNotEmpty) { AppSnackBar.showSuccess( context: context, message: AppLocalizations.of(context).allSubscriptionsProcessed, ); // 상태 초기화 _controller.resetState(); } }); return ScanInitialWidget( onScanPressed: () => _controller.startScan(context), errorMessage: _controller.errorMessage, ); } final currentSubscription = _controller.scannedSubscriptions[_controller.currentIndex]; return Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 16.0), child: ScanProgressWidget( currentIndex: _controller.currentIndex, totalCount: _controller.scannedSubscriptions.length, ), ), const SizedBox(height: 24), SubscriptionCardWidget( subscription: currentSubscription, serviceNameController: _controller.serviceNameController, websiteUrlController: _controller.websiteUrlController, selectedCategoryId: _controller.selectedCategoryId, onCategoryChanged: _controller.setSelectedCategoryId, selectedPaymentCardId: _controller.selectedPaymentCardId, onPaymentCardChanged: _controller.setSelectedPaymentCardId, enableServiceNameEditing: _controller.isServiceNameEditable, onServiceNameChanged: _controller.isServiceNameEditable ? (value) => _controller.updateCurrentServiceName(context, value) : null, onAddCard: () async { final newCardId = await PaymentCardFormSheet.show(context); if (newCardId != null) { _controller.setSelectedPaymentCardId(newCardId); } }, onManageCards: () { Navigator.of(context).pushNamed(AppRoutes.paymentCardManagement); }, onAdd: _handleAddSubscription, onSkip: _handleSkipSubscription, detectedCardSuggestion: _controller.currentSuggestion, showDetectedCardShortcut: _controller.shouldSuggestCardCreation, onAddDetectedCard: (suggestion) => _handleDetectedCardCreation(suggestion), ), ], ); } Future _handleAddSubscription() async { await _controller.addCurrentSubscription(context); if (!mounted) return; WidgetsBinding.instance.addPostFrameCallback((_) => _scrollToTop()); } void _handleSkipSubscription() { _controller.skipCurrentSubscription(context); WidgetsBinding.instance.addPostFrameCallback((_) => _scrollToTop()); } Future _handleDetectedCardCreation( PaymentCardSuggestion suggestion) async { final newCardId = await PaymentCardFormSheet.show( context, initialIssuerName: suggestion.issuerName, initialLast4: suggestion.last4, ); if (newCardId != null) { _controller.setSelectedPaymentCardId(newCardId); } } void _scrollToTop() { if (!_scrollController.hasClients) return; _scrollController.animateTo( 0, duration: const Duration(milliseconds: 300), curve: Curves.easeOut, ); } @override Widget build(BuildContext context) { return Stack( children: [ SingleChildScrollView( controller: _scrollController, padding: EdgeInsets.zero, child: Padding( padding: const EdgeInsets.only(top: UIConstants.pageTopPadding), child: Column( children: [ _buildContent(), // FloatingNavigationBar를 위한 충분한 하단 여백 SizedBox( height: 120 + MediaQuery.of(context).padding.bottom, ), ], ), ), ), if (_controller.isAdInProgress) Positioned.fill( child: IgnorePointer( child: Stack( children: [ Container( color: Theme.of(context) .colorScheme .surface .withValues(alpha: 0.4), ), Center( child: DecoratedBox( decoration: BoxDecoration( color: Theme.of(context) .colorScheme .surfaceContainerHighest .withValues(alpha: 0.9), borderRadius: BorderRadius.circular(16), ), child: Padding( padding: const EdgeInsets.symmetric( horizontal: 20, vertical: 16), child: Row( mainAxisSize: MainAxisSize.min, children: [ SizedBox( width: 18, height: 18, child: CircularProgressIndicator( strokeWidth: 2, valueColor: AlwaysStoppedAnimation( Theme.of(context).colorScheme.primary, ), ), ), const SizedBox(width: 12), Text( AppLocalizations.of(context).scanningMessages, style: Theme.of(context) .textTheme .titleMedium ?.copyWith( color: Theme.of(context).colorScheme.onSurface, fontWeight: FontWeight.w700, ), textAlign: TextAlign.center, ), ], ), ), ), ), ], ), ), ), ], ); } }