From a36080742287bad8f657f688d7fec0022dd696a1 Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Mon, 7 Sep 2026 00:48:55 +0200 Subject: feat(client): HelloWorld, the reference application MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every other test of the plugin architecture reads source for the *absence* of app names. That proves nobody wrote a special case for Videos; it cannot prove a genuinely new application works, because there was no new application. This is one. It stores directories, appears as a tab, has a settings pane and lists files, and the node has never heard its name outside a single allow-list entry. Two files and one registry line, which is the claim `docs/refactor-groups.md` §4.1 makes. It ships hidden behind `?dev=1` (`dev: true` in the registry, the same opt-in shape as transport.js's `?trace=1`). Registering it normally would put a toy app in every operator's group; not registering it would prove nothing, since registration is exactly what is claimed to be sufficient. **Adding it found two places where the claim was nearly true rather than true, and both are fixed by making the code less app-specific:** `group-settings.js` fell back to the whole registry when a group had no `enabled_apps` yet — which would have turned a hidden app on for everyone. It asks `availableApps()` now. `group-page.js` wrote out `videoDirectories` / `musicDirectories` / `photoDirectories` by hand, so a fifth app would have needed that file edited. It derives `Directories` from the registry. Neither was found by reading; both were found by adding the app, which is the whole reason it exists. Verified in a real Electron window as well as by the tests: hidden by default, present with the flag, offered its own settings section, and listing exactly the files under its configured folder and its subfolders — not the ones beside it. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_011pvMdvLBG92jyhvD5pD6us --- .../src/meshbay_hub/static/helloworld-app.js | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 packages/meshbay-hub/src/meshbay_hub/static/helloworld-app.js (limited to 'packages/meshbay-hub/src/meshbay_hub/static/helloworld-app.js') diff --git a/packages/meshbay-hub/src/meshbay_hub/static/helloworld-app.js b/packages/meshbay-hub/src/meshbay_hub/static/helloworld-app.js new file mode 100644 index 0000000..01b4ed4 --- /dev/null +++ b/packages/meshbay-hub/src/meshbay_hub/static/helloworld-app.js @@ -0,0 +1,62 @@ +import { html, useMemo } from './vendor/htm-preact.js'; +import { t } from './i18n.js'; +import { Icon } from './icon.js'; +import { formatSize } from './file-utils.js'; + +/** + * The smallest application this platform can host, and the proof that adding + * one costs nothing outside its own two files. + * + * Everything else in `docs/refactor-groups.md` §3 is asserted by tests that + * read source. This is the other kind of evidence: an app nobody wrote a line + * of plumbing for, that stores directories, appears as a tab, and lists files — + * because the registry entry beside it is genuinely all there is. + * + * **Not shipped to operators.** It is registered with `dev: true`, which keeps + * it out of the tab bar and the settings page unless the reader opts in with + * `?dev=1` (same shape as transport.js's `?trace=1`). Deleting the flag would + * put a toy app in everybody's group; deleting the app would leave the claim + * resting entirely on tests that read text. + * + * It takes the standard props — see `docs/apps.md` §2 — and reads + * `helloworldDirectories`, which nothing on the node knows about by name: + * `ops.set_app_directories` keys the row by whatever the app is called. + */ +function HelloWorldApp({ entries, availableEntries, helloworldDirectories, status }) { + const dirs = helloworldDirectories || []; + const pool = availableEntries || entries || []; + + const files = useMemo(() => pool.filter((e) => { + const p = e.path || ''; + return dirs.some((d) => p === d || p.startsWith(d + '/')); + }).slice(0, 200), [pool, dirs]); + + if (status !== 'connected') { + return html`

${t('status.connecting_short')}

`; + } + + return html` +
+

${t('helloworld.greeting')}

+ ${dirs.length === 0 ? html` +

${t('helloworld.no_directory')}

+ ` : html` +

+ ${t('helloworld.counted', { n: files.length })} + ${' — '}${dirs.join(', ')} +

+
    + ${files.map((e) => html` +
  • + <${Icon} name="folder" /> + ${e.name} + ${formatSize(e.size || 0)} +
  • + `)} +
+ `} +
+ `; +} + +export { HelloWorldApp }; -- cgit v1.2.3