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 authToken => 'Bearer ${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: {"Authorization": authToken},
                  ),
                  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,
                ),
              ),
            ),
        ],
      ),
    );
  }
}