-
Notifications
You must be signed in to change notification settings - Fork 193
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
Including @using for Out-of-Scope Razor Component References #10651
Merged
ryzngard
merged 19 commits into
dotnet:features/extract-to-component
from
marcarro:includeUsings
Aug 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
0471dbf
Arranging selection logic
marcarro 1b6e035
Completed and corrected selected range extraction functionality
marcarro cba6cf1
Base component dependency functionality and fixed range selection bug
marcarro cf33fd7
Include only dependencies included in the selected range
marcarro 019d6a4
Test updates
marcarro dcee923
Completed and corrected selected range extraction functionality
marcarro 6e8d2aa
Nits
marcarro 17479d4
Added method to scan identifiers
marcarro 2c4b709
Corrected naming and nits
marcarro 5bab548
Set up basic end to end test for extract component
marcarro 83703f6
Finished fixing rebase stuff
marcarro 33c66f4
Some of the PR feedback that wasn't deferred to the next one, and add…
marcarro b170f2a
More PR Feedback
marcarro 5b7e0c6
Naming corrections
marcarro 3d9614c
Exclude usings that are already in _Imports.razor
marcarro d83031b
Another approach for refining new component usings
marcarro 1c239a1
Use syntaxTree instead of sourceText
marcarro cd677c7
Adjustments to addUsingDirectives and adjusted for relative using nam…
marcarro 851fb45
Nits. I'm not sure why tests are failing
marcarro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 general in tooling we don't want to read the sourcetext directly to get syntax. It's better to use the syntax tree. In this case it will be a
CSharpStatementLiteral
where there's akeyword
ofusing
in itThere 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.
the other thing is that the text in the using may not be the full namespace. Since usings are put inside the
class
they can be relative. So if you have a componentMyApp.MyComponents.Header
and a componentMyApp.HomePage
with@using MyComponents
thenHeader
is valid to useThere 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.
https://github.com/dotnet/razor/blob/main/src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Extensions/RazorSyntaxNodeExtensions.cs#L14
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.
perfect, I should have checked if there was an extension or helper