Spaces:
Sleeping
Sleeping
File size: 5,871 Bytes
a72140d | 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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | import { animate } from "motion";
import { Fragment, useRef } from "react";
import EndpointsSearch from "@/components/app/(home)/sections/endpoints/EndpointsSearch/EndpointsSearch";
import EndpointsCrawl from "@/components/app/(home)/sections/endpoints/EndpointsCrawl/EndpointsCrawl";
import EndpointsMap from "@/components/app/(home)/sections/endpoints/EndpointsMap/EndpointsMap";
import EndpointsScrape from "@/components/app/(home)/sections/endpoints/EndpointsScrape/EndpointsScrape";
import EndpointsExtract from "@/components/app/(home)/sections/endpoints/EndpointsExtract/EndpointsExtract";
import { cn } from "@/utils/cn";
import Tooltip from "@/components/ui/shadcn/tooltip";
import { Endpoint } from "@/components/shared/Playground/Context/types";
export const tabs = [
{
label: "Scrape",
value: Endpoint.Scrape,
action: "scraping",
description:
"Scrapes only the specified URL without crawling subpages. Outputs the content from the page.",
icon: EndpointsScrape,
},
{
label: "Search",
value: Endpoint.Search,
description: "Search the web and get full content from results",
action: "searching",
icon: EndpointsSearch,
new: true,
},
{
label: "Map",
value: Endpoint.Map,
action: "mapping",
description: "Attempts to output all website's urls in a few seconds.",
icon: EndpointsMap,
},
{
label: "Crawl",
value: Endpoint.Crawl,
action: "crawling",
description:
"Crawls a URL and all its accessible subpages, outputting the content from each page.",
icon: EndpointsCrawl,
},
{
label: "Extract",
value: Endpoint.Extract,
action: "extracting",
description:
"Extract structured data from pages using LLMs. Provide URLs and a schema to get organized data.",
icon: EndpointsExtract,
new: true,
},
];
export default function HeroInputTabs(props: {
setTab: (tab: Endpoint) => void;
tab: Endpoint;
disabled?: boolean;
allowedModes?: Endpoint[];
}) {
// Filter tabs based on allowedModes if provided
const visibleTabs = props.allowedModes
? tabs.filter((tab) => props.allowedModes!.includes(tab.value))
: tabs;
const activeIndex = visibleTabs.findIndex((tab) => tab.value === props.tab);
const backgroundRef = useRef<HTMLDivElement>(null);
return (
<div
className="bg-black-alpha-4 flex items-center rounded-10 p-2 relative lg-max:hidden"
style={{
boxShadow:
"0px 6px 12px 0px rgba(0, 0, 0, 0.02) inset, 0px 0.75px 0.75px 0px rgba(0, 0, 0, 0.02) inset, 0px 0.25px 0.25px 0px rgba(0, 0, 0, 0.04) inset",
}}
>
<div
className="absolute top-2 left-2 h-32 bg-accent-white rounded-8 w-89"
ref={backgroundRef}
style={{
boxShadow:
"0px 6px 12px -3px rgba(0, 0, 0, 0.04), 0px 3px 6px -1px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.04), 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.06)",
}}
/>
{visibleTabs.map((tab, index) => (
<Fragment key={tab.value}>
{index > 0 && (
<div
className={cn(
"px-2 transition-all",
!(index !== activeIndex && index !== activeIndex + 1) &&
"opacity-0",
)}
>
<div className="w-1 h-12 bg-black-alpha-5" />
</div>
)}
<button
className={cn(
"text-label-medium p-6 relative transition-all group flex items-center",
tab.value === props.tab
? "text-accent-black"
: "text-black-alpha-56",
!tab.new && "pr-4",
)}
key={tab.value}
ref={(element) => {
if (element && backgroundRef.current) {
if (activeIndex === index) {
animate(
backgroundRef.current,
{
x: element.offsetLeft - 2,
width: element.offsetWidth - 1,
},
{
type: "spring",
stiffness: 200,
damping: 23,
},
);
}
}
}}
onClick={(e) => {
props.setTab(tab.value);
const t = e.target as HTMLElement;
const target =
t instanceof HTMLButtonElement
? t
: (t.closest("button") as HTMLButtonElement);
if (backgroundRef.current) {
animate(backgroundRef.current, { scale: 0.975 }).then(() =>
animate(backgroundRef.current!, { scale: 1 }),
);
animate(
backgroundRef.current,
{
x: target.offsetLeft - 2,
width: target.offsetWidth - 1,
},
{
type: "spring",
stiffness: 250,
damping: 25,
},
);
}
}}
>
{tab.icon && <tab.icon active={tab.value === props.tab} />}
<span className="px-6"> {tab.label}</span>
{tab.new && (
<div
className={cn(
"py-2 px-6 rounded-4 text-[12px]/[16px] font-[450] transition-all",
tab.value === props.tab
? "bg-heat-12 text-heat-100"
: "bg-black-alpha-4 text-black-alpha-56",
)}
>
New
</div>
)}
<Tooltip delay={0.25} description={tab.description} offset={-8} />
</button>
</Fragment>
))}
</div>
);
}
|