feat(ST-dgognlsz): SoloTaskCard 4-regels layout met Tooltips
4-regels layout: taaknaam+task_code badge (tooltip: naam+beschrijving), beschrijving+pbi_code badge (tooltip: pbi_title+pbi_description), story+job-badge. SoloTaskCardOverlay identieke 4-regels structuur zonder tooltips. PBI-velden toegevoegd aan SoloTask-interface + Prisma-queries + test-fixtures. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d819d29b04
commit
04fa9bf4a9
7 changed files with 88 additions and 6 deletions
|
|
@ -46,6 +46,7 @@ export default async function SoloProductPage({ params }: Props) {
|
|||
code: true,
|
||||
title: true,
|
||||
tasks: { select: { id: true }, orderBy: { sort_order: 'asc' } },
|
||||
pbi: { select: { code: true, title: true, description: true } },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
@ -86,6 +87,9 @@ export default async function SoloProductPage({ params }: Props) {
|
|||
story_code: t.story.code,
|
||||
story_title: t.story.title,
|
||||
task_code: t.code,
|
||||
pbi_code: t.story.pbi?.code ?? null,
|
||||
pbi_title: t.story.pbi?.title ?? null,
|
||||
pbi_description: t.story.pbi?.description ?? null,
|
||||
}))
|
||||
|
||||
const unassignedStories: UnassignedStory[] = rawUnassigned.map(s => ({
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ export default async function MobileSoloProductPage({ params }: Props) {
|
|||
code: true,
|
||||
title: true,
|
||||
tasks: { select: { id: true }, orderBy: { sort_order: 'asc' } },
|
||||
pbi: { select: { code: true, title: true, description: true } },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
@ -91,6 +92,9 @@ export default async function MobileSoloProductPage({ params }: Props) {
|
|||
story_code: t.story.code,
|
||||
story_title: t.story.title,
|
||||
task_code: t.code,
|
||||
pbi_code: t.story.pbi?.code ?? null,
|
||||
pbi_title: t.story.pbi?.title ?? null,
|
||||
pbi_description: t.story.pbi?.description ?? null,
|
||||
}))
|
||||
|
||||
const unassignedStories: UnassignedStory[] = rawUnassigned.map(s => ({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue