Bundles a stretch of in-progress work across the SPA tools so the
tree returns to a coherent shippable state ahead of cutting a new
zddc-server stable image:
- landing: substantial rework of the project picker (sortable/filterable
table, presets refactor, ?projects= filter, ?v= channel propagation,
loading/error states)
- archive: presets cleanup, source.js refactor, filtering/url-state
alignment with the landing page
- mdedit: file-system module split, resizer, file-tree improvements,
base/toc styling tweaks
- transmittal/classifier: small template touch-ups for shared chrome
- shared: build-lib.sh helpers, new favicon.svg
- bootstrap, build.sh: pick up the channel-aware install/track zip
generation
- tests: new landing.spec.js, expanded archive/mdedit/build-label specs
- docs: CLAUDE.md picks up the zddc-server section and freshens the
alpha-build exception note
- regenerated artifacts: install.zip, track-{alpha,beta,stable}.zip,
*_alpha.html — these are produced by `sh build.sh` and per project
convention are committed alongside the source changes
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
/**
|
|
* Global application state and constants
|
|
*/
|
|
|
|
// Set to true to enable verbose console logging for development.
|
|
const DEBUG = false;
|
|
|
|
// Check if File System Access API is available
|
|
const hasFileSystemAccess = 'showDirectoryPicker' in window;
|
|
|
|
// Directory and file handles
|
|
let directoryHandle = null;
|
|
let fileTree = {};
|
|
let currentFileHandle = null;
|
|
|
|
// True when the page is served over HTTP(S) and the file tree is sourced
|
|
// from the server's JSON directory listing instead of the local FS API.
|
|
let serverSourceMode = false;
|
|
|
|
// Map to store editor instances for each file
|
|
// Key: file path, Value: { editor, container, tocContainer, etc. }
|
|
const editorInstances = new Map();
|
|
|
|
// Current TOC max depth (1-6)
|
|
let tocMaxDepth = 3;
|
|
|
|
// Scratchpad ID constant
|
|
const SCRATCHPAD_ID = '__scratchpad__';
|
|
|
|
// Default scratchpad markdown — shown the first time mdedit loads.
|
|
// Acts as both a welcome message and a starter pad for quick notes.
|
|
const SCRATCHPAD_WELCOME = [
|
|
'# Welcome to ZDDC Markdown',
|
|
'',
|
|
'All editing happens locally on your computer — nothing is uploaded.',
|
|
'',
|
|
'Use this **Scratchpad** for quick notes. Download it any time with the ⬇',
|
|
'button on the Scratchpad row in the file list.',
|
|
'',
|
|
'Click **Select Directory** above to open a folder of Markdown files,',
|
|
'or just start typing here.',
|
|
'',
|
|
].join('\n');
|