Update VPP_STABLE_VER files
[csit.git] / resources / tools / dash / app / pal / trending / trending.py
1 # Copyright (c) 2022 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Instantiate the Trending Dash applocation.
15 """
16 import dash
17 import dash_bootstrap_components as dbc
18
19 from .layout import Layout
20
21
22 def init_trending(server, time_period=None):
23     """Create a Plotly Dash dashboard.
24
25     :param server: Flask server.
26     :type server: Flask
27     :returns: Dash app server.
28     :rtype: Dash
29     """
30
31     dash_app = dash.Dash(
32         server=server,
33         routes_pathname_prefix=u"/trending/",
34         external_stylesheets=[dbc.themes.LUX],
35     )
36
37     # Custom HTML layout
38     layout = Layout(
39         app=dash_app,
40         html_layout_file="pal/templates/trending_layout.jinja2",
41         spec_file="pal/trending/spec_test_selection.yaml",
42         graph_layout_file="pal/trending/layout.yaml",
43         data_spec_file="pal/data/data.yaml",
44         time_period=time_period
45     )
46     dash_app.index_string = layout.html_layout
47     dash_app.layout = layout.add_content()
48
49     return dash_app.server