lazydns 0.3.20

A light and fast DNS server/forwarder implementation in Rust
Documentation
<script lang="ts">
  import { onMount, onDestroy } from "svelte";
  import * as echarts from "echarts";
  import type { TimeSeriesPoint } from "../lib/types";
  import { darkMode } from "../lib/stores";

  export let data: TimeSeriesPoint[];
  export let title: string = "QPS Trend";
  export let color: string = "#3b82f6";

  let chartContainer: HTMLDivElement;
  let chart: echarts.ECharts | null = null;
  let isDark = true;

  darkMode.subscribe((value) => {
    isDark = value;
    if (chart) {
      chart.dispose();
      initChart();
    }
  });

  function initChart() {
    if (!chartContainer) return;

    chart = echarts.init(chartContainer, isDark ? "dark" : undefined);

    const textColor = isDark ? "#9ca3af" : "#4b5563";
    const axisColor = isDark ? "#6b7280" : "#9ca3af";
    const lineColor = isDark ? "#374151" : "#e5e7eb";
    const tooltipBg = isDark
      ? "rgba(17, 24, 39, 0.95)"
      : "rgba(255, 255, 255, 0.95)";
    const tooltipBorder = isDark ? "#374151" : "#e5e7eb";
    const tooltipTextColor = isDark ? "#f3f4f6" : "#1f2937";

    const option: echarts.EChartsOption = {
      backgroundColor: "transparent",
      title: {
        text: title,
        left: 0,
        textStyle: {
          color: textColor,
          fontSize: 14,
          fontWeight: 500,
        },
      },
      tooltip: {
        trigger: "axis",
        backgroundColor: tooltipBg,
        borderColor: tooltipBorder,
        textStyle: {
          color: tooltipTextColor,
        },
        formatter: (params: any) => {
          const point = params[0];
          // Timestamp is now absolute Unix seconds from backend
          const unixSeconds = Number(point.axisValue);
          const date = new Date(unixSeconds * 1000);
          const time = date.toLocaleTimeString();
          return `<div class="font-medium">${time}</div>
                  <div style="color: ${color}">${point.value.toFixed(1)} qps</div>`;
        },
      },
      grid: {
        left: 50,
        right: 20,
        top: 50,
        bottom: 30,
      },
      xAxis: {
        type: "category",
        data: data.map((d) => d.timestamp),
        axisLabel: {
          formatter: (value: any) => {
            // Timestamp is now absolute Unix seconds from backend
            const unixSeconds = Number(value);
            const date = new Date(unixSeconds * 1000);
            const hours = String(date.getHours()).padStart(2, "0");
            const minutes = String(date.getMinutes()).padStart(2, "0");
            return `${hours}:${minutes}`;
          },
          color: axisColor,
          fontSize: 11,
        },
        axisLine: {
          lineStyle: { color: lineColor },
        },
        axisTick: { show: false },
        splitLine: { show: false },
      },
      yAxis: {
        type: "value",
        axisLabel: {
          color: axisColor,
          fontSize: 11,
        },
        axisLine: { show: false },
        axisTick: { show: false },
        splitLine: {
          lineStyle: {
            color: lineColor,
            type: "dashed",
          },
        },
      },
      series: [
        {
          data: data.map((d) => d.value),
          type: "line",
          smooth: true,
          symbol: "none",
          lineStyle: {
            width: 2,
            color: color,
          },
          areaStyle: {
            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
              { offset: 0, color: `${color}40` },
              { offset: 1, color: `${color}05` },
            ]),
          },
        },
      ],
    };

    chart.setOption(option);
  }

  function updateChart() {
    if (!chart) return;

    chart.setOption({
      xAxis: {
        data: data.map((d) => d.timestamp),
      },
      series: [
        {
          data: data.map((d) => d.value),
        },
      ],
    });
  }

  function handleResize() {
    chart?.resize();
  }

  onMount(() => {
    initChart();
    window.addEventListener("resize", handleResize);
  });

  onDestroy(() => {
    window.removeEventListener("resize", handleResize);
    chart?.dispose();
  });

  $: if (chart && data) {
    updateChart();
  }
</script>

<div class="card">
  <div class="card-body">
    <div bind:this={chartContainer} class="w-full h-64"></div>
  </div>
</div>