You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/choreographer/widgets/choice_array.dart

285 lines
8.9 KiB
Dart

import 'dart:developer';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:collection/collection.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:fluffychat/config/app_config.dart';
import 'package:fluffychat/pangea/choreographer/widgets/choice_animation.dart';
import 'package:fluffychat/pangea/toolbar/controllers/tts_controller.dart';
import 'package:fluffychat/widgets/matrix.dart';
import '../../bot/utils/bot_style.dart';
import 'it_shimmer.dart';
typedef ChoiceCallback = void Function(String value, int index);
enum OverflowMode {
wrap,
horizontalScroll,
verticalScroll,
}
class ChoicesArray extends StatefulWidget {
final bool isLoading;
final List<Choice>? choices;
final ChoiceCallback onPressed;
final ChoiceCallback? onLongPress;
final int? selectedChoiceIndex;
final String originalSpan;
/// If null then should not be used
/// We don't want tts in the case of L1 options
final TtsController? tts;
final bool enableAudio;
/// Used to unqiuely identify the keys for choices, in cases where multiple
/// choices could have identical text, like in back-to-back practice activities
final String? id;
/// some uses of this widget want to disable clicking of the choices
final bool isActive;
final String Function(String)? getDisplayCopy;
/// activity has multiple correct answers, so user can still
/// select choices once the correct choice has been selected
final bool enableMultiSelect;
final double? fontSize;
final OverflowMode overflowMode;
const ChoicesArray({
super.key,
required this.isLoading,
required this.choices,
required this.onPressed,
required this.originalSpan,
required this.selectedChoiceIndex,
required this.tts,
this.enableAudio = true,
this.isActive = true,
this.onLongPress,
this.getDisplayCopy,
this.id,
this.enableMultiSelect = false,
this.fontSize,
this.overflowMode = OverflowMode.wrap,
});
@override
ChoicesArrayState createState() => ChoicesArrayState();
}
class ChoicesArrayState extends State<ChoicesArray> {
bool interactionDisabled = false;
void disableInteraction() {
WidgetsBinding.instance.addPostFrameCallback((_) {
if (mounted) setState(() => interactionDisabled = true);
});
}
void enableInteractions() {
if (_hasSelectedCorrectChoice && !widget.enableMultiSelect) return;
WidgetsBinding.instance.addPostFrameCallback((_) {
if (mounted) setState(() => interactionDisabled = false);
});
}
bool get _hasSelectedCorrectChoice =>
widget.choices?.any((choice) => choice.isGold && choice.color != null) ??
false;
@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
final choices = widget.choices!
.mapIndexed(
(index, entry) => ChoiceItem(
theme: theme,
onLongPress: widget.isActive ? widget.onLongPress : null,
onPressed: widget.isActive
? (String value, int index) {
widget.onPressed(value, index);
// TODO - what to pass here as eventID?
if (widget.enableAudio && widget.tts != null) {
widget.tts?.tryToSpeak(
value,
context,
targetID: null,
);
}
}
: (String value, int index) {
debugger(when: kDebugMode);
},
entry: MapEntry(index, entry),
interactionDisabled: interactionDisabled,
enableInteraction: enableInteractions,
disableInteraction: disableInteraction,
isSelected: widget.selectedChoiceIndex == index,
id: widget.id,
getDisplayCopy: widget.getDisplayCopy,
fontSize: widget.fontSize,
),
)
.toList();
return widget.isLoading &&
(widget.choices == null || widget.choices!.length <= 1)
? ItShimmer(
originalSpan: widget.originalSpan,
fontSize: widget.fontSize ??
Theme.of(context).textTheme.bodyMedium?.fontSize ??
16,
)
: widget.overflowMode == OverflowMode.wrap
? Wrap(
alignment: WrapAlignment.center,
spacing: 4.0,
children: choices,
)
: widget.overflowMode == OverflowMode.horizontalScroll
? SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: choices,
),
)
: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: choices,
),
);
}
}
class Choice {
Choice({
this.color,
required this.text,
this.isGold = false,
});
final Color? color;
final String text;
final bool isGold;
}
class ChoiceItem extends StatelessWidget {
const ChoiceItem({
super.key,
required this.theme,
required this.onLongPress,
required this.onPressed,
required this.entry,
required this.isSelected,
required this.interactionDisabled,
required this.enableInteraction,
required this.disableInteraction,
required this.id,
this.getDisplayCopy,
this.fontSize,
});
final MapEntry<int, Choice> entry;
final ThemeData theme;
final ChoiceCallback? onLongPress;
final ChoiceCallback onPressed;
final bool isSelected;
final bool interactionDisabled;
final VoidCallback enableInteraction;
final VoidCallback disableInteraction;
final String? id;
final String Function(String)? getDisplayCopy;
final double? fontSize;
@override
Widget build(BuildContext context) {
try {
return Tooltip(
message: onLongPress != null ? L10n.of(context).holdForInfo : "",
waitDuration: onLongPress != null
? const Duration(milliseconds: 500)
: const Duration(days: 1),
child: CompositedTransformTarget(
link: MatrixState.pAnyState
.layerLinkAndKey("${entry.value.text}$id")
.link,
child: ChoiceAnimationWidget(
isSelected: isSelected,
isCorrect: entry.value.isGold,
key: MatrixState.pAnyState
.layerLinkAndKey("${entry.value.text}$id")
.key,
child: Container(
margin: const EdgeInsets.all(2),
padding: EdgeInsets.zero,
decoration: BoxDecoration(
borderRadius: const BorderRadius.all(
Radius.circular(AppConfig.borderRadius),
),
border: Border.all(
color: isSelected
? entry.value.color ?? theme.colorScheme.primary
: Colors.transparent,
style: BorderStyle.solid,
width: 2.0,
),
),
child: TextButton(
style: ButtonStyle(
padding: WidgetStateProperty.all(
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
),
//if index is selected, then give the background a slight primary color
backgroundColor: WidgetStateProperty.all<Color>(
entry.value.color?.withAlpha(50) ??
theme.colorScheme.primary.withAlpha(10),
),
textStyle: WidgetStateProperty.all(
BotStyle.text(context),
),
shape: WidgetStateProperty.all(
RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(AppConfig.borderRadius),
),
),
),
onLongPress: onLongPress != null && !interactionDisabled
? () => onLongPress!(entry.value.text, entry.key)
: null,
onPressed: interactionDisabled
? null
: () => onPressed(entry.value.text, entry.key),
child: Text(
getDisplayCopy != null
? getDisplayCopy!(entry.value.text)
: entry.value.text,
style: BotStyle.text(context).copyWith(
fontSize: fontSize,
),
textAlign: TextAlign.center,
),
),
),
),
),
);
} catch (e) {
debugger(when: kDebugMode);
return Container();
}
}
}