add seventy seven

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-05-21 22:16:51 +02:00
parent 9558de3385
commit c90848765a
12 changed files with 194 additions and 1 deletions

View File

@@ -0,0 +1,78 @@
import { Button } from '@/components/ui/button';
import { Textarea } from '@/components/ui/textarea';
import { useAppParams } from '@/hooks/useAppParams';
import { api } from '@/trpc/client';
import { useUser } from '@clerk/nextjs';
import { zodResolver } from '@hookform/resolvers/zod';
import { useForm } from 'react-hook-form';
import { toast } from 'sonner';
import { z } from 'zod';
import { trackEvent } from '@openpanel/nextjs';
import { popModal } from '.';
import { ModalContent } from './Modal/Container';
const validator = z.object({
body: z.string().min(3),
});
type IForm = z.infer<typeof validator>;
const Testimonial = () => {
const mutation = api.ticket.create.useMutation();
const params = useAppParams();
const form = useForm<IForm>({
resolver: zodResolver(validator),
});
return (
<ModalContent className="p-0">
<div className="w-full rounded-t-lg border-b border-border bg-secondary p-4">
<h1 className="mb-2 text-2xl font-bold">Review time 🫶</h1>
<p className="mb-2">
Thank you so much for using Openpanel it truly means a great deal to
me! If you&apos;re enjoying your experience, I&apos;d be thrilled if
you could leave a quick review. 😇
</p>
<p>
If you have any feedback or suggestions, I&apos;d love to hear them as
well! 🚀
</p>
</div>
<form
className="p-4"
onSubmit={form.handleSubmit(async ({ body }) => {
try {
await mutation.mutateAsync({
subject: 'New testimonial',
body,
meta: {
...params,
},
});
toast.success('Thanks for your feedback 🚀');
trackEvent('testimonials_sent');
popModal();
} catch (e) {
toast.error('Something went wrong. Please try again later.');
}
})}
>
<Textarea
placeholder="Type your review here."
{...form.register('body')}
/>
<div className="mt-4 flex justify-between gap-2">
<Button type="button" variant="secondary" onClick={() => popModal()}>
Maybe later
</Button>
<Button type="submit" loading={form.formState.isSubmitting}>
Send it
</Button>
</div>
</form>
</ModalContent>
);
};
export default Testimonial;

View File

@@ -65,6 +65,9 @@ const modals = {
OverviewChartDetails: dynamic(() => import('./OverviewChartDetails'), {
loading: Loading,
}),
Testimonial: dynamic(() => import('./Testimonial'), {
loading: Loading,
}),
};
export const {