kinda in between commit before refactor to stateful widgets everywhere

This commit is contained in:
broodjeaap89 2021-08-03 20:23:20 +02:00
parent 3026bc0bfa
commit 3e043eccb4
4 changed files with 64 additions and 10 deletions

View file

@ -61,9 +61,9 @@ class PizzaRecipe extends HiveObject {
return stepCount;
}
Widget getPizzaEventRecipeWidget(PizzaEventPageState pizzaEventPage) {
Widget getPizzaEventRecipeWidget(BuildContext context, PizzaEventPageState pizzaEventPage) {
return ListView(
children: this.recipeSteps.map((recipeStep) => recipeStep.buildPizzaEventRecipeStepWidget(pizzaEventPage)).toList()
children: this.recipeSteps.map((recipeStep) => recipeStep.buildPizzaEventRecipeStepWidget(context, pizzaEventPage)).toList()
);
}

View file

@ -47,13 +47,13 @@ class RecipeStep extends HiveObject {
completedOn != null;
}
Widget buildPizzaEventRecipeStepWidget(PizzaEventPageState pizzaEventPage){
Widget buildPizzaEventRecipeStepWidget(BuildContext context, PizzaEventPageState pizzaEventPage){
return this.subSteps.length > 0 ?
buildPizzaEventRecipeStepWidgetWithSubSteps(pizzaEventPage) :
buildPizzaEventRecipeStepWidgetWithoutSubSteps(pizzaEventPage);
buildPizzaEventRecipeStepWidgetWithSubSteps(context, pizzaEventPage) :
buildPizzaEventRecipeStepWidgetWithoutSubSteps(context, pizzaEventPage);
}
Widget buildPizzaEventRecipeStepWidgetWithSubSteps(PizzaEventPageState pizzaEventPage) {
Widget buildPizzaEventRecipeStepWidgetWithSubSteps(BuildContext context, PizzaEventPageState pizzaEventPage) {
int recipeSubStepsCompleted = this.subSteps.where((subStep) => subStep.completed).length;
int recipeSubSteps = this.subSteps.length;
return ExpansionTile(
@ -68,11 +68,11 @@ class RecipeStep extends HiveObject {
children: <Widget>[
Text(this.description),
] + subSteps.map((subStep) => subStep.buildPizzaEventSubStepWidget(pizzaEventPage)).toList()
] + subSteps.map((subStep) => subStep.buildTest(context, pizzaEventPage)).toList() //subStep.buildPizzaEventSubStepWidget(context, pizzaEventPage)).toList()
);
}
Widget buildPizzaEventRecipeStepWidgetWithoutSubSteps(PizzaEventPageState pizzaEventPage) {
Widget buildPizzaEventRecipeStepWidgetWithoutSubSteps(BuildContext context, PizzaEventPageState pizzaEventPage) {
return ExpansionTile(
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,

View file

@ -20,7 +20,7 @@ class RecipeSubStep extends HiveObject {
RecipeSubStep(this.name, this.description);
Widget buildPizzaEventSubStepWidget(PizzaEventPageState pizzaEventPage) {
Widget buildPizzaEventSubStepWidget(BuildContext context, PizzaEventPageState pizzaEventPage) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
@ -43,4 +43,58 @@ class RecipeSubStep extends HiveObject {
],
);
}
Widget buildTest(BuildContext context, PizzaEventPageState pizzaEventPage){
return InkWell(
onTap: () {
showDialog(
context: context,
builder: (context) {
return getDialog(context);
}
);
},
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(this.name),
Checkbox(
value: this.completed,
onChanged: (b) {},
)
],
),
);
}
Widget getDialog(BuildContext context){
return Dialog(
insetPadding: EdgeInsets.all(10),
child: Container(
padding: EdgeInsets.all(10),
child: Column(
children: <Widget>[
Text(this.name),
Text(this.description),
Expanded(
child: Container()
),
SizedBox(
width: double.infinity,
height: 70,
child: Container(
color: this.completed ? Colors.green : Colors.redAccent,
child: TextButton(
child: Text(this.completed ? "Complete" : "Todo", style: TextStyle(color: Colors.white)),
onPressed: () {
this.completedOn = this.completed ? null : DateTime.now();
},
)
)
)
]
)
)
);
}
}

View file

@ -21,7 +21,7 @@ class PizzaEventPageState extends State<PizzaEventPage> {
resizeToAvoidBottomInset: false,
body: Container(
padding: EdgeInsets.all(10),
child: this.widget.pizzaEvent.recipe.getPizzaEventRecipeWidget(this)
child: this.widget.pizzaEvent.recipe.getPizzaEventRecipeWidget(context, this)
)
);
}