|
import gradio as gr |
|
|
|
|
|
snippet1 = """|![Link Text](www.example.com)| |
|
|:--:| |
|
|Figure x: Caption| |
|
""" |
|
snippet2 = """<div style="background-color: #e6f9e6; padding: 16px 32px; outline: 2px solid; border-radius: 10px;"> |
|
This is text with a tip format! |
|
</div> |
|
""" |
|
snippet3 = """[[1]](#1) |
|
|
|
<a id="1">[1]</a> : First Last, [Example](www.example.com), 2021""" |
|
|
|
|
|
js_code = """ |
|
<script> |
|
let position = 0; |
|
function updatePosition() { |
|
let textbox = document.querySelector('textarea'); |
|
position = textbox.selectionStart; |
|
} |
|
function insertAtCursor(snippet) { |
|
let textbox = document.querySelector('textarea'); |
|
let text = textbox.value; |
|
let newText = text.slice(0, position) + snippet + text.slice(position); |
|
textbox.value = newText; |
|
position += snippet.length; |
|
textbox.focus(); |
|
// Triggering input event to update Gradio component |
|
let event = new Event('input', { bubbles: true }); |
|
textbox.dispatchEvent(event); |
|
} |
|
document.querySelector('textarea').addEventListener('click', updatePosition); |
|
document.querySelector('textarea').addEventListener('keyup', updatePosition); |
|
document.querySelector('#button1').addEventListener('click', function() { insertAtCursor(`|![Link Text](www.example.com)|\n|:--:|\n|Figure x: Caption|\n`); }); |
|
document.querySelector('#button2').addEventListener('click', function() { insertAtCursor(`<div style="background-color: #e6f9e6; padding: 16px 32px; outline: 2px solid; border-radius: 10px;">\nThis is text with a tip format!\n</div>\n`); }); |
|
document.querySelector('#button3').addEventListener('click', function() { insertAtCursor(`<a id="1">[1]</a> : First Last, [Example](www.example.com), 2021\n`); }); |
|
</script> |
|
""" |
|
|
|
with gr.Blocks() as demo: |
|
gr.Markdown("# Blog Writing Helper") |
|
|
|
with gr.Row(): |
|
with gr.Column(): |
|
text_input = gr.Textbox(lines=10, placeholder="Write your blog here...", label="Text Editor") |
|
button1 = gr.Button("Insert Image Table", elem_id="button1") |
|
button2 = gr.Button("Insert Tip Format", elem_id="button2") |
|
button3 = gr.Button("Insert Reference", elem_id="button3") |
|
with gr.Column(): |
|
gr.Markdown("**Live Preview**") |
|
markdown_preview = gr.Markdown(label="Live Preview", elem_id="preview-box") |
|
|
|
|
|
text_input.change(lambda text: text, inputs=text_input, outputs=markdown_preview) |
|
|
|
|
|
gr.HTML(js_code) |
|
|
|
demo.launch() |
|
|