Update documentation for #4401

This commit is contained in:
Jeremy Stretch 2020-03-25 14:33:32 -04:00
parent 9ea30c057f
commit d0edd9d5c1
3 changed files with 30 additions and 17 deletions

View File

@ -106,6 +106,7 @@ class AnimalSoundsConfig(PluginConfig):
* `max_version`: Maximum version of NetBox with which the plugin is compatible * `max_version`: Maximum version of NetBox with which the plugin is compatible
* `middleware`: A list of middleware classes to append after NetBox's build-in middleware. * `middleware`: A list of middleware classes to append after NetBox's build-in middleware.
* `caching_config`: Plugin-specific cache configuration * `caching_config`: Plugin-specific cache configuration
* `menu_items`: The dotted path to the list of menu items provided by the plugin (default: `navigation.menu_items`)
### Install the Plugin for Development ### Install the Plugin for Development
@ -271,24 +272,36 @@ With these three components in place, we can request `/api/plugins/animal-sounds
## Navigation Menu Items ## Navigation Menu Items
To make its views easily accessible to users, a plugin can inject items in NetBox's navigation menu. This is done by instantiating NetBox's `PluginNavMenuLink` class. Each instance of this class appears in the navigation menu under the header for its plugin. We'll create a link in the file `navigation.py`: To make its views easily accessible to users, a plugin can inject items in NetBox's navigation menu. Menu items are added by defining a list of PluginNavMenuLink instances. By default, this should be a variable named `menu_items` in the file `navigations.py`. An example is shown below.
```python ```python
from extras.plugins import PluginNavMenuLink from extras.plugins import PluginNavMenuButton, PluginNavMenuLink
from utilities.choices import ButtonColorChoices
class RandomSoundLink(PluginNavMenuLink): menu_items = (
link = 'plugins:netbox_animal_sounds:random_sound' PluginNavMenuLink(
link_text = 'Random sound' link='plugins:netbox_animal_sounds:random_sound',
link_text='Random sound',
buttons=(
PluginNavMenuButton('home', 'Button A', 'fa-info', ButtonColorChoices.BLUE),
PluginNavMenuButton('home', 'Button B', 'fa-warning', ButtonColorChoices.GREEN),
)
),
)
``` ```
Once we have our menu item defined, we need to register it in `signals.py`: A `PluginNavMenuLink` has the following attributes:
```python * `link` - The name of the URL path to which this menu item links
from django.dispatch import receiver * `link_text` - The text presented to the user
from extras.plugins.signals import register_nav_menu_link_classes * `permission` - The name of the permission required to display this link (optional)
from .navigation import RandomSoundLink * `buttons` - An iterable of PluginNavMenuButton instances to display (optional)
@receiver(register_nav_menu_link_classes)
def nav_menu_link_classes(**kwargs): A `PluginNavMenuButton` has the following attributes:
return [RandomSoundLink]
``` * `link` - The name of the URL path to which this menu item links
* `title` - The tooltip text (displayed when the mouse hovers over the button)
* `color` - Button color (one of the choices provided by `ButtonColorChoices`)
* `icon_class` - Button icon CSS class
* `permission` - The name of the permission required to display this button (optional)

View File

@ -170,7 +170,7 @@ class PluginNavMenuLink:
def __init__(self, link, link_text, permission=None, buttons=None): def __init__(self, link, link_text, permission=None, buttons=None):
self.link = link self.link = link
self.link_text = link_text self.link_text = link_text
self.link_permission = permission self.permission = permission
if buttons is None: if buttons is None:
self.buttons = [] self.buttons = []
else: else:

View File

@ -4,8 +4,8 @@
{% for section_name, link_items in plugin_nav_menu_links.items %} {% for section_name, link_items in plugin_nav_menu_links.items %}
<li class="dropdown-header">{{ section_name }}</li> <li class="dropdown-header">{{ section_name }}</li>
{% for link_item in link_items %} {% for link_item in link_items %}
{% if link_item.link_permission %} {% if link_item.permission %}
<li{% if not link_item.link_permission in perms %} class="disabled"{% endif %}> <li{% if not link_item.permission in perms %} class="disabled"{% endif %}>
{% else %} {% else %}
<li> <li>
{% endif %} {% endif %}