using System.Diagnostics;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using DT2;

namespace UrlTester;

/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    public void GetUrl(object sender, RoutedEventArgs e)
    {
        var tester = new DT2.UrlTester();
        var stopWatch = new Stopwatch();

        tester.PageStart += (_) =>
        {
            stopWatch.Start();
        };

        tester.PageLoaded += (_, size) =>
        {
            stopWatch.Stop();
            bytesBox.Text = $"{size} bytes";
            timeBox.Text = $"{stopWatch.ElapsedMilliseconds} ms";
            timeBar.Value = stopWatch.ElapsedMilliseconds;
        };

        _ = tester.GetUrlAsync(urlBox.Text);
    }
}