fix(web): update on cached toggled, tweak strings
This commit is contained in:
parent
61fce5c9c6
commit
c19cc19a90
1 changed files with 15 additions and 13 deletions
|
@ -5,28 +5,29 @@ use crate::prelude::*;
|
||||||
#[component]
|
#[component]
|
||||||
pub fn DebugPage() -> impl IntoView {
|
pub fn DebugPage() -> impl IntoView {
|
||||||
let query_params = use_query_map();
|
let query_params = use_query_map();
|
||||||
let query = move || {
|
|
||||||
query_params.with(|params| params.get("q").cloned().unwrap_or_default())
|
|
||||||
};
|
|
||||||
let cached_ref: NodeRef<html::Input> = create_node_ref();
|
let cached_ref: NodeRef<html::Input> = create_node_ref();
|
||||||
let auth = use_context::<Auth>().expect("missing auth context");
|
let auth = use_context::<Auth>().expect("missing auth context");
|
||||||
|
let (cached, set_cached) = create_signal(false);
|
||||||
let (plain, set_plain) = create_signal(false);
|
let (plain, set_plain) = create_signal(false);
|
||||||
let (text, set_text) = create_signal("".to_string());
|
let (text, set_text) = create_signal("".to_string());
|
||||||
let navigate = use_navigate();
|
let navigate = use_navigate();
|
||||||
|
|
||||||
|
let cached_query = move || (
|
||||||
|
query_params.with(|params| params.get("q").cloned().unwrap_or_default()),
|
||||||
|
cached.get(),
|
||||||
|
);
|
||||||
let object = create_local_resource(
|
let object = create_local_resource(
|
||||||
query,
|
cached_query,
|
||||||
move |q| async move {
|
move |(query, cached)| async move {
|
||||||
set_text.set(q.clone());
|
set_text.set(query.clone());
|
||||||
if q.is_empty() { return serde_json::Value::Null };
|
if query.is_empty() { return serde_json::Value::Null };
|
||||||
let cached = cached_ref.get().map(|x| x.checked()).unwrap_or_default();
|
|
||||||
if cached {
|
if cached {
|
||||||
match CACHE.get(&q) {
|
match CACHE.get(&query) {
|
||||||
Some(x) => (*x).clone(),
|
Some(x) => (*x).clone(),
|
||||||
None => serde_json::Value::Null,
|
None => serde_json::Value::Null,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
debug_fetch(&format!("{URL_BASE}/proxy?id={q}"), auth).await
|
debug_fetch(&format!("{URL_BASE}/proxy?id={query}"), auth).await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -60,7 +61,7 @@ pub fn DebugPage() -> impl IntoView {
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td><input type="submit" class="w-100" value="fetch" /></td>
|
<td><input type="submit" class="w-100" value="fetch" /></td>
|
||||||
<td><input type="checkbox" class:loader=loading title="cached" value="cached" node_ref=cached_ref /></td>
|
<td><input type="checkbox" class:loader=loading title="cached" value="cached" prop:checked=cached on:input=move |ev| set_cached.set(event_target_checked(&ev)) /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</form>
|
</form>
|
||||||
|
@ -75,7 +76,7 @@ pub fn DebugPage() -> impl IntoView {
|
||||||
<p class="center">
|
<p class="center">
|
||||||
<input type="checkbox" title="show plain (and valid) json" value="plain" prop:checked=plain on:input=move |ev| set_plain.set(event_target_checked(&ev)) />
|
<input type="checkbox" title="show plain (and valid) json" value="plain" prop:checked=plain on:input=move |ev| set_plain.set(event_target_checked(&ev)) />
|
||||||
" plain :: "
|
" plain :: "
|
||||||
<a href=query target="_blank" rel="nofollow noreferrer">external</a>
|
<a href=move || cached_query().0 target="_blank" rel="nofollow noreferrer">external</a>
|
||||||
" :: "
|
" :: "
|
||||||
<a href="#"
|
<a href="#"
|
||||||
onclick={move ||
|
onclick={move ||
|
||||||
|
@ -106,6 +107,7 @@ async fn debug_fetch(url: &str, token: Auth) -> serde_json::Value {
|
||||||
#[component]
|
#[component]
|
||||||
fn DocumentNode(obj: serde_json::Value, #[prop(optional)] depth: usize) -> impl IntoView {
|
fn DocumentNode(obj: serde_json::Value, #[prop(optional)] depth: usize) -> impl IntoView {
|
||||||
let prefix = " ".repeat(depth);
|
let prefix = " ".repeat(depth);
|
||||||
|
let newline_replace = format!("\n{prefix} ");
|
||||||
match obj {
|
match obj {
|
||||||
serde_json::Value::Null => view! { <b>null</b> }.into_view(),
|
serde_json::Value::Null => view! { <b>null</b> }.into_view(),
|
||||||
serde_json::Value::Bool(x) => view! { <b>{x}</b> }.into_view(),
|
serde_json::Value::Bool(x) => view! { <b>{x}</b> }.into_view(),
|
||||||
|
@ -117,7 +119,7 @@ fn DocumentNode(obj: serde_json::Value, #[prop(optional)] depth: usize) -> impl
|
||||||
}.into_view()
|
}.into_view()
|
||||||
} else {
|
} else {
|
||||||
view! {
|
view! {
|
||||||
"\""<span class="json-text"><i>{s}</i></span>"\""
|
"\""<span class="json-text"><i>{s.replace("<br/>", "<br/>\n").replace('\n', &newline_replace)}</i></span>"\""
|
||||||
}.into_view()
|
}.into_view()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue