File size: 1,440 Bytes
5916048
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { useMemo } from "react";
import classNames from "classnames";

import { Method } from "@/components/method";
import { splitStringBracket } from "@/utils";
import { ApiRoute } from "@/utils/type";

export const Endpoint = ({
  endpoint,
  children,
}: {
  endpoint: ApiRoute;
  children: React.ReactElement;
}) => {
  const path_formatted = useMemo(
    () => splitStringBracket(endpoint.path),
    [endpoint.path]
  );

  return (
    <div className="bg-slate-900 w-full">
      <div className="bg-slate-950/50 p-3 rounded-lg flex items-center justify-between">
        <div className="text-white text-sm flex items-center justify-start gap-2 w-full">
          <Method method={endpoint.method} />
          <div className="flex items-center justify-start gap-1">
            {path_formatted.map((p, i) => {
              const isCustomizable = p.includes("{") && p.includes("}");
              return (
                <p
                  key={i}
                  className={classNames("", {
                    "bg-indigo-600 !text-white px-1.5 rounded-md outline-none bg-opacity-80":
                      isCustomizable,
                    "text-slate-300": !isCustomizable,
                  })}
                  contentEditable={isCustomizable}
                >
                  {p}
                </p>
              );
            })}
          </div>
        </div>
        {children}
      </div>
    </div>
  );
};