summaryrefslogtreecommitdiffstats
path: root/src/components/RequestSummary/RequestSummary.tsx
blob: 64ff475c73b784f3103b919eab3545aa85c4ff8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { RequestResponse } from "~hooks/useRequests";
import * as React from "react";
import classNames from "classnames";

import { Badge, Col, Row } from "react-bootstrap";
import dayjs from "dayjs";
import { Call } from "~/types";

interface RequestSummaryProps {
  selected?: boolean;
  requestResponse: Call;
  showTime?: boolean;
}

function isBetween(value: number, min: number, max: number) {
  return value >= min && value <= max;
}

function calcBadgeVariant(statusCode: number | undefined): string {
  if (statusCode === undefined) {
    return "secondary";
  } else if (isBetween(statusCode, 100, 199)) {
    return "info";
  } else if (isBetween(statusCode, 200, 299)) {
    return "success";
  } else if (isBetween(statusCode, 300, 399)) {
    return "primary";
  } else if (isBetween(statusCode, 400, 499)) {
    return "danger";
  } else if (isBetween(statusCode, 500, 599)) {
    return "warning";
  }
}

export default function RequestSummary({
  requestResponse: { request, response },
  selected = false,
  showTime = false,
}: RequestSummaryProps) {
  return (
    <Row>
      {showTime && (
        <Col
          className={classNames(
            "flex-grow-0 d-flex align-items-center text-nowrap",
            {
              "text-muted": !selected,
            }
          )}
        >
          {dayjs(request.timestamp).format("LTS")}
        </Col>
      )}
      <Col className="flex-grow-0 d-flex align-items-center">
        {request.method}
      </Col>
      <Col className="flex-grow-1">{request.path}</Col>
      <Col className="flex-grow-0 d-flex align-items-center">
        <Badge
          className={classNames({
            border: selected,
          })}
          bg={calcBadgeVariant(response?.status)}
        >
          {response?.status ?? "Loading..."}
        </Badge>
      </Col>
    </Row>
  );
}