🏷️ Folksonomy Aggregator
Community tag telemetry collector. Favorite this charm with tag
"folksonomy-aggregator" for discovery.
{/* Stats */}
{totalEvents}
Total Events
{uniqueScopes}
Unique Scopes
{/* Top Tags */}
Top Tags (All Scopes)
{topTags.map(
(item: { tag: string; count: number }, idx: number) => (
{item.tag} ({item.count})
),
)}
{/* Recent Events */}
Recent Events
{recentEvents.length === 0
? (
No events yet
)
: (
recentEvents.map((event: TagEvent, idx: number) => (
{event.action}
{event.tag}
in
{event.scope}
))
)}
{/* CFC Notice */}
Privacy Note (CFC Planned):{" "}
When Contextual Flow Control is implemented, tags will only appear in
community suggestions if 5+ independent users have added them,
protecting individual choices while enabling collective wisdom.
),
events,
suggestions,
postEvent: handlePostEvent({ events }),
};
});