A new self-contained widget type showing user-authored rich text -- no
live upstream to poll, like the static image widget, just word-wrapped
styled text instead of an uploaded image.
The dialog's contenteditable HTML is never stored or replayed as HTML:
app/text_content.py parses it server-side (on save) into a plain
paragraphs-of-styled-runs structure -- the actual sanitization
boundary, since raw HTML never round-trips back into any browser DOM
(the dialog rebuilds its editor from that same JSON via
createElement/textContent). app/widgets/text.py renders it with a
custom word-wrap/shrink-to-fit layout, using real vendored font weights
(app/fonts/NotoSans-{Regular,Bold,Italic,BoldItalic}.ttf, OFL-licensed
like the emoji fonts already there) rather than every other widget's
single ImageFont.load_default() -- the one widget type where that
distinction matters.
49 lines
2.5 KiB
HTML
49 lines
2.5 KiB
HTML
<h2 class="dialog-title">Text widget</h2>
|
|
|
|
<section class="card">
|
|
<h2 class="card-title">Text</h2>
|
|
<p class="sub">A short block of styled text -- select some and use the
|
|
toolbar, or just type. Saved as plain text plus style flags, not raw
|
|
HTML.</p>
|
|
<div class="richtext-toolbar" id="text-toolbar">
|
|
<button type="button" class="richtext-btn" id="text-bold" title="Bold" data-cmd="bold"><b>B</b></button>
|
|
<button type="button" class="richtext-btn" id="text-italic" title="Italic" data-cmd="italic"><i>I</i></button>
|
|
<button type="button" class="richtext-btn" id="text-underline" title="Underline" data-cmd="underline"><u>U</u></button>
|
|
<span class="richtext-toolbar-sep"></span>
|
|
<label class="richtext-color-label" title="Text color">A<input type="color" id="text-color" value="#000000"></label>
|
|
<label class="richtext-color-label" title="Highlight color">▣<input type="color" id="text-highlight" value="#ffff00"></label>
|
|
<button type="button" class="richtext-btn" id="text-highlight-clear" title="Remove highlight">×</button>
|
|
</div>
|
|
<div class="richtext-editor" id="text-editor" contenteditable="true"
|
|
data-content='{{ (text_cfg.content if text_cfg else none) | tojson }}'></div>
|
|
</section>
|
|
|
|
<section class="card" style="margin-top: 20px;">
|
|
<h2 class="card-title">Settings</h2>
|
|
<form id="text-config-form">
|
|
<label>Font size
|
|
<input type="range" id="text_font_size" min="10" max="96" step="2"
|
|
value="{{ text_cfg.font_size if text_cfg else 28 }}">
|
|
<span class="slider-value" id="text_font_size_value">{{ text_cfg.font_size if text_cfg else 28 }}px</span>
|
|
</label>
|
|
<label>Alignment
|
|
<select id="text_align">
|
|
{% for value, label in [("left", "Left"), ("center", "Center"), ("right", "Right")] %}
|
|
<option value="{{ value }}" {% if text_cfg and text_cfg.align == value %}selected{% endif %}>{{ label }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</label>
|
|
<label>Background color
|
|
<input type="color" id="text_background_color" value="{{ text_cfg.background_color if text_cfg else '#ffffff' }}">
|
|
</label>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
</section>
|
|
|
|
<section class="card" style="margin-top: 20px;">
|
|
<h2 class="card-title">Preview</h2>
|
|
<p class="sub">How this widget currently renders.</p>
|
|
<img class="preview-img" id="text-preview" alt="Text widget preview">
|
|
<button type="button" class="secondary" id="text-preview-refresh">Refresh now</button>
|
|
</section>
|