mirror of
https://github.com/dstark5/Openlib.git
synced 2025-05-19 15:36:46 +08:00
157 lines
6.6 KiB
Dart
157 lines
6.6 KiB
Dart
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Package imports:
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
// Project imports:
|
|
import 'package:openlib/ui/components/error_widget.dart';
|
|
import 'package:openlib/ui/components/page_title_widget.dart';
|
|
import 'package:openlib/ui/results_page.dart';
|
|
import 'extensions.dart';
|
|
|
|
import 'package:openlib/state/state.dart'
|
|
show getTrendingBooks, enableFiltersState;
|
|
|
|
class TrendingPage extends ConsumerWidget {
|
|
const TrendingPage({super.key});
|
|
|
|
final double imageHeight = 145;
|
|
final double imageWidth = 105;
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final trendingBooks = ref.watch(getTrendingBooks);
|
|
return trendingBooks.when(
|
|
skipLoadingOnRefresh: false,
|
|
data: (data) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(left: 5, right: 5, top: 10),
|
|
child: CustomScrollView(
|
|
physics: const BouncingScrollPhysics(),
|
|
slivers: [
|
|
const SliverToBoxAdapter(
|
|
child: TitleText("Trending"),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.all(5),
|
|
sliver: SliverGrid(
|
|
gridDelegate:
|
|
const SliverGridDelegateWithFixedCrossAxisCount(
|
|
crossAxisCount: 3,
|
|
mainAxisSpacing: 10.0,
|
|
crossAxisSpacing: 13.0,
|
|
mainAxisExtent: 205,
|
|
),
|
|
delegate: SliverChildBuilderDelegate(
|
|
(BuildContext context, int index) {
|
|
return InkWell(
|
|
onTap: () {
|
|
ref.read(enableFiltersState.notifier).state = false;
|
|
Navigator.push(context, MaterialPageRoute(
|
|
builder: (BuildContext context) {
|
|
return ResultPage(
|
|
searchQuery: data[index].title!);
|
|
}));
|
|
},
|
|
child: SizedBox(
|
|
width: double.infinity,
|
|
height: double.infinity,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
CachedNetworkImage(
|
|
height: imageHeight,
|
|
width: imageWidth,
|
|
imageUrl: data[index].thumbnail!,
|
|
imageBuilder: (context, imageProvider) =>
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: Colors.grey,
|
|
spreadRadius: 0.1,
|
|
blurRadius: 1)
|
|
],
|
|
borderRadius: const BorderRadius.all(
|
|
Radius.circular(5)),
|
|
image: DecorationImage(
|
|
image: imageProvider,
|
|
fit: BoxFit.fill,
|
|
),
|
|
),
|
|
),
|
|
placeholder: (context, url) => Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(5),
|
|
color: "#E3E8E9".toColor(),
|
|
),
|
|
height: imageHeight,
|
|
width: imageWidth,
|
|
),
|
|
errorWidget: (context, url, error) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius:
|
|
BorderRadius.circular(5),
|
|
color: Colors.grey,
|
|
),
|
|
height: imageHeight,
|
|
width: imageWidth,
|
|
child: const Center(
|
|
child: Icon(Icons.image_rounded),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 4),
|
|
child: SizedBox(
|
|
width: imageWidth,
|
|
child: Text(
|
|
data[index].title!,
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.displayMedium,
|
|
maxLines: 2,
|
|
),
|
|
),
|
|
),
|
|
]),
|
|
),
|
|
);
|
|
},
|
|
childCount: data.length,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
error: (error, _) {
|
|
return CustomErrorWidget(
|
|
error: error,
|
|
stackTrace: _,
|
|
onRefresh: () {
|
|
// ignore: unused_result
|
|
ref.refresh(getTrendingBooks);
|
|
},
|
|
);
|
|
},
|
|
loading: () {
|
|
return Center(
|
|
child: SizedBox(
|
|
width: 25,
|
|
height: 25,
|
|
child: CircularProgressIndicator(
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
strokeCap: StrokeCap.round,
|
|
),
|
|
));
|
|
});
|
|
}
|
|
}
|