-
Notifications
You must be signed in to change notification settings - Fork 50
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
added snippets changelog to the toolbar under admin menu #181
Open
svandeneertwegh
wants to merge
6
commits into
django-cms:master
Choose a base branch
from
svandeneertwegh:added_to_admin_menu-toolbar
base: master
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
6 commits
Select commit
Hold shift + click to select a range
c939e71
added snippets changelog to the toolbar under admin menu
svandeneertwegh 3f1b78e
ci: auto fixes from pre-commit hooks
pre-commit-ci[bot] 8c3d837
added snippets changelog to the toolbar under admin menu v2
svandeneertwegh 387de15
ci: auto fixes from pre-commit hooks
pre-commit-ci[bot] 065f908
added if added or change permissions are true
svandeneertwegh fbde4bc
ci: auto fixes from pre-commit hooks
pre-commit-ci[bot] 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
from cms.cms_toolbars import ( | ||
ADMIN_MENU_IDENTIFIER, | ||
ADMINISTRATION_BREAK, | ||
SHORTCUTS_BREAK, | ||
) | ||
from cms.toolbar.items import Break | ||
from cms.toolbar_base import CMSToolbar | ||
from cms.toolbar_pool import toolbar_pool | ||
from cms.utils.urlutils import admin_reverse | ||
from django.utils.encoding import force_str | ||
from django.utils.translation import ( | ||
gettext_lazy as _, | ||
) | ||
|
||
|
||
@toolbar_pool.register | ||
class SnippetToolbar(CMSToolbar): | ||
name = _("Snippet") | ||
plural_name = _("Snippets") | ||
|
||
def populate(self): | ||
self.add_snippet_link_to_admin_menu() | ||
|
||
def add_snippet_link_to_admin_menu(self): | ||
admin_menu = self.toolbar.get_or_create_menu(ADMIN_MENU_IDENTIFIER) | ||
|
||
url = admin_reverse("djangocms_snippet_snippet_changelist") | ||
|
||
add_perm = self.request.user.has_perm("djangocms_snippet.add_snippet") | ||
change_perm = self.request.user.has_perm("djangocms_snippet.change_snippet") | ||
|
||
if add_perm or change_perm: | ||
admin_menu.add_sideframe_item( | ||
_("Snippets"), | ||
url=url, | ||
position=self.get_insert_position(admin_menu, self.plural_name), | ||
) | ||
|
||
@classmethod | ||
def get_insert_position(cls, admin_menu, item_name): | ||
""" | ||
Ensures that there is a SHORTCUTS_BREAK and returns a position for an | ||
alphabetical position against all items between SHORTCUTS_BREAK, and | ||
the ADMINISTRATION_BREAK. | ||
""" | ||
start = admin_menu.find_first(Break, identifier=SHORTCUTS_BREAK) | ||
|
||
if not start: | ||
end = admin_menu.find_first(Break, identifier=ADMINISTRATION_BREAK) | ||
admin_menu.add_break(SHORTCUTS_BREAK, position=end.index) | ||
start = admin_menu.find_first(Break, identifier=SHORTCUTS_BREAK) | ||
end = admin_menu.find_first(Break, identifier=ADMINISTRATION_BREAK) | ||
|
||
items = admin_menu.get_items()[start.index + 1 : end.index] | ||
for idx, item in enumerate(items): | ||
try: | ||
if force_str(item_name.lower()) < force_str(item.name.lower()): | ||
return idx + start.index + 1 | ||
except AttributeError: | ||
# Some item types do not have a 'name' attribute. | ||
pass | ||
return end.index |
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.
issue (complexity): Consider refactoring to separate the break setup and insertion point calculation into distinct helper functions, and use hasattr to check for attributes instead of try/except blocks, to improve code organization and readability..
You can reduce complexity by separating the two concerns: ensuring the breaks are set up and calculating the alphabetical insertion point. For instance, you could extract the break logic into its own helper and refactor the loop to check for the attribute rather than handling an exception. For example:
This refactoring keeps functionality intact while isolating break management and order computation, increasing clarity and maintainability.