-
Notifications
You must be signed in to change notification settings - Fork 187
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
Feature/2389 show reference docs for specific method class #3941
Merged
JonathanGiles
merged 9 commits into
Azure:main
from
Vailorium:feature/2389-show-reference-docs-for-specific-method-class
Aug 30, 2022
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4b9f381
proof-of-concept implementation for show/hide documentation
Vailorium 3248e8c
added isComment attribute to codeline, show documentation checkbox no…
Vailorium 66bb87a
adjust name of comment line variable
Vailorium 10d6ec4
fixed documentation folding, show documentation now toggles without r…
Vailorium 3386209
added more efficient show/hide all documentation
Vailorium aac6051
removed unreachable code, removed unused comment icon
Vailorium 6428ba4
solve merge conflicts merge main into feature/2389
Vailorium fbb93d1
return rendered arrays cache to renderedcodefile
Vailorium f7736fc
code style fixes
Vailorium 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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,61 +8,27 @@ namespace APIViewWeb.Models | |
{ | ||
public class RenderedCodeFile | ||
{ | ||
private CodeLine[] _rendered; | ||
private CodeLine[] _renderedReadOnly; | ||
private CodeLine[] _renderedText; | ||
|
||
public RenderedCodeFile(CodeFile codeFile) | ||
{ | ||
CodeFile = codeFile; | ||
} | ||
|
||
public CodeFile CodeFile { get; } | ||
|
||
public CodeLine[] Render(bool showDocumentation) | ||
public CodeLine[] Render() | ||
{ | ||
//Always render when documentation is requested to avoid cach thrashing | ||
if (showDocumentation) | ||
{ | ||
return CodeFileHtmlRenderer.Normal.Render(CodeFile, showDocumentation: true); | ||
} | ||
|
||
if (_rendered == null) | ||
{ | ||
_rendered = CodeFileHtmlRenderer.Normal.Render(CodeFile); | ||
} | ||
|
||
return _rendered; | ||
//Always render to avoid cach thrashing | ||
return CodeFileHtmlRenderer.Normal.Render(CodeFile); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure why we can't cache it since we always return documentation. Cache rendered object helps on perf side when review revision is accessed so frequently. |
||
} | ||
|
||
public CodeLine[] RenderReadOnly(bool showDocumentation) | ||
public CodeLine[] RenderReadOnly() | ||
{ | ||
if (showDocumentation) | ||
{ | ||
return CodeFileHtmlRenderer.ReadOnly.Render(CodeFile, showDocumentation: true); | ||
} | ||
|
||
if (_renderedReadOnly == null) | ||
{ | ||
_renderedReadOnly = CodeFileHtmlRenderer.ReadOnly.Render(CodeFile); | ||
} | ||
|
||
return _renderedReadOnly; | ||
return CodeFileHtmlRenderer.ReadOnly.Render(CodeFile); | ||
} | ||
|
||
internal CodeLine[] RenderText(bool showDocumentation, bool skipDiff = false) | ||
internal CodeLine[] RenderText(bool skipDiff = false) | ||
{ | ||
if (showDocumentation || skipDiff) | ||
{ | ||
return CodeFileRenderer.Instance.Render(CodeFile, showDocumentation: showDocumentation, enableSkipDiff: skipDiff); | ||
} | ||
|
||
if (_renderedText == null) | ||
{ | ||
_renderedText = CodeFileRenderer.Instance.Render(CodeFile); | ||
} | ||
|
||
return _renderedText; | ||
return CodeFileRenderer.Instance.Render(CodeFile, enableSkipDiff: skipDiff); | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.
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.
Why did we remove these rendered array?