2024-04-09 10:51:05 +00:00
|
|
|
/* eslint-disable @next/next/no-img-element */
|
|
|
|
import { Dialog, Transition } from '@headlessui/react';
|
|
|
|
import { Document } from '@langchain/core/documents';
|
|
|
|
import { Fragment, useState } from 'react';
|
|
|
|
|
|
|
|
const MessageSources = ({ sources }: { sources: Document[] }) => {
|
|
|
|
const [isDialogOpen, setIsDialogOpen] = useState(false);
|
2024-04-21 10:52:27 +00:00
|
|
|
|
|
|
|
const closeModal = () => {
|
2024-04-09 10:51:05 +00:00
|
|
|
setIsDialogOpen(false);
|
|
|
|
document.body.classList.remove('overflow-hidden-scrollable');
|
2024-04-21 10:52:27 +00:00
|
|
|
};
|
2024-04-09 10:51:05 +00:00
|
|
|
|
2024-04-21 10:52:27 +00:00
|
|
|
const openModal = () => {
|
2024-04-09 10:51:05 +00:00
|
|
|
setIsDialogOpen(true);
|
|
|
|
document.body.classList.add('overflow-hidden-scrollable');
|
2024-04-21 10:52:27 +00:00
|
|
|
};
|
2024-04-09 10:51:05 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="grid grid-cols-2 lg:grid-cols-4 gap-2">
|
|
|
|
{sources.slice(0, 3).map((source, i) => (
|
|
|
|
<a
|
2024-05-28 02:15:42 +00:00
|
|
|
className="bg-light-100 hover:bg-light-200 dark:bg-dark-100 dark:hover:bg-dark-200 transition duration-200 rounded-lg p-3 flex flex-col space-y-2 font-medium"
|
2024-04-09 10:51:05 +00:00
|
|
|
key={i}
|
|
|
|
href={source.metadata.url}
|
|
|
|
target="_blank"
|
|
|
|
>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="dark:text-white text-xs overflow-hidden whitespace-nowrap text-ellipsis">
|
2024-04-09 10:51:05 +00:00
|
|
|
{source.metadata.title}
|
|
|
|
</p>
|
|
|
|
<div className="flex flex-row items-center justify-between">
|
|
|
|
<div className="flex flex-row items-center space-x-1">
|
|
|
|
<img
|
|
|
|
src={`https://s2.googleusercontent.com/s2/favicons?domain_url=${source.metadata.url}`}
|
|
|
|
width={16}
|
|
|
|
height={16}
|
|
|
|
alt="favicon"
|
|
|
|
className="rounded-lg h-4 w-4"
|
|
|
|
/>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="text-xs text-black/50 dark:text-white/50 overflow-hidden whitespace-nowrap text-ellipsis">
|
2024-04-09 10:51:05 +00:00
|
|
|
{source.metadata.url.replace(/.+\/\/|www.|\..+/g, '')}
|
|
|
|
</p>
|
|
|
|
</div>
|
2024-05-24 12:29:49 +00:00
|
|
|
<div className="flex flex-row items-center space-x-1 text-black/50 dark:text-white/50 text-xs">
|
2024-05-27 23:57:59 +00:00
|
|
|
<div className="bg-black/50 dark:bg-white/50 h-[4px] w-[4px] rounded-full" />
|
2024-04-09 10:51:05 +00:00
|
|
|
<span>{i + 1}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
))}
|
|
|
|
{sources.length > 3 && (
|
|
|
|
<button
|
|
|
|
onClick={openModal}
|
2024-05-28 02:15:42 +00:00
|
|
|
className="bg-light-100 hover:bg-light-200 dark:bg-dark-100 dark:hover:bg-dark-200 transition duration-200 rounded-lg p-3 flex flex-col space-y-2 font-medium"
|
2024-04-09 10:51:05 +00:00
|
|
|
>
|
|
|
|
<div className="flex flex-row items-center space-x-1">
|
|
|
|
{sources.slice(3, 6).map((source, i) => (
|
|
|
|
<img
|
|
|
|
src={`https://s2.googleusercontent.com/s2/favicons?domain_url=${source.metadata.url}`}
|
|
|
|
width={16}
|
|
|
|
height={16}
|
|
|
|
alt="favicon"
|
|
|
|
className="rounded-lg h-4 w-4"
|
|
|
|
key={i}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</div>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="text-xs text-black/50 dark:text-white/50">
|
2024-04-09 10:51:05 +00:00
|
|
|
View {sources.length - 3} more
|
|
|
|
</p>
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<Transition appear show={isDialogOpen} as={Fragment}>
|
|
|
|
<Dialog as="div" className="relative z-50" onClose={closeModal}>
|
|
|
|
<div className="fixed inset-0 overflow-y-auto">
|
|
|
|
<div className="flex min-h-full items-center justify-center p-4 text-center">
|
|
|
|
<Transition.Child
|
|
|
|
as={Fragment}
|
|
|
|
enter="ease-out duration-200"
|
|
|
|
enterFrom="opacity-0 scale-95"
|
|
|
|
enterTo="opacity-100 scale-100"
|
|
|
|
leave="ease-in duration-100"
|
|
|
|
leaveFrom="opacity-100 scale-200"
|
|
|
|
leaveTo="opacity-0 scale-95"
|
|
|
|
>
|
2024-05-28 03:11:45 +00:00
|
|
|
<Dialog.Panel className="w-full max-w-md transform rounded-2xl bg-light-secondary dark:bg-dark-secondary border border-light-200 dark:border-dark-200 p-6 text-left align-middle shadow-xl transition-all">
|
2024-05-24 12:29:49 +00:00
|
|
|
<Dialog.Title className="text-lg font-medium leading-6 dark:text-white">
|
2024-04-09 10:51:05 +00:00
|
|
|
Sources
|
|
|
|
</Dialog.Title>
|
|
|
|
<div className="grid grid-cols-2 gap-2 overflow-auto max-h-[300px] mt-2 pr-2">
|
|
|
|
{sources.map((source, i) => (
|
|
|
|
<a
|
2024-05-28 03:11:45 +00:00
|
|
|
className="bg-light-secondary hover:bg-light-200 dark:bg-dark-secondary dark:hover:bg-dark-200 border border-light-200 dark:border-dark-200 transition duration-200 rounded-lg p-3 flex flex-col space-y-2 font-medium"
|
2024-04-09 10:51:05 +00:00
|
|
|
key={i}
|
|
|
|
href={source.metadata.url}
|
|
|
|
target="_blank"
|
|
|
|
>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="dark:text-white text-xs overflow-hidden whitespace-nowrap text-ellipsis">
|
2024-04-09 10:51:05 +00:00
|
|
|
{source.metadata.title}
|
|
|
|
</p>
|
|
|
|
<div className="flex flex-row items-center justify-between">
|
|
|
|
<div className="flex flex-row items-center space-x-1">
|
|
|
|
<img
|
|
|
|
src={`https://s2.googleusercontent.com/s2/favicons?domain_url=${source.metadata.url}`}
|
|
|
|
width={16}
|
|
|
|
height={16}
|
|
|
|
alt="favicon"
|
|
|
|
className="rounded-lg h-4 w-4"
|
|
|
|
/>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="text-xs text-black/50 dark:text-white/50 overflow-hidden whitespace-nowrap text-ellipsis">
|
2024-04-09 10:51:05 +00:00
|
|
|
{source.metadata.url.replace(
|
|
|
|
/.+\/\/|www.|\..+/g,
|
|
|
|
'',
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
</div>
|
2024-05-24 12:29:49 +00:00
|
|
|
<div className="flex flex-row items-center space-x-1 text-black/50 dark:text-white/50 text-xs">
|
2024-05-27 23:57:59 +00:00
|
|
|
<div className="bg-black/50 dark:bg-white/50 h-[4px] w-[4px] rounded-full" />
|
2024-04-09 10:51:05 +00:00
|
|
|
<span>{i + 1}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</Dialog.Panel>
|
|
|
|
</Transition.Child>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Dialog>
|
|
|
|
</Transition>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MessageSources;
|