Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(entities-plugins): add free form support and request callout #2016

Merged
merged 28 commits into from
Mar 28, 2025

Conversation

Justineo
Copy link
Contributor

@Justineo Justineo commented Mar 12, 2025

Summary

KM-963
KM-1043
KM-1044

This PR introduces a new free-form alternative for implementing plugin forms that:

  • Allows complete flexibility in form construction, accommodating any custom rendering needs.
  • Manages plugin configurations without requiring flatten/unflatten logic.
  • Supports future migration to a dual-schema approach (data + UI).

Implemented Features

  • Ability to register a free-form configuration for specific plugins.
  • Enhanced field components (object, array, key-value, string, number, boolean, enum) for a better user experience.
  • Improvements to the plugin form playground, including autosave to local storage.

Still Missing

  • Validation support.
  • Entity checks.

New directory structure

└ entities-plugins
  └ src
    └ components
      └ free-form        # all free form implementation
        ├ RequestCallout # plugin specific directory
        ├ ...
        └ shared         # shared components like `StringField`, `ObjectField`, etc.

@Justineo Justineo requested review from a team as code owners March 12, 2025 07:49
Copy link

@jw-foss jw-foss left a comment

Choose a reason for hiding this comment

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

@Justineo I left a few comments, PTAL 🙇

jw-foss
jw-foss previously approved these changes Mar 13, 2025
Copy link

@jw-foss jw-foss left a comment

Choose a reason for hiding this comment

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

LGTM @Justineo

@Leopoldthecoder
Copy link
Member

Should we pull the changes into kong-admin and konnect-ui-apps and run all the e2e tests before merging this?

@Justineo
Copy link
Contributor Author

Should we pull the changes into kong-admin and konnect-ui-apps and run all the e2e tests before merging this?

Yes. And I’ll record a video to showcase this to the PMs first. There’s no rush to merge.

@Justineo Justineo marked this pull request as draft March 14, 2025 07:03
@Justineo Justineo force-pushed the feat/request-callout branch from f4f1a98 to efdc57c Compare March 18, 2025 03:04
Copy link

@jw-foss jw-foss left a comment

Choose a reason for hiding this comment

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

@Justineo I left a few comments for your consideration PTAL 👍

@Justineo Justineo marked this pull request as ready for review March 19, 2025 03:21
// Handle the special case of the freeform plugin
if (freeformName.value) {
const configSchema = props.rawSchema?.fields?.find((field: any) => 'config' in field)?.config
model.config = pruneRecord(freeformConfig.value, configSchema)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

As we are not building the model from the flattened schema, we'll need to prune out undefined fields in the raw schema instead.

Copy link
Member

@Leopoldthecoder Leopoldthecoder left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Member

@sumimakito sumimakito left a comment

Choose a reason for hiding this comment

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

Code LGTM

Copy link

@jw-foss jw-foss left a comment

Choose a reason for hiding this comment

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

LGTM! Thank you! 👍

@Justineo Justineo merged commit 37417a8 into main Mar 28, 2025
9 checks passed
@Justineo Justineo deleted the feat/request-callout branch March 28, 2025 04:57
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.

6 participants