2023-03-25 05:44:53 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-11-29 06:17:29 +02:00
|
|
|
import 'package:immich_mobile/extensions/asyncvalue_extensions.dart';
|
2023-11-09 18:19:53 +02:00
|
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
2023-03-25 05:44:53 +02:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/immich_asset_grid.dart';
|
|
|
|
import 'package:immich_mobile/modules/search/providers/all_video_assets.provider.dart';
|
|
|
|
|
|
|
|
class AllVideosPage extends HookConsumerWidget {
|
|
|
|
const AllVideosPage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final videos = ref.watch(allVideoAssetsProvider);
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('all_videos_page_title').tr(),
|
|
|
|
leading: IconButton(
|
2023-11-09 18:19:53 +02:00
|
|
|
onPressed: () => context.autoPop(),
|
2023-03-25 05:44:53 +02:00
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
),
|
2023-11-29 06:17:29 +02:00
|
|
|
body: videos.widgetWhen(
|
|
|
|
onData: (assets) => ImmichAssetGrid(
|
2023-03-25 05:44:53 +02:00
|
|
|
assets: assets,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|