2024-04-17 22:07:47 +02:00
|
|
|
use std::collections::BTreeSet;
|
|
|
|
|
|
|
|
use leptos::*;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub struct Timeline {
|
|
|
|
pub feed: RwSignal<Vec<String>>,
|
|
|
|
pub next: RwSignal<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Timeline {
|
|
|
|
pub fn new(url: String) -> Self {
|
|
|
|
let feed = create_rw_signal(vec![]);
|
|
|
|
let next = create_rw_signal(url);
|
|
|
|
Timeline { feed, next }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reset(&self, url: String) {
|
|
|
|
self.feed.set(vec![]);
|
|
|
|
self.next.set(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn more(&self, auth: Signal<Option<String>>) -> reqwest::Result<()> {
|
|
|
|
use apb::{Collection, CollectionPage};
|
|
|
|
|
|
|
|
let feed_url = self.next.get();
|
|
|
|
let collection : serde_json::Value = Http::fetch(&feed_url, auth).await?;
|
|
|
|
let activities : Vec<serde_json::Value> = collection
|
|
|
|
.ordered_items()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut feed = self.feed.get();
|
|
|
|
let mut older = process_activities(activities, auth).await;
|
|
|
|
feed.append(&mut older);
|
|
|
|
self.feed.set(feed);
|
|
|
|
|
|
|
|
if let Some(next) = collection.next().id() {
|
|
|
|
self.next.set(next);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[component]
|
|
|
|
pub fn TimelineFeed(tl: Timeline) -> impl IntoView {
|
|
|
|
let auth = use_context::<Auth>().expect("missing auth context");
|
|
|
|
view! {
|
|
|
|
<For
|
|
|
|
each=move || tl.feed.get()
|
|
|
|
key=|k| k.to_string()
|
|
|
|
children=move |id: String| {
|
|
|
|
match CACHE.get(&id) {
|
|
|
|
Some(object) => {
|
|
|
|
view! {
|
|
|
|
<InlineActivity activity=object />
|
|
|
|
<hr/ >
|
|
|
|
}.into_view()
|
|
|
|
},
|
|
|
|
None => view! {
|
|
|
|
<p><code>{id}</code>" "[<a href={uri}>go</a>]</p>
|
|
|
|
}.into_view(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/ >
|
|
|
|
<div class="center mt-1 mb-1" >
|
|
|
|
<button type="button"
|
|
|
|
on:click=move |_| {
|
|
|
|
spawn_local(async move {
|
|
|
|
if let Err(e) = tl.more(auth).await {
|
|
|
|
tracing::error!("error fetching more items for timeline: {e}");
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
>more</button>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn process_activities(
|
|
|
|
activities: Vec<serde_json::Value>,
|
|
|
|
auth: Signal<Option<String>>,
|
|
|
|
) -> Vec<String> {
|
|
|
|
use apb::{Base, Activity, ActivityMut};
|
|
|
|
let mut sub_tasks = Vec::new();
|
|
|
|
let mut gonna_fetch = BTreeSet::new();
|
|
|
|
let mut out = Vec::new();
|
|
|
|
|
|
|
|
for activity in activities {
|
|
|
|
// save embedded object if present
|
|
|
|
if let Some(object) = activity.object().get() {
|
|
|
|
if let Some(object_uri) = object.id() {
|
|
|
|
CACHE.put(object_uri.to_string(), object.clone());
|
|
|
|
}
|
|
|
|
} else { // try fetching it
|
|
|
|
if let Some(object_id) = activity.object().id() {
|
|
|
|
if !gonna_fetch.contains(&object_id) {
|
|
|
|
gonna_fetch.insert(object_id.clone());
|
|
|
|
sub_tasks.push(fetch_and_update("objects", object_id, auth));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// save activity, removing embedded object
|
|
|
|
let object_id = activity.object().id();
|
|
|
|
if let Some(activity_id) = activity.id() {
|
|
|
|
out.push(activity_id.to_string());
|
|
|
|
CACHE.put(
|
|
|
|
activity_id.to_string(),
|
|
|
|
activity.clone().set_object(apb::Node::maybe_link(object_id))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(uid) = activity.actor().id() {
|
|
|
|
if CACHE.get(&uid).is_none() && !gonna_fetch.contains(&uid) {
|
|
|
|
gonna_fetch.insert(uid.clone());
|
|
|
|
sub_tasks.push(fetch_and_update("users", uid, auth));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
futures::future::join_all(sub_tasks).await;
|
|
|
|
|
|
|
|
out
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn fetch_and_update(kind: &'static str, id: String, auth: Signal<Option<String>>) {
|
2024-04-18 05:00:44 +02:00
|
|
|
match Http::fetch(&Uri::api(kind, &id, false), auth).await {
|
2024-04-17 22:07:47 +02:00
|
|
|
Ok(data) => CACHE.put(id, data),
|
|
|
|
Err(e) => console_warn(&format!("could not fetch '{id}': {e}")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|