mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
c29976cd6f
* Made memories full screen * Uses linear bar and fits the card better for memories * Fixes pageview close button moving with pages * Uses hooks instead of stateful components * Adds ticks to the progress indicator * Rounds the edges of the progress bar * Fixes trailing comma analyze error * Adds padding and hero to memories * Fixes an issue with initial index set and adds hero / proper padding * Fixes aspect ratio calculation * Color --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
111 lines
3.5 KiB
Dart
111 lines
3.5 KiB
Dart
import 'dart:ui';
|
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
|
import 'package:immich_mobile/shared/ui/immich_image.dart';
|
|
import 'package:immich_mobile/utils/image_url_builder.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
class MemoryCard extends StatelessWidget {
|
|
final Asset asset;
|
|
final void Function() onTap;
|
|
final String title;
|
|
final bool showTitle;
|
|
|
|
const MemoryCard({
|
|
required this.asset,
|
|
required this.onTap,
|
|
required this.title,
|
|
required this.showTitle,
|
|
super.key,
|
|
});
|
|
|
|
String get accessToken => Store.get(StoreKey.accessToken);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Card(
|
|
color: Colors.black,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(25.0),
|
|
side: const BorderSide(
|
|
color: Colors.black,
|
|
width: 1.0,
|
|
),
|
|
),
|
|
clipBehavior: Clip.hardEdge,
|
|
child: Stack(
|
|
children: [
|
|
ImageFiltered(
|
|
imageFilter: ImageFilter.blur(sigmaX: 30, sigmaY: 30),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
image: DecorationImage(
|
|
image: CachedNetworkImageProvider(
|
|
getThumbnailUrl(
|
|
asset,
|
|
),
|
|
cacheKey: getThumbnailCacheKey(
|
|
asset,
|
|
),
|
|
headers: {"x-immich-user-token": accessToken},
|
|
),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
child: Container(color: Colors.black.withOpacity(0.2)),
|
|
),
|
|
),
|
|
GestureDetector(
|
|
onTap: onTap,
|
|
child: LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
// Determine the fit using the aspect ratio
|
|
BoxFit fit = BoxFit.fitWidth;
|
|
if (asset.width != null && asset.height != null) {
|
|
final aspectRatio = asset.width! / asset.height!;
|
|
final phoneAspectRatio =
|
|
constraints.maxWidth / constraints.maxHeight;
|
|
// Look for a 25% difference in either direction
|
|
if (phoneAspectRatio * .75 < aspectRatio &&
|
|
phoneAspectRatio * 1.25 > aspectRatio) {
|
|
// Cover to look nice if we have nearly the same aspect ratio
|
|
fit = BoxFit.cover;
|
|
}
|
|
}
|
|
|
|
return Hero(
|
|
tag: 'memory-${asset.id}',
|
|
child: ImmichImage(
|
|
asset,
|
|
fit: fit,
|
|
height: double.infinity,
|
|
width: double.infinity,
|
|
type: ThumbnailFormat.JPEG,
|
|
preferredLocalAssetSize: 2048,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
if (showTitle)
|
|
Positioned(
|
|
left: 18.0,
|
|
bottom: 18.0,
|
|
child: Text(
|
|
title,
|
|
style: context.textTheme.headlineMedium?.copyWith(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|