use std::sync::Arc; use leptos::*; use leptos_router::*; use crate::prelude::*; use apb::{Base, Object}; #[component] pub fn ObjectPage(tl: Timeline) -> impl IntoView { let params = use_params_map(); let auth = use_context::().expect("missing auth context"); let id = params.get().get("id").cloned().unwrap_or_default(); let uid = uriproxy::uri(URL_BASE, uriproxy::UriClass::Object, &id); let object = create_local_resource( move || params.get().get("id").cloned().unwrap_or_default(), move |oid| async move { let tl_url = format!("{}/page", Uri::api(U::Context, &oid, false)); if !tl.next.get().starts_with(&tl_url) { tl.reset(tl_url); } match CACHE.get(&Uri::full(U::Object, &oid)) { Some(x) => Some(x.clone()), None => { let obj = Http::fetch::(&Uri::api(U::Object, &oid, true), auth).await.ok()?; let obj = Arc::new(obj); if let Some(author) = obj.attributed_to().id() { if let Ok(user) = Http::fetch::( &Uri::api(U::Actor, &author, true), auth ).await { CACHE.put(Uri::full(U::Actor, &author), Arc::new(user)); } } CACHE.put(Uri::full(U::Object, &oid), obj.clone()); Some(obj) } } } ); view! {
objects::view "\u{1f5d8}"
{move || match object.get() { None => view! {

loading ...

}.into_view(), Some(None) => { let uid = uid.clone(); view! {

loading failed"↗"

}.into_view() }, Some(Some(o)) => { let object = o.clone(); view!{
}.into_view() }, }} } }