2024-04-21 17:43:36 +02:00
|
|
|
use leptos::*;
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
2024-05-01 16:45:27 +02:00
|
|
|
use apb::{target::Addressed, Activity, Object};
|
2024-04-21 17:43:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
#[component]
|
2024-05-01 16:06:46 +02:00
|
|
|
pub fn ActivityLine(activity: crate::Object) -> impl IntoView {
|
2024-04-21 17:43:36 +02:00
|
|
|
let object_id = activity.object().id().unwrap_or_default();
|
|
|
|
let actor_id = activity.actor().id().unwrap_or_default();
|
2024-05-01 16:06:46 +02:00
|
|
|
let actor = CACHE.get_or(&actor_id, serde_json::Value::String(actor_id.clone()).into());
|
2024-04-21 17:43:36 +02:00
|
|
|
let kind = activity.activity_type().unwrap_or(apb::ActivityType::Activity);
|
2024-05-02 02:07:54 +02:00
|
|
|
let href = match kind {
|
|
|
|
apb::ActivityType::Follow => Uri::web(FetchKind::User, &object_id),
|
|
|
|
// TODO for update check what's being updated
|
|
|
|
_ => Uri::web(FetchKind::Object, &object_id),
|
|
|
|
};
|
2024-04-21 17:43:36 +02:00
|
|
|
view! {
|
|
|
|
<div>
|
2024-05-01 16:45:27 +02:00
|
|
|
<span class="ml-1-r">
|
|
|
|
<ActorStrip object=actor />
|
|
|
|
</span>
|
2024-04-22 03:31:51 +02:00
|
|
|
<span style="float:right">
|
2024-04-23 03:31:42 +02:00
|
|
|
<code class="color moreinfo" title={activity.published().map(|x| x.to_rfc2822())} >
|
2024-05-02 02:07:54 +02:00
|
|
|
<a class="upub-title clean" title={object_id} href={href} >
|
2024-04-23 03:31:42 +02:00
|
|
|
{kind.as_ref().to_string()}
|
|
|
|
</a>
|
|
|
|
<PrivacyMarker addressed=activity.addressed() />
|
|
|
|
</code>
|
2024-04-22 03:31:51 +02:00
|
|
|
</span>
|
2024-04-21 17:43:36 +02:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
}
|