AI-Studio/app/MindWork AI Studio/Components/Changelog.razor.cs
2024-08-21 08:30:01 +02:00

29 lines
746 B
C#

using Microsoft.AspNetCore.Components;
namespace AIStudio.Components;
public partial class Changelog : ComponentBase
{
[Inject]
private HttpClient HttpClient { get; set; } = null!;
#region Overrides of ComponentBase
protected override async Task OnInitializedAsync()
{
await this.ReadLogAsync();
await base.OnInitializedAsync();
}
#endregion
private Log SelectedLog { get; set; } = LOGS.MaxBy(n => n.Build);
private string LogContent { get; set; } = string.Empty;
private async Task ReadLogAsync()
{
var response = await this.HttpClient.GetAsync($"changelog/{this.SelectedLog.Filename}");
this.LogContent = await response.Content.ReadAsStringAsync();
}
}