2024-08-11 22:19:26 +03:00
|
|
|
import { CurrentUserMark } from '../../types/mark.ts'
|
|
|
|
import styles from './style.module.scss'
|
|
|
|
import {
|
|
|
|
findNextIncompleteCurrentUserMark,
|
2024-10-11 15:05:28 +02:00
|
|
|
getToolboxLabelByMarkType,
|
2024-08-11 22:19:26 +03:00
|
|
|
isCurrentUserMarksComplete,
|
|
|
|
isCurrentValueLast
|
|
|
|
} from '../../utils'
|
2024-08-20 14:21:45 +03:00
|
|
|
import React, { useState } from 'react'
|
2024-10-25 18:42:16 +02:00
|
|
|
import { MARK_TYPE_CONFIG } from '../getMarkComponents.tsx'
|
2024-08-11 22:19:26 +03:00
|
|
|
|
|
|
|
interface MarkFormFieldProps {
|
|
|
|
currentUserMarks: CurrentUserMark[]
|
|
|
|
handleCurrentUserMarkChange: (mark: CurrentUserMark) => void
|
2024-10-25 18:42:16 +02:00
|
|
|
handleSelectedMarkValueChange: (value: string) => void
|
2024-08-20 14:21:45 +03:00
|
|
|
handleSubmit: (event: React.FormEvent<HTMLFormElement>) => void
|
|
|
|
selectedMark: CurrentUserMark
|
|
|
|
selectedMarkValue: string
|
2024-08-11 22:19:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responsible for rendering a form field connected to a mark and keeping track of its value.
|
|
|
|
*/
|
|
|
|
const MarkFormField = ({
|
|
|
|
handleSubmit,
|
|
|
|
handleSelectedMarkValueChange,
|
|
|
|
selectedMark,
|
|
|
|
selectedMarkValue,
|
|
|
|
currentUserMarks,
|
|
|
|
handleCurrentUserMarkChange
|
|
|
|
}: MarkFormFieldProps) => {
|
2024-08-12 12:32:36 +03:00
|
|
|
const [displayActions, setDisplayActions] = useState(true)
|
2024-08-11 22:19:26 +03:00
|
|
|
const isReadyToSign = () =>
|
|
|
|
isCurrentUserMarksComplete(currentUserMarks) ||
|
|
|
|
isCurrentValueLast(currentUserMarks, selectedMark, selectedMarkValue)
|
|
|
|
const isCurrent = (currentMark: CurrentUserMark) =>
|
|
|
|
currentMark.id === selectedMark.id
|
2024-08-12 12:08:53 +03:00
|
|
|
const isDone = (currentMark: CurrentUserMark) =>
|
|
|
|
isCurrent(currentMark) ? !!selectedMarkValue : currentMark.isCompleted
|
2024-08-11 22:19:26 +03:00
|
|
|
const findNext = () => {
|
|
|
|
return (
|
|
|
|
currentUserMarks[selectedMark.id] ||
|
|
|
|
findNextIncompleteCurrentUserMark(currentUserMarks)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
const handleFormSubmit = (event: React.FormEvent<HTMLFormElement>) => {
|
|
|
|
event.preventDefault()
|
|
|
|
console.log('handle form submit runs...')
|
|
|
|
return isReadyToSign()
|
|
|
|
? handleSubmit(event)
|
|
|
|
: handleCurrentUserMarkChange(findNext()!)
|
|
|
|
}
|
2024-08-12 12:32:36 +03:00
|
|
|
const toggleActions = () => setDisplayActions(!displayActions)
|
2024-10-11 15:05:28 +02:00
|
|
|
const markLabel = getToolboxLabelByMarkType(selectedMark.mark.type)
|
2024-10-25 18:42:16 +02:00
|
|
|
const { input: MarkInputComponent } =
|
|
|
|
MARK_TYPE_CONFIG[selectedMark.mark.type] || {}
|
2024-08-11 22:19:26 +03:00
|
|
|
return (
|
|
|
|
<div className={styles.container}>
|
2024-08-12 12:08:53 +03:00
|
|
|
<div className={styles.trigger}>
|
2024-08-12 12:32:36 +03:00
|
|
|
<button
|
|
|
|
onClick={toggleActions}
|
|
|
|
className={styles.triggerBtn}
|
|
|
|
type="button"
|
2024-10-07 12:59:55 +02:00
|
|
|
title="Toggle"
|
2024-08-12 12:32:36 +03:00
|
|
|
>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="-64 0 512 512"
|
|
|
|
width="1em"
|
|
|
|
height="1em"
|
|
|
|
fill="currentColor"
|
|
|
|
transform={displayActions ? 'rotate(180)' : 'rotate(0)'}
|
|
|
|
>
|
|
|
|
<path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path>
|
|
|
|
</svg>
|
|
|
|
</button>
|
2024-08-12 12:08:53 +03:00
|
|
|
</div>
|
2024-08-12 12:32:36 +03:00
|
|
|
<div className={`${styles.actions} ${displayActions && styles.expanded}`}>
|
2024-08-11 22:19:26 +03:00
|
|
|
<div className={styles.actionsWrapper}>
|
|
|
|
<div className={styles.actionsTop}>
|
|
|
|
<div className={styles.actionsTopInfo}>
|
2024-10-11 15:05:28 +02:00
|
|
|
<p className={styles.actionsTopInfoText}>Add {markLabel}</p>
|
2024-08-11 22:19:26 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className={styles.inputWrapper}>
|
|
|
|
<form onSubmit={(e) => handleFormSubmit(e)}>
|
2024-10-25 18:42:16 +02:00
|
|
|
{typeof MarkInputComponent !== 'undefined' && (
|
|
|
|
<MarkInputComponent
|
2024-11-11 16:21:22 +01:00
|
|
|
key={selectedMark.id}
|
2024-10-25 18:42:16 +02:00
|
|
|
value={selectedMarkValue}
|
|
|
|
placeholder={markLabel}
|
|
|
|
handler={handleSelectedMarkValueChange}
|
|
|
|
userMark={selectedMark}
|
|
|
|
/>
|
|
|
|
)}
|
2024-08-11 22:19:26 +03:00
|
|
|
<div className={styles.actionsBottom}>
|
|
|
|
<button type="submit" className={styles.submitButton}>
|
2024-10-07 12:59:55 +02:00
|
|
|
NEXT
|
2024-08-11 22:19:26 +03:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div className={styles.footerContainer}>
|
|
|
|
<div className={styles.footer}>
|
|
|
|
{currentUserMarks.map((mark, index) => {
|
|
|
|
return (
|
|
|
|
<div className={styles.pagination} key={index}>
|
|
|
|
<button
|
2024-11-11 16:21:22 +01:00
|
|
|
className={`${styles.paginationButton} ${isDone(mark) ? styles.paginationButtonDone : ''}`}
|
2024-08-11 22:19:26 +03:00
|
|
|
onClick={() => handleCurrentUserMarkChange(mark)}
|
|
|
|
>
|
|
|
|
{mark.id}
|
|
|
|
</button>
|
|
|
|
{isCurrent(mark) && (
|
|
|
|
<div className={styles.paginationButtonCurrent}></div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MarkFormField
|