mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -07:00
bcb0056b55
* Run dart analyze in CI * Add pub get * Fix linter errors in mobile code
116 lines
3.3 KiB
Dart
116 lines
3.3 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/album/providers/album.provider.dart';
|
|
import 'package:immich_mobile/modules/album/ui/album_thumbnail_card.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
class LibraryPage extends HookConsumerWidget {
|
|
const LibraryPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final albums = ref.watch(albumProvider);
|
|
|
|
useEffect(
|
|
() {
|
|
ref.read(albumProvider.notifier).getAllAlbums();
|
|
return null;
|
|
},
|
|
[],
|
|
);
|
|
|
|
Widget buildAppBar() {
|
|
return const SliverAppBar(
|
|
centerTitle: true,
|
|
floating: true,
|
|
pinned: false,
|
|
snap: false,
|
|
automaticallyImplyLeading: false,
|
|
title: Text(
|
|
'IMMICH',
|
|
style: TextStyle(
|
|
fontFamily: 'SnowburstOne',
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 22,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget buildCreateAlbumButton() {
|
|
return GestureDetector(
|
|
onTap: () {
|
|
AutoRouter.of(context).push(CreateAlbumRoute(isSharedAlbum: false));
|
|
},
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Container(
|
|
width: MediaQuery.of(context).size.width / 2 - 18,
|
|
height: MediaQuery.of(context).size.width / 2 - 18,
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
color: Colors.grey,
|
|
),
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Center(
|
|
child: Icon(
|
|
Icons.add_rounded,
|
|
size: 28,
|
|
color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
child: const Text(
|
|
'library_page_new_album',
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
buildAppBar(),
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: const Text(
|
|
'library_page_albums',
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
).tr(),
|
|
),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.only(left: 12.0, right: 12, bottom: 50),
|
|
sliver: SliverToBoxAdapter(
|
|
child: Wrap(
|
|
spacing: 12,
|
|
children: [
|
|
buildCreateAlbumButton(),
|
|
for (var album in albums)
|
|
AlbumThumbnailCard(
|
|
album: album,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|