-
Notifications
You must be signed in to change notification settings - Fork 13
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
Simplified/centralised version dropdowns population (#1500) #1510
Open
daveoconnor
wants to merge
3
commits into
develop
Choose a base branch
from
doc/1500-context-versions-consolidation
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,11 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from functools import partial | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import structlog | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from django.shortcuts import get_object_or_404 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from django.urls import reverse | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from libraries.constants import LATEST_RELEASE_URL_PATH_STR | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from libraries.models import Library | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from versions.models import Version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger = structlog.get_logger() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -25,24 +29,49 @@ def get_context_data(self, **kwargs): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class BoostVersionMixin: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def get_context_data(self, **kwargs): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context = super().get_context_data(**kwargs) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# todo: replace get_current_library_version on LibraryDetail with this + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# prefetch_related | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context.update( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def dispatch(self, request, *args, **kwargs): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not self.extra_context: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context = {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not self.extra_context.get("current_version"): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context["current_version"] = Version.objects.most_recent() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context.update( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"version_str": self.kwargs.get("version_slug"), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"LATEST_RELEASE_URL_PATH_STR": LATEST_RELEASE_URL_PATH_STR, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not context.get("current_version"): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context["current_version"] = Version.objects.most_recent() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if context["version_str"] == LATEST_RELEASE_URL_PATH_STR: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context["selected_version"] = context["current_version"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
elif context["version_str"]: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context["selected_version"] = Version.objects.get( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
slug=context["version_str"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if self.extra_context["version_str"] == LATEST_RELEASE_URL_PATH_STR: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context["selected_version"] = self.extra_context[ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"current_version" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
elif self.extra_context["version_str"]: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context["selected_version"] = get_object_or_404( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Version, slug=self.extra_context["version_str"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return context | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
version_path_kwargs = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"release-detail": {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"libraries-list": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"filter_out_has_no_libraries": True, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"force_version_inclusion": self.extra_context["current_version"], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"library-detail": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"flag_versions_without_library": partial( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
get_object_or_404, Library, slug=self.kwargs.get("library_slug") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}.get(self.request.resolver_match.view_name, {}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# we need this step to process any partials | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
processed_version_path_kwargs = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
key: (value() if callable(value) else value) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for key, value in version_path_kwargs.items() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+54
to
+70
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. This is cool, but... I think an if/else statement would be much more direct?
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.extra_context["versions"] = Version.objects.get_dropdown_versions( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
**processed_version_path_kwargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# here we hack extra_context into the request so we can access for cookie checks | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
request.extra_context = self.extra_context | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return super().dispatch(request, *args, **kwargs) |
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 | ||||
---|---|---|---|---|---|---|
|
@@ -167,17 +167,22 @@ def test_library_detail(library_version, tp): | |||||
tp.response_200(response) | ||||||
|
||||||
|
||||||
def test_library_detail_404(library, tp): | ||||||
"""GET /libraries/latest/{bad_library_slug}/""" | ||||||
def test_library_detail_404(library, old_version, tp): | ||||||
"""GET /library/latest/{bad_library_slug}/""" | ||||||
# 404 due to bad slug | ||||||
url = tp.reverse("library-detail", "latest", "bananas") | ||||||
response = tp.get(url) | ||||||
tp.response_404(response) | ||||||
|
||||||
# 404 due to no existing version | ||||||
url = tp.reverse("library-detail", "latest", library.slug) | ||||||
|
||||||
def test_library_detail_missing_version(library, old_version, tp): | ||||||
# custom error due to no existing version | ||||||
url = tp.reverse("library-detail", old_version.display_name, library.slug) | ||||||
response = tp.get(url) | ||||||
tp.response_404(response) | ||||||
assert ( | ||||||
"There was no version of the Boost.MultiArray library in the 1.70.0 version of " | ||||||
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. Might be nice to make this dynamic.
Suggested change
|
||||||
"Boost." in response.content.decode("utf-8") | ||||||
) | ||||||
|
||||||
|
||||||
def test_library_docs_redirect(tp, library, library_version): | ||||||
|
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
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.
Do it.