mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-25 06:11:09 +00:00
Reactive editor with side by side preview (fixes #69)
This commit is contained in:
parent
b0f12a6908
commit
1093cbf67e
3 changed files with 40 additions and 32 deletions
|
@ -13,36 +13,44 @@ pub fn EditorView(
|
|||
let (show_preview, set_show_preview) = create_signal(false);
|
||||
|
||||
view! {
|
||||
<div class="my-4">
|
||||
<textarea
|
||||
prop:value=content
|
||||
placeholder="Article text..."
|
||||
class="textarea textarea-primary min-w-full min-h-80 resize-none text-base"
|
||||
on:input=move |evt| {
|
||||
let val = event_target_value(&evt);
|
||||
set_preview.set(render_markdown(&val));
|
||||
set_content.set(val);
|
||||
}
|
||||
node_ref=textarea_ref
|
||||
></textarea>
|
||||
<button
|
||||
class="btn btn-secondary my-4"
|
||||
on:click=move |_| { set_show_preview.update(|s| *s = !*s) }
|
||||
>
|
||||
Preview
|
||||
</button>
|
||||
<Show when=move || { show_preview.get() }>
|
||||
<div class="prose prose-slate" inner_html=move || preview.get()></div>
|
||||
</Show>
|
||||
<div>
|
||||
<a
|
||||
class="link link-secondary"
|
||||
href="https://ibis.wiki/article/Markdown_Guide"
|
||||
target="blank_"
|
||||
<div>
|
||||
<div class="my-4 w-full flex max-sm:flex-col">
|
||||
<textarea
|
||||
prop:value=content
|
||||
placeholder="Article text..."
|
||||
class="grow textarea textarea-primary min-h-80 resize-none text-base text-base"
|
||||
on:input=move |evt| {
|
||||
let val = event_target_value(&evt);
|
||||
set_preview.set(render_markdown(&val));
|
||||
set_content.set(val);
|
||||
}
|
||||
node_ref=textarea_ref
|
||||
></textarea>
|
||||
<Show when=move || { show_preview.get() }>
|
||||
<div class="divider md:hidden"></div>
|
||||
<div
|
||||
class="prose prose-slate basis-6/12 md:ms-4 text-base py-2 max-sm:px-2"
|
||||
inner_html=move || preview.get()
|
||||
></div>
|
||||
</Show>
|
||||
</div>
|
||||
<div class="flex h-min items-center mb-4">
|
||||
<button
|
||||
class="btn btn-secondary"
|
||||
on:click=move |_| { set_show_preview.update(|s| *s = !*s) }
|
||||
>
|
||||
Markdown
|
||||
</a>
|
||||
" formatting is supported"
|
||||
Preview
|
||||
</button>
|
||||
<p class="mx-4">
|
||||
<a
|
||||
class="link link-secondary"
|
||||
href="https://ibis.wiki/article/Markdown_Guide"
|
||||
target="blank_"
|
||||
>
|
||||
Markdown
|
||||
</a>
|
||||
" formatting is supported"
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@ pub fn CreateArticle() -> impl IntoView {
|
|||
|
||||
<div class="flex flex-row">
|
||||
<input
|
||||
class="input input-primary grow mr-2"
|
||||
class="input input-primary grow mr-4"
|
||||
type="text"
|
||||
placeholder="Edit summary"
|
||||
on:keyup=move |ev| {
|
||||
|
|
|
@ -140,7 +140,7 @@ pub fn EditArticle() -> impl IntoView {
|
|||
<div class="flex flex-row mr-2">
|
||||
<input
|
||||
type="text"
|
||||
class="input input-secondary grow"
|
||||
class="input input-primary grow me-4"
|
||||
placeholder="Edit summary"
|
||||
value=summary.get_untracked()
|
||||
on:keyup=move |ev| {
|
||||
|
@ -150,7 +150,7 @@ pub fn EditArticle() -> impl IntoView {
|
|||
/>
|
||||
|
||||
<button
|
||||
class="btn btn-secondary"
|
||||
class="btn btn-primary"
|
||||
prop:disabled=move || button_is_disabled.get()
|
||||
on:click=move |_| {
|
||||
submit_action
|
||||
|
|
Loading…
Reference in a new issue