2023-05-31 13:40:09 -06:00
|
|
|
import os
|
|
|
|
import gradio as gr
|
|
|
|
|
2023-12-27 14:52:41 -07:00
|
|
|
from modules import localization, shared, scripts, util
|
|
|
|
from modules.paths import script_path, data_path
|
2023-05-31 13:40:09 -06:00
|
|
|
|
|
|
|
|
|
|
|
def webpath(fn):
|
2023-12-27 14:52:41 -07:00
|
|
|
return f'file={util.truncate_path(fn)}?{os.path.getmtime(fn)}'
|
2023-05-31 13:40:09 -06:00
|
|
|
|
|
|
|
|
|
|
|
def javascript_html():
|
|
|
|
# Ensure localization is in `window` before scripts
|
|
|
|
head = f'<script type="text/javascript">{localization.localization_js(shared.opts.localization)}</script>\n'
|
|
|
|
|
|
|
|
script_js = os.path.join(script_path, "script.js")
|
|
|
|
head += f'<script type="text/javascript" src="{webpath(script_js)}"></script>\n'
|
|
|
|
|
|
|
|
for script in scripts.list_scripts("javascript", ".js"):
|
|
|
|
head += f'<script type="text/javascript" src="{webpath(script.path)}"></script>\n'
|
|
|
|
|
|
|
|
for script in scripts.list_scripts("javascript", ".mjs"):
|
|
|
|
head += f'<script type="module" src="{webpath(script.path)}"></script>\n'
|
|
|
|
|
|
|
|
if shared.cmd_opts.theme:
|
|
|
|
head += f'<script type="text/javascript">set_theme(\"{shared.cmd_opts.theme}\");</script>\n'
|
|
|
|
|
|
|
|
return head
|
|
|
|
|
|
|
|
|
|
|
|
def css_html():
|
|
|
|
head = ""
|
|
|
|
|
|
|
|
def stylesheet(fn):
|
|
|
|
return f'<link rel="stylesheet" property="stylesheet" href="{webpath(fn)}">'
|
|
|
|
|
|
|
|
for cssfile in scripts.list_files_with_name("style.css"):
|
|
|
|
head += stylesheet(cssfile)
|
|
|
|
|
2024-01-03 15:16:58 -07:00
|
|
|
user_css = os.path.join(data_path, "user.css")
|
|
|
|
if os.path.exists(user_css):
|
|
|
|
head += stylesheet(user_css)
|
2023-05-31 13:40:09 -06:00
|
|
|
|
2024-07-06 09:22:27 -06:00
|
|
|
from modules.shared_gradio_themes import resolve_var
|
|
|
|
light = resolve_var('background_fill_primary')
|
|
|
|
dark = resolve_var('background_fill_primary_dark')
|
|
|
|
head += f'<style>html {{ background-color: {light}; }} @media (prefers-color-scheme: dark) {{ html {{background-color: {dark}; }} }}</style>'
|
2024-07-05 09:28:16 -06:00
|
|
|
|
2023-05-31 13:40:09 -06:00
|
|
|
return head
|
|
|
|
|
|
|
|
|
|
|
|
def reload_javascript():
|
|
|
|
js = javascript_html()
|
|
|
|
css = css_html()
|
|
|
|
|
|
|
|
def template_response(*args, **kwargs):
|
|
|
|
res = shared.GradioTemplateResponseOriginal(*args, **kwargs)
|
2024-04-27 04:21:34 -06:00
|
|
|
res.body = res.body.replace(b'</head>', f'{js}<meta name="referrer" content="no-referrer"/></head>'.encode("utf8"))
|
2023-05-31 13:40:09 -06:00
|
|
|
res.body = res.body.replace(b'</body>', f'{css}</body>'.encode("utf8"))
|
|
|
|
res.init_headers()
|
|
|
|
return res
|
|
|
|
|
|
|
|
gr.routes.templates.TemplateResponse = template_response
|
|
|
|
|
|
|
|
|
|
|
|
if not hasattr(shared, 'GradioTemplateResponseOriginal'):
|
|
|
|
shared.GradioTemplateResponseOriginal = gr.routes.templates.TemplateResponse
|