feat: add parent / child feature

This commit is contained in:
Julien Calixte
2026-01-24 13:43:09 +01:00
parent 428336a663
commit 5d51e8b46f
2 changed files with 178 additions and 11 deletions

View File

@@ -4,6 +4,8 @@ import type { Stepable } from '../interfaces/stepable'
export const adaptStepsToTextarea = (steps: Stepable[]) =>
steps.map((step) => `- ${step.title} | ${step.estimation}`).join('\n')
const isIndented = (line: string): boolean => /^[\t ]+/.test(line)
const extractTitleAndEstimationFromStep = (
rawStep: string
): [string, number] => {
@@ -23,22 +25,58 @@ const extractTitleAndEstimationFromStep = (
return [title, estimation]
}
export const adaptTextareaToSteps = (textareaValue: string): Stepable[] =>
textareaValue
.split('\n')
.map((rawStep) => {
const [title, estimation] = extractTitleAndEstimationFromStep(rawStep)
export const adaptTextareaToSteps = (textareaValue: string): Stepable[] => {
const lines = textareaValue.split('\n')
const result: Array<{ title: string; estimation: number }> = []
if (!title) {
return null
let currentParent: { title: string; estimation: number } | null = null
let parentHasChildren = false
const flushParent = () => {
if (currentParent && !parentHasChildren) {
result.push(currentParent)
}
currentParent = null
parentHasChildren = false
}
for (const line of lines) {
const [title, estimation] = extractTitleAndEstimationFromStep(line)
if (!title) {
continue
}
if (isIndented(line)) {
// Indented line - flatten with parent prefix if parent exists
if (currentParent && currentParent.title) {
const flattenedTitle = `(${currentParent.title}) - ${title}`
result.push({ title: flattenedTitle, estimation })
parentHasChildren = true
} else {
// Orphan indented line - treat as regular step
result.push({ title, estimation })
}
} else {
// Non-indented line - potential parent
flushParent()
currentParent = { title, estimation }
}
}
return { id: generateId(`${title}-${estimation}`), title, estimation }
})
.filter((step): step is Stepable => step !== null)
// Flush any remaining parent
flushParent()
return result
.map(({ title, estimation }) => ({
id: generateId(`${title}-${estimation}`),
title,
estimation
}))
.map((step, index, steps) => {
const subSteps = steps.slice(0, index + 1)
const duplicates = subSteps.filter((s) => s.id === step.id).length
return { ...step, id: `${step.id}-${duplicates}` }
})
}