2022-07-07 11:40:54 -07:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-02-09 11:41:02 -07:00
|
|
|
import 'package:flutter/material.dart';
|
2022-08-08 08:46:12 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-01-27 14:05:08 -07:00
|
|
|
import 'package:immich_mobile/modules/album/ui/add_to_album_sliverlist.dart';
|
2022-02-09 11:41:02 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/delete_diaglog.dart';
|
2023-01-11 13:54:12 -07:00
|
|
|
import 'package:immich_mobile/shared/ui/drag_sheet.dart';
|
2022-11-05 18:21:55 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-09 11:41:02 -07:00
|
|
|
|
2022-08-08 08:46:12 -07:00
|
|
|
class ControlBottomAppBar extends ConsumerWidget {
|
2022-10-06 13:41:56 -07:00
|
|
|
final Function onShare;
|
|
|
|
final Function onDelete;
|
2022-11-05 18:21:55 -07:00
|
|
|
final Function(AlbumResponseDto album) onAddToAlbum;
|
|
|
|
final void Function() onCreateNewAlbum;
|
2022-10-06 13:41:56 -07:00
|
|
|
|
2022-11-05 18:21:55 -07:00
|
|
|
final List<AlbumResponseDto> albums;
|
2023-01-27 14:05:08 -07:00
|
|
|
final List<AlbumResponseDto> sharedAlbums;
|
2022-11-05 18:21:55 -07:00
|
|
|
|
|
|
|
const ControlBottomAppBar({
|
|
|
|
Key? key,
|
|
|
|
required this.onShare,
|
|
|
|
required this.onDelete,
|
2023-01-27 14:05:08 -07:00
|
|
|
required this.sharedAlbums,
|
2022-11-05 18:21:55 -07:00
|
|
|
required this.albums,
|
|
|
|
required this.onAddToAlbum,
|
|
|
|
required this.onCreateNewAlbum,
|
|
|
|
}) : super(key: key);
|
2022-02-09 11:41:02 -07:00
|
|
|
|
|
|
|
@override
|
2022-08-08 08:46:12 -07:00
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-11-05 18:21:55 -07:00
|
|
|
Widget renderActionButtons() {
|
2022-11-06 19:41:10 -07:00
|
|
|
return Row(
|
|
|
|
children: [
|
|
|
|
ControlBoxButton(
|
|
|
|
iconData: Icons.ios_share_rounded,
|
|
|
|
label: "control_bottom_app_bar_share".tr(),
|
|
|
|
onPressed: () {
|
|
|
|
onShare();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
ControlBoxButton(
|
|
|
|
iconData: Icons.delete_outline_rounded,
|
|
|
|
label: "control_bottom_app_bar_delete".tr(),
|
|
|
|
onPressed: () {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return DeleteDialog(
|
|
|
|
onDelete: onDelete,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
2022-11-05 18:21:55 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-06 19:41:10 -07:00
|
|
|
return DraggableScrollableSheet(
|
|
|
|
initialChildSize: 0.30,
|
|
|
|
minChildSize: 0.15,
|
|
|
|
maxChildSize: 0.57,
|
|
|
|
snap: true,
|
|
|
|
builder: (
|
|
|
|
BuildContext context,
|
|
|
|
ScrollController scrollController,
|
|
|
|
) {
|
2023-01-27 14:05:08 -07:00
|
|
|
return Card(
|
|
|
|
elevation: 12.0,
|
|
|
|
shape: const RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
topLeft: Radius.circular(12),
|
|
|
|
topRight: Radius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
margin: const EdgeInsets.all(0),
|
|
|
|
child: Container(
|
|
|
|
decoration: const BoxDecoration(
|
2022-11-06 19:41:10 -07:00
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
topLeft: Radius.circular(12),
|
|
|
|
topRight: Radius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
2023-01-27 14:05:08 -07:00
|
|
|
child: CustomScrollView(
|
|
|
|
controller: scrollController,
|
|
|
|
slivers: [
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
child: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
const SizedBox(height: 12),
|
|
|
|
const CustomDraggingHandle(),
|
|
|
|
const SizedBox(height: 12),
|
|
|
|
renderActionButtons(),
|
|
|
|
const Divider(
|
|
|
|
indent: 16,
|
|
|
|
endIndent: 16,
|
|
|
|
thickness: 1,
|
|
|
|
),
|
|
|
|
AddToAlbumTitleRow(onCreateNewAlbum: onCreateNewAlbum),
|
|
|
|
],
|
2022-11-06 19:41:10 -07:00
|
|
|
),
|
2023-01-27 14:05:08 -07:00
|
|
|
),
|
|
|
|
SliverPadding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
|
|
sliver: AddToAlbumSliverList(
|
|
|
|
albums: albums,
|
|
|
|
sharedAlbums: sharedAlbums,
|
|
|
|
onAddToAlbum: onAddToAlbum,
|
2022-11-06 19:41:10 -07:00
|
|
|
),
|
2023-01-27 14:05:08 -07:00
|
|
|
),
|
|
|
|
const SliverToBoxAdapter(
|
|
|
|
child: SizedBox(height: 200),
|
|
|
|
)
|
|
|
|
],
|
2022-11-06 19:41:10 -07:00
|
|
|
),
|
2022-07-13 05:23:48 -07:00
|
|
|
),
|
2022-11-06 19:41:10 -07:00
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AddToAlbumTitleRow extends StatelessWidget {
|
|
|
|
const AddToAlbumTitleRow({
|
|
|
|
super.key,
|
|
|
|
required this.onCreateNewAlbum,
|
|
|
|
});
|
|
|
|
|
|
|
|
final VoidCallback onCreateNewAlbum;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
const Text(
|
|
|
|
"control_bottom_app_bar_add_to_album",
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: FontWeight.bold,
|
2022-11-05 18:21:55 -07:00
|
|
|
),
|
2022-11-06 19:41:10 -07:00
|
|
|
).tr(),
|
2023-01-27 14:05:08 -07:00
|
|
|
TextButton.icon(
|
2022-11-06 19:41:10 -07:00
|
|
|
onPressed: onCreateNewAlbum,
|
2023-01-27 14:05:08 -07:00
|
|
|
icon: const Icon(Icons.add),
|
|
|
|
label: Text(
|
2022-11-06 19:41:10 -07:00
|
|
|
"control_bottom_app_bar_create_new_album",
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 14,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|