stable
Clone or download
In order to not have too many components in one folder, and to have a more logical organization of files, I suggest the following structure: ``` components ├── App.vue ├── EmptyState │  ├── NoContentEmptyState.vue ├── GlobalError │  ├── BoardWithoutAnyColumnsErrorForAdmin.vue │  ├── BoardWithoutAnyColumnsErrorForUsers.vue │  ├── BoardWithoutAnyColumnsError.vue │  ├── ErrorModal.vue │  ├── GlobalAppError.vue ├── TaskBoard │  ├── Body 🡄 new! │  │  ├── Swimlane │  │  │  ├── Card 🡄 Now Card is under Swimlane │  │  │  │  ├── CardAssignees.vue │  │  │  │  ├── CardInitialEffort.vue │  │  │  │  ├── CardXrefLabel.vue │  │  │  │  ├── ChildCard.vue │  │  │  │  ├── ParentCardRemainingEffort.vue │  │  │  │  ├── ParentCard.vue │  │  │  ├── CardWithChildren.vue │  │  │  ├── CollapsedSwimlane.vue │  │  │  ├── ColumnWithChildren.vue │  │  │  ├── Header 🡄 new! │  │  │  │  ├── NoMappingMessage.vue │  │  │  │  └── SwimlaneHeader.vue │  │  │  ├── ParentCell.vue │  │  │  ├── Skeleton 🡄 new! │  │  │  │  ├── CardSkeleton.vue │  │  │  │  ├── ColumnsSkeleton.vue │  │  │  │  └── SwimlaneSkeleton.vue │  │  │  ├── SoloCardCell.vue │  │  │  └── SoloCard.vue │  │  └── TaskBoardBody.vue │  ├── ButtonBar │  │  ├── SwitchToFullscreen.vue │  │  └── TaskboardButtonBar.vue │  ├── Header 🡄 new! │  │  ├── TaskBoardHeaderCell.vue │  │  ├── TaskBoardHeader.vue │  │  └── WrongColorPopover.vue │  └── TaskBoard.vue └── UnderConstruction └── UnderConstructionModal.vue ``` No functional changes. Part of story #13627: display children of cards Change-Id: I69c3317d1ac46719d6d9cde5fbcf7a70d34aa10e
Modified Files
Name | ||||
---|---|---|---|---|
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardAssignees.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardAssignees.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardInitialEffort.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardInitialEffort.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardXrefLabel.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardXrefLabel.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ChildCard.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ParentCard.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ParentCard.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ParentCardRemainingEffort.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/ParentCardRemainingEffort.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/__snapshots__/CardAssignees.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/__snapshots__/CardInitialEffort.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/__snapshots__/CardXrefLabel.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/__snapshots__/ParentCard.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/__snapshots__/ParentCardRemainingEffort.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/card-mixin.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CardWithChildren.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CardWithChildren.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CollapsedSwimlane.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/CollapsedSwimlane.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ColumnWithChildren.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ColumnWithChildren.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/NoMappingMessage.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/NoMappingMessage.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SwimlaneHeader.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SwimlaneHeader.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/NoMappingMessage.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ParentCell.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ParentCell.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/CardSkeleton.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/ColumnsSkeleton.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/ColumnsSkeleton.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/SwimlaneSkeleton.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/SwimlaneSkeleton.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Card/skeleton-mixin.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCard.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCard.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCardCell.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCardCell.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/CardWithChildren.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/CollapsedSwimlane.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/SoloCard.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardBody.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardBody.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoardBody.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeader.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeader.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeaderCell.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeaderCell.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/WrongColorPopover.test.ts | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/WrongColorPopover.vue | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoardHeader.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoardHeaderCell.test.ts.snap | Go to diff View file | ||
R | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/WrongColorPopover.test.ts.snap | Go to diff View file | ||
M | plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoard.vue | +2 | −2 | Go to diff View file |