162 lines
5.5 KiB
Dart
162 lines
5.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import '../providers/subscription_provider.dart';
|
|
import '../providers/category_provider.dart';
|
|
import '../utils/subscription_category_helper.dart';
|
|
import '../widgets/native_ad_widget.dart';
|
|
import '../widgets/main_summary_card.dart';
|
|
import '../widgets/subscription_list_widget.dart';
|
|
import '../widgets/empty_state_widget.dart';
|
|
// import '../theme/app_colors.dart';
|
|
import '../l10n/app_localizations.dart';
|
|
|
|
class HomeContent extends StatelessWidget {
|
|
final AnimationController fadeController;
|
|
final AnimationController rotateController;
|
|
final AnimationController slideController;
|
|
final AnimationController pulseController;
|
|
final AnimationController waveController;
|
|
final ScrollController scrollController;
|
|
final VoidCallback onAddPressed;
|
|
|
|
const HomeContent({
|
|
super.key,
|
|
required this.fadeController,
|
|
required this.rotateController,
|
|
required this.slideController,
|
|
required this.pulseController,
|
|
required this.waveController,
|
|
required this.scrollController,
|
|
required this.onAddPressed,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final provider = context.watch<SubscriptionProvider>();
|
|
|
|
if (provider.isLoading) {
|
|
return Center(
|
|
child: CircularProgressIndicator(
|
|
valueColor: AlwaysStoppedAnimation<Color>(
|
|
Theme.of(context).colorScheme.primary,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
if (provider.subscriptions.isEmpty) {
|
|
return EmptyStateWidget(
|
|
fadeController: fadeController,
|
|
rotateController: rotateController,
|
|
slideController: slideController,
|
|
onAddPressed: onAddPressed,
|
|
);
|
|
}
|
|
|
|
// 카테고리별 구독 구분
|
|
final categoryProvider =
|
|
Provider.of<CategoryProvider>(context, listen: false);
|
|
final categorizedSubscriptions =
|
|
SubscriptionCategoryHelper.categorizeSubscriptions(
|
|
provider.subscriptions,
|
|
categoryProvider,
|
|
context,
|
|
);
|
|
|
|
return RefreshIndicator(
|
|
onRefresh: () async {
|
|
await provider.refreshSubscriptions();
|
|
},
|
|
color: Theme.of(context).colorScheme.primary,
|
|
child: CustomScrollView(
|
|
controller: scrollController,
|
|
physics: const BouncingScrollPhysics(),
|
|
slivers: [
|
|
SliverToBoxAdapter(
|
|
child: SizedBox(
|
|
height: kToolbarHeight + MediaQuery.of(context).padding.top,
|
|
),
|
|
),
|
|
const SliverToBoxAdapter(
|
|
child: NativeAdWidget(key: ValueKey('home_ad')),
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: SlideTransition(
|
|
position: Tween<Offset>(
|
|
begin: const Offset(0, 0.2),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: slideController, curve: Curves.easeOutCubic)),
|
|
child: MainScreenSummaryCard(
|
|
provider: provider,
|
|
fadeController: fadeController,
|
|
pulseController: pulseController,
|
|
waveController: waveController,
|
|
slideController: slideController,
|
|
),
|
|
),
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.fromLTRB(20, 24, 20, 4),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
SlideTransition(
|
|
position: Tween<Offset>(
|
|
begin: const Offset(-0.2, 0),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: slideController, curve: Curves.easeOutCubic)),
|
|
child: Text(
|
|
AppLocalizations.of(context).mySubscriptions,
|
|
style: Theme.of(context).textTheme.titleLarge?.copyWith(
|
|
color: Theme.of(context).colorScheme.onSurface,
|
|
),
|
|
),
|
|
),
|
|
SlideTransition(
|
|
position: Tween<Offset>(
|
|
begin: const Offset(0.2, 0),
|
|
end: Offset.zero,
|
|
).animate(CurvedAnimation(
|
|
parent: slideController, curve: Curves.easeOutCubic)),
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
AppLocalizations.of(context)
|
|
.subscriptionCount(provider.subscriptions.length),
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
),
|
|
const SizedBox(width: 4),
|
|
Icon(
|
|
Icons.arrow_forward_ios,
|
|
size: 14,
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
SubscriptionListWidget(
|
|
categorizedSubscriptions: categorizedSubscriptions,
|
|
fadeController: fadeController,
|
|
),
|
|
SliverToBoxAdapter(
|
|
child: SizedBox(
|
|
height: 120 + MediaQuery.of(context).padding.bottom,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|