|
|
@ -13,5 +13,20 @@ namespace CetteAppliVaMarcher.Pages
|
|
|
|
public List<Item> Items { get; set; } = new List<Item>();
|
|
|
|
public List<Item> Items { get; set; } = new List<Item>();
|
|
|
|
|
|
|
|
|
|
|
|
private List<CraftingRecipe> Recipes { get; set; } = new List<CraftingRecipe>();
|
|
|
|
private List<CraftingRecipe> Recipes { get; set; } = new List<CraftingRecipe>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
base.OnAfterRenderAsync(firstRender);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!firstRender)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Items = await DataService.List(0, await DataService.Count());
|
|
|
|
|
|
|
|
Recipes = await DataService.GetRecipes();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StateHasChanged();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|