BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/deso-ui/message-inbox-item
This component no longer exists. It was in deso-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Message Inbox Item

deso-ui/message-inbox-item
RemovedBlock

An item for displaying a single conversation in the message window sidebar.

Install it

npx shadcn@latest add https://ui.deso.com/r/message-inbox-item.json

Source

src/components/deso/message-inbox-item.tsxui.deso.com/r/message-inbox-item.json
1import React from 'react';
2import { UserInfo } from './user-info';
3import { Timestamp } from './timestamp';
4import { cn } from '@/lib/utils/deso';
5import { ActionMenu, ActionMenuItem } from './action-menu';
6import { MoreHorizontal, Check, Archive } from 'lucide-react';
7
8export interface MessageInboxItemProps {
9 publicKey: string;
10 lastMessage: string;
11 lastTimestamp: string | Date;
12 unreadCount?: number;
13 selected?: boolean;
14 onClick?: () => void;
15 className?: string;
16 onMarkAsRead?: () => void;
17 onArchive?: () => void;
18}
19
20export function MessageInboxItem({
21 publicKey,
22 lastMessage,
23 lastTimestamp,
24 unreadCount = 0,
25 selected = false,
26 onClick,
27 className,
28 onMarkAsRead,
29 onArchive,
30}: MessageInboxItemProps) {
31 const handleMenuInteraction = (e: React.MouseEvent) => {
32 e.stopPropagation();
33 };
34
35 return (
36 <div
37 className={cn(
38 'group relative flex items-center gap-2 p-2 cursor-pointer hover:bg-background/50',
39 selected &&
40 'bg-accent border-b border-border/50 bg-background hover:bg-background',
41 !selected && 'border-b border-border/50',
42 className
43 )}
44 onClick={onClick}
45 >
46 <UserInfo
47 publicKey={publicKey}
48 pictureSize="lg"
49 usernameClassName="text-xs"
50 >
51 <div className="flex items-center gap-2 mt-0.5">
52 <span className="truncate text-xs text-muted-foreground max-w-[220px]">
53 {lastMessage}
54 </span>
55 {unreadCount > 0 && (
56 <span
57 className="ml-1 inline-block w-1 h-1 rounded-full bg-red-500 absolute right-3 top-3"
58 title={`${unreadCount} unread`}
59 />
60 )}
61 </div>
62 <Timestamp
63 timestamp={lastTimestamp}
64 className="w-fit text-[10px] text-muted-foreground mt-0.5"
65 format="relative"
66 />
67 </UserInfo>
68
69 <div
70 className="ml-auto opacity-0 group-hover:opacity-100 transition-opacity"
71 onClick={handleMenuInteraction}
72 >
73 <ActionMenu
74 trigger={
75 <div className="p-1.5 rounded-full hover:bg-accent">
76 <MoreHorizontal size={16} />
77 </div>
78 }
79 align="end"
80 >
81 {unreadCount > 0 && onMarkAsRead && (
82 <ActionMenuItem icon={Check} onClick={onMarkAsRead}>
83 Mark as read
84 </ActionMenuItem>
85 )}
86 {onArchive && (
87// … truncated

What it pulls in

Other registry items

  • profile-picture
  • timestamp

Files it writes

  • src/components/deso/message-inbox-item.tsx

Facts

Registry
deso-ui
Type
registry:block
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-01
Last confirmed
13 days ago

Go to the source

ui.deso.com deso-protocol/deso-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex