2024-10-30 16:01:24 +05:30
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
|
import { useState } from 'react';
|
|
|
|
|
|
|
|
|
|
import { UISuggestion } from '@/lib/editor/suggestions';
|
|
|
|
|
|
|
|
|
|
import { CrossIcon, MessageIcon } from './icons';
|
2024-10-30 20:36:45 +05:30
|
|
|
import useWindowSize from './use-window-size';
|
2024-10-30 16:01:24 +05:30
|
|
|
import { Button } from '../ui/button';
|
|
|
|
|
|
|
|
|
|
export const Suggestion = ({
|
|
|
|
|
suggestion,
|
|
|
|
|
onApply,
|
|
|
|
|
}: {
|
|
|
|
|
suggestion: UISuggestion;
|
|
|
|
|
onApply: () => void;
|
|
|
|
|
}) => {
|
|
|
|
|
const [isExpanded, setIsExpanded] = useState(false);
|
2024-10-30 20:36:45 +05:30
|
|
|
const { width: windowWidth } = useWindowSize();
|
2024-10-30 16:01:24 +05:30
|
|
|
|
|
|
|
|
return !isExpanded ? (
|
|
|
|
|
<div
|
2024-10-30 20:36:45 +05:30
|
|
|
className="absolute cursor-pointer text-muted-foreground -right-8 p-1"
|
2024-10-30 16:01:24 +05:30
|
|
|
onClick={() => {
|
|
|
|
|
setIsExpanded(true);
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-10-30 20:36:45 +05:30
|
|
|
<MessageIcon size={windowWidth && windowWidth < 768 ? 16 : 14} />
|
2024-10-30 16:01:24 +05:30
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<motion.div
|
|
|
|
|
className="absolute bg-background p-3 flex flex-col gap-3 rounded-2xl border text-sm w-56 shadow-xl z-50 -right-12 md:-right-20"
|
|
|
|
|
transition={{ type: 'spring', stiffness: 500, damping: 30 }}
|
|
|
|
|
whileHover={{ scale: 1.05 }}
|
|
|
|
|
>
|
|
|
|
|
<div className="flex flex-row items-center justify-between">
|
|
|
|
|
<div className="flex flex-row items-center gap-2">
|
|
|
|
|
<div className="size-4 bg-muted-foreground/25 rounded-full" />
|
|
|
|
|
<div className="font-medium">Assistant</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
className="text-xs text-gray-500 cursor-pointer"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
setIsExpanded(false);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<CrossIcon size={12} />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>{suggestion.description}</div>
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
className="w-fit py-1.5 px-3 rounded-full"
|
|
|
|
|
onClick={onApply}
|
|
|
|
|
>
|
|
|
|
|
Apply
|
|
|
|
|
</Button>
|
|
|
|
|
</motion.div>
|
|
|
|
|
);
|
|
|
|
|
};
|