2024-01-05 07:20:55 +02:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2023-03-23 17:08:14 +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-03-23 17:08:14 +02:00
|
|
|
import 'package:immich_mobile/modules/search/models/curated_content.dart';
|
|
|
|
import 'package:immich_mobile/modules/search/providers/search_page_state.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/search/ui/explore_grid.dart';
|
|
|
|
import 'package:openapi/api.dart';
|
|
|
|
|
2024-01-15 18:50:33 +02:00
|
|
|
@RoutePage()
|
2023-03-23 17:08:14 +02:00
|
|
|
class CuratedLocationPage extends HookConsumerWidget {
|
|
|
|
const CuratedLocationPage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
AsyncValue<List<CuratedLocationsResponseDto>> curatedLocation =
|
|
|
|
ref.watch(getCuratedLocationProvider);
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2023-11-20 16:58:03 +02:00
|
|
|
title: const Text(
|
2023-03-23 17:08:14 +02:00
|
|
|
'curated_location_page_title',
|
|
|
|
).tr(),
|
2023-03-25 05:44:53 +02:00
|
|
|
leading: IconButton(
|
2024-01-05 07:20:55 +02:00
|
|
|
onPressed: () => context.popRoute(),
|
2023-03-25 05:44:53 +02:00
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
2023-03-23 17:08:14 +02:00
|
|
|
),
|
2023-11-29 06:17:29 +02:00
|
|
|
body: curatedLocation.widgetWhen(
|
|
|
|
onData: (curatedLocations) => ExploreGrid(
|
2023-03-23 17:08:14 +02:00
|
|
|
curatedContent: curatedLocations
|
|
|
|
.map(
|
|
|
|
(l) => CuratedContent(
|
|
|
|
label: l.city,
|
|
|
|
id: l.id,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.toList(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|