wip: showcase status

feat/featured
Arik Chakma 7 days ago
parent a9755a57ed
commit fa7a664fa9
  1. 38
      src/components/CustomRoadmap/Showcase/ShowcaseAlert.tsx
  2. 37
      src/components/CustomRoadmap/Showcase/SubmitShowcaseWarning.tsx

@ -1,13 +1,8 @@
import { import { EyeIcon, FlagIcon, FrownIcon, SmileIcon } from 'lucide-react';
CheckIcon,
EyeIcon,
FlagIcon,
FrownIcon,
SmileIcon,
XIcon,
} from 'lucide-react';
import { cn } from '../../../lib/classname'; import { cn } from '../../../lib/classname';
import type { GetRoadmapResponse } from '../CustomRoadmap'; import type { GetRoadmapResponse } from '../CustomRoadmap';
import { useState } from 'react';
import { SubmitShowcaseWarning } from './SubmitShowcaseWarning';
type ShowcaseAlertProps = { type ShowcaseAlertProps = {
currentRoadmap: GetRoadmapResponse; currentRoadmap: GetRoadmapResponse;
@ -16,12 +11,12 @@ type ShowcaseAlertProps = {
export function ShowcaseAlert(props: ShowcaseAlertProps) { export function ShowcaseAlert(props: ShowcaseAlertProps) {
const { currentRoadmap } = props; const { currentRoadmap } = props;
// const { showcaseStatus = 'idle' } = currentRoadmap; const [showRejectedReason, setShowRejectedReason] = useState(false);
// if (showcaseStatus === 'idle') {
// return null;
// }
const showcaseStatus = 'rejected_with_reason'; const { showcaseStatus = 'idle' } = currentRoadmap;
if (showcaseStatus === 'idle') {
return null;
}
const showcaseStatusMap = { const showcaseStatusMap = {
submitted: { submitted: {
@ -45,7 +40,12 @@ export function ShowcaseAlert(props: ShowcaseAlertProps) {
label: ( label: (
<> <>
Your roadmap needs changes before it can be featured.{' '} Your roadmap needs changes before it can be featured.{' '}
<button className="font-medium underline underline-offset-2 hover:no-underline"> <button
className="font-medium underline underline-offset-2 hover:no-underline"
onClick={() => {
setShowRejectedReason(true);
}}
>
Check Reason Check Reason
</button> </button>
</> </>
@ -56,6 +56,15 @@ export function ShowcaseAlert(props: ShowcaseAlertProps) {
const { icon: Icon, label, className } = showcaseStatusMap[showcaseStatus]; const { icon: Icon, label, className } = showcaseStatusMap[showcaseStatus];
return ( return (
<>
{showRejectedReason && (
<SubmitShowcaseWarning
onClose={() => {
setShowRejectedReason(false);
}}
/>
)}
<div <div
className={cn( className={cn(
showcaseStatus === 'submitted' && 'bg-blue-100', showcaseStatus === 'submitted' && 'bg-blue-100',
@ -71,5 +80,6 @@ export function ShowcaseAlert(props: ShowcaseAlertProps) {
</div> </div>
</div> </div>
</div> </div>
</>
); );
} }

@ -5,14 +5,13 @@ import { httpPost } from '../../../lib/query-http';
import { useStore } from '@nanostores/react'; import { useStore } from '@nanostores/react';
import { currentRoadmap } from '../../../stores/roadmap'; import { currentRoadmap } from '../../../stores/roadmap';
import { useToast } from '../../../hooks/use-toast'; import { useToast } from '../../../hooks/use-toast';
import { DateTime } from 'luxon';
type SubmitShowcaseWarningProps = { type SubmitShowcaseWarningProps = {
onClose: () => void; onClose: () => void;
}; };
export function SubmitShowcaseWarning( export function SubmitShowcaseWarning(props: SubmitShowcaseWarningProps) {
props: SubmitShowcaseWarningProps,
) {
const { onClose } = props; const { onClose } = props;
const toast = useToast(); const toast = useToast();
@ -40,8 +39,12 @@ export function SubmitShowcaseWarning(
queryClient, queryClient,
); );
const { showcaseStatus = 'idle', showcaseRejectedReason } = const {
$currentRoadmap || {}; showcaseStatus = 'idle',
showcaseRejectedReason,
showcaseRejectedAt,
updatedAt,
} = $currentRoadmap || {};
return ( return (
<Modal onClose={onClose}> <Modal onClose={onClose}>
@ -52,8 +55,7 @@ export function SubmitShowcaseWarning(
: 'Featured Listing'} : 'Featured Listing'}
</h2> </h2>
<p className="mt-2 text-sm"> <p className="mt-2 text-sm">
{showcaseStatus === 'rejected_with_reason' && {showcaseStatus === 'rejected_with_reason' && showcaseRejectedReason}
showcaseRejectedReason}
{showcaseStatus === 'idle' && ( {showcaseStatus === 'idle' && (
<> <>
Submitting your roadmap for a featured listing will make it Submitting your roadmap for a featured listing will make it
@ -74,7 +76,26 @@ export function SubmitShowcaseWarning(
<button <button
className="w-full rounded-lg bg-gray-900 py-2 text-sm text-white hover:bg-gray-800 disabled:cursor-not-allowed disabled:opacity-60" className="w-full rounded-lg bg-gray-900 py-2 text-sm text-white hover:bg-gray-800 disabled:cursor-not-allowed disabled:opacity-60"
disabled={submit.isPending} disabled={submit.isPending}
onClick={() => submit.mutate()} onClick={() => {
const updatedAtDate =
updatedAt && DateTime.fromJSDate(new Date(updatedAt));
const showcaseRejectedAtDate =
showcaseRejectedAt &&
DateTime.fromJSDate(new Date(showcaseRejectedAt));
if (
showcaseRejectedAtDate &&
updatedAtDate &&
updatedAtDate < showcaseRejectedAtDate
) {
toast.error(
'You need to make changes to your roadmap before resubmitting.',
);
return;
}
submit.mutate();
}}
> >
{submit.isPending {submit.isPending
? 'Submitting...' ? 'Submitting...'

Loading…
Cancel
Save