|
import urllib.parse |
|
import gradio as gr |
|
|
|
|
|
|
|
|
|
def generate_static_badge(label, message, color, label_color, logo, logo_color, style, link): |
|
base = "https://img.shields.io/static/v1" |
|
params = [] |
|
if label: |
|
params.append(f"label={urllib.parse.quote(label, safe='')}") |
|
if message: |
|
params.append(f"message={urllib.parse.quote(message, safe='')}") |
|
if color: |
|
params.append(f"color={urllib.parse.quote(color, safe='')}") |
|
if label_color: |
|
params.append(f"labelColor={urllib.parse.quote(label_color, safe='')}") |
|
if logo: |
|
params.append(f"logo={urllib.parse.quote(logo, safe='')}") |
|
if logo_color: |
|
params.append(f"logoColor={urllib.parse.quote(logo_color, safe='')}") |
|
if style: |
|
params.append(f"style={urllib.parse.quote(style, safe='')}") |
|
|
|
badge_url = base + ("?" + "&".join(params) if params else "") |
|
|
|
if link: |
|
html_code = f'<a href="{link}" target="_blank"><img src="{badge_url}" alt="badge"></a>' |
|
else: |
|
html_code = f'<img src="{badge_url}" alt="badge">' |
|
|
|
|
|
badge_preview = f""" |
|
<div style='padding:20px; background: #fefefe; border-radius: 12px; display: flex; justify-content: center;'> |
|
{html_code} |
|
</div> |
|
""" |
|
return html_code, badge_preview |
|
|
|
|
|
|
|
|
|
with gr.Blocks(theme=gr.themes.Default()) as demo: |
|
|
|
gr.HTML(""" |
|
<h1 style="text-align: center; font-size: 2.2em; margin-bottom: 0.2em;">π¨ BadgeCraft - Beautiful Badge Generator</h1> |
|
<p style="text-align: center; font-size: 1.1em; color: #555;">Design stylish shields.io badges with live preview and HTML snippet generation.</p> |
|
""") |
|
|
|
|
|
with gr.Row(): |
|
out_code = gr.Code(label="HTML Snippet", language="html") |
|
out_preview = gr.HTML(label="Badge Preview") |
|
|
|
|
|
with gr.Row(): |
|
label = gr.Textbox(label="Label", placeholder="μ: build") |
|
message = gr.Textbox(label="Message", placeholder="μ: passing") |
|
logo = gr.Textbox(label="Logo", placeholder="μ: github") |
|
|
|
|
|
with gr.Row(): |
|
color = gr.ColorPicker(label="Color", value="#a0c4ff") |
|
label_color = gr.ColorPicker(label="Label Color", value="#bdb2ff") |
|
logo_color = gr.ColorPicker(label="Logo Color", value="#ffc6ff") |
|
|
|
|
|
style = gr.Dropdown(label="Style", choices=["flat", "flat-square", "plastic", "for-the-badge", "social"], value="for-the-badge") |
|
link = gr.Textbox(label="Link (λ°°μ§ ν΄λ¦ μ μ΄λν URL)", placeholder="https://yourlink.com") |
|
|
|
|
|
inputs = [label, message, color, label_color, logo, logo_color, style, link] |
|
for inp in inputs: |
|
inp.change(fn=generate_static_badge, inputs=inputs, outputs=[out_code, out_preview]) |
|
|
|
|
|
def load_example(label_val, message_val, logo_val, link_val): |
|
return label_val, message_val, logo_val, link_val |
|
|
|
|
|
gr.HTML(""" |
|
<h3 style="text-align: center; margin-top: 30px;">β¨ Examples (Click to Load)</h3> |
|
""") |
|
|
|
|
|
with gr.Row(): |
|
discord_btn = gr.Button("Discord Badge Example") |
|
x_btn = gr.Button("X Badge Example") |
|
instagram_btn = gr.Button("Instagram Badge Example") |
|
threads_btn = gr.Button("Threads Badge Example") |
|
facebook_btn = gr.Button("Facebook Badge Example") |
|
|
|
|
|
discord_btn.click( |
|
fn=lambda: load_example("Discord", "Join", "discord", "https://discord.gg/openfreeai"), |
|
inputs=[], outputs=[label, message, logo, link] |
|
).then( |
|
lambda: gr.open_url("https://discord.gg/openfreeai"), [], [] |
|
) |
|
|
|
x_btn.click( |
|
fn=lambda: load_example("X.com", "Follow", "x", "https://x.com/openfree_ai"), |
|
inputs=[], outputs=[label, message, logo, link] |
|
).then( |
|
lambda: gr.open_url("https://x.com/openfree_ai"), [], [] |
|
) |
|
|
|
instagram_btn.click( |
|
fn=lambda: load_example("Instagram", "Follow", "instagram", "https://www.instagram.com/openfree_ai"), |
|
inputs=[], outputs=[label, message, logo, link] |
|
).then( |
|
lambda: gr.open_url("https://www.instagram.com/openfree_ai"), [], [] |
|
) |
|
|
|
threads_btn.click( |
|
fn=lambda: load_example("Threads", "Follow", "threads", "https://www.threads.net/@openfree_ai"), |
|
inputs=[], outputs=[label, message, logo, link] |
|
).then( |
|
lambda: gr.open_url("https://www.threads.net/@openfree_ai"), [], [] |
|
) |
|
|
|
facebook_btn.click( |
|
fn=lambda: load_example("Facebook", "Like", "facebook", "https://www.facebook.com/profile.php?id=61575353674679"), |
|
inputs=[], outputs=[label, message, logo, link] |
|
).then( |
|
lambda: gr.open_url("https://www.facebook.com/profile.php?id=61575353674679"), [], [] |
|
) |
|
|
|
|
|
if __name__ == "__main__": |
|
demo.launch() |
|
|