* feat: local draft notes with a blank "new note" entry point Writing was tied to publishing: the Feed composer either sits empty or fires a note straight to relays, with nowhere to keep something you're not ready to publish yet. The Note app now supports a draft mode when opened without an id: a blank note kept in localStorage until you publish it or discard it, reachable via a new "New note" button in the Feed toolbar, the Go menu, or the command palette (all already open the Note app with no params). Closes #19 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BYiUtZMQeA5RHggQw73wto * fix: guard against double-publish and dropped relay params Per review: - handlePublish now also checks publish.isPending itself, not just the button's disabled state — a second click landing before React re-renders could otherwise fire mutateAsync twice. - Publishing a draft now merges into the existing params instead of replacing them outright, so relay hints (or anything else already in params) survive the id being added. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BYiUtZMQeA5RHggQw73wto * docs: mark notes app's id param as optional Per review — the draft mode added by this PR means id is no longer required to open the Note app. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BYiUtZMQeA5RHggQw73wto * fix: sync useLocalStorage across same-tab consumers of one key Per review: the Notes app is explicitly non-singleton, so opening two "New Note" windows meant two DraftNote instances writing the same localStorage key independently — the native `storage` event only fires in *other* tabs/documents, never the one that wrote, so the two windows would silently diverge (discard/publish in one wouldn't update the other). useLocalStorage now also dispatches a same-document custom event on every write, and every instance sharing that key listens for it — verified live with two open draft windows staying in sync as one is typed into. Also dropped a redundant `{}` params argument on an openApp() call that every other call site omits when opening with no parameters. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BYiUtZMQeA5RHggQw73wto --------- Co-authored-by: highperfocused <highperfocused@pm.me> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
4.8 KiB
Apps
An app is a component that renders inside a window. It receives its window's parameters, can rename its window and can rewrite its own parameters — and knows nothing else about the OS.
The registry
src/os/registry.ts is the single source of truth. Adding an entry there is all it takes
for an app to appear on the desktop, in the Go menu, in the command palette and in the
About app. There is no router change, no menu update, no icon grid to edit.
interface AppDefinition {
id: string; // 'feed' — also the ?app= value and the window id prefix
title: string; // default window title
description: string; // one line, shown in the palette and About
icon: LucideIcon;
category: 'social' | 'tools' | 'system';
component: LazyExoticComponent<ComponentType<AppProps>>;
defaultSize: Size; // capped to the viewport by fitSize()
minSize: Size; // enforced while resizing
resizable?: boolean; // default true
singleton?: boolean; // default true — a second open focuses the existing window
showOnDesktop?: boolean; // default true
requiresAuth?: boolean;
}
Every component is a React.lazy(() => import('@/apps/<id>')), so each app is its own
code-split chunk and the initial bundle contains only the shell. WindowFrame supplies
the <Suspense> skeleton and an ErrorBoundary around it — a crashing app takes down its
own window, not the desktop.
The contract
interface AppProps {
windowId: string;
params: AppParams; // Record<string, string>
setTitle: (title: string) => void; // truncated to 48 chars by the reducer
setParams: (params: AppParams) => void;
}
params is the app's navigation state, not local state. Putting the current
selection in params rather than useState buys three things at once: the URL describes
what is on screen, a reload restores it, and the state survives the remount when the
window switches between the desktop and mobile shells. The Reader does this with the
selected article; the Feed keeps its scope in local state because a tab choice is not
worth a URL.
setTitle is normally called from an effect once the content is known:
useEffect(() => {
setTitle(name ? `Profile — ${name}` : 'Profile');
}, [name, setTitle]);
Adding an app
- Create
src/apps/<id>/index.tsxwith a default export takingAppProps. - Build the UI from the
AppChromeprimitives (seestyleguide.md) so it fills its window instead of centring a column like a web page. - Add an entry to
APPSinsrc/os/registry.ts. - If the app should be reachable by a NIP-19 identifier, map that identifier to it in
src/pages/NIP19Page.tsx. - Run
npm run test.
A minimal app:
import { useEffect } from 'react';
import { AppBody, AppLayout, AppToolbar } from '@/components/os/AppChrome';
import type { AppProps } from '@/os/types';
export default function ExampleApp({ setTitle }: AppProps) {
useEffect(() => setTitle('Example'), [setTitle]);
return (
<AppLayout>
<AppToolbar>
<span className="text-[13px] font-medium">Example</span>
</AppToolbar>
<AppBody className="p-4">…</AppBody>
</AppLayout>
);
}
The seven apps
| App | id |
Params | Notes |
|---|---|---|---|
| Feed | feed |
— | kind 1 timeline, Following/Global, composer (⌘↵ publishes) |
| Profile | profile |
pubkey, relays? |
kind 0 metadata, the author's notes, follow/unfollow |
| Note | notes |
id?, relays? |
One note and its replies, or a blank local draft when id is absent. Not a singleton |
| Reader | articles |
pubkey?, identifier?, kind?, relays? |
NIP-23 long-form, react-markdown |
| Relays | relays |
— | Connection state, subscription count, measured latency |
| Settings | settings |
— | Theme, relay list, Blossom servers, account, session |
| About | about |
— | What this is, the app list, the shortcuts |
Follow lists are a whole-list replacement
kind 3 replaces the entire contact list. The follow button therefore reads the current list back before writing, or the edit would silently drop everyone else.
Relay latency is a real round trip
A WebSocket gives the browser no ping, so the Relays app times an actual REQ/EOSE
cycle ({ kinds: [1], limit: 1 }, 5s timeout). It is the only honest number available.
useRelayStatus samples socket state once a second — sockets have no change event to
subscribe to — and feeds both the Relays app and the menu bar indicator, so the two can
never disagree.
A closed socket is the resting state, not a fault: relays are opened on demand and dropped after idling. That is why nothing turns red at "0 connected"; only a connection that keeps trying to establish itself gets an amber dot.