2024-05-09 00:41:19 -04:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
|
import 'package:whispering_pages/api/api_provider.dart';
|
|
|
|
|
import 'package:whispering_pages/settings/api_settings_provider.dart';
|
|
|
|
|
|
2024-05-14 10:11:25 -04:00
|
|
|
import '../shared/widgets/drawer.dart';
|
|
|
|
|
import '../shared/widgets/shelves/home_shelf.dart';
|
2024-05-09 00:41:19 -04:00
|
|
|
|
|
|
|
|
// TODO: implement the library page
|
|
|
|
|
class LibraryPage extends HookConsumerWidget {
|
|
|
|
|
const LibraryPage({this.libraryId, super.key});
|
|
|
|
|
|
|
|
|
|
final String? libraryId;
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
|
// set the library id as the active library
|
|
|
|
|
if (libraryId != null) {
|
|
|
|
|
ref.read(apiSettingsProvider.notifier).updateState(
|
|
|
|
|
ref.watch(apiSettingsProvider).copyWith(activeLibraryId: libraryId),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
final views = ref.watch(personalizedViewProvider);
|
|
|
|
|
final scrollController = useScrollController();
|
|
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
|
appBar: AppBar(
|
|
|
|
|
title: GestureDetector(
|
2024-08-14 03:32:02 -04:00
|
|
|
child: const Text('Vaani'),
|
2024-05-09 00:41:19 -04:00
|
|
|
onTap: () {
|
|
|
|
|
// scroll to the top of the page
|
|
|
|
|
scrollController.animateTo(
|
|
|
|
|
0,
|
|
|
|
|
duration: const Duration(milliseconds: 300),
|
|
|
|
|
curve: Curves.easeInOut,
|
|
|
|
|
);
|
|
|
|
|
// refresh the view
|
|
|
|
|
ref.invalidate(personalizedViewProvider);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
drawer: const MyDrawer(),
|
|
|
|
|
body: Container(
|
|
|
|
|
child: views.when(
|
|
|
|
|
data: (data) {
|
|
|
|
|
final shelvesToDisplay = data
|
|
|
|
|
// .where((element) => !element.id.contains('discover'))
|
|
|
|
|
.map((shelf) {
|
|
|
|
|
debugPrint('building shelf ${shelf.label}');
|
|
|
|
|
return HomeShelf(
|
|
|
|
|
title: shelf.label,
|
|
|
|
|
shelf: shelf,
|
|
|
|
|
);
|
|
|
|
|
}).toList();
|
|
|
|
|
return RefreshIndicator(
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
return ref.refresh(personalizedViewProvider);
|
|
|
|
|
},
|
|
|
|
|
child: ListView.separated(
|
|
|
|
|
itemBuilder: (context, index) => shelvesToDisplay[index],
|
|
|
|
|
separatorBuilder: (context, index) => Divider(
|
|
|
|
|
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
|
|
|
|
indent: 16,
|
|
|
|
|
endIndent: 16,
|
|
|
|
|
),
|
|
|
|
|
itemCount: shelvesToDisplay.length,
|
|
|
|
|
controller: scrollController,
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
loading: () => const LibraryPageSkeleton(),
|
|
|
|
|
error: (error, stack) {
|
|
|
|
|
return Text('Error: $error');
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class LibraryPageSkeleton extends StatelessWidget {
|
|
|
|
|
const LibraryPageSkeleton({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return const Scaffold(
|
|
|
|
|
body: Center(
|
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|