mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
* opt: RepaintBoundary * fix [skip ci] * opt time width * opt: video position * update --------- Co-authored-by: dom <githubaccount56556@proton.me>
116 lines
3.3 KiB
Dart
116 lines
3.3 KiB
Dart
import 'package:PiliPlus/common/widgets/custom_arc.dart';
|
|
import 'package:PiliPlus/utils/extension/theme_ext.dart';
|
|
import 'package:PiliPlus/utils/platform_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class ActionItem extends StatelessWidget {
|
|
const ActionItem({
|
|
super.key,
|
|
required this.icon,
|
|
this.selectIcon,
|
|
this.onTap,
|
|
this.onLongPress,
|
|
this.text,
|
|
this.selectStatus = false,
|
|
required this.semanticsLabel,
|
|
this.expand = true,
|
|
this.animation,
|
|
this.onStartTriple,
|
|
this.onCancelTriple,
|
|
}) : assert(!selectStatus || selectIcon != null),
|
|
_isThumbsUp = onStartTriple != null;
|
|
|
|
final Icon icon;
|
|
final Icon? selectIcon;
|
|
final VoidCallback? onTap;
|
|
final VoidCallback? onLongPress;
|
|
final String? text;
|
|
final bool selectStatus;
|
|
final String semanticsLabel;
|
|
final bool expand;
|
|
final Animation<double>? animation;
|
|
final VoidCallback? onStartTriple;
|
|
final void Function([bool])? onCancelTriple;
|
|
final bool _isThumbsUp;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
late final primary = !expand && colorScheme.isLight
|
|
? colorScheme.inversePrimary
|
|
: colorScheme.primary;
|
|
Widget child = Icon(
|
|
selectStatus ? selectIcon!.icon! : icon.icon,
|
|
size: 18,
|
|
color: selectStatus ? primary : icon.color ?? colorScheme.outline,
|
|
);
|
|
|
|
if (animation != null) {
|
|
child = Stack(
|
|
clipBehavior: Clip.none,
|
|
alignment: Alignment.center,
|
|
children: [
|
|
AnimatedBuilder(
|
|
animation: animation!,
|
|
builder: (context, child) => Arc(
|
|
size: 28,
|
|
color: primary,
|
|
progress: -animation!.value,
|
|
),
|
|
),
|
|
child,
|
|
],
|
|
);
|
|
} else {
|
|
child = SizedBox.square(dimension: 28, child: child);
|
|
}
|
|
|
|
child = Material(
|
|
type: .transparency,
|
|
child: InkWell(
|
|
borderRadius: const BorderRadius.all(Radius.circular(6)),
|
|
onTap: _isThumbsUp ? null : onTap,
|
|
onLongPress: _isThumbsUp ? null : onLongPress,
|
|
onSecondaryTap: PlatformUtils.isMobile || _isThumbsUp
|
|
? null
|
|
: onLongPress,
|
|
onTapDown: _isThumbsUp ? (_) => onStartTriple!() : null,
|
|
onTapUp: _isThumbsUp ? (_) => onCancelTriple!(true) : null,
|
|
onTapCancel: _isThumbsUp ? onCancelTriple : null,
|
|
child: expand
|
|
? Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [child, _buildText(theme)],
|
|
)
|
|
: child,
|
|
),
|
|
);
|
|
return expand ? Expanded(child: child) : child;
|
|
}
|
|
|
|
Widget _buildText(ThemeData theme) {
|
|
final hasText = text != null;
|
|
final child = Text(
|
|
hasText ? text! : '-',
|
|
key: hasText ? ValueKey(text!) : null,
|
|
style: TextStyle(
|
|
color: selectStatus
|
|
? theme.colorScheme.primary
|
|
: theme.colorScheme.outline,
|
|
fontSize: theme.textTheme.labelSmall!.fontSize,
|
|
),
|
|
);
|
|
if (hasText) {
|
|
return AnimatedSwitcher(
|
|
duration: const Duration(milliseconds: 300),
|
|
transitionBuilder: (Widget child, Animation<double> animation) {
|
|
return ScaleTransition(scale: animation, child: child);
|
|
},
|
|
child: child,
|
|
);
|
|
}
|
|
return child;
|
|
}
|
|
}
|