-
Notifications
You must be signed in to change notification settings - Fork 6
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
Integrate Monaco Editor in ZEN #42
Conversation
sakshibobade21
commented
Sep 12, 2023
•
edited
Loading
edited
- Incorporate Monaco Editor to ZEN with the Schema and Yaml Validations for the entire zowe.yaml, not just the subschema
- Integrating the editor’s with the configuration service
- Automatically update the JSON forms with the corresponding editor’s content if it adheres to schema and yaml validation
- Enable bidirectional synchronization: changes made in the form must reflect in the editor
- Centralized the shared code for the editor
src/services/configService.ts
Outdated
@@ -1,13 +1,32 @@ | |||
import { flatten, unflatten } from 'flat'; |
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.
Why is there two configservice.ts? One is ConfigService.ts the other is configService.ts
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.
Looks like this file should just be deleted
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.
This double file messed up my git shell so bad lol i cant switch branches now
Overall i think this is a great addition, just a few minor things before I approve |
The installation stage doesnt autofill details from the example-zowe.yaml on the first run anymore btw, this may be a regression |
Deleting the duplicate file Signed-off-by: Sakshi Bobade <[email protected]>
Created a new one. |