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 static readonly DependencyProperty SizeProperty = DependencyProperty.Register(
        "Size",
        typeof(int),
        typeof(MainWindow));

    public static readonly DependencyProperty TimeProperty = DependencyProperty.Register(
        "Time",
        typeof(long),
        typeof(MainWindow));

    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();
            SetValue(SizeProperty, size);
            SetValue(TimeProperty, stopWatch.ElapsedMilliseconds);
            Debug.WriteLine("");
        };

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