Enhanced Test Execution Flexibility (#5521)

Refactor UI and Logic for Task Queue and Test Suite Button
This commit is contained in:
hunteraraujo
2023-10-03 22:34:22 -07:00
committed by GitHub
parent da6311fb1e
commit 45c15fc8c6
3 changed files with 202 additions and 42 deletions

View File

@@ -1,47 +1,115 @@
import 'package:auto_gpt_flutter_client/constants/app_colors.dart';
import 'package:flutter/material.dart';
class TestSuiteButton extends StatelessWidget {
final VoidCallback? onPressed;
class TestSuiteButton extends StatefulWidget {
final bool isDisabled;
final Function(String) onOptionSelected;
final Function(String) onPlayPressed;
String selectedOption;
TestSuiteButton({required this.onPressed, this.isDisabled = false});
TestSuiteButton({
this.isDisabled = false,
required this.onOptionSelected,
required this.onPlayPressed,
required this.selectedOption,
});
@override
_TestSuiteButtonState createState() => _TestSuiteButtonState();
}
class _TestSuiteButtonState extends State<TestSuiteButton> {
@override
Widget build(BuildContext context) {
return SizedBox(
height: 50,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: isDisabled ? Colors.grey : AppColors.primaryLight,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
elevation: 5.0,
),
onPressed: isDisabled ? null : onPressed,
child: const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'Initiate test suite',
style: TextStyle(
color: Colors.white,
fontSize: 12.50,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
return Row(
children: [
// Dropdown button with test options
Expanded(
// Added Expanded to make sure it takes the available space
child: PopupMenuButton<String>(
enabled: !widget.isDisabled,
onSelected: (value) {
setState(() {
widget.selectedOption = value;
});
widget.onOptionSelected(widget.selectedOption);
},
itemBuilder: (BuildContext context) {
return [
const PopupMenuItem(
value: 'Run single test',
child: Text('Run single test'),
),
const PopupMenuItem(
value: 'Run test suite including selected node and ancestors',
child: Text(
'Run test suite including selected node and ancestors'),
),
const PopupMenuItem(
value: 'Run all tests in category',
child: Text('Run all tests in category'),
),
];
},
child: Container(
height: 50,
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
decoration: BoxDecoration(
color: widget.isDisabled ? Colors.grey : AppColors.primaryLight,
borderRadius: BorderRadius.circular(8.0),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: Text(
widget.selectedOption,
style: const TextStyle(
color: Colors.white,
fontSize: 12.50,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
),
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
),
const Icon(
Icons.arrow_drop_down,
color: Colors.white,
)
],
),
),
SizedBox(width: 10),
Icon(
),
),
// Play button
const SizedBox(width: 10),
SizedBox(
height: 50,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor:
widget.isDisabled ? Colors.grey : AppColors.primaryLight,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
elevation: 5.0,
),
onPressed: widget.isDisabled
? null
: () {
widget.onPlayPressed(widget.selectedOption);
},
child: const Icon(
Icons.play_arrow,
color: Colors.white,
size: 24,
),
],
),
),
),
],
);
}
}