Compare commits

..

No commits in common. "ccb88adcb4a559e29a89427d5dfed0561b081334" and "cca41a5d7a25aea36bf4b70020d273e4e90430e6" have entirely different histories.

2 changed files with 3 additions and 7 deletions

2
db.py
View File

@ -2,7 +2,7 @@ import os
import json
if not os.path.exists('config.json'):
db = {"our_port": 0000, "ports": [], "domain": "http://127.0.0.1:8000"}
db = {}
js = json.dumps(db, indent=2)
with open("config.json", "w") as outfile:
outfile.write(js)

View File

@ -38,17 +38,13 @@ def update_servers(n):
Input('interval-component', 'n_intervals'),
Input('search', 'value'))
def update_sites(n, s_val):
# Домен по умолчанию
domain = read()['domain']
# Если есть элемент в поиске
if s_val:
return html.Div([ dcc.Link(children=i, href=f'{domain}/{s_val}',
target='_blank') ], className='sites_elem')
return html.Div([s_val], className='sites_elem')
res = []
for i in next(walk('cached/'), (None, None, []))[1]:
res.append(html.Div([ dcc.Link(children=i, href=f'{domain}/{i}',
target='_blank') ], className='sites_elem'))
res.append(html.Div([i], className='sites_elem'))
return res
# Обновление доступных сайтов в поиске