summaryrefslogtreecommitdiffstats
path: root/src/components/Details/Details.tsx
blob: e91c98ccf4e15b7a2161b47759fad6efc5a31399 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import * as React from "react";
import {
  RequestPayload,
  RequestResponse,
  ResponsePayload
} from "~hooks/useRequests";
import {useCallback, useEffect, useMemo, useState} from "react";
import styles from "./Details.module.scss";
import RequestSummary from "../RequestSummary/RequestSummary";
import classNames from 'classnames';
import Content from "../Content/Content";
import {getHost} from "../../utils";


interface TimingProps {
  timing: number;
}


function Timing({ timing }: TimingProps) {
  const value = useMemo(() => (Math.round(timing * 1000) / 1000), [timing]);
  const showSeconds = useMemo(() => value > 1, [value]);

  return !Number.isNaN(value)
    ? (
      <>
        {`${showSeconds ? value : value * 1000}${ showSeconds ? 's' : 'ms' }`}
      </>
    )
    : null;
}

interface HeadersProps {
  title: string
  headers: {
    [key: string]: string
  }
}

function Headers({ title, headers }: HeadersProps) {
  return (
    <div className={styles.headers}>
      <h2>{ title }</h2>
      {
        Object.entries(headers).map(([key, value]) => (
          <>
            <div>{key}</div>
            <div>{value}</div>
          </>
        ))
      }
    </div>
  )
}

interface DetailsProps {
  requestResponse: RequestResponse
}

type Tab = 'headers' | 'request' | 'response'

export default function Details({ requestResponse }: DetailsProps) {
  const [tab, selectTab] = useState<Tab>('headers');
  const [raw, setRaw] = useState(false);

  const resend = useCallback(async () => fetch(
    `http://${getHost()}/resend/`,
    {
      method: 'POST',
      body: JSON.stringify({
        ...requestResponse.request,
        id: undefined
      })
    }
  ), [requestResponse]);

  return (
    <div className={styles.details}>
      <div className={styles.header}>
        <RequestSummary requestResponse={requestResponse} className={styles.summary}/>

        <div className={styles.tabs}>
          <button
            onClick={() => selectTab('headers')}
            className={classNames(styles.tab, {
              [styles.selected]: tab === 'headers'
            })}
          >
            Headers
          </button>
          <button
            onClick={() => selectTab('request')}
            className={classNames(styles.tab, {
              [styles.selected]: tab === 'request'
            })}
          >
            Request
          </button>
          <button
            onClick={() => selectTab('response')}
            className={classNames(styles.tab, {
              [styles.selected]: tab === 'response'
            })}
            disabled={requestResponse.response === undefined}
          >
            Response
          </button>

          <div className={styles.emptySpace}>
            <Timing timing={requestResponse.response?.timing ?? NaN} />
            <button className={styles.resend} onClick={() => resend()}>Resend</button>
          </div>
        </div>
      </div>
      <div className={styles.content}>
        {
          tab === 'headers' && (
            <>
              <Headers
                title="Request Headers"
                headers={requestResponse.request.headers}
              />
              {
                requestResponse.response && (
                  <Headers
                    title="Response Headers"
                    headers={requestResponse.response.headers}
                  />
                )
              }
            </>
          )
        }
        {
          tab === 'request' && (
            <Content data={requestResponse.request} raw={raw} setRaw={setRaw}/>
          )
        }
        {
          tab === 'response' && requestResponse.response !== undefined && (
            <Content data={requestResponse.response} raw={raw} setRaw={setRaw}/>
          )
        }
      </div>
    </div>
  )
}