mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 11:29:11 -07:00
4309104925
* New features - Share album. Users can now create albums to share with existing people on the network. - Owner can delete the album. - Owner can invite the additional users to the album. - Shared users and the owner can add additional assets to the album. * In the asset viewer, the user can swipe up to see detailed information and swip down to dismiss. * Several UI enhancements.
93 lines
3.1 KiB
Dart
93 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/sharing/providers/asset_selection.provider.dart';
|
|
import 'package:immich_mobile/shared/models/immich_asset.model.dart';
|
|
|
|
class MonthGroupTitle extends HookConsumerWidget {
|
|
final String month;
|
|
final List<ImmichAsset> assetGroup;
|
|
|
|
const MonthGroupTitle({Key? key, required this.month, required this.assetGroup}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final selectedDateGroup = ref.watch(assetSelectionProvider).selectedMonths;
|
|
final selectedAssets = ref.watch(assetSelectionProvider).selectedNewAssetsForAlbum;
|
|
final isAlbumExist = ref.watch(assetSelectionProvider).isAlbumExist;
|
|
|
|
_handleTitleIconClick() {
|
|
HapticFeedback.heavyImpact();
|
|
|
|
if (isAlbumExist) {
|
|
if (selectedDateGroup.contains(month)) {
|
|
ref.watch(assetSelectionProvider.notifier).removeAssetsInMonth(month, []);
|
|
ref.watch(assetSelectionProvider.notifier).removeSelectedAdditionalAssets(assetGroup);
|
|
} else {
|
|
ref.watch(assetSelectionProvider.notifier).addAllAssetsInMonth(month, []);
|
|
|
|
// Deep clone assetGroup
|
|
var assetGroupWithNewItems = [...assetGroup];
|
|
|
|
for (var selectedAsset in selectedAssets) {
|
|
assetGroupWithNewItems.removeWhere((a) => a.id == selectedAsset.id);
|
|
}
|
|
|
|
ref.watch(assetSelectionProvider.notifier).addAdditionalAssets(assetGroupWithNewItems);
|
|
}
|
|
} else {
|
|
if (selectedDateGroup.contains(month)) {
|
|
ref.watch(assetSelectionProvider.notifier).removeAssetsInMonth(month, assetGroup);
|
|
} else {
|
|
ref.watch(assetSelectionProvider.notifier).addAllAssetsInMonth(month, assetGroup);
|
|
}
|
|
}
|
|
}
|
|
|
|
_getSimplifiedMonth() {
|
|
var monthAndYear = month.split(',');
|
|
var yearText = monthAndYear[1].trim();
|
|
var monthText = monthAndYear[0].trim();
|
|
var currentYear = DateTime.now().year.toString();
|
|
|
|
if (yearText == currentYear) {
|
|
return monthText;
|
|
} else {
|
|
return month;
|
|
}
|
|
}
|
|
|
|
return SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(top: 29.0, bottom: 29.0, left: 14.0, right: 8.0),
|
|
child: Row(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: _handleTitleIconClick,
|
|
child: selectedDateGroup.contains(month)
|
|
? Icon(
|
|
Icons.check_circle_rounded,
|
|
color: Theme.of(context).primaryColor,
|
|
)
|
|
: const Icon(
|
|
Icons.circle_outlined,
|
|
color: Colors.grey,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 8.0),
|
|
child: Text(
|
|
_getSimplifiedMonth(),
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|