-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Add other ui options for microservice tutorial #22730
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
base: dev
Are you sure you want to change the base?
Conversation
Images automagically compressed by Calibre's image-actions ✨ Compression reduced images by 17.3%, saving 236.20 KB.
2912 images did not require optimisation. |
Maybe it could be better to adding this changes to the 9.1 patch as well. |
Images automagically compressed by Calibre's image-actions ✨ Compression reduced images by 11.9%, saving 283.45 KB.
2925 images did not require optimisation. |
@m-aliozkaya I selected different UI's but sample project link doesn't change. We can create sample projects for;
For other options, we can hide the sample download link. |
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.
I have tested Angular version and completed my review, here are my comments;
#22730 (comment)
#22730 (comment)
#22730 (comment)
Overally, angular document is very good 🙏
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.
|
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.
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.
Pull Request Overview
This PR updates the Microservice Tutorial documentation to support additional UI options and database providers, expanding configuration variability for users.
- Introduces a new doc-params JSON block in each tutorial part to clearly define available UI and DB options.
- Adds conditional logic to display UI-specific instructions and images for MVC, Blazor, Angular, etc.
- Updates several tutorial sections to reflect new integration steps for these options.
Reviewed Changes
Copilot reviewed 35 out of 35 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
docs/en/tutorials/microservice/part-07.md | Added doc-params block for UI and DB along with minor formatting changes. |
docs/en/tutorials/microservice/part-06.md | Updated UI sections with conditional blocks for different frameworks and clarified proxy generation instructions. |
docs/en/tutorials/microservice/part-05.md | Revised instructions for creating the Order entity and added UI-specific sections for Blazor; introduced Angular order component snippet. |
docs/en/tutorials/microservice/part-04.md | Added doc-params block and UI/DB conditional code for improved step clarity. |
docs/en/tutorials/microservice/part-03.md | Updated UI conditionals and image references for multiple frameworks. |
docs/en/tutorials/microservice/part-02.md | Introduced doc-params block and conditional integration instructions. |
docs/en/tutorials/microservice/part-01.md | Reorganized initial configuration instructions using conditionals for DB and UI framework options. |
docs/en/tutorials/microservice/index.md | Added the new doc-params block for consistency across tutorials. |
selector: 'lib-order', | ||
standalone: false, | ||
templateUrl: './order.component.html', | ||
styleUrl: './order.component.css' |
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.
In Angular, the component decorator property should be 'styleUrls' (an array) instead of 'styleUrl'. Please update this to ensure the styles are correctly applied.
styleUrl: './order.component.css' | |
styleUrls: ['./order.component.css'] |
Copilot uses AI. Check for mistakes.
Related https://github.com/volosoft/vs-internal/issues/5566