UTI: code clean-up
[csit.git] / resources / tools / dash / app / pal / news / news.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 News Dash application.
15 """
16 import dash
17
18 from ..utils.constants import Constants as C
19 from .layout import Layout
20
21
22 def init_news(server):
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=C.NEWS_ROUTES_PATHNAME_PREFIX,
34         external_stylesheets=C.EXTERNAL_STYLESHEETS
35     )
36
37     layout = Layout(
38         app=dash_app,
39         html_layout_file=C.NEWS_HTML_LAYOUT_FILE,
40         data_spec_file=C.DATA_SPEC_FILE,
41         tooltip_file=C.TOOLTIP_FILE,
42     )
43     dash_app.index_string = layout.html_layout
44     dash_app.layout = layout.add_content()
45
46     return dash_app.server