'use client' import React, { useState } from 'react'; import { Button, Empty, notification, Tag } from 'antd'; import { LeftOutlined, PlusOutlined, RightOutlined } from '@ant-design/icons'; import Image from 'next/image'; import dayjs from 'dayjs'; import { Link, useRouter } from '../../../navigation'; import { i18nText } from '../../../i18nKeys'; import { getDuration, getPrice } from '../../../utils/expert'; import { PublicUser, Session, SessionState, SessionType } from '../../../types/sessions'; import { AUTH_TOKEN_KEY } from '../../../constants/common'; import { approveRequestedSession, finishSession } from '../../../actions/sessions'; import { useLocalStorage } from '../../../hooks/useLocalStorage'; import { DeclineSessionModal } from '../../Modals/DeclineSessionModal'; import { AddCommentModal } from '../../Modals/AddCommentModal'; type SessionDetailsContentProps = { locale: string; session: Session; activeType: SessionType; startSession: () => void; refresh: () => void; isCoach: boolean; }; export const SessionDetailsContent = ({ session, locale, activeType, startSession, refresh, isCoach }: SessionDetailsContentProps) => { const [jwt] = useLocalStorage(AUTH_TOKEN_KEY, ''); const [approveLoading, setApproveLoading] = useState(false); const [finishLoading, setFinishLoading] = useState(false); const [openDeclineModal, setOpenDeclineModal] = useState(false); const [openAddCommentModal, setOpenAddCommentModal] = useState(false); const router = useRouter(); const goBack = () => router.push(`/account/sessions/${activeType}`); const onApproveSession = () => { if (activeType === SessionType.REQUESTED) { setApproveLoading(true); approveRequestedSession(locale, jwt, session.id) .then(() => { goBack(); }) .catch((err) => { notification.error({ message: i18nText('errors.approvingSession', locale), description: err?.response?.data?.errMessage }); }) .finally(() => { setApproveLoading(false); }); } else { startSession(); } }; const onFinishSession = () => { if (isCoach) { setFinishLoading(true); finishSession(locale, jwt, session.id) .then(() => { goBack(); }) .catch((err) => { notification.error({ message: i18nText('errors.finishingSession', locale), description: err?.response?.data?.errMessage }); }) .finally(() => { setFinishLoading(false); }) } }; const startDate = session?.scheduledStartAtUtc ? dayjs(session?.scheduledStartAtUtc).locale(locale) : null; const endDate = session?.scheduledEndAtUtc ? dayjs(session?.scheduledEndAtUtc).locale(locale) : null; const today = startDate ? dayjs().format('YYYY-MM-DD') === startDate.format('YYYY-MM-DD') : false; const CoachCard = (coach?: PublicUser) => coach ? (
{`${coach?.name} ${coach?.surname || ''}`}
{/*
{coach?.specialityDesc}
{coach?.coachLanguages?.map((lang) => ( {lang} ))}
*/}
{getPrice(session?.cost)} / {getDuration(locale, session?.totalDuration)}
{today ? `${i18nText('today', locale)} ${startDate?.format('HH:mm')} - ${endDate?.format('HH:mm')}` : `${startDate?.format('D MMMM')} ${startDate?.format('HH:mm')} - ${endDate?.format('HH:mm')}`}
{session?.themesTags?.slice(0, 2).map((skill) => {skill?.name})} {session?.themesTags?.length > 2 ? ( {`+${session?.themesTags?.length - 2}`} ) : null }
{/*
{coach?.description}
*/} {i18nText('details', locale)}
) : null; const StudentCard = (student?: PublicUser | null) => student ? (
{`${student?.name} ${student?.surname || ''}`}
{today ? `${i18nText('today', locale)} ${startDate?.format('HH:mm')} - ${endDate?.format('HH:mm')}` : `${startDate?.format('D MMMM')} ${startDate?.format('HH:mm')} - ${endDate?.format('HH:mm')}`}
{session?.themesTagName}
{/*
{student?.description}
*/} {activeType === SessionType.REQUESTED && session?.clientComment && (
{session.clientComment}
)}
) : null; const client = session?.clients?.length ? session?.clients[0] : null; const Current = isCoach ? StudentCard(client) : CoachCard(session?.coach); return (
{Current} {(activeType === SessionType.UPCOMING || activeType === SessionType.REQUESTED) && (session?.state === SessionState.CREATED || session?.state === SessionState.PAID || session?.state === SessionState.COACH_APPROVED || session?.state === SessionState.STARTED) && (
{session?.state === SessionState.STARTED && isCoach && ( )} {session?.id && session?.state !== SessionState.STARTED && ( <> setOpenDeclineModal(false)} activeType={activeType} locale={locale} sessionId={session.id} success={goBack} /> )}
)} {activeType !== SessionType.REQUESTED && ( <> {activeType === SessionType.RECENT && ( <>
{i18nText('courseInfo', locale)}
{/*
{current?.specialityDesc}
{current?.coachLanguages?.map((lang) => ( {lang} ))}
*/}
{getPrice(session?.cost)} / {getDuration(locale, session?.totalDuration)}
{session?.themesTags?.slice(0, 2).map((skill) => {skill?.name})} {session?.themesTags?.length > 2 ? ( {`+${session?.themesTags?.length - 2}`} ) : null }
{/*
{current?.description}
*/}
)}
{session?.clientComments?.length === 0 && session?.coachComments?.length === 0 ? i18nText('session.comments', locale) : i18nText('session.myComments', locale)}
{activeType === SessionType.UPCOMING && ( <> setOpenAddCommentModal(false)} locale={locale} sessionId={session.id} refresh={refresh} /> )}
{(session?.clientComments?.length > 0 || session?.coachComments?.length > 0) ? ( <> {(isCoach ? session?.coachComments : session?.clientComments)?.map(({ id, comment }) => (
{comment}
))} {(isCoach ? session?.clientComments : session?.coachComments)?.length > 0 && (
{isCoach ? 'Client Comments' : 'Coach Comments'}
)} {(isCoach ? session?.clientComments : session?.coachComments)?.map(({ id , comment }) => (
{comment}
))} ) : }
)}
); };