@devvistatech/devvista-kit 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/LICENSE +7 -0
- package/README.md +15 -0
- package/app/about/page.tsx +306 -0
- package/app/adRequest/page.tsx +550 -0
- package/app/analytics/page.tsx +347 -0
- package/app/api/about/route.ts +307 -0
- package/app/api/adRequest/route.ts +568 -0
- package/app/api/analytics/[reportType]/route.ts +338 -0
- package/app/api/bio/route.ts +314 -0
- package/app/api/blog/route.ts +307 -0
- package/app/api/chat/route.ts +15 -0
- package/app/api/contact/route.ts +410 -0
- package/app/api/contacts/route.ts +225 -0
- package/app/api/files/route.ts +430 -0
- package/app/api/gallery-data/route.ts +661 -0
- package/app/api/schedule/route.ts +456 -0
- package/app/api/sync-user/route.ts +114 -0
- package/app/api/trial-request/route.ts +298 -0
- package/app/blog/[id]/page.tsx +281 -0
- package/app/blog/page.tsx +217 -0
- package/app/constants/about.ts +49 -0
- package/app/constants/adRequest.ts +114 -0
- package/app/constants/contact.ts +41 -0
- package/app/constants/faq.ts +46 -0
- package/app/constants/gallery.ts +43 -0
- package/app/constants/page.ts +70 -0
- package/app/constants/schedule.ts +72 -0
- package/app/contact/page.tsx +285 -0
- package/app/faq/page.tsx +192 -0
- package/app/favicon.ico +0 -0
- package/app/gallery/page.tsx +320 -0
- package/app/globals.css +58 -0
- package/app/layout.tsx +62 -0
- package/app/page.tsx +339 -0
- package/app/schedule/page.tsx +661 -0
- package/bin/init.js +187 -0
- package/components/addOns/functional/BioEditor.tsx +430 -0
- package/components/addOns/functional/CalendlyWidget.tsx +101 -0
- package/components/addOns/functional/ClassList.tsx +146 -0
- package/components/addOns/functional/ClassPopup.tsx +399 -0
- package/components/addOns/functional/ContactForm.tsx +285 -0
- package/components/addOns/functional/FileUploader.tsx +293 -0
- package/components/addOns/functional/ImageDescCarousel.tsx +821 -0
- package/components/addOns/functional/NewUserAnalytics.tsx +101 -0
- package/components/addOns/functional/ScheduleCarousel.tsx +172 -0
- package/components/addOns/functional/aboutSections/AboutSection.tsx +571 -0
- package/components/addOns/functional/aboutSections/constants/aboutSection.ts +66 -0
- package/components/addOns/functional/blogSections/BlogDashboard.tsx +185 -0
- package/components/addOns/functional/blogSections/BlogFormPopUp.tsx +555 -0
- package/components/addOns/functional/blogSections/BlogList.tsx +149 -0
- package/components/addOns/functional/blogSections/BlogSidebar.tsx +59 -0
- package/components/addOns/functional/blogSections/constants/blogDashboard.ts +29 -0
- package/components/addOns/functional/blogSections/constants/blogFormPopUp.ts +98 -0
- package/components/addOns/functional/blogSections/constants/blogList.ts +23 -0
- package/components/addOns/functional/blogSections/constants/blogSidebar.ts +16 -0
- package/components/addOns/functional/contactsDashboard/ContactsDashboard.tsx +348 -0
- package/components/addOns/functional/contactsDashboard/constants/contactsDashboard.ts +71 -0
- package/components/addOns/functional/galleries/GalleryComplex.tsx +908 -0
- package/components/addOns/functional/galleries/GallerySimple.tsx +604 -0
- package/components/addOns/functional/galleries/constants/galleryComplex.ts +105 -0
- package/components/addOns/functional/galleries/constants/gallerySimple.ts +75 -0
- package/components/addOns/functional/schedules/ScheduleGridOne.tsx +263 -0
- package/components/addOns/functional/schedules/ScheduleGridTwo.tsx +295 -0
- package/components/addOns/functional/schedules/ScheduleGridTwoBasic.tsx +289 -0
- package/components/addOns/functional/schedules/SchedulerForm.tsx +429 -0
- package/components/addOns/functional/schedules/constants/ScheduleGridTwo.ts +41 -0
- package/components/addOns/functional/schedules/constants/ScheduleGridTwoBasic.ts +41 -0
- package/components/addOns/functional/schedules/constants/SchedulerForm.ts +66 -0
- package/components/addOns/functional/schedules/constants/scheduleGridOne.ts +55 -0
- package/components/addOns/non-functional/AnnouncementBanner.tsx +47 -0
- package/components/addOns/non-functional/FeaturesSection.tsx +63 -0
- package/components/addOns/non-functional/HeroSection.tsx +143 -0
- package/components/addOns/non-functional/IconBubble.tsx +50 -0
- package/components/addOns/non-functional/SampleCarousel.tsx +205 -0
- package/components/addOns/non-functional/Testimonials.tsx +336 -0
- package/components/addOns/non-functional/ThreeSetGallery.tsx +64 -0
- package/components/addOns/non-functional/aboutSections/AboutSection.tsx +63 -0
- package/components/addOns/non-functional/aboutSections/constants/aboutSection.ts +25 -0
- package/components/addOns/non-functional/imageCarousels/ProductSlider.tsx +118 -0
- package/components/addOns/non-functional/imageCarousels/ProgramCarousel.tsx +233 -0
- package/components/addOns/non-functional/imageCarousels/constants/programCarousel.ts +40 -0
- package/components/addOns/non-functional/imageCarousels/constants/programSlider.ts +37 -0
- package/components/addOns/non-functional/spinner.tsx +22 -0
- package/components/footers/footer.tsx +454 -0
- package/components/navBars/navbar.tsx +311 -0
- package/components/other/accordion.tsx +58 -0
- package/components/other/admin-menu.tsx +69 -0
- package/components/other/alert-dialog.tsx +141 -0
- package/components/other/alert.tsx +59 -0
- package/components/other/aspect-ratio.tsx +7 -0
- package/components/other/avatar.tsx +50 -0
- package/components/other/badge.tsx +36 -0
- package/components/other/breadcrumb.tsx +115 -0
- package/components/other/button.tsx +733 -0
- package/components/other/calendar.tsx +66 -0
- package/components/other/card.tsx +86 -0
- package/components/other/carousel.tsx +275 -0
- package/components/other/chart.tsx +363 -0
- package/components/other/checkbox.tsx +30 -0
- package/components/other/collapsible.tsx +11 -0
- package/components/other/command.tsx +155 -0
- package/components/other/context-menu.tsx +200 -0
- package/components/other/dialog.tsx +122 -0
- package/components/other/drawer.tsx +118 -0
- package/components/other/dropdown-menu.tsx +200 -0
- package/components/other/form.tsx +179 -0
- package/components/other/hover-card.tsx +29 -0
- package/components/other/input-otp.tsx +71 -0
- package/components/other/input.tsx +25 -0
- package/components/other/label.tsx +26 -0
- package/components/other/login-popup.tsx +0 -0
- package/components/other/menubar.tsx +236 -0
- package/components/other/mobile-icon.tsx +22 -0
- package/components/other/navigation-menu.tsx +128 -0
- package/components/other/pagination.tsx +117 -0
- package/components/other/popover.tsx +31 -0
- package/components/other/progress.tsx +28 -0
- package/components/other/radio-group.tsx +44 -0
- package/components/other/resizable.tsx +45 -0
- package/components/other/scroll-area.tsx +48 -0
- package/components/other/select.tsx +160 -0
- package/components/other/separator.tsx +31 -0
- package/components/other/sheet.tsx +140 -0
- package/components/other/signup-popup.tsx +0 -0
- package/components/other/skeleton.tsx +15 -0
- package/components/other/slider.tsx +28 -0
- package/components/other/social-icons.tsx +40 -0
- package/components/other/sonner.tsx +31 -0
- package/components/other/switch.tsx +29 -0
- package/components/other/table.tsx +117 -0
- package/components/other/tabs.tsx +55 -0
- package/components/other/textarea.tsx +24 -0
- package/components/other/toast.tsx +123 -0
- package/components/other/toaster.tsx +35 -0
- package/components/other/toggle-group.tsx +61 -0
- package/components/other/toggle.tsx +45 -0
- package/components/other/tooltip.tsx +30 -0
- package/components/theme-provider.tsx +9 -0
- package/components/types.ts +22 -0
- package/dist/.next/types/app/api/about/route.js +52 -0
- package/dist/.next/types/app/api/blog/route.js +52 -0
- package/dist/.next/types/app/api/files/route.js +52 -0
- package/dist/.next/types/app/api/schedule/route.js +52 -0
- package/dist/.next/types/app/api/sync-user/route.js +52 -0
- package/dist/.next/types/app/layout.js +22 -0
- package/dist/.next/types/app/page.js +22 -0
- package/dist/app/about/page.jsx +259 -0
- package/dist/app/adRequest/page.jsx +531 -0
- package/dist/app/analytics/page.jsx +298 -0
- package/dist/app/api/about/route.js +285 -0
- package/dist/app/api/adRequest/route.js +440 -0
- package/dist/app/api/analytics/[reportType]/route.js +346 -0
- package/dist/app/api/bio/route.js +293 -0
- package/dist/app/api/blog/route.js +366 -0
- package/dist/app/api/chat/route.js +58 -0
- package/dist/app/api/contact/route.js +163 -0
- package/dist/app/api/contacts/route.js +234 -0
- package/dist/app/api/files/route.js +444 -0
- package/dist/app/api/gallery-data/route.js +642 -0
- package/dist/app/api/schedule/route.js +461 -0
- package/dist/app/api/sync-user/route.js +174 -0
- package/dist/app/api/trial-request/route.js +165 -0
- package/dist/app/blog/[id]/page.jsx +307 -0
- package/dist/app/blog/page.jsx +210 -0
- package/dist/app/constants/about.js +32 -0
- package/dist/app/constants/adRequest.js +113 -0
- package/dist/app/constants/contact.js +40 -0
- package/dist/app/constants/faq.js +36 -0
- package/dist/app/constants/gallery.js +42 -0
- package/dist/app/constants/page.js +69 -0
- package/dist/app/constants/schedule.js +71 -0
- package/dist/app/contact/page.jsx +119 -0
- package/dist/app/faq/page.jsx +97 -0
- package/dist/app/gallery/page.jsx +280 -0
- package/dist/app/layout.jsx +45 -0
- package/dist/app/page.jsx +324 -0
- package/dist/app/schedule/page.jsx +500 -0
- package/dist/components/addOns/functional/BioEditor.jsx +175 -0
- package/dist/components/addOns/functional/CalendlyWidget.jsx +61 -0
- package/dist/components/addOns/functional/ClassList.jsx +158 -0
- package/dist/components/addOns/functional/ClassPopup.jsx +300 -0
- package/dist/components/addOns/functional/ContactForm.jsx +219 -0
- package/dist/components/addOns/functional/FileUploader.jsx +222 -0
- package/dist/components/addOns/functional/ImageDescCarousel.jsx +464 -0
- package/dist/components/addOns/functional/NewUserAnalytics.jsx +71 -0
- package/dist/components/addOns/functional/ScheduleCarousel.jsx +68 -0
- package/dist/components/addOns/functional/aboutSections/AboutSection.jsx +369 -0
- package/dist/components/addOns/functional/aboutSections/constants/aboutSection.js +65 -0
- package/dist/components/addOns/functional/blogSections/BlogDashboard.jsx +111 -0
- package/dist/components/addOns/functional/blogSections/BlogFormPopUp.jsx +465 -0
- package/dist/components/addOns/functional/blogSections/BlogList.jsx +170 -0
- package/dist/components/addOns/functional/blogSections/BlogSidebar.jsx +35 -0
- package/dist/components/addOns/functional/blogSections/constants/blogDashboard.js +28 -0
- package/dist/components/addOns/functional/blogSections/constants/blogFormPopUp.js +97 -0
- package/dist/components/addOns/functional/blogSections/constants/blogList.js +22 -0
- package/dist/components/addOns/functional/blogSections/constants/blogSidebar.js +15 -0
- package/dist/components/addOns/functional/contactsDashboard/ContactsDashboard.jsx +323 -0
- package/dist/components/addOns/functional/contactsDashboard/constants/contactsDashboard.js +70 -0
- package/dist/components/addOns/functional/galleries/GalleryComplex.jsx +586 -0
- package/dist/components/addOns/functional/galleries/GallerySimple.jsx +385 -0
- package/dist/components/addOns/functional/galleries/constants/galleryComplex.js +104 -0
- package/dist/components/addOns/functional/galleries/constants/gallerySimple.js +74 -0
- package/dist/components/addOns/functional/schedules/ScheduleGridOne.jsx +167 -0
- package/dist/components/addOns/functional/schedules/ScheduleGridTwo.jsx +100 -0
- package/dist/components/addOns/functional/schedules/ScheduleGridTwoBasic.jsx +97 -0
- package/dist/components/addOns/functional/schedules/SchedulerForm.jsx +188 -0
- package/dist/components/addOns/functional/schedules/constants/ScheduleGridTwo.js +40 -0
- package/dist/components/addOns/functional/schedules/constants/ScheduleGridTwoBasic.js +40 -0
- package/dist/components/addOns/functional/schedules/constants/SchedulerForm.js +65 -0
- package/dist/components/addOns/functional/schedules/constants/scheduleGridOne.js +54 -0
- package/dist/components/addOns/non-functional/AnnouncementBanner.jsx +24 -0
- package/dist/components/addOns/non-functional/FeaturesSection.jsx +38 -0
- package/dist/components/addOns/non-functional/HeroSection.jsx +71 -0
- package/dist/components/addOns/non-functional/IconBubble.jsx +36 -0
- package/dist/components/addOns/non-functional/SampleCarousel.jsx +114 -0
- package/dist/components/addOns/non-functional/Testimonials.jsx +177 -0
- package/dist/components/addOns/non-functional/ThreeSetGallery.jsx +40 -0
- package/dist/components/addOns/non-functional/aboutSections/AboutSection.jsx +35 -0
- package/dist/components/addOns/non-functional/aboutSections/constants/aboutSection.js +24 -0
- package/dist/components/addOns/non-functional/imageCarousels/ProductSlider.jsx +80 -0
- package/dist/components/addOns/non-functional/imageCarousels/ProgramCarousel.jsx +155 -0
- package/dist/components/addOns/non-functional/imageCarousels/constants/programCarousel.js +39 -0
- package/dist/components/addOns/non-functional/imageCarousels/constants/programSlider.js +36 -0
- package/dist/components/addOns/non-functional/spinner.jsx +13 -0
- package/dist/components/footers/footer.jsx +219 -0
- package/dist/components/navBars/navbar.jsx +158 -0
- package/dist/components/other/accordion.jsx +40 -0
- package/dist/components/other/admin-menu.jsx +34 -0
- package/dist/components/other/alert-dialog.jsx +64 -0
- package/dist/components/other/alert.jsx +41 -0
- package/dist/components/other/aspect-ratio.jsx +4 -0
- package/dist/components/other/avatar.jsx +31 -0
- package/dist/components/other/badge.jsx +32 -0
- package/dist/components/other/breadcrumb.jsx +57 -0
- package/dist/components/other/button.jsx +321 -0
- package/dist/components/other/calendar.jsx +43 -0
- package/dist/components/other/card.jsx +44 -0
- package/dist/components/other/carousel.jsx +140 -0
- package/dist/components/other/chart.jsx +182 -0
- package/dist/components/other/checkbox.jsx +26 -0
- package/dist/components/other/collapsible.jsx +6 -0
- package/dist/components/other/command.jsx +68 -0
- package/dist/components/other/context-menu.jsx +88 -0
- package/dist/components/other/dialog.jsx +60 -0
- package/dist/components/other/drawer.jsx +60 -0
- package/dist/components/other/dropdown-menu.jsx +90 -0
- package/dist/components/other/form.jsx +89 -0
- package/dist/components/other/hover-card.jsx +23 -0
- package/dist/components/other/input-otp.jsx +46 -0
- package/dist/components/other/input.jsx +19 -0
- package/dist/components/other/label.jsx +23 -0
- package/dist/components/other/login-popup.jsx +1 -0
- package/dist/components/other/menubar.jsx +96 -0
- package/dist/components/other/mobile-icon.jsx +11 -0
- package/dist/components/other/navigation-menu.jsx +62 -0
- package/dist/components/other/pagination.jsx +63 -0
- package/dist/components/other/popover.jsx +25 -0
- package/dist/components/other/progress.jsx +23 -0
- package/dist/components/other/radio-group.jsx +31 -0
- package/dist/components/other/resizable.jsx +29 -0
- package/dist/components/other/scroll-area.jsx +36 -0
- package/dist/components/other/select.jsx +83 -0
- package/dist/components/other/separator.jsx +21 -0
- package/dist/components/other/sheet.jsx +74 -0
- package/dist/components/other/signup-popup.jsx +1 -0
- package/dist/components/other/skeleton.jsx +17 -0
- package/dist/components/other/slider.jsx +26 -0
- package/dist/components/other/social-icons.jsx +15 -0
- package/dist/components/other/sonner.jsx +27 -0
- package/dist/components/other/switch.jsx +23 -0
- package/dist/components/other/table.jsx +56 -0
- package/dist/components/other/tabs.jsx +32 -0
- package/dist/components/other/textarea.jsx +19 -0
- package/dist/components/other/toast.jsx +58 -0
- package/dist/components/other/toaster.jsx +31 -0
- package/dist/components/other/toggle-group.jsx +41 -0
- package/dist/components/other/toggle.jsx +39 -0
- package/dist/components/other/tooltip.jsx +24 -0
- package/dist/components/theme-provider.jsx +18 -0
- package/dist/components/types.js +1 -0
- package/dist/hooks/use-toast.js +135 -0
- package/dist/lib/auth-context.jsx +144 -0
- package/dist/lib/google-analytics.jsx +148 -0
- package/dist/lib/utils.js +9 -0
- package/dist/lib/verify-user.js +142 -0
- package/dist/middleware.js +32 -0
- package/dist/tailwind.config.js +86 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/hooks/use-toast.ts +188 -0
- package/lib/auth-context.tsx +131 -0
- package/lib/google-analytics.tsx +98 -0
- package/lib/utils.ts +6 -0
- package/lib/verify-user.ts +118 -0
- package/middleware.ts +35 -0
- package/next.config.js +10 -0
- package/package.json +116 -0
- package/postcss.config.js +6 -0
- package/public/images/FitStop.png +0 -0
- package/public/images/classes/bodyblast.JPG +0 -0
- package/public/images/classes/cardioxtrain.JPG +0 -0
- package/public/images/classes/combo.JPG +0 -0
- package/public/images/classes/flexiblefriday.JPG +0 -0
- package/public/images/classes/freestyle.jpg +0 -0
- package/public/images/classes/noclasses.jpg +0 -0
- package/public/images/classes/seniorstretch.JPG +0 -0
- package/public/images/classes/stretch.JPG +0 -0
- package/public/images/classes/zoomba.JPG +0 -0
- package/public/images/fitstoproom1.jpg +0 -0
- package/public/images/fitstoproom2.jpg +0 -0
- package/public/images/gallery/021-1024x768.jpg +0 -0
- package/public/images/gallery/023-1024x768.jpg +0 -0
- package/public/images/gallery/027-1024x768.jpg +0 -0
- package/public/images/gallery/029-1024x768.jpg +0 -0
- package/public/images/gallery/030-1024x768.jpg +0 -0
- package/public/images/gallery/042-1024x768.jpg +0 -0
- package/public/images/gallery/049-1024x768.jpg +0 -0
- package/public/images/gallery/073-1024x768.jpg +0 -0
- package/public/images/gallery/108-300x225.jpg +0 -0
- package/public/images/gallery/109-300x225.jpg +0 -0
- package/public/images/gallery/116.jpg +0 -0
- package/public/images/gallery/123-1-1024x768.jpg +0 -0
- package/public/images/gallery/133.jpg +0 -0
- package/public/images/gallery/142-1.jpg +0 -0
- package/public/images/gallery/143.jpg +0 -0
- package/public/images/gallery/145-1-1024x768.jpg +0 -0
- package/public/images/gallery/151-1024x768.jpg +0 -0
- package/public/images/gallery/166-300x225.jpg +0 -0
- package/public/images/gallery/175.jpg +0 -0
- package/public/images/gallery/183-1024x768.jpg +0 -0
- package/public/images/gallery/311.JPG +0 -0
- package/public/images/gallery/413-1.jpg +0 -0
- package/public/images/gallery/Cathys-Fit-Stop-Holiday-Party-0003-1024x683.jpg +0 -0
- package/public/images/gallery/Cathys-Fit-Stop-Holiday-Party-0076-1024x683.jpg +0 -0
- package/public/images/gallery/Cathys-Fit-Stop-Holiday-Party-0171-1024x683.jpg +0 -0
- package/public/images/gallery/DSCN0233-1024x768.jpg +0 -0
- package/public/images/gallery/DSCN0245-1-1024x768.jpg +0 -0
- package/public/images/gallery/Fitstopgirls2.jpg +0 -0
- package/public/images/gallery/GrandOpening2009.JPG +0 -0
- package/public/images/gallery/IMG_1937.JPG +0 -0
- package/public/images/gallery/IMG_1950-20.jpg +0 -0
- package/public/images/gallery/IMG_2112.JPG +0 -0
- package/public/images/gallery/IMG_2229.JPG +0 -0
- package/public/images/gallery/IMG_2272.JPG +0 -0
- package/public/images/gallery/IMG_2336.JPG +0 -0
- package/public/images/gallery/IMG_2367.JPG +0 -0
- package/public/images/gallery/IMG_2520.jpg +0 -0
- package/public/images/gallery/IMG_2564.jpg +0 -0
- package/public/images/gallery/IMG_3678.jpg +0 -0
- package/public/images/gallery/IMG_3744.jpg +0 -0
- package/public/images/gallery/IMG_3745.jpg +0 -0
- package/public/images/gallery/IMG_6383.jpg +0 -0
- package/public/images/gallery/Jillian-8-Months-2338-1024x683.jpg +0 -0
- package/public/images/gallery/Kathys-Fit-Stop-0032-1024x675.jpg +0 -0
- package/public/images/gallery/LaurieinPlank.jpeg +0 -0
- package/public/images/gallery/May2017032.JPG +0 -0
- package/public/images/gallery/clubpic10.jpg +0 -0
- package/public/images/gallery/clubpic15.jpg +0 -0
- package/public/images/gallery/clubpic2.jpg +0 -0
- package/public/images/gallery/clubpic3.jpg +0 -0
- package/public/images/gallery/clubpic4.jpg +0 -0
- package/public/images/gallery/clubpic5.jpg +0 -0
- package/public/images/gallery/clubpic6.jpg +0 -0
- package/public/images/gallery/clubpic7.jpg +0 -0
- package/public/images/gallery/clubpic8.jpg +0 -0
- package/public/images/gallery/clubpic9.jpg +0 -0
- package/public/images/gallery/z014-1024x768.jpg +0 -0
- package/public/images/gallery/z019-1-1024x768.jpg +0 -0
- package/public/images/kathy_faq-300x132.jpg +0 -0
- package/public/images/kathyportrait.jpg +0 -0
- package/public/images/kristiportrait.jpg +0 -0
- package/public/images/maincoverbackground.JPG +0 -0
- package/public/images/videos/FitStopLoopVideo.mp4 +0 -0
- package/public/images/weights.jpg +0 -0
- package/public/pdf/FitStop-Forum-April-2025.pdf +0 -0
- package/tailwind.config.ts +89 -0
- package/tsconfig.json +24 -0
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import React, { useEffect, useRef, useCallback, useState } from 'react';
|
|
4
|
+
import { motion, AnimatePresence } from 'framer-motion';
|
|
5
|
+
import { CloseButton, ToggleButton, UpdateButton, CancelButton, ChatToggleButton, ChatSubmitButton, DeleteButton } from '@/components/other/button'; // Updated import
|
|
6
|
+
import { Input } from '@/components/other/input';
|
|
7
|
+
import { Label } from '@/components/other/label';
|
|
8
|
+
import { X, ChevronLeft, ChevronRight } from 'lucide-react';
|
|
9
|
+
import { useAuth, useUser } from '@clerk/nextjs';
|
|
10
|
+
import { useStrapiAuth } from '@/lib/auth-context';
|
|
11
|
+
import { useChat } from 'ai/react';
|
|
12
|
+
|
|
13
|
+
interface BlogPost {
|
|
14
|
+
id: number;
|
|
15
|
+
documentId: string;
|
|
16
|
+
title: string;
|
|
17
|
+
description: string;
|
|
18
|
+
author: string;
|
|
19
|
+
publishedAt: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
interface BlogFormPopUpProps {
|
|
23
|
+
isModalOpen: boolean;
|
|
24
|
+
setIsModalOpen: (open: boolean) => void;
|
|
25
|
+
isConfirmDeleteOpen: boolean;
|
|
26
|
+
setIsConfirmDeleteOpen: (open: boolean) => void;
|
|
27
|
+
postToDelete: { id: number; documentId: string; title: string } | null;
|
|
28
|
+
setPostToDelete: (post: { id: number; documentId: string; title: string } | null) => void;
|
|
29
|
+
isLoading: boolean;
|
|
30
|
+
setIsLoading: (loading: boolean) => void;
|
|
31
|
+
formData: BlogPost;
|
|
32
|
+
setFormData: (data: BlogPost) => void;
|
|
33
|
+
setError: (error: string | null) => void;
|
|
34
|
+
setShowSuccess: (show: boolean) => void;
|
|
35
|
+
fetchData: () => Promise<void>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const BlogFormPopUp: React.FC<BlogFormPopUpProps> = ({
|
|
39
|
+
isModalOpen,
|
|
40
|
+
setIsModalOpen,
|
|
41
|
+
isConfirmDeleteOpen,
|
|
42
|
+
setIsConfirmDeleteOpen,
|
|
43
|
+
postToDelete,
|
|
44
|
+
setPostToDelete,
|
|
45
|
+
isLoading,
|
|
46
|
+
setIsLoading,
|
|
47
|
+
formData,
|
|
48
|
+
setFormData,
|
|
49
|
+
setError,
|
|
50
|
+
setShowSuccess,
|
|
51
|
+
fetchData,
|
|
52
|
+
}) => {
|
|
53
|
+
const [formError, setFormError] = useState<string | null>(null);
|
|
54
|
+
const [isChatbotOpen, setIsChatbotOpen] = useState(false);
|
|
55
|
+
const [showKeywords, setShowKeywords] = useState(false);
|
|
56
|
+
const [titleCharCount, setTitleCharCount] = useState(formData.title.length);
|
|
57
|
+
const [titleWordCount, setTitleWordCount] = useState(formData.title.trim().split(/\s+/).filter(Boolean).length);
|
|
58
|
+
const [descriptionCharCount, setDescriptionCharCount] = useState(formData.description.length);
|
|
59
|
+
const [descriptionWordCount, setDescriptionWordCount] = useState(
|
|
60
|
+
formData.description.trim().split(/\s+/).filter(Boolean).length
|
|
61
|
+
);
|
|
62
|
+
const modalRef = useRef<HTMLDivElement>(null);
|
|
63
|
+
const descriptionRef = useRef<HTMLTextAreaElement>(null);
|
|
64
|
+
const { user, authLoading } = useStrapiAuth();
|
|
65
|
+
const { getToken, isSignedIn } = useAuth();
|
|
66
|
+
const { user: clerkUser } = useUser();
|
|
67
|
+
const [scrollPosition, setScrollPosition] = useState(0);
|
|
68
|
+
|
|
69
|
+
const seoKeywords = [
|
|
70
|
+
'fitness training',
|
|
71
|
+
'gym workout plans',
|
|
72
|
+
'strength exercises',
|
|
73
|
+
'cardio routines',
|
|
74
|
+
'weight loss tips',
|
|
75
|
+
'muscle building',
|
|
76
|
+
'home workouts',
|
|
77
|
+
'personal trainer',
|
|
78
|
+
'fitness motivation',
|
|
79
|
+
'healthy lifestyle',
|
|
80
|
+
'gym equipment',
|
|
81
|
+
'bodybuilding tips',
|
|
82
|
+
'HIIT workouts',
|
|
83
|
+
'nutrition for fitness',
|
|
84
|
+
'exercise routines',
|
|
85
|
+
];
|
|
86
|
+
|
|
87
|
+
const { messages, input, handleInputChange, handleSubmit: handleChatSubmit, isLoading: isChatLoading, error } = useChat({
|
|
88
|
+
api: '/api/chat',
|
|
89
|
+
initialMessages: [
|
|
90
|
+
{
|
|
91
|
+
id: 'system-prompt',
|
|
92
|
+
role: 'system',
|
|
93
|
+
content: `You are an AI assistant helping with blog writing and SEO optimization. You are aware of the current blog post's title: "${formData.title}", description: "${formData.description}", and the following SEO keywords: ${seoKeywords.join(', ')}. Provide suggestions to improve the blog post's SEO, such as keyword usage, content structure, or meta descriptions. Respond concisely and relevantly to user queries.`,
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
useEffect(() => {
|
|
99
|
+
}, [user, clerkUser]);
|
|
100
|
+
|
|
101
|
+
const handleClose = useCallback(() => {
|
|
102
|
+
setIsModalOpen(false);
|
|
103
|
+
setFormData({
|
|
104
|
+
id: 0,
|
|
105
|
+
documentId: '',
|
|
106
|
+
title: '',
|
|
107
|
+
description: '',
|
|
108
|
+
author: user?.businessTitle || clerkUser?.username || user?.username || 'Anonymous',
|
|
109
|
+
publishedAt: '',
|
|
110
|
+
});
|
|
111
|
+
setFormError(null);
|
|
112
|
+
setIsChatbotOpen(false);
|
|
113
|
+
setShowKeywords(false);
|
|
114
|
+
setTitleCharCount(0);
|
|
115
|
+
setTitleWordCount(0);
|
|
116
|
+
setDescriptionCharCount(0);
|
|
117
|
+
setDescriptionWordCount(0);
|
|
118
|
+
window.scrollTo({ top: scrollPosition, behavior: 'smooth' });
|
|
119
|
+
}, [setIsModalOpen, setFormData, user, clerkUser, scrollPosition]);
|
|
120
|
+
|
|
121
|
+
const handleKeywordClick = useCallback(
|
|
122
|
+
(keyword: string) => {
|
|
123
|
+
const textarea = descriptionRef.current;
|
|
124
|
+
if (!textarea) {
|
|
125
|
+
setFormError('Text area not initialized');
|
|
126
|
+
return;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const start = textarea.selectionStart;
|
|
130
|
+
const end = textarea.selectionEnd;
|
|
131
|
+
const text = formData.description;
|
|
132
|
+
const newText = text.substring(0, start) + `${keyword} ` + text.substring(end);
|
|
133
|
+
const truncatedText = newText.slice(0, 1500);
|
|
134
|
+
setFormData({ ...formData, description: truncatedText });
|
|
135
|
+
setDescriptionCharCount(truncatedText.length);
|
|
136
|
+
setDescriptionWordCount(truncatedText.trim().split(/\s+/).filter(Boolean).length);
|
|
137
|
+
|
|
138
|
+
setTimeout(() => {
|
|
139
|
+
textarea.focus();
|
|
140
|
+
textarea.selectionStart = textarea.selectionEnd = start + keyword.length + 1;
|
|
141
|
+
}, 0);
|
|
142
|
+
},
|
|
143
|
+
[formData, setFormData]
|
|
144
|
+
);
|
|
145
|
+
|
|
146
|
+
const handleConfirmDelete = async () => {
|
|
147
|
+
if (!postToDelete) return;
|
|
148
|
+
setIsLoading(true);
|
|
149
|
+
setError(null);
|
|
150
|
+
|
|
151
|
+
try {
|
|
152
|
+
const token = await getToken();
|
|
153
|
+
const response = await fetch('/api/blog', {
|
|
154
|
+
method: 'DELETE',
|
|
155
|
+
headers: {
|
|
156
|
+
'Content-Type': 'application/json',
|
|
157
|
+
Authorization: `Bearer ${token}`,
|
|
158
|
+
},
|
|
159
|
+
body: JSON.stringify({ documentId: postToDelete.documentId }),
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
if (!response.ok) {
|
|
163
|
+
const errorData = await response.json();
|
|
164
|
+
throw new Error(errorData.error || 'Failed to delete blog post');
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
await fetchData();
|
|
168
|
+
setIsConfirmDeleteOpen(false);
|
|
169
|
+
setPostToDelete(null);
|
|
170
|
+
} catch (err) {
|
|
171
|
+
setError(err instanceof Error ? err.message : 'An unknown error occurred');
|
|
172
|
+
} finally {
|
|
173
|
+
setIsLoading(false);
|
|
174
|
+
}
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
const handleCancelDelete = () => {
|
|
178
|
+
setIsConfirmDeleteOpen(false);
|
|
179
|
+
setPostToDelete(null);
|
|
180
|
+
window.scrollTo({ top: scrollPosition, behavior: 'smooth' });
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
useEffect(() => {
|
|
184
|
+
if (isModalOpen) {
|
|
185
|
+
if (authLoading) {
|
|
186
|
+
setFormError('Authentication is still loading, please wait...');
|
|
187
|
+
} else if (!isSignedIn || !user || !clerkUser?.id) {
|
|
188
|
+
setFormError('You must be signed in to create or edit a blog post');
|
|
189
|
+
setFormData({ ...formData, author: 'Anonymous' });
|
|
190
|
+
} else if (user?.businessTitle) {
|
|
191
|
+
setFormData({
|
|
192
|
+
...formData,
|
|
193
|
+
author: user.businessTitle,
|
|
194
|
+
});
|
|
195
|
+
setFormError(null);
|
|
196
|
+
} else {
|
|
197
|
+
setFormData({ ...formData, author: clerkUser?.username || user?.username || 'Anonymous' });
|
|
198
|
+
setFormError('Business title not found; using username or default author name');
|
|
199
|
+
}
|
|
200
|
+
setTitleCharCount(formData.title.length);
|
|
201
|
+
setTitleWordCount(formData.title.trim().split(/\s+/).filter(Boolean).length);
|
|
202
|
+
setDescriptionCharCount(formData.description.length);
|
|
203
|
+
setDescriptionWordCount(formData.description.trim().split(/\s+/).filter(Boolean).length);
|
|
204
|
+
}
|
|
205
|
+
}, [isModalOpen, user, isSignedIn, clerkUser, authLoading, setFormData, formData.title, formData.description]);
|
|
206
|
+
|
|
207
|
+
useEffect(() => {
|
|
208
|
+
if (isModalOpen && modalRef.current) {
|
|
209
|
+
setScrollPosition(window.scrollY);
|
|
210
|
+
const modal = modalRef.current;
|
|
211
|
+
const focusableElements = modal.querySelectorAll(
|
|
212
|
+
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'
|
|
213
|
+
);
|
|
214
|
+
const firstElement = focusableElements[0] as HTMLElement;
|
|
215
|
+
if (firstElement) {
|
|
216
|
+
firstElement.focus({ preventScroll: true });
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
const handleKeyDown = (e: KeyboardEvent) => {
|
|
220
|
+
if (e.key === 'Tab') {
|
|
221
|
+
const lastElement = focusableElements[focusableElements.length - 1] as HTMLElement;
|
|
222
|
+
if (document.activeElement === lastElement && !e.shiftKey) {
|
|
223
|
+
e.preventDefault();
|
|
224
|
+
firstElement.focus({ preventScroll: true });
|
|
225
|
+
}
|
|
226
|
+
if (document.activeElement === firstElement && e.shiftKey) {
|
|
227
|
+
e.preventDefault();
|
|
228
|
+
lastElement.focus({ preventScroll: true });
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
if (e.key === 'Escape') {
|
|
232
|
+
handleClose();
|
|
233
|
+
}
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
modal.addEventListener('keydown', handleKeyDown);
|
|
237
|
+
return () => modal.removeEventListener('keydown', handleKeyDown);
|
|
238
|
+
}
|
|
239
|
+
}, [isModalOpen, handleClose]);
|
|
240
|
+
|
|
241
|
+
useEffect(() => {
|
|
242
|
+
if (isModalOpen || isConfirmDeleteOpen) {
|
|
243
|
+
const scrollY = window.scrollY;
|
|
244
|
+
document.body.style.position = 'fixed';
|
|
245
|
+
document.body.style.top = `-${scrollY}px`;
|
|
246
|
+
document.body.style.width = '100%';
|
|
247
|
+
document.body.classList.add('overflow-hidden');
|
|
248
|
+
setScrollPosition(scrollY);
|
|
249
|
+
} else {
|
|
250
|
+
const scrollY = scrollPosition;
|
|
251
|
+
document.body.style.position = '';
|
|
252
|
+
document.body.style.top = '';
|
|
253
|
+
document.body.style.width = '';
|
|
254
|
+
document.body.classList.remove('overflow-hidden');
|
|
255
|
+
window.scrollTo({ top: scrollY, behavior: 'instant' });
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
return () => {
|
|
259
|
+
document.body.style.position = '';
|
|
260
|
+
document.body.style.top = '';
|
|
261
|
+
document.body.style.width = '';
|
|
262
|
+
document.body.classList.remove('overflow-hidden');
|
|
263
|
+
};
|
|
264
|
+
}, [isModalOpen, isConfirmDeleteOpen, scrollPosition]);
|
|
265
|
+
|
|
266
|
+
useEffect(() => {
|
|
267
|
+
const event = new CustomEvent('modalStateChange', {
|
|
268
|
+
detail: { isOpen: isModalOpen || isConfirmDeleteOpen },
|
|
269
|
+
});
|
|
270
|
+
window.dispatchEvent(event);
|
|
271
|
+
}, [isModalOpen, isConfirmDeleteOpen]);
|
|
272
|
+
|
|
273
|
+
const handleTitleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
274
|
+
const value = e.target.value.slice(0, 50);
|
|
275
|
+
setFormData({ ...formData, title: value });
|
|
276
|
+
setTitleCharCount(value.length);
|
|
277
|
+
setTitleWordCount(value.trim().split(/\s+/).filter(Boolean).length);
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
const handleDescriptionChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
281
|
+
const value = e.target.value.slice(0, 1500);
|
|
282
|
+
setFormData({ ...formData, description: value });
|
|
283
|
+
setDescriptionCharCount(value.length);
|
|
284
|
+
setDescriptionWordCount(value.trim().split(/\s+/).filter(Boolean).length);
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
const onSubmit = async (e: React.FormEvent) => {
|
|
288
|
+
e.preventDefault();
|
|
289
|
+
if (!isSignedIn || !user || !clerkUser?.id) {
|
|
290
|
+
setError('You must be signed in to submit a blog post');
|
|
291
|
+
return;
|
|
292
|
+
}
|
|
293
|
+
if (!formData.title || !formData.description || !formData.author) {
|
|
294
|
+
setFormError('Please fill in all required fields');
|
|
295
|
+
return;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
setIsLoading(true);
|
|
299
|
+
setFormError(null);
|
|
300
|
+
try {
|
|
301
|
+
const token = await getToken();
|
|
302
|
+
const response = await fetch('/api/blog', {
|
|
303
|
+
method: formData.id ? 'PUT' : 'POST',
|
|
304
|
+
headers: {
|
|
305
|
+
'Content-Type': 'application/json',
|
|
306
|
+
Authorization: `Bearer ${token}`,
|
|
307
|
+
},
|
|
308
|
+
body: JSON.stringify({
|
|
309
|
+
documentId: formData.documentId,
|
|
310
|
+
data: {
|
|
311
|
+
title: formData.title,
|
|
312
|
+
description: formData.description,
|
|
313
|
+
author: formData.author,
|
|
314
|
+
publishedAt: formData.publishedAt || new Date().toISOString(),
|
|
315
|
+
},
|
|
316
|
+
}),
|
|
317
|
+
});
|
|
318
|
+
|
|
319
|
+
if (!response.ok) {
|
|
320
|
+
const errorData = await response.json();
|
|
321
|
+
throw new Error(errorData.error || 'Failed to submit blog post');
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
await fetchData();
|
|
325
|
+
setShowSuccess(true);
|
|
326
|
+
setTimeout(() => setShowSuccess(false), 3000);
|
|
327
|
+
handleClose();
|
|
328
|
+
} catch (err) {
|
|
329
|
+
setFormError(err instanceof Error ? err.message : 'An unknown error occurred');
|
|
330
|
+
} finally {
|
|
331
|
+
setIsLoading(false);
|
|
332
|
+
}
|
|
333
|
+
};
|
|
334
|
+
|
|
335
|
+
const modalVariants = {
|
|
336
|
+
hidden: { opacity: 0, y: '100vh' },
|
|
337
|
+
visible: { opacity: 1, y: 0, transition: { duration: 0.5, ease: [0.16, 1, 0.3, 1] } },
|
|
338
|
+
exit: { opacity: 0, y: '100vh', transition: { duration: 0.3, ease: 'easeIn' } },
|
|
339
|
+
};
|
|
340
|
+
|
|
341
|
+
return (
|
|
342
|
+
<div>
|
|
343
|
+
{isModalOpen && (
|
|
344
|
+
<motion.div
|
|
345
|
+
variants={modalVariants}
|
|
346
|
+
initial="hidden"
|
|
347
|
+
animate="visible"
|
|
348
|
+
exit="exit"
|
|
349
|
+
className="fixed inset-0 flex items-center justify-center z-[10000] p-4"
|
|
350
|
+
onClick={handleClose}
|
|
351
|
+
>
|
|
352
|
+
<motion.div
|
|
353
|
+
ref={modalRef}
|
|
354
|
+
className="relative w-full max-w-5xl mx-4 bg-gray-800/90 backdrop-blur-lg rounded-2xl p-4 sm:p-6 max-h-[90vh] overflow-y-auto overflow-x-hidden flex flex-col sm:flex-row gap-4"
|
|
355
|
+
onClick={(e) => e.stopPropagation()}
|
|
356
|
+
role="dialog"
|
|
357
|
+
aria-modal="true"
|
|
358
|
+
aria-labelledby="modal-title"
|
|
359
|
+
>
|
|
360
|
+
<div className="flex-1">
|
|
361
|
+
<div className="relative mb-6 pr-12">
|
|
362
|
+
<h3 id="modal-title" className="text-xl sm:text-2xl font-bold text-white">
|
|
363
|
+
{formData.id ? 'Edit Blog Post' : 'Add New Blog Post'}
|
|
364
|
+
</h3>
|
|
365
|
+
<CloseButton variant="close-form" onClick={handleClose}>
|
|
366
|
+
<X className="h-6 w-6 sm:h-8 sm:w-8" />
|
|
367
|
+
</CloseButton>
|
|
368
|
+
</div>
|
|
369
|
+
<form onSubmit={onSubmit} className="space-y-4">
|
|
370
|
+
<div>
|
|
371
|
+
<Label htmlFor="title" className="block text-sm font-semibold text-gray-200 mb-2">
|
|
372
|
+
Title
|
|
373
|
+
</Label>
|
|
374
|
+
<Input
|
|
375
|
+
id="title"
|
|
376
|
+
type="text"
|
|
377
|
+
placeholder="Enter post title"
|
|
378
|
+
value={formData.title}
|
|
379
|
+
onChange={handleTitleChange}
|
|
380
|
+
maxLength={50}
|
|
381
|
+
className="w-full bg-transparent text-white border-gray-400 rounded-md p-3 text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
|
|
382
|
+
required
|
|
383
|
+
/>
|
|
384
|
+
<p className="text-sm text-gray-500 mt-1">
|
|
385
|
+
{titleCharCount}/50 characters, {titleWordCount} words
|
|
386
|
+
</p>
|
|
387
|
+
</div>
|
|
388
|
+
<div>
|
|
389
|
+
<Label htmlFor="author" className="block text-sm font-semibold text-gray-200 mb-2">
|
|
390
|
+
Author
|
|
391
|
+
</Label>
|
|
392
|
+
<Input
|
|
393
|
+
id="author"
|
|
394
|
+
type="text"
|
|
395
|
+
value={formData.author}
|
|
396
|
+
onChange={(e) => setFormData({ ...formData, author: e.target.value })}
|
|
397
|
+
className="w-full bg-transparent text-white border-gray-400 rounded-md p-3 text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
|
|
398
|
+
required
|
|
399
|
+
/>
|
|
400
|
+
</div>
|
|
401
|
+
<div>
|
|
402
|
+
<Label htmlFor="description" className="block text-sm font-semibold text-gray-200 mb-2">
|
|
403
|
+
Description
|
|
404
|
+
</Label>
|
|
405
|
+
<textarea
|
|
406
|
+
ref={descriptionRef}
|
|
407
|
+
id="description"
|
|
408
|
+
placeholder="Enter post description"
|
|
409
|
+
value={formData.description}
|
|
410
|
+
onChange={handleDescriptionChange}
|
|
411
|
+
maxLength={1500}
|
|
412
|
+
className="w-full bg-transparent text-white border border-gray-400 rounded-md p-3 text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 min-h-[150px]"
|
|
413
|
+
required
|
|
414
|
+
/>
|
|
415
|
+
<p className="text-sm text-gray-500 mt-1">
|
|
416
|
+
{descriptionCharCount}/1500 characters, {descriptionWordCount} words
|
|
417
|
+
</p>
|
|
418
|
+
</div>
|
|
419
|
+
<div>
|
|
420
|
+
<ToggleButton
|
|
421
|
+
variant="toggle-keywords"
|
|
422
|
+
onClick={() => setShowKeywords(!showKeywords)}
|
|
423
|
+
aria-expanded={showKeywords}
|
|
424
|
+
aria-controls="seo-keywords"
|
|
425
|
+
>
|
|
426
|
+
{showKeywords ? 'Hide Keywords' : 'Show SEO Keywords'}
|
|
427
|
+
</ToggleButton>
|
|
428
|
+
{showKeywords && (
|
|
429
|
+
<ul id="seo-keywords" className="mt-2 bg-gray-700 border border-gray-600 rounded-md p-4 max-h-40 overflow-y-auto text-white text-sm">
|
|
430
|
+
{seoKeywords.map((keyword, index) => (
|
|
431
|
+
<li
|
|
432
|
+
key={index}
|
|
433
|
+
onClick={() => handleKeywordClick(keyword)}
|
|
434
|
+
onKeyDown={(e) => {
|
|
435
|
+
if (e.key === 'Enter' || e.key === ' ') {
|
|
436
|
+
e.preventDefault();
|
|
437
|
+
handleKeywordClick(keyword);
|
|
438
|
+
}
|
|
439
|
+
}}
|
|
440
|
+
tabIndex={0}
|
|
441
|
+
role="button"
|
|
442
|
+
aria-label={`Insert keyword: ${keyword}`}
|
|
443
|
+
className="cursor-pointer py-1 px-2 hover:bg-blue-500 hover:text-white rounded transition-colors break-words"
|
|
444
|
+
>
|
|
445
|
+
{keyword}
|
|
446
|
+
</li>
|
|
447
|
+
))}
|
|
448
|
+
</ul>
|
|
449
|
+
)}
|
|
450
|
+
</div>
|
|
451
|
+
<div className="flex flex-col sm:flex-row gap-3 justify-end">
|
|
452
|
+
<UpdateButton
|
|
453
|
+
type="submit"
|
|
454
|
+
disabled={isLoading || !isSignedIn || !user || !clerkUser?.id || authLoading}
|
|
455
|
+
>
|
|
456
|
+
{isLoading ? 'Saving...' : formData.id ? 'Update' : 'Submit'}
|
|
457
|
+
</UpdateButton>
|
|
458
|
+
<CancelButton type="button" onClick={handleClose}>
|
|
459
|
+
Cancel
|
|
460
|
+
</CancelButton>
|
|
461
|
+
</div>
|
|
462
|
+
{formError && <p className="text-red-500 text-sm font-semibold break-words">{formError}</p>}
|
|
463
|
+
</form>
|
|
464
|
+
</div>
|
|
465
|
+
<ChatToggleButton
|
|
466
|
+
onClick={() => setIsChatbotOpen(!isChatbotOpen)}
|
|
467
|
+
aria-label={isChatbotOpen ? 'Close AI chatbot' : 'Open AI chatbot'}
|
|
468
|
+
>
|
|
469
|
+
{isChatbotOpen ? (
|
|
470
|
+
<ChevronLeft className="h-5 w-5 text-white" />
|
|
471
|
+
) : (
|
|
472
|
+
<ChevronRight className="h-5 w-5 text-white" />
|
|
473
|
+
)}
|
|
474
|
+
</ChatToggleButton>
|
|
475
|
+
<AnimatePresence>
|
|
476
|
+
{isChatbotOpen && (
|
|
477
|
+
<motion.div
|
|
478
|
+
initial={{ opacity: 0, x: 50 }}
|
|
479
|
+
animate={{ opacity: 1, x: 0 }}
|
|
480
|
+
exit={{ opacity: 0, x: 50 }}
|
|
481
|
+
transition={{ duration: 0.3, ease: 'easeInOut' }}
|
|
482
|
+
className="hidden sm:flex flex-col w-72 bg-gray-700 border-l border-gray-600 p-4 max-h-[90vh] overflow-y-auto"
|
|
483
|
+
>
|
|
484
|
+
<h4 className="text-lg font-bold text-white mb-3">AI Chatbot is coming soon!</h4>
|
|
485
|
+
{error && <p className="text-red-500 text-sm bg-gray-800 p-2 rounded-md break-words">Error: {error.message}</p>}
|
|
486
|
+
<div className="flex-1 overflow-y-auto bg-gray-800 p-3 rounded-md border border-gray-600 break-words">
|
|
487
|
+
{messages
|
|
488
|
+
.filter((msg) => msg.role !== 'system')
|
|
489
|
+
.map((msg, index) => (
|
|
490
|
+
<p
|
|
491
|
+
key={index}
|
|
492
|
+
className={`text-sm p-2 rounded-md mb-2 ${msg.role === 'user' ? 'bg-blue-500 text-white text-right' : 'bg-gray-700 text-white text-left'}`}
|
|
493
|
+
>
|
|
494
|
+
{msg.content}
|
|
495
|
+
</p>
|
|
496
|
+
))}
|
|
497
|
+
</div>
|
|
498
|
+
<form onSubmit={handleChatSubmit} className="flex gap-2 mt-3">
|
|
499
|
+
<Input
|
|
500
|
+
value={input}
|
|
501
|
+
onChange={handleInputChange}
|
|
502
|
+
placeholder="Ask for suggestions..."
|
|
503
|
+
disabled={isChatLoading}
|
|
504
|
+
className="flex-1 bg-gray-800 text-white border-gray-600 rounded-md p-2 text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
|
|
505
|
+
/>
|
|
506
|
+
<ChatSubmitButton type="submit" disabled={isChatLoading}>
|
|
507
|
+
{isChatLoading ? '⟳' : '➤'}
|
|
508
|
+
</ChatSubmitButton>
|
|
509
|
+
</form>
|
|
510
|
+
</motion.div>
|
|
511
|
+
)}
|
|
512
|
+
</AnimatePresence>
|
|
513
|
+
</motion.div>
|
|
514
|
+
</motion.div>
|
|
515
|
+
)}
|
|
516
|
+
|
|
517
|
+
{isConfirmDeleteOpen && postToDelete && (
|
|
518
|
+
<motion.div
|
|
519
|
+
variants={modalVariants}
|
|
520
|
+
initial="hidden"
|
|
521
|
+
animate="visible"
|
|
522
|
+
exit="exit"
|
|
523
|
+
className="fixed inset-0 bg-black/90 flex items-center justify-center z-[10000] p-4"
|
|
524
|
+
onClick={handleCancelDelete}
|
|
525
|
+
data-testid="confirm-modal-overlay"
|
|
526
|
+
>
|
|
527
|
+
<div
|
|
528
|
+
className="relative w-full max-w-md mx-auto bg-gray-800/90 backdrop-blur-lg rounded-2xl p-4 sm:p-6 h-fit max-h-[90vh] overflow-y-auto"
|
|
529
|
+
onClick={(e) => e.stopPropagation()}
|
|
530
|
+
>
|
|
531
|
+
<CloseButton onClick={handleCancelDelete}>
|
|
532
|
+
<X className="h-6 w-6 sm:h-8 sm:w-8" />
|
|
533
|
+
</CloseButton>
|
|
534
|
+
<h3 id="modal-title" className="text-xl font-bold text-white mb-4">
|
|
535
|
+
Confirm Deletion
|
|
536
|
+
</h3>
|
|
537
|
+
<p className="text-white text-sm mb-4">
|
|
538
|
+
Are you sure you want to delete the post "{postToDelete.title}"? This action cannot be undone.
|
|
539
|
+
</p>
|
|
540
|
+
<div className="flex flex-col sm:flex-row gap-3 justify-end">
|
|
541
|
+
<DeleteButton onClick={handleConfirmDelete} disabled={isLoading}>
|
|
542
|
+
{isLoading ? 'Deleting...' : 'Delete'}
|
|
543
|
+
</DeleteButton>
|
|
544
|
+
<CancelButton onClick={handleCancelDelete}>
|
|
545
|
+
Cancel
|
|
546
|
+
</CancelButton>
|
|
547
|
+
</div>
|
|
548
|
+
</div>
|
|
549
|
+
</motion.div>
|
|
550
|
+
)}
|
|
551
|
+
</div>
|
|
552
|
+
);
|
|
553
|
+
};
|
|
554
|
+
|
|
555
|
+
export default BlogFormPopUp;
|