text-generation-webui/extensions/gallery/script.py

97 lines
2.7 KiB
Python
Raw Normal View History

2023-02-26 15:17:57 +00:00
from pathlib import Path
2023-03-31 05:01:48 +00:00
2023-02-26 15:17:57 +00:00
import gradio as gr
2023-03-31 05:01:48 +00:00
from modules.html_generator import get_image_cache
from modules.shared import gradio
2023-03-31 05:01:48 +00:00
def generate_css():
2023-02-26 15:17:57 +00:00
css = """
.character-gallery > .gallery {
margin: 1rem 0;
display: grid !important;
2023-02-27 14:30:52 +00:00
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
grid-column-gap: 0.4rem;
grid-row-gap: 1.2rem;
}
.character-gallery > .label {
display: none !important;
}
2023-03-31 04:54:24 +00:00
.character-gallery button.gallery-item {
display: contents;
}
.character-container {
cursor: pointer;
text-align: center;
position: relative;
2023-02-27 14:55:36 +00:00
opacity: 0.85;
}
.character-container:hover {
opacity: 1;
}
.character-container .placeholder, .character-container img {
width: 150px;
height: 200px;
background-color: gray;
object-fit: cover;
margin: 0 auto;
border-radius: 1rem;
border: 3px solid white;
2023-02-27 16:49:55 +00:00
box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 50%);
}
.character-name {
2023-02-27 16:49:55 +00:00
margin-top: 0.3rem;
display: block;
font-size: 1.2rem;
font-weight: 600;
2023-02-27 14:46:15 +00:00
overflow-wrap: anywhere;
}
2023-02-26 15:17:57 +00:00
"""
return css
2023-02-26 15:17:57 +00:00
def generate_html():
cards = []
2023-02-26 15:17:57 +00:00
# Iterate through files in image folder
2023-02-27 16:04:06 +00:00
for file in sorted(Path("characters").glob("*")):
if file.suffix in [".json", ".yml", ".yaml"]:
character = file.stem
container_html = '<div class="character-container">'
image_html = "<div class='placeholder'></div>"
2023-04-05 03:34:17 +00:00
for path in [Path(f"characters/{character}.{extension}") for extension in ['png', 'jpg', 'jpeg']]:
if path.exists():
2023-04-05 01:52:15 +00:00
image_html = f'<img src="file/{get_image_cache(path)}">'
break
container_html += f'{image_html} <span class="character-name">{character}</span>'
container_html += "</div>"
cards.append([container_html, character])
return cards
def select_character(evt: gr.SelectData):
return (evt.value[1])
2023-02-26 15:17:57 +00:00
def ui():
with gr.Accordion("Character gallery", open=False):
2023-02-26 15:17:57 +00:00
update = gr.Button("Refresh")
gr.HTML(value="<style>" + generate_css() + "</style>")
gallery = gr.Dataset(components=[gr.HTML(visible=False)],
2023-04-07 03:52:02 +00:00
label="",
samples=generate_html(),
elem_classes=["character-gallery"],
samples_per_page=50
)
2023-02-26 15:17:57 +00:00
update.click(generate_html, [], gallery)
gallery.select(select_character, None, gradio['character_menu'])