-
Notifications
You must be signed in to change notification settings - Fork 12
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
Conversation
There was a problem hiding this 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 🙇
packages/entities/entities-plugins/src/components/PluginEntityForm.vue
Outdated
Show resolved
Hide resolved
packages/entities/entities-plugins/sandbox/pages/PluginFormPlayground.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/CalloutRequestForm.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/CalloutRequestForm.vue
Outdated
Show resolved
Hide resolved
packages/entities/entities-plugins/src/components/free-form/RequestCallout/RedisForm.vue
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @Justineo
Should we pull the changes into |
Yes. And I’ll record a video to showcase this to the PMs first. There’s no rush to merge. |
f4f1a98
to
efdc57c
Compare
There was a problem hiding this 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 👍
packages/entities/entities-plugins/src/components/PluginForm.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/CalloutRequestForm.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/RequestCalloutForm.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/RequestCalloutForm.vue
Outdated
Show resolved
Hide resolved
...ges/entities/entities-plugins/src/components/free-form/RequestCallout/RequestCalloutForm.vue
Outdated
Show resolved
Hide resolved
packages/entities/entities-plugins/src/components/free-form/RequestCallout/UpstreamForm.vue
Outdated
Show resolved
Hide resolved
…order redis fields
// 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) |
There was a problem hiding this comment.
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.
packages/entities/entities-plugins/src/components/PluginEntityForm.vue
Outdated
Show resolved
Hide resolved
packages/entities/entities-plugins/src/components/free-form/RequestCallout/CalloutForm.vue
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you! 👍
Summary
KM-963
KM-1043
KM-1044
This PR introduces a new free-form alternative for implementing plugin forms that:
Implemented Features
object
,array
,key-value
,string
,number
,boolean
,enum
) for a better user experience.Still Missing
New directory structure