2023-03-03 08:51:33 -05:00
|
|
|
import React from 'react';
|
|
|
|
|
// import Clipboard from '../svg/Clipboard';
|
|
|
|
|
import EditIcon from '../svg/EditIcon';
|
|
|
|
|
|
2023-03-31 00:20:45 +08:00
|
|
|
export default function HoverButtons({ visible, onClick, endpoint }) {
|
|
|
|
|
const enabled = endpoint in ['azureOpenAI', 'openAI', 'chatGPTBrowser'];
|
2023-03-15 02:33:08 +08:00
|
|
|
|
2023-03-03 08:51:33 -05:00
|
|
|
return (
|
2023-03-11 17:36:10 -05:00
|
|
|
<div className="visible mt-2 flex justify-center gap-3 self-end text-gray-400 md:gap-4 lg:absolute lg:top-0 lg:right-0 lg:mt-0 lg:translate-x-full lg:gap-1 lg:self-center lg:pl-2">
|
2023-03-31 00:20:45 +08:00
|
|
|
{visible && enabled ? (
|
2023-03-15 02:33:08 +08:00
|
|
|
<>
|
2023-03-31 00:20:45 +08:00
|
|
|
<button
|
|
|
|
|
className="resubmit-edit-button rounded-md p-1 hover:bg-gray-100 hover:text-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400 md:invisible md:group-hover:visible"
|
|
|
|
|
onClick={onClick}
|
|
|
|
|
>
|
2023-03-15 02:33:08 +08:00
|
|
|
{/* <button className="rounded-md p-1 hover:bg-gray-100 hover:text-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400"> */}
|
|
|
|
|
<EditIcon />
|
|
|
|
|
</button>
|
|
|
|
|
</>
|
2023-03-31 00:20:45 +08:00
|
|
|
) : null}
|
2023-03-11 17:36:10 -05:00
|
|
|
{/* <button className="rounded-md p-1 hover:bg-gray-100 hover:text-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400">
|
2023-03-03 08:51:33 -05:00
|
|
|
<Clipboard />
|
|
|
|
|
</button> */}
|
2023-03-11 17:36:10 -05:00
|
|
|
</div>
|
2023-03-03 08:51:33 -05:00
|
|
|
);
|
2023-03-11 17:36:10 -05:00
|
|
|
}
|