mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
167 lines
5.8 KiB
Dart
167 lines
5.8 KiB
Dart
import 'package:shadcn_flutter/shadcn_flutter.dart';
|
|
import 'package:shadcn_flutter/shadcn_flutter_extension.dart';
|
|
import 'package:spotube/collections/spotube_icons.dart';
|
|
import 'package:spotube/components/image/universal_image.dart';
|
|
import 'package:spotube/extensions/string.dart';
|
|
import 'package:spotube/utils/platform.dart';
|
|
|
|
class PlaybuttonCard extends StatelessWidget {
|
|
final void Function()? onTap;
|
|
final void Function()? onPlaybuttonPressed;
|
|
final void Function()? onAddToQueuePressed;
|
|
final String? description;
|
|
|
|
final String? imageUrl;
|
|
final Widget? image;
|
|
final bool isPlaying;
|
|
final bool isLoading;
|
|
final String title;
|
|
final bool isOwner;
|
|
|
|
const PlaybuttonCard({
|
|
required this.isPlaying,
|
|
required this.isLoading,
|
|
required this.title,
|
|
this.description,
|
|
this.onPlaybuttonPressed,
|
|
this.onAddToQueuePressed,
|
|
this.onTap,
|
|
this.isOwner = false,
|
|
this.imageUrl,
|
|
this.image,
|
|
super.key,
|
|
}) : assert(
|
|
imageUrl != null || image != null,
|
|
"imageUrl and image can't be null at the same time",
|
|
);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final unescapeHtml = description?.unescapeHtml().cleanHtml() ?? "";
|
|
final scale = context.theme.scaling;
|
|
|
|
return SizedBox(
|
|
width: 150 * scale,
|
|
child: CardImage(
|
|
image: Stack(
|
|
children: [
|
|
if (imageUrl != null)
|
|
Container(
|
|
width: 150 * scale,
|
|
height: 150 * scale,
|
|
decoration: BoxDecoration(
|
|
borderRadius: context.theme.borderRadiusMd,
|
|
image: DecorationImage(
|
|
image: UniversalImage.imageProvider(imageUrl!),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
)
|
|
else
|
|
SizedBox(
|
|
width: 150 * scale,
|
|
height: 150 * scale,
|
|
child: ClipRRect(
|
|
borderRadius: context.theme.borderRadiusMd,
|
|
child: image!,
|
|
),
|
|
),
|
|
StatedWidget.builder(
|
|
builder: (context, states) {
|
|
return Positioned(
|
|
right: 8,
|
|
bottom: 8,
|
|
child: Column(
|
|
children: [
|
|
AnimatedScale(
|
|
curve: Curves.easeOutBack,
|
|
duration: const Duration(milliseconds: 300),
|
|
scale: (states.contains(WidgetState.hovered) ||
|
|
kIsMobile) &&
|
|
!isLoading
|
|
? 1
|
|
: 0.7,
|
|
child: AnimatedOpacity(
|
|
duration: const Duration(milliseconds: 300),
|
|
opacity: (states.contains(WidgetState.hovered) ||
|
|
kIsMobile) &&
|
|
!isLoading
|
|
? 1
|
|
: 0,
|
|
child: IconButton.secondary(
|
|
icon: const Icon(SpotubeIcons.queueAdd),
|
|
onPressed: onAddToQueuePressed,
|
|
size: ButtonSize.small,
|
|
),
|
|
),
|
|
),
|
|
const Gap(5),
|
|
AnimatedScale(
|
|
curve: Curves.easeOutBack,
|
|
duration: const Duration(milliseconds: 150),
|
|
scale: states.contains(WidgetState.hovered) ||
|
|
kIsMobile ||
|
|
isPlaying ||
|
|
isLoading
|
|
? 1
|
|
: 0.7,
|
|
child: AnimatedOpacity(
|
|
duration: const Duration(milliseconds: 150),
|
|
opacity: states.contains(WidgetState.hovered) ||
|
|
kIsMobile ||
|
|
isPlaying ||
|
|
isLoading
|
|
? 1
|
|
: 0,
|
|
child: IconButton.secondary(
|
|
icon: switch ((isLoading, isPlaying)) {
|
|
(true, _) => const CircularProgressIndicator(
|
|
size: 15,
|
|
),
|
|
(false, false) => const Icon(SpotubeIcons.play),
|
|
(false, true) => const Icon(SpotubeIcons.pause)
|
|
},
|
|
enabled: !isLoading,
|
|
onPressed: onPlaybuttonPressed,
|
|
size: ButtonSize.small,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
if (isOwner)
|
|
const Positioned(
|
|
right: 5,
|
|
top: 5,
|
|
child: SecondaryBadge(
|
|
style: ButtonStyle.secondaryIcon(
|
|
shape: ButtonShape.circle,
|
|
size: ButtonSize.small,
|
|
),
|
|
child: Icon(SpotubeIcons.user),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
title: Tooltip(
|
|
tooltip: TooltipContainer(child: Text(title)),
|
|
child: Text(
|
|
title,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
subtitle: Text(
|
|
unescapeHtml.isEmpty ? "\n" : unescapeHtml,
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
onPressed: onTap,
|
|
),
|
|
);
|
|
}
|
|
}
|