mirror of
https://gitea.psi.ch/APOG/acsm-fairifier.git
synced 2025-07-13 19:01:49 +02:00
49 lines
1.9 KiB
Python
49 lines
1.9 KiB
Python
import sys, os
|
|
|
|
try:
|
|
thisFilePath = os.path.abspath(__file__)
|
|
print(thisFilePath)
|
|
except NameError:
|
|
print("[Notice] The __file__ attribute is unavailable in this environment (e.g., Jupyter or IDLE).")
|
|
print("When using a terminal, make sure the working directory is set to the script's location to prevent path issues (for the DIMA submodule)")
|
|
#print("Otherwise, path to submodule DIMA may not be resolved properly.")
|
|
thisFilePath = os.getcwd() # Use current directory or specify a default
|
|
|
|
projectPath = os.path.normpath(os.path.join(thisFilePath, "..","..", ".."))
|
|
|
|
from dash import Dash, html, dcc, callback, Output, Input, State, dash_table
|
|
import dash_bootstrap_components as dbc
|
|
|
|
import yaml
|
|
|
|
from app import data_flagging_utils
|
|
|
|
with open(os.path.join(projectPath,'app/flags/ebas_dict.yaml')) as stream:
|
|
try:
|
|
flags_dict = yaml.safe_load(stream)["flags"]
|
|
except yaml.YAMLError as exc:
|
|
flags_dict = {}
|
|
print(exc)
|
|
|
|
|
|
|
|
flagging_dashboard = dbc.Row([
|
|
html.H3("Create flags"),
|
|
|
|
#dbc.Row([
|
|
dcc.Dropdown(
|
|
id='flag-options',
|
|
options= data_flagging_utils.filter_flags_by_label(flags_dict,'all'), # displays only flags to invalidate
|
|
),
|
|
#],
|
|
#width=12
|
|
#),
|
|
#],justify="center", align="center"),
|
|
|
|
dbc.Row([
|
|
dbc.Col([dbc.Button('Create Flag', id='flag-button', color="primary", className="mt-2")],width=2),
|
|
dbc.Col([dbc.Button('Reset Flag', id='reset-flag-button', color="secondary", className="mt-2")],width=2),
|
|
dbc.Col([dbc.Button('Commit Flag', id='commit-flag-button', color="secondary", className="mt-2")],width=2)
|
|
], justify="center", align="center",style={'background-color': '#f8f9fa', 'padding': '20px', 'text-align': 'center'})],
|
|
justify="center", align="center",style={'background-color': '#f8f9fa', 'padding': '20px', 'text-align': 'center'}
|
|
) |