Skip to content

SED-4373 Refactor split view in plan's editor#1289

Open
dvladir wants to merge 10 commits intomasterfrom
SED-4373-poc-mobile-support-for-plan-editor
Open

SED-4373 Refactor split view in plan's editor#1289
dvladir wants to merge 10 commits intomasterfrom
SED-4373-poc-mobile-support-for-plan-editor

Conversation

@dvladir
Copy link
Contributor

@dvladir dvladir commented Nov 19, 2025

No description provided.

@dvladir dvladir requested a review from neogucky November 19, 2025 15:12
@neogucky neogucky marked this pull request as ready for review December 3, 2025 21:16
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines 21 to +23
PlanSourceDialogComponent,
PlanNodesDragPreviewComponent,
ArtefactDropInfoPipe,
KeywordDropInfoPipe,
PlanDropInfoPipe,
],
imports: [StepCommonModule, ExecutionModule],
imports: [StepCommonModule, ExecutionModule, PlanNodesDragPreviewComponent, PlanControlsComponent],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Import-only plan controls components are not standalone

PlanEditorModule now pulls PlanNodesDragPreviewComponent and PlanControlsComponent into the imports array, but both components (and the Plan* list components/pipes they import) are defined with imports but without standalone: true and are no longer declared in any NgModule. Angular refuses to import non-standalone declarables, so the plan editor module will fail to compile with errors like “Component … is not standalone and cannot be imported.” These components need to be marked standalone or added back to a module’s declarations.

Useful? React with 👍 / 👎.

Comment on lines 22 to +26
@Component({
selector: 'step-split',
templateUrl: './split.component.html',
styleUrls: ['./split.component.scss'],
imports: [SplitResizableAreaComponent, SplitFoldableAreaComponent, NgTemplateOutlet, SplitGutterComponent],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Split subcomponents used as imports without being standalone

SplitComponent imports SplitResizableAreaComponent, SplitFoldableAreaComponent, and SplitGutterComponent, but those subcomponents are neither declared in any NgModule nor marked standalone: true. Importing non-standalone components in another component’s imports array will cause Angular compilation to fail (“… is not standalone and cannot be imported”), so the split layout cannot render after this change. The subcomponents need to be made standalone or declared in a module before being imported here.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant