2023-10-22 17:05:10 +02:00
|
|
|
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';
|
2023-11-09 18:19:53 +02:00
|
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
2023-10-22 17:05:10 +02:00
|
|
|
import 'package:immich_mobile/modules/shared_link/models/shared_link.dart';
|
|
|
|
import 'package:immich_mobile/modules/shared_link/providers/shared_link.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/shared_link/ui/shared_link_item.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
|
|
|
|
|
|
|
class SharedLinkPage extends HookConsumerWidget {
|
|
|
|
const SharedLinkPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final sharedLinks = ref.watch(sharedLinksStateProvider);
|
|
|
|
|
|
|
|
useEffect(
|
|
|
|
() {
|
|
|
|
ref.read(sharedLinksStateProvider.notifier).fetchLinks();
|
|
|
|
return () => ref.invalidate(sharedLinksStateProvider);
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
|
|
|
|
|
|
|
Widget buildNoShares() {
|
|
|
|
return Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 16.0, top: 16.0),
|
|
|
|
child: const Text(
|
|
|
|
"shared_link_manage_links",
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
color: Colors.grey,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 10),
|
|
|
|
child: const Text(
|
|
|
|
"shared_link_empty",
|
|
|
|
style: TextStyle(fontSize: 14),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: Center(
|
|
|
|
child: Icon(
|
|
|
|
Icons.link_off,
|
|
|
|
size: 100,
|
2023-11-09 18:19:53 +02:00
|
|
|
color: context.themeData.iconTheme.color?.withOpacity(0.5),
|
2023-10-22 17:05:10 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget buildSharesList(List<SharedLink> links) {
|
|
|
|
return Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 16.0, top: 16.0, bottom: 30.0),
|
|
|
|
child: const Text(
|
|
|
|
"shared_link_manage_links",
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
color: Colors.grey,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: LayoutBuilder(
|
|
|
|
builder: (context, constraints) {
|
|
|
|
if (constraints.maxWidth > 600) {
|
|
|
|
// Two column
|
|
|
|
return GridView.builder(
|
|
|
|
gridDelegate:
|
|
|
|
const SliverGridDelegateWithFixedCrossAxisCount(
|
|
|
|
crossAxisCount: 2,
|
|
|
|
mainAxisExtent: 180,
|
|
|
|
),
|
|
|
|
itemCount: links.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
return SharedLinkItem(links.elementAt(index));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Single column
|
|
|
|
return ListView.builder(
|
|
|
|
itemCount: links.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
return SharedLinkItem(links.elementAt(index));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text("shared_link_app_bar_title").tr(),
|
|
|
|
elevation: 0,
|
|
|
|
centerTitle: false,
|
|
|
|
),
|
|
|
|
body: SafeArea(
|
|
|
|
child: sharedLinks.when(
|
|
|
|
data: (links) =>
|
|
|
|
links.isNotEmpty ? buildSharesList(links) : buildNoShares(),
|
|
|
|
error: (error, stackTrace) => buildNoShares(),
|
|
|
|
loading: () => const Center(child: ImmichLoadingIndicator()),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|