-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsbar.py
145 lines (107 loc) · 4.03 KB
/
sbar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
from dash import Dash, html, dcc
from dash.dependencies import Input, Output, State
import dash_bootstrap_components as dbc
from const import *
from elem import *
import os
def get_sidebar(LOGO, button_clicked, handle_placeholder):
if not handle_placeholder:
handle_placeholder = "IG Handle..."
print(f"sender {handle_placeholder} | receiver {button_clicked}")
sidebar = html.Div([
get_sidebarTitle(),
html.Br(),
get_sidebarPlatform(),
html.Br(),
get_sidebarInput(handle_placeholder),
html.Br(),
html.Br(),
html.H3("discover a whole new side to your messages", style=STYLE_SIDEBAR_TEXT_2),
html.Br(),
get_sidebarOptions(button_clicked),
html.Br(),
get_sidebarClosing(LOGO),
], style=STYLE_SIDEBAR)
return sidebar
def get_sidebarTitle():
return html.H1("messages wrapped", style=STYLE_SIDEBAR_TITLE)
def get_sidebarPlatform():
content = dbc.Card([
html.Div([
html.H5("select a platform", style=STYLE_SIDEBAR_TEXT),
html.Br(),
dbc.RadioItems(
options=[
{"label": "Instagram", "value": 1},
{"label": "iMessage", "value": 2, "disabled": True},
{"label": "Android", "value": 3, "disabled": True},
],
value=1,
id="radioitems-input",
style=STYLE_SIDEBAR_PLATFORM
),
], style={"background-color":"#000000", "padding":"1rem"}
)
], outline=True, color="info")
return content
def get_sidebarInput(placeholder):
content = dbc.Card([
html.Div([
html.H5("enter your info", style=STYLE_SIDEBAR_TEXT),
html.Br(),
dbc.Row([
dbc.Col(dbc.Input(id="handle-text", placeholder=placeholder, type="text", style={"background-color":"#000000", "color":"#FFFFFF"}), width=8),
dbc.Col(dbc.Button("Go", id="go-button"), width=4)
])
], style={"background-color":"#000000", "padding":"1rem"}
)
], outline=True, color="info")
return content
def get_sidebarOptions(button_clicked):
content = dbc.Card([
html.Div([
html.H5("choose a convo", style=STYLE_SIDEBAR_TEXT),
html.Br(),
get_sidebarChecklist(button_clicked),
], style={"background-color":"#000000", "padding":"1rem", "color":WHITE, "font-family":"Quicksand"}
)
], outline=True, color="info")
return content
def get_sidebarChecklist(button_clicked):
content = []
selected = ""
if not button_clicked:
content.append(dbc.Row(
dbc.Col(
dbc.Spinner(color="info", type="grow"),
width="auto", style={"padding":"2rem"}
),
align="center",
justify="center",
)
)
options = []
else:
names = []
values = []
for root, dirnames, filenames in os.walk(DATA_PATH):
for filename in filenames:
if filename.endswith(('.json')):
names.append(filename.split(".")[0].capitalize())
values.append(filename)
if filename == button_clicked: selected = filename
options = []
for i in range(len(names)):
options.append({"label": names[i], "value": values[i]})
content.append(dbc.RadioItems(
id="person-radio",
options=options,
value=selected,
labelCheckedClassName="text-success",
inputCheckedClassName="border border-success bg-success",
))
return html.Div(content)
def get_sidebarClosing(LOGO):
logo = "logo.png"
content = html.Center(html.Img(src=LOGO, height="50px", style={"margin-top": "1rem"}))
return content