mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 08:41:08 +00:00
wip3
This commit is contained in:
parent
68f7f31b8e
commit
f2e2f88dad
5 changed files with 32 additions and 19 deletions
|
@ -88,9 +88,14 @@ pub fn ArticleNav(
|
|||
</Show>
|
||||
</div>
|
||||
<div class="flex flex-row">
|
||||
<h1 class="text-4xl font-bold font-serif my-4 grow max-w-fit">{title}</h1>
|
||||
<h1 class="text-4xl font-bold font-serif my-6 grow flex-auto">
|
||||
{title}
|
||||
</h1>
|
||||
<Show when=move || protected>
|
||||
<span title="Article can only be edited by local admins">
|
||||
<span
|
||||
class="place-self-center"
|
||||
title="Article can only be edited by local admins"
|
||||
>
|
||||
"Protected"
|
||||
</span>
|
||||
</Show>
|
||||
|
|
|
@ -18,8 +18,8 @@ pub fn CredentialsForm(
|
|||
});
|
||||
|
||||
view! {
|
||||
<form on:submit=|ev| ev.prevent_default()>
|
||||
<p>{title}</p>
|
||||
<form class="form-control max-w-80" on:submit=|ev| ev.prevent_default()>
|
||||
<h1 class="text-4xl font-bold font-serif my-4 grow max-w-fit">{title}</h1>
|
||||
{move || {
|
||||
error
|
||||
.get()
|
||||
|
@ -44,7 +44,7 @@ pub fn CredentialsForm(
|
|||
set_username.update(|v| *v = val);
|
||||
}
|
||||
/>
|
||||
|
||||
<div class="h-2"></div>
|
||||
<input
|
||||
type="password"
|
||||
class="input"
|
||||
|
@ -71,7 +71,7 @@ pub fn CredentialsForm(
|
|||
|
||||
<div>
|
||||
<button
|
||||
class="btn"
|
||||
class="btn btn-primary my-2"
|
||||
prop:disabled=move || button_is_disabled.get()
|
||||
on:click=move |_| dispatch_action()
|
||||
>
|
||||
|
|
|
@ -23,15 +23,21 @@ pub fn ListArticles() -> impl IntoView {
|
|||
view! {
|
||||
<h1 class="text-4xl font-bold font-serif my-4">Most recently edited Articles</h1>
|
||||
<Suspense fallback=|| view! { "Loading..." }>
|
||||
<fieldset on:input=move |ev| {
|
||||
<fieldset
|
||||
class="flex flex-row"
|
||||
on:input=move |ev| {
|
||||
let val = ev.target().unwrap().unchecked_into::<web_sys::HtmlInputElement>().id();
|
||||
let is_local_only = val == "only-local";
|
||||
set_only_local.update(|p| *p = is_local_only);
|
||||
}>
|
||||
<input type="radio" name="listing-type" class="radio radio-primary" />
|
||||
<label for="only-local">Only Local</label>
|
||||
<input type="radio" name="listing-type" class="radio radio-primary" checked />
|
||||
<label for="all">All</label>
|
||||
<label class="label cursor-pointer max-w-32">
|
||||
<span>Only Local</span>
|
||||
<input type="radio" name="listing-type" class="radio checked:bg-primary" />
|
||||
</label>
|
||||
<label class="label cursor-pointer max-w-32">
|
||||
<span>All</span>
|
||||
<input type="radio" name="listing-type" class="radio checked:bg-primary" checked="checked" />
|
||||
</label>
|
||||
</fieldset>
|
||||
<ul class="list-disc">
|
||||
{move || {
|
||||
|
@ -42,7 +48,9 @@ pub fn ListArticles() -> impl IntoView {
|
|||
.map(|a| {
|
||||
view! {
|
||||
<li>
|
||||
<a class="link link-secondary" href=article_link(&a)>{article_title(&a)}</a>
|
||||
<a class="link link-secondary" href=article_link(&a)>
|
||||
{article_title(&a)}
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
})
|
||||
|
|
|
@ -43,7 +43,7 @@ pub fn Login() -> impl IntoView {
|
|||
fallback=move || {
|
||||
view! {
|
||||
<CredentialsForm
|
||||
title="Please enter the desired credentials"
|
||||
title="Login"
|
||||
action_label="Login"
|
||||
action=login_action
|
||||
error=login_error.into()
|
||||
|
|
|
@ -44,7 +44,7 @@ pub fn Register() -> impl IntoView {
|
|||
fallback=move || {
|
||||
view! {
|
||||
<CredentialsForm
|
||||
title="Please enter the desired credentials"
|
||||
title="Register"
|
||||
action_label="Register"
|
||||
action=register_action
|
||||
error=register_error.into()
|
||||
|
|
Loading…
Reference in a new issue