tacker-horizon/tacker_horizon/openstack_dashboard/dashboards/nfv/vnffgmanager/tabs.py

88 lines
2.8 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import gettext_lazy as _
from horizon import exceptions
from horizon import tabs
from horizon import utils as horizon_utils
from tacker_horizon.openstack_dashboard import api
from tacker_horizon.openstack_dashboard.dashboards.nfv.vnffgmanager \
import tables
from tacker_horizon.openstack_dashboard.dashboards.nfv.vnffgmanager.tables \
import VNFFGManagerItem
from tacker_horizon.openstack_dashboard.dashboards.nfv.vnffgmanager.tables \
import VNFFGManagerItemList
class VNFFGManagerTab(tabs.TableTab):
name = _("VNFFGManager Tab")
slug = "vnffgmanager_tab"
table_classes = (tables.VNFFGManagerTable,)
template_name = ("horizon/common/_detail_table.html")
preload = False
def has_more_data(self, table):
return self._has_more
def get_vnffgmanager_data(self):
try:
VNFFGManagerItemList.clear_list()
vnffgs = api.tacker.vnffg_list(self.request)
if len(vnffgs) > horizon_utils.functions.get_page_size(
self.request):
self._has_more = True
else:
self._has_more = False
for vnffg in vnffgs:
try:
vnffg_desc_str = vnffg['description']
except KeyError:
vnffg_desc_str = ""
obj = VNFFGManagerItem(vnffg['id'],
vnffg['name'],
vnffg_desc_str,
vnffg['status'])
VNFFGManagerItemList.add_item(obj)
return VNFFGManagerItemList.VNFFGLIST_P
except Exception:
self._has_more = False
error_message = _('Unable to get instances')
exceptions.handle(self.request, error_message)
return []
class VNFFGManagerTabs(tabs.TabGroup):
slug = "vnffgmanager_tabs"
tabs = (VNFFGManagerTab,)
sticky = True
class VNFFGDetailsTab(tabs.Tab):
name = _("VNFFG Detail")
slug = "VNFFG_Details"
template_name = "nfv/vnffgmanager/vnffg_details.html"
def get_context_data(self, request):
return {'vnffg': self.tab_group.kwargs['vnffg']}
class VNFFGDetailsTabs(tabs.TabGroup):
slug = "VNFFG_details"
tabs = (VNFFGDetailsTab,)
sticky = True