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/MESHBAY_DESIGN.md` §9.4 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/MESHBAY_DESIGN.md` §9.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(', ')}

`}
`; } export { HelloWorldApp };