UTI: code clean-up
[csit.git] / resources / tools / dash / app / pal / stats / stats.py
index 78bb6e6..5b31fac 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""Instantiate the Statistics Dash applocation.
+"""Instantiate the Statistics Dash application.
 """
 import dash
-import dash_bootstrap_components as dbc
 
+from ..utils.constants import Constants as C
 from .layout import Layout
 
 
-def init_stats(server):
+def init_stats(server, time_period=None):
     """Create a Plotly Dash dashboard.
 
     :param server: Flask server.
@@ -30,17 +30,17 @@ def init_stats(server):
 
     dash_app = dash.Dash(
         server=server,
-        routes_pathname_prefix=u"/stats/",
-        external_stylesheets=[dbc.themes.LUX],
+        routes_pathname_prefix=C.STATS_ROUTES_PATHNAME_PREFIX,
+        external_stylesheets=C.EXTERNAL_STYLESHEETS
     )
 
-    # Custom HTML layout
     layout = Layout(
         app=dash_app,
-        html_layout_file="pal/templates/stats_layout.jinja2",
-        spec_file="pal/stats/spec_job_selection.yaml",
-        graph_layout_file="pal/stats/layout.yaml",
-        data_spec_file="pal/data/data.yaml"
+        html_layout_file=C.STATS_HTML_LAYOUT_FILE,
+        graph_layout_file=C.STATS_GRAPH_LAYOUT_FILE,
+        data_spec_file=C.DATA_SPEC_FILE,
+        tooltip_file=C.TOOLTIP_FILE,
+        time_period=time_period
     )
     dash_app.index_string = layout.html_layout
     dash_app.layout = layout.add_content()