-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: made cover carousel for desktop
- Loading branch information
Showing
1 changed file
with
249 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,249 @@ | ||
import 'dart:async'; // Add this import for Timer | ||
import 'dart:math'; | ||
import 'package:aurora/components/android/common/IconWithLabel.dart'; | ||
import 'package:aurora/pages/Android/Anime/details_page.dart'; | ||
import 'package:aurora/pages/Android/Manga/details_page.dart'; | ||
import 'package:aurora/pages/Android/Novel/details_page.dart'; | ||
import 'package:cached_network_image/cached_network_image.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:iconsax/iconsax.dart'; | ||
import 'package:shimmer/shimmer.dart'; | ||
import 'package:smooth_page_indicator/smooth_page_indicator.dart'; | ||
|
||
class DesktopCoverCarousel extends StatefulWidget { | ||
final List<dynamic>? animeData; | ||
final String? title; | ||
final bool isManga; | ||
|
||
const DesktopCoverCarousel({ | ||
super.key, | ||
this.animeData, | ||
this.title, | ||
this.isManga = false, | ||
}); | ||
|
||
@override | ||
_DesktopCoverCarouselState createState() => _DesktopCoverCarouselState(); | ||
} | ||
|
||
class _DesktopCoverCarouselState extends State<DesktopCoverCarousel> { | ||
int activeIndex = 0; | ||
final PageController _pageController = PageController(); | ||
Timer? _timer; | ||
|
||
@override | ||
void initState() { | ||
super.initState(); | ||
_startAutoSlide(); | ||
} | ||
|
||
void _startAutoSlide() { | ||
_timer = Timer.periodic(const Duration(seconds: 5), (timer) { | ||
if (_pageController.hasClients) { | ||
int nextPage = (activeIndex + 1) % widget.animeData!.length; | ||
_pageController.animateToPage( | ||
nextPage, | ||
duration: const Duration(milliseconds: 500), | ||
curve: Curves.easeInOut, | ||
); | ||
} | ||
}); | ||
} | ||
|
||
void slideCarousel(bool left) { | ||
if (left) { | ||
_pageController.animateToPage( | ||
(_pageController.page! - 1).toInt(), | ||
duration: const Duration(milliseconds: 400), | ||
curve: Curves.easeInOut, | ||
); | ||
} else { | ||
_pageController.animateToPage( | ||
(_pageController.page! + 1).toInt(), | ||
duration: const Duration(milliseconds: 400), | ||
curve: Curves.easeInOut, | ||
); | ||
} | ||
} | ||
|
||
@override | ||
void dispose() { | ||
_timer?.cancel(); | ||
_pageController.dispose(); | ||
super.dispose(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
final colorScheme = Theme.of(context).colorScheme; | ||
|
||
if (widget.animeData == null) { | ||
return const Center( | ||
heightFactor: 300, | ||
child: CircularProgressIndicator(), | ||
); | ||
} | ||
|
||
return Column( | ||
children: [ | ||
SizedBox( | ||
height: 360, | ||
child: PageView.builder( | ||
controller: _pageController, | ||
itemCount: widget.animeData!.length, | ||
onPageChanged: (index) { | ||
setState(() { | ||
activeIndex = index; | ||
}); | ||
}, | ||
itemBuilder: (context, index) { | ||
final anime = widget.animeData![index]; | ||
final String posterUrl = anime?['image']; | ||
final title = anime?['title'] ?? '??'; | ||
final randNum = Random().nextInt(100000); | ||
final tag = '$randNum$index'; | ||
|
||
return GestureDetector( | ||
onTap: () { | ||
if (widget.isManga) { | ||
Navigator.push( | ||
context, | ||
MaterialPageRoute( | ||
builder: (context) => MangaDetailsPage( | ||
id: anime['id'], | ||
posterUrl: posterUrl, | ||
tag: tag, | ||
), | ||
), | ||
); | ||
} else { | ||
Navigator.push( | ||
context, | ||
MaterialPageRoute( | ||
builder: (context) => NovelDetailsPage( | ||
id: anime['id'], | ||
posterUrl: posterUrl, | ||
tag: tag, | ||
), | ||
), | ||
); | ||
} | ||
}, | ||
child: Stack( | ||
children: [ | ||
Column( | ||
children: [ | ||
Hero( | ||
tag: tag, | ||
child: ClipRRect( | ||
borderRadius: BorderRadius.circular(12), | ||
child: CachedNetworkImage( | ||
imageUrl: posterUrl, | ||
fit: BoxFit.cover, | ||
width: double.infinity, | ||
height: 260, | ||
alignment: Alignment.topCenter, | ||
placeholder: (context, url) => Shimmer.fromColors( | ||
baseColor: Colors.grey[900]!, | ||
highlightColor: Colors.grey[700]!, | ||
child: Container( | ||
color: Colors.grey[400], | ||
height: 170, | ||
width: double.infinity, | ||
), | ||
), | ||
), | ||
), | ||
), | ||
const SizedBox(height: 10), | ||
Padding( | ||
padding: const EdgeInsets.symmetric(horizontal: 10.0), | ||
child: Row( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
crossAxisAlignment: CrossAxisAlignment.center, | ||
children: [ | ||
Expanded( | ||
child: Text( | ||
title, | ||
overflow: TextOverflow.ellipsis, | ||
), | ||
), | ||
const SizedBox(width: 20), | ||
iconWithName( | ||
icon: Iconsax.star5, | ||
name: (anime?['rating'])?.toString() ?? '??', | ||
isVertical: false, | ||
borderRadius: BorderRadius.circular(5), | ||
backgroundColor: colorScheme.secondaryContainer, | ||
color: colorScheme.inverseSurface, | ||
TextColor: colorScheme.inverseSurface, | ||
), | ||
], | ||
), | ||
), | ||
const SizedBox(height: 10), | ||
Padding( | ||
padding: const EdgeInsets.symmetric(horizontal: 10.0), | ||
child: Text( | ||
(anime?['description']?.replaceAll( | ||
RegExp(r'<[^>]*>|&[^;]+;'), '')) | ||
?.toString() | ||
.trim() ?? | ||
'', | ||
style: TextStyle( | ||
fontSize: 12, | ||
color: | ||
colorScheme.inverseSurface.withOpacity(0.7), | ||
), | ||
overflow: TextOverflow.ellipsis, | ||
maxLines: 3, | ||
), | ||
), | ||
], | ||
), | ||
], | ||
), | ||
); | ||
}, | ||
), | ||
), | ||
const SizedBox(height: 16), | ||
Row( | ||
mainAxisAlignment: MainAxisAlignment.spaceBetween, | ||
children: [ | ||
const SizedBox.shrink(), | ||
AnimatedSmoothIndicator( | ||
activeIndex: activeIndex, | ||
count: widget.animeData!.length, | ||
effect: WormEffect( | ||
dotHeight: 8, | ||
dotWidth: 8, | ||
activeDotColor: colorScheme.primary, | ||
dotColor: colorScheme.onSurface.withOpacity(0.5), | ||
), | ||
onDotClicked: (index) { | ||
_pageController.animateToPage( | ||
index, | ||
duration: const Duration(milliseconds: 300), | ||
curve: Curves.easeInOut, | ||
); | ||
}, | ||
), | ||
Row( | ||
children: [ | ||
IconButton( | ||
onPressed: () => slideCarousel(true), | ||
icon: const Icon(Icons.arrow_left), | ||
), | ||
IconButton( | ||
onPressed: () => slideCarousel(false), | ||
icon: const Icon(Icons.arrow_right), | ||
) | ||
], | ||
) | ||
], | ||
), | ||
], | ||
); | ||
} | ||
} |