File size: 4,878 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"use client"

import { BASE_URL } from "@/lib/constants"
import { getLlmContent } from "@/lib/llms-utils"
import {
  Button,
  ButtonGroup,
  ButtonProps,
  IconButton,
  IconButtonProps,
  Menu,
  Portal,
  Separator,
  useClipboard,
} from "@chakra-ui/react"
import NextLink from "next/link"
import { BsMarkdown } from "react-icons/bs"
import { LuCheck, LuChevronDown } from "react-icons/lu"
import { Docs } from ".velite"

export const LLMSCopyWidget = (props: { data: Docs }) => {
  const { data } = props
  return (
    <ButtonGroup attached variant="subtle" size="sm">
      <CopyMarkdownButton data={data} />
      <Separator
        orientation="vertical"
        h="5"
        borderColor="gray.muted"
        mx="-1px"
        zIndex="1"
      />
      <ActionMenu data={data} borderStartRadius="0">
        <LuChevronDown />
      </ActionMenu>
    </ButtonGroup>
  )
}

const CopyMarkdownButton = (props: ButtonProps & { data: Docs }) => {
  const { data, ...rest } = props
  const clipboard = useClipboard({ value: getLlmContent(data), timeout: 1000 })
  return (
    <Button {...rest} onClick={clipboard.copy}>
      {clipboard.copied ? <LuCheck /> : <BsMarkdown />} Copy Markdown
    </Button>
  )
}

const ActionMenu = (props: IconButtonProps & { data: Docs }) => {
  const { data, ...rest } = props

  const readUrl = encodeURIComponent(
    `Use web browsing to access links and information: ${BASE_URL}/${data.slug}.mdx`,
  )

  const items = [
    {
      label: "View as markdown",
      href: `${BASE_URL}/${data.slug}.mdx`,
      icon: BsMarkdown,
    },
    {
      label: "Open in ChatGPT",
      href: `https://chatgpt.com/?hints=search&q=${readUrl}`,
      icon: OpenAiIcon,
    },
    {
      label: "Open in Claude",
      href: `https://claude.ai/new?q=${readUrl}`,
      icon: AnthropicIcon,
    },
  ]

  return (
    <Menu.Root positioning={{ placement: "bottom-end" }}>
      <Menu.Trigger asChild>
        <IconButton {...rest} />
      </Menu.Trigger>
      <Portal>
        <Menu.Positioner>
          <Menu.Content minW="200px">
            {items.map((item) => (
              <Menu.Item
                value={item.label}
                cursor="pointer"
                textDecoration="underline"
                textDecorationColor="border"
                textUnderlineOffset="4px"
                asChild
                key={item.label}
              >
                <NextLink href={item.href}>
                  <item.icon width="1em" height="1em" /> {item.label}
                </NextLink>
              </Menu.Item>
            ))}
          </Menu.Content>
        </Menu.Positioner>
      </Portal>
    </Menu.Root>
  )
}

const AnthropicIcon = (props: React.SVGProps<SVGSVGElement>) => {
  return (
    <svg
      {...props}
      fill="currentColor"
      role="img"
      viewBox="0 0 24 24"
      xmlns="http://www.w3.org/2000/svg"
    >
      <title>Anthropic</title>
      <path d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" />
    </svg>
  )
}

const OpenAiIcon = (props: React.SVGProps<SVGSVGElement>) => {
  return (
    <svg
      {...props}
      role="img"
      viewBox="0 0 24 24"
      fill="currentColor"
      xmlns="http://www.w3.org/2000/svg"
    >
      <title>OpenAI</title>
      <path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"></path>
    </svg>
  )
}