mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-23 23:10:17 +05:30
Compare commits
73
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b83ba91731 | ||
|
|
0babf97f0e | ||
|
|
eeda3f28eb | ||
|
|
4c00406bcd | ||
|
|
363de75375 | ||
|
|
2e16868f59 | ||
|
|
dd6d97c35d | ||
|
|
0604c65683 | ||
|
|
c43caf3902 | ||
|
|
25dcaaa816 | ||
|
|
c6ec1cef64 | ||
|
|
5fcc282fe0 | ||
|
|
8a95144bf3 | ||
|
|
bc47316746 | ||
|
|
02ce06d364 | ||
|
|
2e3af826f7 | ||
|
|
758dcb4166 | ||
|
|
1f5db511ba | ||
|
|
63c35ef2dc | ||
|
|
c8883e77fe | ||
|
|
8a28c21512 | ||
|
|
d6baa2daf7 | ||
|
|
44624cd4bf | ||
|
|
2334ab30ed | ||
|
|
abcfb03e52 | ||
|
|
6ba3174480 | ||
|
|
b83b86b31e | ||
|
|
f271e27177 | ||
|
|
8dc1ae1c45 | ||
|
|
a353a695b5 | ||
|
|
174eb3d6e9 | ||
|
|
8bada008b3 | ||
|
|
949053a7c5 | ||
|
|
b80e34fcf5 | ||
|
|
11b1c9e13e | ||
|
|
e09853952b | ||
|
|
d43fbaea59 | ||
|
|
66938968db | ||
|
|
5d9c46afc3 | ||
|
|
bf3438902b | ||
|
|
edb5db358a | ||
|
|
6d564261b2 | ||
|
|
f5dcffeb8d | ||
|
|
7095b34280 | ||
|
|
58868eece0 | ||
|
|
cd3385ec69 | ||
|
|
f04a20252f | ||
|
|
e5e14c88ce | ||
|
|
7a5a2ecba6 | ||
|
|
fac0d3d4a6 | ||
|
|
269d4ac028 | ||
|
|
cdc318ebc7 | ||
|
|
0c4043121f | ||
|
|
151be60b03 | ||
|
|
228ee04b09 | ||
|
|
9fd81ff5a0 | ||
|
|
f22cacd554 | ||
|
|
2f3b552608 | ||
|
|
cb27b47b91 | ||
|
|
01e2df44ed | ||
|
|
adfa43c278 | ||
|
|
879600da46 | ||
|
|
7b73ab07d7 | ||
|
|
57bbf91245 | ||
|
|
5178d91187 | ||
|
|
3f0bf911a0 | ||
|
|
2cac075c0e | ||
|
|
94906a068a | ||
|
|
e72b863362 | ||
|
|
d705cfc30b | ||
|
|
02e307f758 | ||
|
|
5ad1d1d4b3 | ||
|
|
f480449301 |
@@ -0,0 +1,103 @@
|
|||||||
|
# CLAUDE.md — MarkdownConverter (master)
|
||||||
|
|
||||||
|
> General code-quality, JavaScript, git, security, and testing standards are in the **global CLAUDE.md**. This file holds project- and branch-specific notes.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
Electron desktop app for Markdown editing and universal file conversion powered by Pandoc. Cross-platform (Win/macOS/Linux). Features: multi-tab editor with live preview, 25+ themes, PDF viewer/editor (merge/split/compress/rotate/watermark/password), export to 20+ formats (PDF/DOCX/ODT/EPUB/HTML/LaTeX/RTF/PPTX), batch conversion, syntax highlighting, diagram support (Mermaid), Git integration, and a plugin system.
|
||||||
|
|
||||||
|
- **Version:** 4.4.5
|
||||||
|
- **License:** MIT
|
||||||
|
- **App ID:** `com.concreteinfo.markdownconverter`
|
||||||
|
|
||||||
|
## Branch Specifics
|
||||||
|
|
||||||
|
This is the **primary/release branch** — a vanilla JavaScript Electron app with no bundler or framework in the renderer. The renderer is a single large `renderer.js` (5,300+ lines) loaded directly via `src/index.html`. All UI is hand-rolled DOM manipulation.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### Main Process (`src/main.js` — 4,260 lines)
|
||||||
|
Monolithic main process file. Contains all IPC handlers, Pandoc invocation, file operations, menu definitions (600+ lines), and window lifecycle. Key modules extracted:
|
||||||
|
- `src/main/PDFOperations.js` — PDF manipulation via `pdf-lib` (merge, split, compress, rotate, delete, reorder, watermark, encrypt, decrypt, permissions)
|
||||||
|
- `src/main/GitOperations.js` — Git status/stage/commit/log via `simple-git`
|
||||||
|
|
||||||
|
### Renderer (`src/renderer.js` — 5,361 lines)
|
||||||
|
Vanilla JS, no framework. Directly manipulates DOM. Loads CodeMirror 6 via `src/editor/codemirror-setup.js`. Uses `marked` + `highlight.js` + `DOMPurify` + `mermaid` for rendering. Lazy-loads sidebar panels, REPL, command palette, zen mode.
|
||||||
|
|
||||||
|
### Preload (`src/preload.js` — 448 lines)
|
||||||
|
Exists as IPC bridge, but **`contextIsolation: false` and `nodeIntegration: true`** — the renderer has full Node access. Preload is effectively a thin passthrough.
|
||||||
|
|
||||||
|
### Security Model
|
||||||
|
- `contextIsolation: false` + `nodeIntegration: true` (legacy; the react-electron branch fixes this)
|
||||||
|
- Pandoc invoked via `execFile` (not `exec`) to prevent shell injection
|
||||||
|
- Path traversal protection: `validatePath()`, `resolveWritablePath()`, blocks sensitive system dirs
|
||||||
|
- Permission handler only allows `clipboard-read`/`clipboard-write`
|
||||||
|
- Rate limiter on conversions (2-second minimum interval)
|
||||||
|
- File size limit: 50MB
|
||||||
|
- Error message sanitization strips absolute paths
|
||||||
|
|
||||||
|
### Plugin System (`src/plugins/`)
|
||||||
|
Manifest-based discovery (`manifest.json`). Built-in `writing-studio` plugin with sprint/goal/snapshot management. Plugin API exposed via `src/plugins/plugin-api.js`.
|
||||||
|
|
||||||
|
### Settings
|
||||||
|
Custom JSON file store at `<userData>/settings.json` (NOT `electron-store` despite the dependency). Recent files at `<userData>/recent-files.json`.
|
||||||
|
|
||||||
|
## System Dependencies
|
||||||
|
|
||||||
|
| Dependency | Required | Notes |
|
||||||
|
|---|---|---|
|
||||||
|
| **Node.js** | >= 20 | Electron 41 bundles Node 20.x |
|
||||||
|
| **Pandoc** | Yes (for exports) | Downloaded to `bin/<platform>/pandoc` via `scripts/download-tools.js` (v3.9.0.2). Falls back to system PATH. Must be present for DOCX/ODT/EPUB/LaTeX/PPTX export. |
|
||||||
|
| **FFmpeg** | Bundled | `ffmpeg-static` npm package; `asarUnpacked` for packaged builds |
|
||||||
|
| **MiKTeX / TeX Live** | Optional | For LaTeX PDF export; MiKTeX PATH injected on Windows automatically |
|
||||||
|
| **ImageMagick** | Optional | Linux image conversion; listed as deb dependency |
|
||||||
|
| **LibreOffice** | Optional | Enhanced document conversion; listed as deb dependency |
|
||||||
|
|
||||||
|
## Development Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm start # Launch Electron app (dev mode)
|
||||||
|
npm test # Jest test suite
|
||||||
|
npm test:watch # Jest in watch mode
|
||||||
|
npm test:coverage # Jest with coverage report
|
||||||
|
npm run lint # ESLint check (src + tests)
|
||||||
|
npm run lint:fix # ESLint auto-fix
|
||||||
|
npm run format # Prettier write
|
||||||
|
npm run format:check # Prettier check only
|
||||||
|
npm run download-tools # Download Pandoc binaries to bin/
|
||||||
|
npm run generate-icons # Generate app icons via sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## Build & Package
|
||||||
|
|
||||||
|
**Tool:** `electron-builder` (v26.0.12), config inline in `package.json` (no separate config file).
|
||||||
|
|
||||||
|
| Target | Platforms |
|
||||||
|
|---|---|
|
||||||
|
| `npm run build` | electron-builder (default platform) |
|
||||||
|
| `npm run build:win` | Windows: NSIS installer + portable + zip (x64) |
|
||||||
|
| `npm run build:mac` | macOS: default dmg |
|
||||||
|
| `npm run build:linux` | Linux: deb + AppImage + snap |
|
||||||
|
| `npm run dist` | Build without publish |
|
||||||
|
| `npm run dist:all` | Build for all platforms |
|
||||||
|
|
||||||
|
**Bundled with builds:** Pandoc binary per platform. FFmpeg via `ffmpeg-static` (asarUnpacked). NSIS installer uses custom script at `scripts/nsis-installer.nsh`.
|
||||||
|
|
||||||
|
**Output:** `dist/` directory.
|
||||||
|
|
||||||
|
**CI:** GitHub Actions workflows in `.github/workflows/` (ci.yml, release.yml).
|
||||||
|
|
||||||
|
## Project Conventions / Gotchas
|
||||||
|
|
||||||
|
- **No bundler/transpilation.** The app uses vanilla CommonJS JavaScript. `src/main.js` is loaded directly by Electron. No webpack, no Vite, no TypeScript, no Babel.
|
||||||
|
- **Monolithic files.** `main.js` (4,260 lines) and `renderer.js` (5,361 lines) contain most logic. Not ideal but is the current state of this branch.
|
||||||
|
- **CodeMirror 6** for the editor, configured in `src/editor/codemirror-setup.js`.
|
||||||
|
- **PDF rendering** uses `pdfjs-dist`; **PDF manipulation** uses `pdf-lib` in the main process.
|
||||||
|
- **Renderer security is weak** — full Node access in renderer. Do NOT introduce new privileged renderer code without understanding this.
|
||||||
|
- **Pandoc is external.** Must be installed separately or downloaded via `npm run download-tools`. HTML and built-in PDF export work without Pandoc; other formats require it.
|
||||||
|
- **PDF export fallback chain:** xelatex -> pdflatex -> lualatex -> Electron built-in `printToPDF()`.
|
||||||
|
- **ESLint flat config** (`eslint.config.js`) with ECMAScript 2022. Prettier with 2-space indent, single quotes, semicolons, 100-char width.
|
||||||
|
- **Tests:** Jest with jsdom environment, 15% coverage threshold. 24 test files in `tests/`.
|
||||||
|
- **File associations:** `.md`, `.markdown`, `.pdf` registered at install.
|
||||||
|
- **Single instance lock** enforced via `app.requestSingleInstanceLock()`.
|
||||||
|
- **Adapters layer** (`src/adapters/`) abstracts file system operations for potential future non-Electron targets.
|
||||||
@@ -162,4 +162,4 @@ Amit Haridas (amit.wh@gmail.com)
|
|||||||
|
|
||||||
## Version
|
## Version
|
||||||
|
|
||||||
v4.1.0
|
v4.5.0
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright (c) 2014, The Fira Code Project Authors (https://github.com/tonsky/FiraCode)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
http://scripts.sil.org/OFL
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://scripts.sil.org/OFL
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 361 KiB |
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://ui.shadcn.com/schema.json",
|
|
||||||
"style": "new-york",
|
|
||||||
"rsc": false,
|
|
||||||
"tsx": true,
|
|
||||||
"tailwind": {
|
|
||||||
"config": "tailwind.config.js",
|
|
||||||
"css": "src/renderer/styles/globals.css",
|
|
||||||
"baseColor": "neutral",
|
|
||||||
"cssVariables": true,
|
|
||||||
"prefix": ""
|
|
||||||
},
|
|
||||||
"aliases": {
|
|
||||||
"components": "@/components",
|
|
||||||
"ui": "@/components/ui",
|
|
||||||
"lib": "@/lib",
|
|
||||||
"hooks": "@/hooks"
|
|
||||||
},
|
|
||||||
"iconLibrary": "lucide"
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,759 @@
|
|||||||
|
# Feature Audit, Bug Fixes, New Features & Security Hardening Implementation Plan
|
||||||
|
|
||||||
|
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
|
||||||
|
|
||||||
|
**Goal:** Fix every verified non-working feature in MarkdownConverter, build out the orphaned image/audio/video converter subsystem, add 9 new features extending existing architecture, remediate a critical Pandoc argument-injection vulnerability plus other security findings, then produce a clean local release build.
|
||||||
|
|
||||||
|
**Architecture:** Vanilla JS Electron app (`contextIsolation: false`, `nodeIntegration: true`). Main process (`src/main.js`, ~5000 lines) owns all IPC handlers, dialogs, and external-tool invocation (Pandoc, ffmpeg, ImageMagick, LibreOffice) via `execFile`. Renderer (`src/renderer.js`, ~6150 lines) is vanilla DOM manipulation; it uses `ipcRenderer` both directly (legacy) and via the whitelisted `window.electronAPI` bridge (`src/preload.js`). Feature modules live under `src/main/*.js` (PDF, Git, font embedding) and `src/plugins/*.js` (plugin system). Follow this existing pattern for all new code — do not introduce a bundler, framework, or TypeScript.
|
||||||
|
|
||||||
|
**Tech Stack:** Electron 41, Node 20, Pandoc (external binary via `getPandocPath()`), ffmpeg-static (bundled, via `getFFmpegPath()`), `sharp` (image ops, currently a devDependency — must move to `dependencies`), `pdf-lib` (`src/main/PDFOperations.js`), `simple-git` (`src/main/GitOperations.js`), Jest for tests, ESLint flat config + Prettier.
|
||||||
|
|
||||||
|
**Spec:** This plan is self-originated from a live codebase audit (two parallel research passes + manual verification of every finding against `src/main.js`, `src/preload.js`, `src/renderer.js`, `src/main/GitOperations.js`, `src/main/PDFOperations.js`, `src/plugins/plugin-context.js`). No separate spec doc exists; each task below states the verified current behavior and the required end behavior.
|
||||||
|
|
||||||
|
## Global Constraints
|
||||||
|
|
||||||
|
- `contextIsolation: false` / `nodeIntegration: true` is the existing (weak) security model for this branch — do not attempt to flip it as part of this plan; that is a separate, much larger migration tracked elsewhere. Do not make the security posture worse than it already is.
|
||||||
|
- All new external-process invocation MUST use `execFile` with an explicit argument array — **never** build a shell-style command string and re-tokenize it. This is the root cause of Finding SEC-1 below; do not repeat the pattern anywhere new.
|
||||||
|
- All new/changed IPC channels must be added to the correct whitelist array in `src/preload.js` (`ALLOWED_SEND_CHANNELS` for renderer→main, `ALLOWED_RECEIVE_CHANNELS` for main→renderer) — an unlisted channel is silently blocked (see `preload.js:261-282`).
|
||||||
|
- 2-space indent, single quotes, semicolons, 100-char width (Prettier). Run `npm run lint` and `npm run format:check` before every commit; both must pass.
|
||||||
|
- `npm test` (Jest, jsdom) must stay green (247 tests / 32 suites passing at plan start) after every task.
|
||||||
|
- File size limit for user-opened files is `MAX_FILE_SIZE_MB = 50` (`main.js:57-58`) — reuse this constant for any new file-accepting handler, don't invent a new limit.
|
||||||
|
- Error messages shown to the user must go through `sanitizeErrorMessage()` (`main.js:61-70`) if they might contain absolute paths.
|
||||||
|
- No forbidden markers (`TODO`, `FIXME`, `stub`, `placeholder`, `coming soon`, etc.) in any changed file.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase A — Fix Verified Non-Working Features
|
||||||
|
|
||||||
|
### Task 1: Fix "Open PDF File..." menu item (wrong IPC channel)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main.js:1666-1684` (`openPDFFile()`)
|
||||||
|
|
||||||
|
**Verified current behavior:** `openPDFFile()` sends `mainWindow.webContents.send('open-pdf-viewer', files[0])` (line 1682). No listener for `'open-pdf-viewer'` exists anywhere in the repo. The working PDF-editor open path is `show-pdf-editor-dialog`, whose renderer listener is `ipcRenderer.on('show-pdf-editor-dialog', (event, operation, openedFilePath) => {...})` (`renderer.js:3685`).
|
||||||
|
|
||||||
|
- [ ] **Step 1:** In `openPDFFile()`, replace the send call:
|
||||||
|
```javascript
|
||||||
|
mainWindow.webContents.send('show-pdf-editor-dialog', null, files[0]);
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Manually verify: `npm start`, open a PDF via File → Open PDF File (or the equivalent menu entry), confirm the PDF editor dialog opens with the file loaded (same result as opening it via the PDF toolbar button).
|
||||||
|
- [ ] **Step 3:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 4:** Commit: `git add src/main.js && git commit -m "fix(pdf): route Open PDF File menu item to the working editor dialog channel"`
|
||||||
|
|
||||||
|
### Task 2: Fix "Clear Recent Files" silent no-op
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main.js:731-736` (menu click handler), `src/main.js:4480-4491` (`ipcMain.on('clear-recent-files', ...)`)
|
||||||
|
|
||||||
|
**Verified current behavior:** The menu click handler does `mainWindow.webContents.send('clear-recent-files')` (main→renderer), but nothing in the renderer listens for that channel. The actual deletion logic lives in `ipcMain.on('clear-recent-files', (event) => {...})`, which only fires on a renderer→main `.send`/`.invoke` that never happens from this menu path. `preload.js:342` exposes a separate `clearRecent: () => ipcRenderer.send('clear-recent-files')` helper that IS the correct renderer→main direction, but the menu item bypasses it entirely by sending the same channel name in the wrong direction.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Extract the deletion logic into a standalone function above the `ipcMain.on` registration:
|
||||||
|
```javascript
|
||||||
|
function clearRecentFilesOnDisk() {
|
||||||
|
const userDataPath = app.getPath('userData');
|
||||||
|
const recentFilesPath = path.join(userDataPath, 'recent-files.json');
|
||||||
|
fs.writeFileSync(recentFilesPath, JSON.stringify([], null, 2));
|
||||||
|
createMenu();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Update the `ipcMain.on` handler to use it:
|
||||||
|
```javascript
|
||||||
|
ipcMain.on('clear-recent-files', (event) => {
|
||||||
|
try {
|
||||||
|
clearRecentFilesOnDisk();
|
||||||
|
event.reply('recent-files-cleared');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error clearing recent files:', error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 3:** Update the menu click handler (`main.js:731-736`) to call the main-process function directly and notify the renderer the same way the working path does:
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
label: 'Clear Recent Files',
|
||||||
|
click: () => {
|
||||||
|
try {
|
||||||
|
clearRecentFilesOnDisk();
|
||||||
|
mainWindow.webContents.send('recent-files-cleared');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error clearing recent files:', error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
```
|
||||||
|
- [ ] **Step 4:** Manually verify: open a few recent files, use File menu → Clear Recent Files, confirm the Recent Files submenu is empty afterward.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add src/main.js && git commit -m "fix(menu): make Clear Recent Files actually clear the list"`
|
||||||
|
|
||||||
|
### Task 3: Wire "Insert Template" submenu (content already exists, just needs a listener)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (near the existing `templates` sidebar-panel registration, ~line 1744-1758)
|
||||||
|
|
||||||
|
**Verified current behavior:** `main.js:811-847` sends `mainWindow.webContents.send('load-template-menu', '<file>.md')` for 10 menu items. `'load-template-menu'` IS already in `ALLOWED_RECEIVE_CHANNELS` (`preload.js:241`) but nothing in the renderer listens for it — **however** the underlying feature is fully implemented already: `src/templates/*.md` contains real content for all 10 templates, `ipcMain.handle('load-template', ...)` (`main.js:4641-4649`) reads them, and the sidebar Templates panel (`renderer.js:1744-1758`) already does exactly the load-into-new-tab flow needed. Do not author new template content — reuse the existing flow.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Extract the existing inline callback at `renderer.js:1746-1757` into a shared named function so both the sidebar panel and the new menu listener use it:
|
||||||
|
```javascript
|
||||||
|
async function loadTemplateIntoNewTab(file) {
|
||||||
|
const templateContent = await ipcRenderer.invoke('load-template', file);
|
||||||
|
if (templateContent) {
|
||||||
|
const content = templateContent.replace(/\{\{DATE\}\}/g, new Date().toISOString().split('T')[0]);
|
||||||
|
tabManager.createNewTab();
|
||||||
|
const tab = tabManager.tabs.get(tabManager.activeTabId);
|
||||||
|
tabManager.setEditorContent(tab.id, content);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Place this near the top of the sidebar-initialization block (wherever `tabManager` is already in scope at that point), then replace the sidebar panel's inline callback with `render: (container) => getRenderTemplatesPanel()(container, loadTemplateIntoNewTab)`.
|
||||||
|
- [ ] **Step 2:** Add a listener for the menu channel, near the other `ipcRenderer.on(...)` registrations in the same initialization area:
|
||||||
|
```javascript
|
||||||
|
ipcRenderer.on('load-template-menu', (event, file) => {
|
||||||
|
loadTemplateIntoNewTab(file);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 3:** Manually verify: File → New from Template → Blog Post (and 2-3 others), confirm a new tab opens with the real template content, `{{DATE}}` replaced with today's date.
|
||||||
|
- [ ] **Step 4:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 5:** Commit: `git add src/renderer.js && git commit -m "fix(templates): wire New from Template menu to existing template-loading flow"`
|
||||||
|
|
||||||
|
### Task 4: Wire Command Palette / Sidebar / Bottom Panel menu toggles
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (near command palette init ~line 2045, sidebar manager init ~line 1703, bottom/REPL panel init ~line 1007)
|
||||||
|
|
||||||
|
**Verified current behavior:** `main.js:1047,1057-1069,1075` send `toggle-command-palette`, `toggle-sidebar-panel` (with a panel-id arg: `explorer`/`git`/`snippets`/`templates`), and `toggle-bottom-panel`. All three channels are already whitelisted in `ALLOWED_RECEIVE_CHANNELS` (`preload.js:242-244`). None have a renderer listener — the Command Palette currently only opens via its own `Ctrl+Shift+P` keydown handler (`renderer.js:2045-2049`), sidebar panels only toggle via their own buttons, and the bottom/REPL panel only auto-shows when a code block runs (`renderer.js:1007`).
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Find the existing function/method that the `Ctrl+Shift+P` keydown handler calls to open the command palette (read `renderer.js:2040-2060` to get its exact name), then add:
|
||||||
|
```javascript
|
||||||
|
ipcRenderer.on('toggle-command-palette', () => {
|
||||||
|
/* call the same open/toggle function the Ctrl+Shift+P handler uses */
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Find the existing method on `sidebarManager` used to show/activate a panel by id (read the `SidebarManager` class, likely in `src/sidebar/` — grep `class SidebarManager`), then add:
|
||||||
|
```javascript
|
||||||
|
ipcRenderer.on('toggle-sidebar-panel', (event, panelId) => {
|
||||||
|
/* call sidebarManager's existing toggle/show method with panelId */
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 3:** Find the existing function that shows/hides the bottom REPL panel (read `renderer.js` around line 997-1012), then add:
|
||||||
|
```javascript
|
||||||
|
ipcRenderer.on('toggle-bottom-panel', () => {
|
||||||
|
/* call the same show/hide function used when a code block runs, but toggle rather than force-show */
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 4:** Manually verify each of the three View-menu items now actually opens/toggles its target.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add src/renderer.js && git commit -m "fix(menu): wire Command Palette / Sidebar / Bottom Panel View-menu toggles"`
|
||||||
|
|
||||||
|
### Task 5: Fix broken `git-diff` IPC call (renderer invokes a channel main never handles)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main/GitOperations.js`, `src/main.js` (near the other `git-*` handlers, ~line 4889-4904)
|
||||||
|
- Modify: `src/sidebar/git-panel.js`, `src/renderer.js:1714-1731`
|
||||||
|
|
||||||
|
**Verified current behavior:** `renderer.js:1718-1721` passes `gitDiff: (file) => ipcRenderer.invoke('git-diff', { file })` into the Git sidebar panel, but `src/main.js` has **no** `ipcMain.handle('git-diff', ...)` registered anywhere (only `git-status`, `git-stage`, `git-commit`, `git-log` exist at lines 4889-4904), and `GitOperations.js` exports no `diff` function. Additionally, `src/sidebar/git-panel.js:1` receives this callback as a parameter literally named `_gitDiff` (underscore-prefixed = intentionally unused) — the panel never even calls it. This is dead on both ends. Fold the real fix into Task 14 (Phase C, new git features) rather than doing a throwaway partial fix here.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** No action in this task — cross-reference only. Mark this task done once Task 14 lands, since it fully supersedes it.
|
||||||
|
|
||||||
|
### Task 6: Whitelist and wire "Document Compare" menu item
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/preload.js` (`ALLOWED_RECEIVE_CHANNELS`)
|
||||||
|
|
||||||
|
**Verified current behavior:** `main.js:1411-1413` sends `mainWindow.webContents.send('show-document-compare')`, but `'show-document-compare'` is **not** in `ALLOWED_RECEIVE_CHANNELS` at all (unlike the other dead channels, which were at least whitelisted) — per `preload.js:288-...` the `on()` wrapper drops unlisted channels. Building the actual compare UI is Task 20 (Phase C) — this task only covers the whitelist fix; C8 covers the working listener + UI.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Add `'show-document-compare'` to `ALLOWED_RECEIVE_CHANNELS` in `src/preload.js` (alongside the other `show-*-dialog`/`show-*-converter` entries for consistency).
|
||||||
|
- [ ] **Step 2:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 3:** Commit: `git add src/preload.js && git commit -m "fix(preload): whitelist show-document-compare channel"`
|
||||||
|
- Do not close this task's manual-verification step until Task 20 lands (there is nothing to see until the listener exists).
|
||||||
|
|
||||||
|
### Task 7: Reachable UI control for monospace font settings
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (Settings panel/dialog — locate existing settings UI, e.g. grep `showSettingsDialog` or similar)
|
||||||
|
|
||||||
|
**Verified current behavior:** `ipcMain.handle('set-monospace-settings', ...)` exists and works (`main.js:375` area) and the getter is used at `renderer.js:1857`, but no UI control anywhere calls the setter — a user cannot actually change the monospace font/ligature preference.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Read `main.js` around the `get-monospace-settings`/`set-monospace-settings` handlers to learn the exact settings shape (property names, e.g. `{ enabled, fontFamily, ligatures }` — use whatever the real shape is, do not invent fields).
|
||||||
|
- [ ] **Step 2:** Locate the app's existing Settings panel/dialog in `renderer.js` (grep for where `get-monospace-settings` is already invoked at line ~1857 to find the surrounding UI section) and add a toggle + font-family control there, following the existing settings-control markup/CSS pattern already used for other settings in that same dialog.
|
||||||
|
- [ ] **Step 3:** Wire the control's change handler to `ipcRenderer.invoke('set-monospace-settings', {...})` and apply the returned/echoed setting immediately (toggle the body class the same way the existing `renderer.js:1857`-area code does on load).
|
||||||
|
- [ ] **Step 4:** Manually verify: toggle monospace font in Settings, confirm the editor/preview font changes live, and confirm the preference persists across an app restart.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add src/renderer.js && git commit -m "feat(settings): expose monospace font toggle in Settings UI"`
|
||||||
|
|
||||||
|
### Task 8: Dependency hygiene — `jszip` and `sharp`
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `package.json`
|
||||||
|
|
||||||
|
**Verified current behavior:** `src/main/DocxFontEmbedder.js` and `src/main/EpubFontEmbedder.js` `require('jszip')` directly, but `jszip` is declared only under `overrides`, not `dependencies` — it currently resolves only via hoisting from a transitive dependency. `sharp` is declared under `devDependencies` (used today only by `scripts/generate-icons.js` at build time) but Phase B (media converter) will require it at **runtime** in the packaged app, where devDependencies are not installed/bundled.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** In `package.json`, add `"jszip": "^3.10.1"` to `dependencies` (matching the version already pinned in `overrides`; keep the `overrides` entry too — it still forces the version for transitive consumers).
|
||||||
|
- [ ] **Step 2:** Move `"sharp": "^0.34.3"` from `devDependencies` to `dependencies`.
|
||||||
|
- [ ] **Step 3:** Add `"node_modules/sharp/**"` to the `build.asarUnpack` array in `package.json` (alongside the existing `ffmpeg-static` and `assets/fonts` entries) — `sharp` ships native `.node` bindings that must not be packed into `app.asar`.
|
||||||
|
- [ ] **Step 4:** Run `npm install` to regenerate the lockfile, then `npm test` to confirm nothing broke.
|
||||||
|
- [ ] **Step 5:** Commit: `git add package.json package-lock.json && git commit -m "fix(deps): move jszip and sharp to runtime dependencies, unpack sharp from asar"`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase B — Build Out Image/Audio/Video Converter (currently orphaned dead API)
|
||||||
|
|
||||||
|
**Context:** `preload.js` whitelists 16 channels (`image-convert`, `image-batch-convert`, `image-resize`, `image-compress`, `image-rotate`, `audio-convert`, `audio-batch-convert`, `audio-extract`, `audio-trim`, `audio-merge`, `video-convert`, `video-batch-convert`, `video-compress`, `video-trim`, `video-frames`, `video-gif`) and 3 receive channels (`show-image-converter`, `show-audio-converter`, `show-video-converter`), but **zero** `ipcMain` handlers exist for any of them and no menu/UI ever triggers them. This is distinct from the already-working generic "Universal Converter" (`universal-convert`/`universal-convert-batch`, `main.js:2377-2622`) which does plain format-to-format conversion via bare `convertWithImageMagick`/`convertWithFFmpeg` calls with no operation-specific options. Phase B builds the **operation-specific** toolkit (resize/compress/rotate for images; trim/merge/extract for audio; compress/trim/frames/gif for video) as a new `src/main/MediaOperations.js` module, modeled directly on the existing `src/main/PDFOperations.js` pattern (single `executeOperation(operation, data)` dispatcher).
|
||||||
|
|
||||||
|
### Task 9: Image operations backend (`sharp`-based)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Create: `src/main/ImageOperations.js`
|
||||||
|
- Create: `tests/main/ImageOperations.test.js`
|
||||||
|
- Modify: `src/main.js` (register handlers near the PDF operation handlers, ~line 4535)
|
||||||
|
|
||||||
|
**Interfaces:**
|
||||||
|
- Produces: `module.exports = { executeOperation, imageConvert, imageResize, imageCompress, imageRotate }` — `executeOperation(operation, data)` where `operation` is one of `'convert' | 'resize' | 'compress' | 'rotate'` and `data` always includes `{ inputPath, outputPath }` plus operation-specific fields below.
|
||||||
|
- `imageConvert(data)`: `data = { inputPath, outputPath, format }` (`format` is one of sharp's supported output formats: `jpeg|png|webp|avif|tiff|gif`) → uses `sharp(inputPath).toFormat(format).toFile(outputPath)`.
|
||||||
|
- `imageResize(data)`: `data = { inputPath, outputPath, width, height, fit }` (`fit` one of `'cover'|'contain'|'fill'|'inside'|'outside'`, default `'inside'`) → `sharp(inputPath).resize({ width, height, fit }).toFile(outputPath)`. `width`/`height` may be `null` (sharp allows omitting one dimension to preserve aspect ratio) but not both.
|
||||||
|
- `imageCompress(data)`: `data = { inputPath, outputPath, quality }` (`quality` integer 1-100, default 80) → route by output extension: jpeg/webp/avif use `{ quality }`, png uses `{ quality, compressionLevel: 9 }`.
|
||||||
|
- `imageRotate(data)`: `data = { inputPath, outputPath, angle }` (`angle` integer degrees, any value — sharp's `.rotate(angle)` handles non-90 multiples by expanding canvas) → `sharp(inputPath).rotate(angle).toFile(outputPath)`.
|
||||||
|
- All four validate `inputPath` exists and is ≤ `MAX_FILE_SIZE` (import the same 50MB constant convention used in `main.js` — pass it in as a parameter from `main.js`, do not redefine a second limit).
|
||||||
|
- All four return `{ success: true, outputPath }` on success or throw an `Error` with a sanitized (no absolute-path leakage beyond what's already the app's convention) message on failure — `main.js` wraps calls in try/catch per the PDFOperations pattern.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write `tests/main/ImageOperations.test.js` covering all four operations against small fixture images (generate fixtures at test time with `sharp` itself — e.g. a 100x100 red PNG buffer — do not commit binary fixtures):
|
||||||
|
```javascript
|
||||||
|
const sharp = require('sharp');
|
||||||
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
|
const path = require('path');
|
||||||
|
const ImageOperations = require('../../src/main/ImageOperations');
|
||||||
|
|
||||||
|
describe('ImageOperations', () => {
|
||||||
|
let tmpDir, inputPath;
|
||||||
|
beforeEach(async () => {
|
||||||
|
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'imgops_'));
|
||||||
|
inputPath = path.join(tmpDir, 'in.png');
|
||||||
|
await sharp({ create: { width: 100, height: 100, channels: 3, background: { r: 255, g: 0, b: 0 } } })
|
||||||
|
.png()
|
||||||
|
.toFile(inputPath);
|
||||||
|
});
|
||||||
|
afterEach(() => fs.rmSync(tmpDir, { recursive: true, force: true }));
|
||||||
|
|
||||||
|
test('imageConvert converts PNG to JPEG', async () => {
|
||||||
|
const outputPath = path.join(tmpDir, 'out.jpg');
|
||||||
|
const result = await ImageOperations.imageConvert({ inputPath, outputPath, format: 'jpeg' });
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(fs.existsSync(outputPath)).toBe(true);
|
||||||
|
const meta = await sharp(outputPath).metadata();
|
||||||
|
expect(meta.format).toBe('jpeg');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('imageResize resizes to given width preserving aspect', async () => {
|
||||||
|
const outputPath = path.join(tmpDir, 'out.png');
|
||||||
|
await ImageOperations.imageResize({ inputPath, outputPath, width: 50, height: null, fit: 'inside' });
|
||||||
|
const meta = await sharp(outputPath).metadata();
|
||||||
|
expect(meta.width).toBe(50);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('imageRotate rotates by given angle', async () => {
|
||||||
|
const outputPath = path.join(tmpDir, 'out.png');
|
||||||
|
await ImageOperations.imageRotate({ inputPath, outputPath, angle: 90 });
|
||||||
|
const meta = await sharp(outputPath).metadata();
|
||||||
|
expect(meta.width).toBe(100); // 90deg on square stays square
|
||||||
|
});
|
||||||
|
|
||||||
|
test('imageCompress produces a smaller or equal-size JPEG at low quality', async () => {
|
||||||
|
const jpegPath = path.join(tmpDir, 'in.jpg');
|
||||||
|
await sharp(inputPath).jpeg({ quality: 100 }).toFile(jpegPath);
|
||||||
|
const outputPath = path.join(tmpDir, 'compressed.jpg');
|
||||||
|
await ImageOperations.imageCompress({ inputPath: jpegPath, outputPath, quality: 10 });
|
||||||
|
expect(fs.statSync(outputPath).size).toBeLessThanOrEqual(fs.statSync(jpegPath).size);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('executeOperation dispatches to the correct function', async () => {
|
||||||
|
const outputPath = path.join(tmpDir, 'out.png');
|
||||||
|
const result = await ImageOperations.executeOperation('rotate', { inputPath, outputPath, angle: 180 });
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('unknown operation throws', async () => {
|
||||||
|
await expect(ImageOperations.executeOperation('bogus', {})).rejects.toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Run `npx jest tests/main/ImageOperations.test.js` — expect FAIL (module doesn't exist).
|
||||||
|
- [ ] **Step 3:** Implement `src/main/ImageOperations.js` per the interfaces above, using `sharp`. Model the file's shape (JSDoc header, `executeOperation` switch, `module.exports`) on `src/main/PDFOperations.js:404-436`.
|
||||||
|
- [ ] **Step 4:** Run `npx jest tests/main/ImageOperations.test.js` — expect PASS.
|
||||||
|
- [ ] **Step 5:** In `src/main.js`, add a single dispatcher handler near the PDF operation handler (`process-pdf-operation`, ~line 4535):
|
||||||
|
```javascript
|
||||||
|
const ImageOperations = require('./main/ImageOperations');
|
||||||
|
// ...
|
||||||
|
ipcMain.handle('process-image-operation', async (event, { operation, data }) => {
|
||||||
|
try {
|
||||||
|
return await ImageOperations.executeOperation(operation, data);
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: sanitizeErrorMessage(error.message) };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
Note: this collapses the originally-whitelisted 5 separate channel names (`image-convert`, `image-batch-convert`, `image-resize`, `image-compress`, `image-rotate`) into one operation-dispatch channel, matching the existing `process-pdf-operation` pattern — remove the 5 stale names from `ALLOWED_SEND_CHANNELS` in `src/preload.js` and add `'process-image-operation'` in their place (also add `'select-image-folder'` if batch needs folder selection — mirror `select-pdf-folder`). Batch (`image-batch-convert`) is handled in Task 12.
|
||||||
|
- [ ] **Step 6:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 7:** Commit: `git add src/main/ImageOperations.js tests/main/ImageOperations.test.js src/main.js src/preload.js && git commit -m "feat(image): implement sharp-based image operations backend"`
|
||||||
|
|
||||||
|
### Task 10: Audio operations backend (`ffmpeg`-based)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Create: `src/main/AudioOperations.js`
|
||||||
|
- Create: `tests/main/AudioOperations.test.js`
|
||||||
|
- Modify: `src/main.js`
|
||||||
|
|
||||||
|
**Interfaces:**
|
||||||
|
- `module.exports = { executeOperation, buildConvertArgs, buildTrimArgs, buildExtractArgs, buildMergeArgs }`. Because ffmpeg is an external binary, this module exposes **pure argument-builder functions** (easily unit-testable without invoking a real binary) plus `executeOperation`, which is the only piece that actually spawns ffmpeg via `execFile` — inject the ffmpeg path and an `execFileFn` (defaulting to Node's real `execFile`) as parameters so tests can stub it.
|
||||||
|
- `buildConvertArgs({ inputPath, outputPath, format })` → returns `string[]` args, e.g. `['-i', inputPath, '-y', outputPath]` (format is implied by `outputPath`'s extension — ffmpeg infers it; do not pass a separate `-f` unless `format` is explicitly given and differs from the extension, in which case append `['-f', format]` before `outputPath`).
|
||||||
|
- `buildTrimArgs({ inputPath, outputPath, startTime, duration })` → `['-i', inputPath, '-ss', String(startTime), '-t', String(duration), '-y', outputPath]`. `startTime`/`duration` are seconds (numbers), validate they are finite non-negative numbers before building args (throw `Error('Invalid trim range')` otherwise — this is the injection guard, since these become argv elements passed straight to execFile with no shell involved, but malformed values should still fail fast rather than reach ffmpeg).
|
||||||
|
- `buildExtractArgs({ inputPath, outputPath })` → extracts the audio track from a video/audio file: `['-i', inputPath, '-vn', '-acodec', 'copy', '-y', outputPath]` (fallback if codec copy fails: caller retries without `-acodec copy`, letting ffmpeg transcode — implement this retry inside `executeOperation`'s `'extract'` case, not in the pure builder).
|
||||||
|
- `buildMergeArgs({ inputPaths, outputPath })` → `inputPaths` is `string[]` (2+ files) → build a temp concat-list file is the safe approach; but since this module must stay pure/testable, `buildMergeArgs` returns `{ args, concatListContent }` where `concatListContent` is the `file '<path>'` lines the caller writes to a temp file, and `args = ['-f', 'concat', '-safe', '0', '-i', tempListPath, '-c', 'copy', '-y', outputPath]` (caller supplies `tempListPath` after writing the file — see `executeOperation`'s `'merge'` case).
|
||||||
|
- `executeOperation(operation, data, { ffmpegPath, execFileFn } = {})` where `operation` is `'convert'|'trim'|'extract'|'merge'`, defaults `ffmpegPath` to the real `getFFmpegPath()`-resolved path (passed in from `main.js`, not re-implemented here) and `execFileFn` to `require('child_process').execFile`. Returns a Promise resolving `{ success: true, outputPath }`.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write `tests/main/AudioOperations.test.js` testing the pure builders directly (no real ffmpeg spawn needed for these) plus one `executeOperation` test with a stubbed `execFileFn`:
|
||||||
|
```javascript
|
||||||
|
const AudioOperations = require('../../src/main/AudioOperations');
|
||||||
|
|
||||||
|
describe('AudioOperations argument builders', () => {
|
||||||
|
test('buildConvertArgs builds correct ffmpeg args', () => {
|
||||||
|
const args = AudioOperations.buildConvertArgs({ inputPath: '/a.wav', outputPath: '/b.mp3' });
|
||||||
|
expect(args).toEqual(['-i', '/a.wav', '-y', '/b.mp3']);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('buildTrimArgs builds correct trim args', () => {
|
||||||
|
const args = AudioOperations.buildTrimArgs({ inputPath: '/a.mp3', outputPath: '/b.mp3', startTime: 5, duration: 10 });
|
||||||
|
expect(args).toEqual(['-i', '/a.mp3', '-ss', '5', '-t', '10', '-y', '/b.mp3']);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('buildTrimArgs rejects non-finite startTime', () => {
|
||||||
|
expect(() =>
|
||||||
|
AudioOperations.buildTrimArgs({ inputPath: '/a.mp3', outputPath: '/b.mp3', startTime: NaN, duration: 10 })
|
||||||
|
).toThrow('Invalid trim range');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('buildMergeArgs builds concat-demuxer args and list content', () => {
|
||||||
|
const { args, concatListContent } = AudioOperations.buildMergeArgs({
|
||||||
|
inputPaths: ['/a.mp3', '/b.mp3'],
|
||||||
|
outputPath: '/out.mp3',
|
||||||
|
});
|
||||||
|
expect(concatListContent).toContain("file '/a.mp3'");
|
||||||
|
expect(concatListContent).toContain("file '/b.mp3'");
|
||||||
|
expect(args).toContain('-f');
|
||||||
|
expect(args).toContain('concat');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('AudioOperations.executeOperation', () => {
|
||||||
|
test('convert calls execFileFn with ffmpeg path and args, resolves success', async () => {
|
||||||
|
const execFileFn = (cmd, args, opts, cb) => cb(null, '', '');
|
||||||
|
const result = await AudioOperations.executeOperation(
|
||||||
|
'convert',
|
||||||
|
{ inputPath: '/a.wav', outputPath: '/b.mp3' },
|
||||||
|
{ ffmpegPath: '/usr/bin/ffmpeg', execFileFn }
|
||||||
|
);
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(result.outputPath).toBe('/b.mp3');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('unknown operation rejects', async () => {
|
||||||
|
await expect(
|
||||||
|
AudioOperations.executeOperation('bogus', {}, { ffmpegPath: '/usr/bin/ffmpeg', execFileFn: () => {} })
|
||||||
|
).rejects.toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Run `npx jest tests/main/AudioOperations.test.js` — expect FAIL.
|
||||||
|
- [ ] **Step 3:** Implement `src/main/AudioOperations.js` per the interfaces above. Use `fs.writeFileSync`/`fs.mkdtempSync` (Node `os.tmpdir()`) inside `executeOperation`'s `'merge'` case to materialize the concat list file before invoking `execFileFn`.
|
||||||
|
- [ ] **Step 4:** Run `npx jest tests/main/AudioOperations.test.js` — expect PASS.
|
||||||
|
- [ ] **Step 5:** In `src/main.js`, add the dispatcher handler (mirrors Task 9 Step 5):
|
||||||
|
```javascript
|
||||||
|
const AudioOperations = require('./main/AudioOperations');
|
||||||
|
// ...
|
||||||
|
ipcMain.handle('process-audio-operation', async (event, { operation, data }) => {
|
||||||
|
try {
|
||||||
|
return await AudioOperations.executeOperation(operation, data, { ffmpegPath: getFFmpegPath() });
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: sanitizeErrorMessage(error.message) };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
Replace the 5 stale audio channel names in `ALLOWED_SEND_CHANNELS` (`preload.js`) with `'process-audio-operation'` (batch handled in Task 12).
|
||||||
|
- [ ] **Step 6:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 7:** Commit: `git add src/main/AudioOperations.js tests/main/AudioOperations.test.js src/main.js src/preload.js && git commit -m "feat(audio): implement ffmpeg-based audio operations backend"`
|
||||||
|
|
||||||
|
### Task 11: Video operations backend (`ffmpeg`-based)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Create: `src/main/VideoOperations.js`
|
||||||
|
- Create: `tests/main/VideoOperations.test.js`
|
||||||
|
- Modify: `src/main.js`
|
||||||
|
|
||||||
|
**Interfaces:** Same shape as Task 10 (`executeOperation(operation, data, { ffmpegPath, execFileFn })`, pure arg builders for testability).
|
||||||
|
- `buildConvertArgs({ inputPath, outputPath })` → `['-i', inputPath, '-y', outputPath]`.
|
||||||
|
- `buildCompressArgs({ inputPath, outputPath, crf })` (`crf` 0-51, default 28 — lower is higher quality/larger file, matching libx264 convention) → `['-i', inputPath, '-vcodec', 'libx264', '-crf', String(crf), '-y', outputPath]`. Validate `crf` is an integer 0-51 (throw otherwise).
|
||||||
|
- `buildTrimArgs({ inputPath, outputPath, startTime, duration })` → identical shape/validation to `AudioOperations.buildTrimArgs`.
|
||||||
|
- `buildFramesArgs({ inputPath, outputDir, fps })` (`fps` frames-per-second to extract, default 1) → `['-i', inputPath, '-vf', `fps=${fps}`, path.join(outputDir, 'frame-%04d.png')]`. Validate `fps` is a positive finite number.
|
||||||
|
- `buildGifArgs({ inputPath, outputPath, fps, width })` (`fps` default 10, `width` default 480, height auto via `-1`) → `['-i', inputPath, '-vf', `fps=${fps},scale=${width}:-1:flags=lanczos`, '-y', outputPath]`.
|
||||||
|
- `operation` is `'convert'|'compress'|'trim'|'frames'|'gif'`.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write `tests/main/VideoOperations.test.js` mirroring Task 10's test structure — one test per builder function checking exact `args` array output plus validation-rejection tests for `compress` (bad `crf`) and `frames` (bad `fps`), plus one `executeOperation` test with a stubbed `execFileFn` for `'convert'` and one for `'frames'` that also verifies the output directory is created (`fs.mkdirSync(outputDir, { recursive: true })` inside `executeOperation`'s `'frames'` case before spawning ffmpeg).
|
||||||
|
- [ ] **Step 2:** Run `npx jest tests/main/VideoOperations.test.js` — expect FAIL.
|
||||||
|
- [ ] **Step 3:** Implement `src/main/VideoOperations.js` per the interfaces above.
|
||||||
|
- [ ] **Step 4:** Run `npx jest tests/main/VideoOperations.test.js` — expect PASS.
|
||||||
|
- [ ] **Step 5:** In `src/main.js`, add the dispatcher handler (mirrors B1/B2):
|
||||||
|
```javascript
|
||||||
|
const VideoOperations = require('./main/VideoOperations');
|
||||||
|
// ...
|
||||||
|
ipcMain.handle('process-video-operation', async (event, { operation, data }) => {
|
||||||
|
try {
|
||||||
|
return await VideoOperations.executeOperation(operation, data, { ffmpegPath: getFFmpegPath() });
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: sanitizeErrorMessage(error.message) };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
Replace the 6 stale video channel names in `ALLOWED_SEND_CHANNELS` with `'process-video-operation'`.
|
||||||
|
- [ ] **Step 6:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 7:** Commit: `git add src/main/VideoOperations.js tests/main/VideoOperations.test.js src/main.js src/preload.js && git commit -m "feat(video): implement ffmpeg-based video operations backend"`
|
||||||
|
|
||||||
|
### Task 12: Media Operations UI (menu entries + dialog + batch)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Create: `src/renderer/media-operations-dialog.js` (follow whatever module pattern `src/renderer.js` already uses for the PDF editor dialog — read `renderer.js:3685` onward to find that dialog's implementation file/pattern before creating this one)
|
||||||
|
- Modify: `src/main.js` (menu — add "Image/Audio/Video Tools..." entries under the existing `Tools` submenu, next to Table Generator/ASCII Art Generator at `main.js:1395-1414`; also extend `universal-convert-batch`'s existing batch-folder flow OR add three new `process-*-operation` batch loops mirroring the pattern at `main.js:2454-2563`, whichever requires less duplication once B1-B3 exist — prefer reusing `executeOperation` in a loop over `fs.readdirSync` results, matching the existing batch style)
|
||||||
|
- Modify: `src/preload.js` (add `'show-image-converter'`... already present; add `'process-image-operation'`/`'process-audio-operation'`/`'process-video-operation'` to `ALLOWED_SEND_CHANNELS` if not already added by B1-B3)
|
||||||
|
|
||||||
|
**Verified current behavior:** `show-image-converter`/`show-audio-converter`/`show-video-converter` are whitelisted receive channels with no sender and no listener — Batch Image/Audio/Video Conversion menu items already exist and work via the generic Universal Converter (`main.js:1283-1291`, `2454-2563`) for plain format conversion; this task adds the **operation-specific** single-file dialogs (resize/compress/rotate/trim/merge/extract/frames/gif) that B1-B3 implemented.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Add three menu items under `Tools` (`main.js`, after the "Document Compare" item added conceptually in Task 6/C8):
|
||||||
|
```javascript
|
||||||
|
{ label: 'Image Tools...', click: () => mainWindow.webContents.send('show-image-converter') },
|
||||||
|
{ label: 'Audio Tools...', click: () => mainWindow.webContents.send('show-audio-converter') },
|
||||||
|
{ label: 'Video Tools...', click: () => mainWindow.webContents.send('show-video-converter') },
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Build the renderer-side dialog module. Read how the existing PDF Editor dialog (triggered by `show-pdf-editor-dialog`) is structured/rendered in `renderer.js` (search for its listener at line 3685 and follow into whatever function/file builds its DOM) and replicate that construction pattern for a single dialog that: (a) lets the user pick an operation from a dropdown scoped to the current media kind (image/audio/video), (b) shows the relevant operation-specific fields (e.g. width/height for resize, quality for compress, angle for rotate, startTime/duration for trim, fps/width for gif), (c) has an input-file picker (reuse the existing `dialog.showOpenDialogSync` pattern via a new small `ipcMain.handle('select-media-file', ...)` if no generic file-picker IPC already exists — check first; `select-pdf-folder` is folder-only, so a new single-file-picker handler is likely needed), (d) calls `ipcRenderer.invoke('process-image-operation', { operation, data })` (or audio/video) and shows success/error the same way `pdf-operation-complete`/`pdf-operation-error` are surfaced elsewhere.
|
||||||
|
- [ ] **Step 3:** Wire the three `ipcRenderer.on('show-image-converter'|'show-audio-converter'|'show-video-converter', ...)` listeners in `renderer.js` to open the new dialog scoped to the right media kind.
|
||||||
|
- [ ] **Step 4:** Manually verify with `npm start`: Tools → Image Tools → Resize a test PNG, confirm the output file is created at the chosen size; repeat once each for one audio op (trim) and one video op (compress) using any small local test media file.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add -A && git commit -m "feat(media): add Image/Audio/Video Tools dialogs wired to new operation backends"`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase C — New Features (extending existing systems)
|
||||||
|
|
||||||
|
### Task 13: Expose more Pandoc export/import formats already supported by the bundled Pandoc
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main.js` (export submenu ~`main.js:864-959`; `exportFile()` at `main.js:1766`; the format switch inside `performExportWithOptions`/`buildPandocExportArgs` — see Task 23, which replaces string-building with an args-array builder; add cases there, not to the old string-concat code)
|
||||||
|
|
||||||
|
**New formats to add** (all already importable per the existing import switch at `main.js:3507` — Pandoc supports both directions for each):
|
||||||
|
- Export: AsciiDoc (`asciidoc`), reStructuredText (`rst`), MediaWiki (`mediawiki`), Org-mode (`org`), Textile (`textile`), man page (`man`), Jupyter Notebook (`ipynb`).
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Add 7 new menu entries to the Export submenu (`main.js:864-959`), grouped in a new labeled section, each calling `exportFile('<format>')` with the format id above.
|
||||||
|
- [ ] **Step 2:** Add each format to the extension-mapping table used by the export path (the `formatExtMap` object at `main.js:2624-2629` — add `asciidoc: 'adoc', mediawiki: 'wiki'`; the rest already match their format id as extension).
|
||||||
|
- [ ] **Step 3:** RULING (pre-flight scan, execution order is Phase A→B→C→D, so Task 23 has NOT run yet when this task executes): add each format as an additional `-t <format>` case to the **current** string-concatenation `pandocCmd` logic in `performExportWithOptions` (the same pattern already used for `'json'`, `'beamer'`, `'jira'` etc. around `main.js:2825-2965` — a simple `pandocCmd = \`${getPandocPath()} "${currentFile}" -t <format> -o "${outputFile}"\`; exportWithPandoc(pandocCmd, outputFile, format);` branch per new format is sufficient; do not introduce any new string-interpolated user-controlled fields — these 7 formats take no extra options beyond the standard ones already handled generically above the format switch). When Task 23 runs later (Phase D) it will read the current state of this function, per its own Step 3 instruction to "read every one of the sites... in full," and MUST carry these 7 new cases into its args-array rewrite — that responsibility already belongs to SEC-1's own scope and needs no separate action here.
|
||||||
|
- [ ] **Step 4:** Manually verify: export the currently-open sample markdown file to each of the 7 new formats, confirm each produces a non-empty output file Pandoc itself can round-trip (`pandoc out.rst -o roundtrip.md` succeeds).
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add src/main.js && git commit -m "feat(export): expose AsciiDoc, RST, MediaWiki, Org, Textile, man, ipynb export formats"`
|
||||||
|
|
||||||
|
### Task 14: Git branch / diff / push / pull
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main/GitOperations.js`
|
||||||
|
- Modify: `tests/` (find and extend the existing GitOperations test file — grep `tests/**/GitOperations*`; if none exists, create `tests/main/GitOperations.test.js`)
|
||||||
|
- Modify: `src/main.js` (register 4 new `ipcMain.handle` calls near the existing git handlers, `main.js:4889-4904`)
|
||||||
|
- Modify: `src/preload.js` (add `'git-branch'`, `'git-diff'` is already listed but unhandled — see below, `'git-push'`, `'git-pull'` to `ALLOWED_SEND_CHANNELS`)
|
||||||
|
- Modify: `src/sidebar/git-panel.js`, `src/renderer.js:1714-1731`
|
||||||
|
|
||||||
|
**Interfaces (add to `GitOperations.js`, matching the existing `try { ... } catch (err) { return { error: err.message } }` pattern used by every existing function there):**
|
||||||
|
```javascript
|
||||||
|
async function diff(dir, file) { /* git.diff([file]) if file given, else git.diff() for full working-tree diff */ }
|
||||||
|
async function branches(dir) { /* git.branchLocal() — returns { all, current, branches } */ }
|
||||||
|
async function checkoutBranch(dir, name, isNew) { /* isNew=true: git.checkoutLocalBranch(name); else git.checkout(name) */ }
|
||||||
|
async function push(dir) { /* git.push() */ }
|
||||||
|
async function pull(dir) { /* git.pull() */ }
|
||||||
|
module.exports = { getStatus, stage, commit, log, diff, branches, checkoutBranch, push, pull };
|
||||||
|
```
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write/extend the Jest test file covering `diff`, `branches`, `checkoutBranch`, `push`, `pull` against a real temp git repo (follow whatever fixture pattern the existing Git-related tests use — if this is the first GitOperations test file, initialize a repo with `simple-git` itself inside `beforeEach` using `fs.mkdtempSync` + `simpleGit(tmpDir).init()`, matching how `simple-git` is already used in the module under test).
|
||||||
|
- [ ] **Step 2:** Run the new tests — expect FAIL (functions don't exist).
|
||||||
|
- [ ] **Step 3:** Implement the 5 new functions in `GitOperations.js` per the interfaces above.
|
||||||
|
- [ ] **Step 4:** Run the tests — expect PASS.
|
||||||
|
- [ ] **Step 5:** In `main.js`, register handlers next to the existing 4:
|
||||||
|
```javascript
|
||||||
|
ipcMain.handle('git-diff', async (event, { file }) => {
|
||||||
|
const dir = path.dirname(currentFile || app.getPath('documents'));
|
||||||
|
return GitOperations.diff(dir, file);
|
||||||
|
});
|
||||||
|
ipcMain.handle('git-branches', async () => GitOperations.branches(path.dirname(currentFile || app.getPath('documents'))));
|
||||||
|
ipcMain.handle('git-checkout', async (event, { name, isNew }) => GitOperations.checkoutBranch(path.dirname(currentFile || app.getPath('documents')), name, isNew));
|
||||||
|
ipcMain.handle('git-push', async () => GitOperations.push(path.dirname(currentFile || app.getPath('documents'))));
|
||||||
|
ipcMain.handle('git-pull', async () => GitOperations.pull(path.dirname(currentFile || app.getPath('documents'))));
|
||||||
|
```
|
||||||
|
(Match whatever `dir` resolution the existing `git-status` handler at `main.js:4889-4891` actually uses — read those 3 lines first and reuse the identical expression rather than inventing a new one.)
|
||||||
|
- [ ] **Step 6:** Add `'git-branches'`, `'git-checkout'`, `'git-push'`, `'git-pull'` to `ALLOWED_SEND_CHANNELS` in `preload.js` (`'git-diff'` is already present).
|
||||||
|
- [ ] **Step 7:** In `src/sidebar/git-panel.js`, rename the unused `_gitDiff` parameter to `gitDiff` and add UI to actually call it (a "diff" button/icon per changed file in the status list, rendering the returned diff text in a `<pre>` block or similar — follow the panel's existing rendering style for the status list). Add branch/push/pull UI following the same panel's existing button/section style.
|
||||||
|
- [ ] **Step 8:** In `renderer.js:1714-1731`, pass the 4 new callbacks (`gitBranches`, `gitCheckout`, `gitPush`, `gitPull`) into `getRenderGitPanel()` alongside the existing ones.
|
||||||
|
- [ ] **Step 9:** Manually verify in a real git-tracked test folder: view a file diff, list branches, create+checkout a new branch, (push/pull only if a real remote is available — otherwise verify the IPC round-trip returns a sane `{error: ...}` for a repo with no remote, not a crash).
|
||||||
|
- [ ] **Step 10:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 11:** Commit: `git add -A && git commit -m "feat(git): add diff, branch, checkout, push, pull to Git sidebar panel"`
|
||||||
|
|
||||||
|
### Task 15: More PDF operations — extract text, page numbers, crop, extract images
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main/PDFOperations.js`, its test file (grep `tests/**/PDFOperations*`)
|
||||||
|
- Modify: `src/main.js` (`process-pdf-operation` already dispatches via `executeOperation` — no new handler needed, just new `case`s in `PDFOperations.js`'s existing switch at line 404)
|
||||||
|
- Modify: renderer PDF editor dialog UI (wherever the existing operation list/buttons are — find via the `show-pdf-editor-dialog` listener at `renderer.js:3685`)
|
||||||
|
|
||||||
|
**Interfaces (add to the existing `executeOperation` switch, `PDFOperations.js:404-430`):**
|
||||||
|
```javascript
|
||||||
|
async function pdfExtractText(data) { /* data: {inputPath}. Use pdf-lib's page.getTextContent() is NOT available in pdf-lib — pdf-lib has no text extraction. Use pdfjs-dist (already a dependency) instead: load with pdfjs-dist, iterate pages, getTextContent(), join strings. Return { success: true, text } */ }
|
||||||
|
async function pdfAddPageNumbers(data) { /* data: {inputPath, outputPath, position, startNumber}. For each page, drawText via pdf-lib at the given corner (reuse the position-mapping switch already present in pdfWatermark, PDFOperations.js:258-287, for corner math). */ }
|
||||||
|
async function pdfCrop(data) { /* data: {inputPath, outputPath, margins: {top,bottom,left,right}} in points. Use page.setCropBox(x, y, width, height) computed from the page's existing MediaBox minus margins. */ }
|
||||||
|
async function pdfExtractImages(data) { /* data: {inputPath, outputDir}. pdf-lib doesn't expose embedded image extraction either — use pdfjs-dist's page.getOperatorList() + page.objs to pull OPS.paintImageXObject image data, write each as PNG via sharp (already a dependency after Task 8). Return { success: true, count, files: string[] } */ }
|
||||||
|
```
|
||||||
|
Add 4 new `case` branches to `executeOperation` (`'extractText'`, `'pageNumbers'`, `'crop'`, `'extractImages'`) and add all 4 to `module.exports`.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Read `PDFOperations.js:233-317` (`pdfWatermark`) in full to reuse its exact position-to-coordinate mapping logic for `pdfAddPageNumbers` rather than re-deriving it.
|
||||||
|
- [ ] **Step 2:** Write tests for all 4 new functions in the existing PDFOperations test file, generating a minimal test PDF at test time via `pdf-lib`'s `PDFDocument.create()` (mirror however the existing test file already builds its fixture PDFs — check its `beforeEach`).
|
||||||
|
- [ ] **Step 3:** Run new tests — expect FAIL.
|
||||||
|
- [ ] **Step 4:** Implement the 4 functions.
|
||||||
|
- [ ] **Step 5:** Run new tests — expect PASS.
|
||||||
|
- [ ] **Step 6:** Add 4 corresponding buttons/menu entries to the PDF editor dialog UI, following its existing per-operation button pattern exactly (find where 'Watermark' or 'Rotate' is wired in the renderer PDF dialog and copy that structure).
|
||||||
|
- [ ] **Step 7:** Manually verify each of the 4 operations against a real PDF via the app UI.
|
||||||
|
- [ ] **Step 8:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 9:** Commit: `git add -A && git commit -m "feat(pdf): add extract text, page numbers, crop, extract images operations"`
|
||||||
|
|
||||||
|
### Task 16: PDF form field fill/flatten
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main/PDFOperations.js` (+ test file), PDF editor dialog UI
|
||||||
|
|
||||||
|
**Interfaces:**
|
||||||
|
```javascript
|
||||||
|
async function pdfGetFormFields(data) { /* data: {inputPath}. PDFDocument.load(bytes) -> pdfDoc.getForm().getFields() -> map each to {name, type, value}. Return { success: true, fields } */ }
|
||||||
|
async function pdfFillForm(data) { /* data: {inputPath, outputPath, values: Record<string,string>, flatten}. Load, getForm(), for each key in values call form.getTextField(key).setText(value) (wrap per-field in try/catch to skip fields that don't exist or aren't text fields — this app's convention per pdfWatermark is to fail loudly on real errors but this is a batch-of-independent-fields case, so log+skip per-field failures and continue). If flatten, call form.flatten() before saving. */ }
|
||||||
|
```
|
||||||
|
Add `'formFields'` (get) and `'fillForm'` cases to `executeOperation`, add both to exports.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write tests building a test PDF with an AcroForm text field via `pdf-lib`'s `form.createTextField()` API (check pdf-lib's docs/existing usage in the codebase for the exact field-creation calls — `PDFOperations.js` already imports `pdf-lib`, follow its existing import style).
|
||||||
|
- [ ] **Step 2:** Run tests — expect FAIL.
|
||||||
|
- [ ] **Step 3:** Implement both functions.
|
||||||
|
- [ ] **Step 4:** Run tests — expect PASS.
|
||||||
|
- [ ] **Step 5:** Add a "Fill Form" UI entry to the PDF editor dialog: on open, call `formFields` to list detected fields, render a text input per field, a "Flatten after fill" checkbox, then call `fillForm` on submit.
|
||||||
|
- [ ] **Step 6:** Manually verify against a real fillable PDF (search for one under `tests/fixtures/` or create one with `pdf-lib` in a scratch script — do not commit the scratch script).
|
||||||
|
- [ ] **Step 7:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 8:** Commit: `git add -A && git commit -m "feat(pdf): add form field detection, fill, and flatten"`
|
||||||
|
|
||||||
|
### Task 17: Plugin API — export-format and file-reader registration hooks
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/plugins/plugin-context.js`, `src/plugins/plugin-loader.js` (or wherever plugin manifests are validated/loaded — grep `plugin-loader.js`), `src/main.js` (export format switch — needs to consult plugin-registered formats)
|
||||||
|
|
||||||
|
**Interfaces (extend `PluginContext`, `plugin-context.js:64-71`, alongside the existing `this.exports` block):**
|
||||||
|
```javascript
|
||||||
|
this.formats = {
|
||||||
|
registerExportFormat: (id, opts) => {
|
||||||
|
// opts: { label, extension, handler: async (markdownContent, outputPath, options) => void }
|
||||||
|
if (formatRegistry) formatRegistry.register(`${pluginId}:${id}`, opts);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
This requires a new small `FormatRegistry` (mirror the existing `plugin-registry.js` pattern — read it first to match its exact API shape, e.g. `register(id, opts)` / `getAll()` / `get(id)`) injected into `PluginContext`'s constructor `deps` alongside `sidebar`/`commands`/`statusBar`.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Read `src/plugins/plugin-registry.js` in full to learn its exact class/function shape before adding a sibling `FormatRegistry` (or extending the existing registry with a new namespace if it's already generic enough — prefer extending over duplicating if the existing registry is namespace-agnostic).
|
||||||
|
- [ ] **Step 2:** Add `registerExportFormat` to `PluginContext` per the interface above, wired to whatever registry mechanism Step 1 determined is the right fit.
|
||||||
|
- [ ] **Step 3:** In `src/main.js`'s export dispatch path (wherever the Export submenu's dynamic entries would need to merge in plugin formats — likely requires the Export submenu to be rebuilt after plugin load, similar to how `createMenu()` is already called after recent-files change in Task 2; check if `createMenu()` is idempotent/safe to call after plugin loading completes), add plugin-registered formats as additional Export submenu entries whose `click` handler calls the plugin's registered `handler` function instead of Pandoc.
|
||||||
|
- [ ] **Step 4:** Update the built-in `writing-studio` plugin's manifest/index (`src/plugins/built-in/`) with a trivial example usage of `registerExportFormat` (e.g. exporting sprint data as a `.txt` summary) — this both documents the new API and gives Step 5's manual test something concrete to click.
|
||||||
|
- [ ] **Step 5:** Write a unit test in `tests/plugins/` (find the existing plugin test directory/pattern) verifying a plugin calling `context.formats.registerExportFormat(...)` results in the registry containing the namespaced entry.
|
||||||
|
- [ ] **Step 6:** Manually verify: `npm start`, confirm the writing-studio example format appears in the Export menu and produces the expected output file when clicked.
|
||||||
|
- [ ] **Step 7:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 8:** Commit: `git add -A && git commit -m "feat(plugins): add export-format registration hook to plugin API"`
|
||||||
|
|
||||||
|
### Task 18: DOCX/EPUB template gallery UI
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (export dialog for DOCX/EPUB — find via `exportWordWithTemplate()` at `main.js:881` and follow into whatever renderer dialog it opens)
|
||||||
|
- Modify: `src/main.js` (wherever the existing Word-template list is sourced from — grep `WordTemplateExporter` and `listTemplates`/`getTemplates`-style function)
|
||||||
|
|
||||||
|
**Verified context:** `main.js` already has `exportWordWithTemplate()` and `WordTemplateExporter` (`src/wordTemplateExporter.js`) — a template mechanism for DOCX exists but per the feature-inventory research pass has "no discoverable UI" for browsing available templates; the user has to already know a template exists. Read `src/wordTemplateExporter.js` in full first to learn how templates are currently listed/selected (is there a folder of `.dotx`/`.docx` template files? A hardcoded list?) before designing the gallery.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Read `src/wordTemplateExporter.js` and the renderer dialog `exportWordWithTemplate()` opens, to learn the exact current template-selection mechanism (function names, data shape).
|
||||||
|
- [ ] **Step 2:** Add a visual gallery (grid of template name + thumbnail-if-available, or name + short description if no thumbnails exist) to that same dialog, replacing or augmenting whatever minimal selector currently exists, following the dialog's existing CSS/markup conventions (check `src/styles.css` for the dialog's existing classes before inventing new ones).
|
||||||
|
- [ ] **Step 3:** Do the same for EPUB export if `main.js` has an equivalent EPUB-template mechanism (grep for `epub` + `template`); if none exists, skip EPUB (do not invent a template system that doesn't exist — note this explicitly as out of scope in the commit message rather than silently dropping it).
|
||||||
|
- [ ] **Step 4:** Manually verify: open the DOCX export dialog, see the template gallery, pick one, confirm the exported DOCX uses it.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add -A && git commit -m "feat(export): add visual template gallery to DOCX export dialog"`
|
||||||
|
|
||||||
|
### Task 19: CSV-to-markdown-table toolbar converter
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (editor toolbar — find the existing toolbar button registration pattern, e.g. near table generator/ASCII generator toolbar buttons)
|
||||||
|
|
||||||
|
**Verified context:** Pandoc already imports CSV (`main.js:3507` import switch includes `csv`). This task adds a quick in-editor action: paste/select CSV-like text, convert to a markdown table without leaving the editor (distinct from the full file-import path).
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Add a toolbar button "CSV → Table" (or a Command Palette entry, matching whichever pattern is more consistent with similar single-action editor tools already in the toolbar — check what's already there before choosing).
|
||||||
|
- [ ] **Step 2:** Implement a pure client-side CSV→Markdown-table converter function in `renderer.js` (no need to round-trip through Pandoc for this simple case — parse the current selection's lines by comma, respecting basic double-quote-wrapped fields containing commas; build a `| a | b |` / `|---|---|` markdown table). Keep this function small and testable — extract it to `src/lib/csv-to-markdown-table.js` if `src/renderer.js` doesn't already have a `src/lib/`-style extraction pattern for similar pure functions (check first).
|
||||||
|
- [ ] **Step 3:** Write a Jest unit test for the converter function covering: simple CSV, quoted fields containing commas, ragged rows (fewer columns in some rows — pad with empty cells), empty input.
|
||||||
|
- [ ] **Step 4:** Wire the toolbar button to: read the editor selection, run the converter, replace the selection with the resulting markdown table.
|
||||||
|
- [ ] **Step 5:** Manually verify: select a few lines of comma-separated text in the editor, click the button, confirm it becomes a proper markdown table.
|
||||||
|
- [ ] **Step 6:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 7:** Commit: `git add -A && git commit -m "feat(editor): add CSV-to-markdown-table toolbar converter"`
|
||||||
|
|
||||||
|
### Task 20: Document Compare / diff view (completes Task 6)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (new listener for `show-document-compare`, whitelisted in Task 6)
|
||||||
|
- Create: `src/renderer/document-compare-dialog.js` (or inline in `renderer.js` if that's the dominant pattern for similar dialogs — match Task 12's finding on dialog-module conventions)
|
||||||
|
|
||||||
|
**Verified context:** `main.js:1411-1413` sends `show-document-compare`; Task 6 whitelisted the channel; nothing renders it yet. This task adds an actual two-pane diff: either two arbitrary local files, or (leveraging Task 14's new `GitOperations.diff`) the current file against its last-committed git revision.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Build a simple two-file diff dialog: two "choose file" buttons (or one defaulting to the currently-open tab + one file picker for the comparison target), a line-by-line diff render. Do not add a new diff-algorithm dependency — write a minimal LCS-based line diff in a small pure function (`src/lib/line-diff.js`) since the app has no existing diff library; keep it under ~60 lines (standard textbook LCS-diff, not a full Myers-diff library port).
|
||||||
|
- [ ] **Step 2:** Write a Jest unit test for the line-diff function: identical files (no diffs), pure additions, pure deletions, mixed changes.
|
||||||
|
- [ ] **Step 3:** Add a "Compare with Git HEAD" option in the same dialog when the current file is inside a git repo, using `GitOperations.diff` from Task 14 (raw git diff text render, separate code path from the line-diff function — git's own diff output is already a diff, don't re-diff it).
|
||||||
|
- [ ] **Step 4:** Wire `ipcRenderer.on('show-document-compare', () => { /* open the dialog */ })` in `renderer.js`.
|
||||||
|
- [ ] **Step 5:** Manually verify: Tools → Document Compare, compare two local markdown files, confirm additions/deletions are visually distinguished (e.g. green/red line backgrounds, matching the app's existing theme CSS variables rather than hardcoded colors).
|
||||||
|
- [ ] **Step 6:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 7:** Commit: `git add -A && git commit -m "feat(compare): implement Document Compare dialog with local-diff and git-HEAD-diff modes"`
|
||||||
|
|
||||||
|
### Task 21: Export presets/profiles
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main.js` (near `get-header-footer-settings`/`save-header-footer-settings` handlers, `main.js:1857-1886`)
|
||||||
|
- Modify: renderer export-options dialog (wherever `export-with-options` is invoked from — grep `export-with-options` in `renderer.js`)
|
||||||
|
|
||||||
|
**Interfaces:**
|
||||||
|
```javascript
|
||||||
|
// main.js — new handlers, settings persisted the same way header/footer settings already are
|
||||||
|
// (read main.js:1857-1886 first to copy its exact settings-file read/write pattern, e.g. settings.json path + key)
|
||||||
|
ipcMain.handle('get-export-presets', async () => { /* returns array of {id, name, format, options} */ });
|
||||||
|
ipcMain.handle('save-export-preset', async (event, preset) => { /* upsert by id, persist, return updated list */ });
|
||||||
|
ipcMain.handle('delete-export-preset', async (event, presetId) => { /* remove by id, persist, return updated list */ });
|
||||||
|
```
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Read `main.js:1857-1886` in full to learn the exact settings-persistence pattern already used (this app uses a custom JSON file store per `CLAUDE.md`, not `electron-store` — confirm the exact file/key convention and reuse it verbatim for presets, e.g. a new top-level `exportPresets` array in the same `settings.json`).
|
||||||
|
- [ ] **Step 2:** Implement the 3 handlers per the interfaces above, add all 3 channel names to `ALLOWED_SEND_CHANNELS` in `preload.js`.
|
||||||
|
- [ ] **Step 3:** In the renderer's export-options dialog, add a "Save as preset" button (captures the current dialog's option values, prompts for a name, calls `save-export-preset`) and a preset dropdown at the top of the dialog (populated via `get-export-presets` on open; selecting one pre-fills the dialog's fields) plus a delete icon per preset row.
|
||||||
|
- [ ] **Step 4:** Manually verify: configure export options, save as a preset, close and reopen the dialog, confirm the preset is selectable and correctly restores all fields; delete it, confirm it's gone.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add -A && git commit -m "feat(export): add save/select/delete export presets"`
|
||||||
|
|
||||||
|
### Task 22: Batch PDF operations UI (beyond format conversion)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/renderer.js` (Batch menu handling — find the `show-batch-converter` listener with `'pdf'` type)
|
||||||
|
- Modify: `src/main.js` (extend the batch loop to support PDFOperations, not just format conversion)
|
||||||
|
|
||||||
|
**Verified context:** `main.js:1293-1296` already has a "Batch PDF Conversion..." menu item sending `show-batch-converter` with type `'pdf'`, but (per the existing batch conversion handlers at `main.js:2454-2563`) batch only does format conversion via `convertWithLibreOffice`/pandoc — it never calls into `PDFOperations.executeOperation` for bulk watermark/compress/rotate across many files.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** In the renderer's batch dialog (wherever the `'pdf'`-typed batch dialog renders), add an operation-type selector when the batch type is `'pdf'`: "Convert format" (existing behavior, keep as default) vs. "Bulk PDF Operation" (new: pick one of merge/split/compress/rotate/watermark/etc. plus that operation's fields, same fields as the single-file PDF editor dialog).
|
||||||
|
- [ ] **Step 2:** Add a new `ipcMain.on('batch-pdf-operation', async (event, { operation, data, inputFolder, includeSubfolders }) => {...})` handler in `main.js` that collects matching `.pdf` files (reuse the exact `collectFiles` recursive helper already defined inside `universal-convert-batch`, `main.js:2472-2484` — extract it to a shared top-level function if it isn't already, since Task 22 needs the identical logic) and calls `PDFOperations.executeOperation(operation, {...data, inputPath: filePath, outputPath: ...})` per file in a loop, reporting progress via `mainWindow.webContents.send('batch-progress', ...)` matching the existing batch progress-reporting convention.
|
||||||
|
- [ ] **Step 3:** Add `'batch-pdf-operation'` to `ALLOWED_SEND_CHANNELS`.
|
||||||
|
- [ ] **Step 4:** Manually verify: batch-watermark a folder of 2-3 test PDFs, confirm each output file has the watermark applied.
|
||||||
|
- [ ] **Step 5:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 6:** Commit: `git add -A && git commit -m "feat(pdf): add bulk PDF operations (watermark/compress/rotate/etc.) to batch converter"`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase D — Security Remediation
|
||||||
|
|
||||||
|
### Task 23: Fix Pandoc argument-injection vulnerability (CRITICAL)
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main.js` (every `pandocCmd` string-concatenation site: `performExportWithOptions` ~`2623-2965`, `exportPDFViaWordTemplate`-adjacent function ~`2980-3050`, `runPandocCmd`/`parseCommand` at `231-282`, the import-side builder at `~3501`, and the enhanced-export builder at `~3997-4097`)
|
||||||
|
- Modify: `tests/` (new regression test)
|
||||||
|
|
||||||
|
**Verified root cause:** `performExportWithOptions` and its siblings build a shell-style command **string** by concatenating user-influenced values (export dialog fields: `options.template`, `options.metadata` key/values, `options.variables` key/values, `options.bibliography` path, `options.csl` path, `options.geometry`, footer text, CSS file path) wrapped in double quotes, e.g. `` pandocCmd += ` --bibliography="${options.bibliography}"` ``. This string is later tokenized by `parseCommand()` (`main.js:253-282`) — a hand-rolled parser that toggles an `inQuotes` flag on any `"` or `'` character and has **no backslash-escape handling at all**. The `.replace(/"/g, '\\"')` escaping applied to `metadata`/`variables` values therefore does nothing protective: `parseCommand` sees the literal backslash as an ordinary character and the following `"` still toggles quote state exactly as an unescaped quote would. Any field that reaches `parseCommand` un-sanitized (which is most of them — `template`, `bibliography`, `csl`, `geometry`, footer text are never escaped at all) lets an attacker-controlled value containing a `"` character break out of its intended single argument and inject additional argv elements into the `execFile(pandocPath, args, ...)` call at the end of `runPandocCmd`. Because `execFile` (not `exec`) is used, this is **not** a shell-injection (no `;`, `|`, backticks interpreted) — it is **argument injection into pandoc itself**, which is still exploitable: Pandoc supports `--lua-filter=<path>` and `--filter=<path>` (arbitrary Lua/executable code execution), `-o <path>` (arbitrary file overwrite by injecting a second `-o`), and `--resource-path`/`--extract-media` (arbitrary-path writes). A malicious value in any of the un-escaped fields above is enough to reach that severity — no shell metacharacters are even needed, just a `"` followed by a new flag.
|
||||||
|
|
||||||
|
**Fix approach:** Stop building command strings entirely for every one of these call sites. Replace with direct `execFile(pandocPath, argsArray, ...)` calls where `argsArray` is built as a real JS array (`push`, never string interpolation) — this is exactly what `PDFOperations.js`/`GitOperations.js` already do correctly, and what `AudioOperations.js`/`VideoOperations.js`/`ImageOperations.js` do from Phase B. `parseCommand`/`runPandocCmd`'s string-based indirection should be deleted once all call sites are converted — do not leave it in place as unused dead code (would violate the "no forbidden markers/half-finished" standard); if any call site turns out to be legitimately hard to convert in this task, that is a signal that call site needs its own careful sub-step, not a reason to keep the vulnerable helper around "just in case."
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Write a regression test proving the vulnerability exists in the *current* code, in a new file `tests/main/pandoc-arg-safety.test.js`, calling `parseCommand` directly (it will need to be exported from `main.js` for testing, or extracted first — see Step 2) with a crafted value and asserting it does NOT produce an injected extra argument:
|
||||||
|
```javascript
|
||||||
|
// This test is written to FAIL against the current parseCommand implementation,
|
||||||
|
// proving the vulnerability, then PASS once Step 3+ removes the vulnerable path.
|
||||||
|
const { buildPandocArgs } = require('../../src/main/PandocArgs'); // new module created in Step 3
|
||||||
|
|
||||||
|
test('a bibliography path containing a double quote cannot inject extra pandoc flags', () => {
|
||||||
|
const malicious = '/tmp/x.bib" --lua-filter=/tmp/evil.lua -o "/tmp/x.bib';
|
||||||
|
const args = buildPandocArgs({
|
||||||
|
inputFile: '/in.md',
|
||||||
|
outputFile: '/out.pdf',
|
||||||
|
format: 'pdf',
|
||||||
|
options: { bibliography: malicious },
|
||||||
|
});
|
||||||
|
// The malicious string must appear as exactly ONE argv element (whatever
|
||||||
|
// value it ends up as), never split into multiple args, and
|
||||||
|
// '--lua-filter=/tmp/evil.lua' must not appear as its own array element.
|
||||||
|
expect(args).not.toContain('--lua-filter=/tmp/evil.lua');
|
||||||
|
expect(args.filter((a) => a.includes(malicious) || a === malicious).length).toBeLessThanOrEqual(1);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
- [ ] **Step 2:** Run the test — confirm it fails to even import (module doesn't exist yet) — this is expected; proceed to build the real module.
|
||||||
|
- [ ] **Step 3:** Create `src/main/PandocArgs.js` — a pure module exporting `buildPandocArgs({ inputFile, outputFile, format, options })` that returns a plain `string[]` args array (no string concatenation of the whole command — only individual argv elements are ever created via `.push(...)`), reimplementing every option currently handled across the string-building sites (`toc`, `tocDepth`, `numberSections`, `citeproc`, `bibliography`, `csl`, `template`, `metadata` (loop → `push('-M', `${key}=${value}`)` — no manual quote-escaping needed at all, since array elements are passed to `execFile` as literal argv, never re-parsed), `variables` (same pattern with `-V`), `pdfEngine`, `geometry`, monospace font header include, footer text). Read every one of the sites listed in "Files" above in full before writing this, to ensure no option is silently dropped.
|
||||||
|
- [ ] **Step 4:** Run the Step 1 test — expect PASS now.
|
||||||
|
- [ ] **Step 5:** Replace every call site that currently builds a `pandocCmd` string and calls `runPandocCmd(pandocCmd, ...)` with: build args via `PandocArgs.buildPandocArgs(...)`, then `execFile(getPandocPath(), args, { maxBuffer: 10 * 1024 * 1024 }, callback)` directly — inline this or add a tiny `runPandocArgs(args, callback)` helper next to the deleted `runPandocCmd` to avoid repeating the `execFile` options object at every site.
|
||||||
|
- [ ] **Step 6:** Delete `parseCommand` and the old `runPandocCmd` (`main.js:231-282`) once no call site references them (grep to confirm zero remaining references before deleting).
|
||||||
|
- [ ] **Step 7:** Manually re-run every export format the app supports (or at minimum: PDF, DOCX, HTML, EPUB, LaTeX — the ones with the most option surface) via the UI, confirming exports still succeed with the new args-array path, including with TOC/metadata/bibliography options actually filled in (not just defaults) to catch any option silently dropped in Step 3.
|
||||||
|
- [ ] **Step 8:** `npm run lint && npm test`
|
||||||
|
- [ ] **Step 9:** Commit: `git add -A && git commit -m "fix(security): eliminate pandoc argument-injection vector by building execFile args arrays directly"`
|
||||||
|
|
||||||
|
### Task 24: Formal security-review pass
|
||||||
|
|
||||||
|
**Files:** N/A — process task.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** Invoke the `security-review` skill against the full working tree (post Phase A/B/C/SEC-1 changes) to catch anything beyond what this plan's manual audit already found — particularly re-check the new `AudioOperations`/`VideoOperations`/`ImageOperations` modules and the new file-picker/batch handlers added in Phase B/C for the same class of injection risk (all must use `execFile` with array args — verify none of them slipped into string-building), and check the new plugin `registerExportFormat` hook (Task 17) for arbitrary-code-execution risk if a malicious/compromised plugin could abuse it beyond what a plugin can already do.
|
||||||
|
- [ ] **Step 2:** For every finding the skill reports, triage severity and either fix inline (Critical/High) or explicitly log as an accepted/deferred risk with reasoning (Medium/Low) — do not silently drop findings.
|
||||||
|
- [ ] **Step 3:** Produce a short written security summary (what was found across both the manual audit and the formal pass, what was fixed, what if anything was deferred and why) and save it to `docs/superpowers/plans/2026-08-23-security-assessment-summary.md`.
|
||||||
|
- [ ] **Step 4:** Commit any additional fixes with individual, scoped commit messages (do not batch unrelated security fixes into one commit).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase E — Rebuild Local Release
|
||||||
|
|
||||||
|
### Task 25: Full verification + local build
|
||||||
|
|
||||||
|
**Files:** N/A — build/verification task.
|
||||||
|
|
||||||
|
- [ ] **Step 1:** `npm run lint` — must pass clean.
|
||||||
|
- [ ] **Step 2:** `npm run format:check` — must pass clean (run `npm run format` first if not).
|
||||||
|
- [ ] **Step 3:** `npm test` — all suites must pass; confirm the total test count has grown from the 247-test baseline (new tests from Phase B/C tasks should be present).
|
||||||
|
- [ ] **Step 4:** `npm run download-tools` (ensures bundled Pandoc/tool binaries are current for the build).
|
||||||
|
- [ ] **Step 5:** `npm run build:local` (per `package.json` script — builds Linux + Windows targets; this matches "local release" for this dev machine's platform(s)). If this machine is Linux-only and Windows cross-build tooling (wine, etc.) isn't available, fall back to `npm run build:linux-ci` and note the Windows build was skipped and why.
|
||||||
|
- [ ] **Step 6:** Verify the `dist/` output contains the expected artifacts (`.deb`, `.AppImage` at minimum) and that the packaged app launches (`./dist/*.AppImage` or the unpacked `dist/linux-unpacked/markdown-converter` binary) without immediate crash — smoke-test opening a markdown file and exporting to PDF from the packaged build specifically (not `npm start`), since `asarUnpack` behavior for `sharp`/`ffmpeg-static`/fonts only manifests in a packaged build.
|
||||||
|
- [ ] **Step 7:** Report the final `dist/` artifact list and versions to the user; do not bump `package.json`'s version number as part of this task unless the user asks — that is a separate release-management decision.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Task 26: Migrate `File.path` → `webUtils.getPathForFile` (Electron 41 fix) — appended by controller ruling 2026-08-23
|
||||||
|
|
||||||
|
**Origin:** Task 20 review. `File.path` was removed in Electron 32; this app pins `electron ^41.1.1` and has no `webUtils` usage — every renderer file-picker reading `file.path` gets `undefined` at runtime (~15 sites: universal converter, PDF editor pickers, bibliography/CSL pickers, custom template, media merge lists, document-compare File B).
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/preload.js` (expose a `getFilePath(file)` helper via `webUtils.getPathForFile`)
|
||||||
|
- Modify: `src/renderer.js`, `src/renderer/media-operations-dialog.js`, `src/renderer/document-compare-dialog.js` (migrate all `file.path` reads to the helper)
|
||||||
|
|
||||||
|
**Steps:**
|
||||||
|
1. In `src/preload.js`, expose `getFilePath: (file) => webUtils.getPathForFile(file)` on the existing `electronAPI` surface (webUtils is available in the preload/renderer context; it exists precisely to replace File.path). No new IPC channel needed — this is a synchronous in-process call.
|
||||||
|
2. Grep-migrate every `file.path` / `files[i].path` read in the three renderer files to `window.electronAPI.getFilePath(file)` (falling back to `file.path` if the helper is absent, to keep jsdom tests runnable — verify which tests mock this surface and update them to mock the helper).
|
||||||
|
3. Add a preload test asserting `getFilePath` is exposed (follow tests/preload.test.js conventions).
|
||||||
|
4. `npm run lint && npm test`.
|
||||||
|
5. Commit: `fix(renderer): migrate File.path reads to webUtils.getPathForFile for Electron 41`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Task 27: PDF encrypt/decrypt/permissions — replace silent no-op with honest failure — appended by controller ruling 2026-08-23
|
||||||
|
|
||||||
|
**Origin:** Task 22 review (empirically verified). pdf-lib 1.17.1 cannot encrypt: `save({userPassword, ownerPassword, permissions})` silently ignores these options, `PDFDocument.load({password})` is not a LoadOptions field. Current behavior: `pdfEncrypt`/`pdfSetPermissions` write unprotected files and report success; `pdfDecrypt` reports success on non-encrypted inputs (copy no-op) and always fails on genuinely encrypted ones.
|
||||||
|
|
||||||
|
**Files:**
|
||||||
|
- Modify: `src/main/PDFOperations.js` (pdfEncrypt, pdfDecrypt, pdfSetPermissions), their renderer call sites if messages surface there, and `src/main/PDFBatchOperations.js` exclusion register comment (already excludes these ops — keep excluded, update the comment to reference this task).
|
||||||
|
|
||||||
|
**Steps:**
|
||||||
|
1. Capability-detect once at module load (probe whether the installed pdf-lib honors encryption — e.g. build a tiny in-memory PDFDocument, save with a userPassword, check raw bytes for `/Encrypt`; or simply pin the known limitation with a constant + comment referencing pdf-lib 1.17.1) — prefer the empirical probe so a future library swap re-enables the ops automatically.
|
||||||
|
2. When encryption is unsupported: pdfEncrypt/pdfSetPermissions return `{success: false, message: 'Password protection is not available in this build (pdf-lib lacks encryption support).'}`; pdfDecrypt returns an equivalent honest failure. Never write a file. Never report success.
|
||||||
|
3. Update the PDF editor dialog so these three controls are disabled with explanatory hint text when unavailable (grep renderer call sites for the encrypt/permissions handlers).
|
||||||
|
4. Update tests: existing encrypt/decrypt/permissions tests (they currently pin the broken behavior — rewrite to assert honest failure); keep any genuinely-passing load-with-password tests only if the probe says the library supports them.
|
||||||
|
5. `npm run lint && npm test`.
|
||||||
|
6. Commit: `fix(pdf): make encrypt/decrypt/permissions fail honestly instead of silent no-op`
|
||||||
|
|
||||||
|
**Out of scope (user decision pending):** swapping pdf-lib for an encryption-capable fork (e.g. @cantoo/pdf-lib) to restore the feature for real — new dependency, needs sign-off.
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
# Security Assessment Summary — MarkdownConverter (master branch)
|
||||||
|
|
||||||
|
**Date:** 2026-08-23 · **Scope:** full branch `6db54a5..HEAD` (feature-audit-and-hardening plan, 27 tasks) · **Method:** manual feature/security audit at plan time + formal review pass (Task 24: three-stage vulnerability scan — identify → false-positive filter at confidence ≥ 8 → inline fix of confirmed High findings)
|
||||||
|
|
||||||
|
## 1. What the manual audit found (plan Phases A–D)
|
||||||
|
|
||||||
|
| # | Finding | Severity | Resolution |
|
||||||
|
|---|---------|----------|------------|
|
||||||
|
| SEC-1 | Pandoc invocation built as shell-style string and re-tokenized — argument injection via crafted filenames/options/bibliography paths | **Critical** | Fixed — Task 23 (`d41b7df`): every invocation now `execFile(path, args[])` via pure builder `src/main/PandocArgs.js`; string tokenizer deleted; 21 injection-vector tests + differential exploit-split proof + 23 real-pandoc e2e checks |
|
||||||
|
| UX-1..7 | Seven non-working features: PDF menu IPC misrouting, media converter with 16 IPC channels and 0 handlers, dead New-from-Template menu, dead View-menu toggles, Clear-Recent-Files no-op, unreachable font settings, jszip/sharp misplaced in devDependencies | High (functional) | Fixed — Tasks 1–14; media backends (sharp/ffmpeg) implemented execFile-array-first |
|
||||||
|
| LAT-1 | `File.path` reads dead on Electron 41 (removed in v32; app pins ^41.1.1) — every renderer file-picker returned `undefined` | High (functional) | Found during Task 20 review; fixed — Task 26 (`32a5755`): `webUtils.getPathForFile` exposed in preload + main-window shim; all ~15 picker sites migrated |
|
||||||
|
| LAT-2 | pdf-lib 1.17.1 silently ignores `userPassword`/`ownerPassword`/`permissions` — PDF encrypt/permissions wrote **unprotected** files while reporting success; decrypt was a copy no-op | High (integrity) | Found during Task 22 review; fixed — Task 27 (`78afccc`): empirical capability probe (fail-closed), honest unavailability errors, UI controls disabled with hint. Real encryption requires a library swap (see deferred #D1) |
|
||||||
|
|
||||||
|
## 2. What the formal pass (Task 24) found
|
||||||
|
|
||||||
|
**Confirmed (confidence 8/10, HIGH) — fixed inline:**
|
||||||
|
|
||||||
|
- **Git sidebar XSS → code execution** (`src/sidebar/git-panel.js`): repo-derived branch names, git-status file names, commit messages/author names, and git stderr rendered into `innerHTML` unescaped in the `nodeIntegration:true` main window, whose CSP permits `'unsafe-inline'` handlers. A malicious repo (attacker-authored commit message or crafted branch name) cloned by the victim executes script with full Node access when the Git panel loads. Fixed — `eafaf6e`: `escapeHtml` (& < > " ') across all 13 sink sites; jsdom tests assert structural inertness (no `img`/`script` elements, no attribute breakout) and that `dataset` reads still return raw names for git operations.
|
||||||
|
|
||||||
|
**Candidate assessed and dropped (with evidence):**
|
||||||
|
|
||||||
|
- PowerShell BurntToast interpolation (`main.js` ~4344): pre-existing at origin/master in identical `execFile`-array form. The dialog path interpolates a `format` chosen from a hardcoded 12-entry list; the `--convert-to <format>` CLI path feeds raw argv into the same string — but argv is trusted local-user input (precedent: CLI flags are trusted), and no shell is involved. Not exploitable. (Evidence note: the "hardcoded list" rationale covers the dialog path only; the drop stands on the argv-trust precedent for the CLI path.)
|
||||||
|
|
||||||
|
**Verified clean (14 areas):** media operation backends and all batch handlers (execFile arrays throughout, no string re-tokenization); plugin system (no escalation beyond the renderer's existing privileges; format metadata reaches main only as native menu labels and save-dialog filters); all new dialog renderers (`textContent`-only for dynamic content); PDFOperations new ops (pdfjs/sharp in-process, no shell); wordTemplateExporter (all `<w:t>` insertions escaped, no zip extraction → no zip-slip); GitOperations (simple-git array args); settings/presets stores (no deep merge → no prototype pollution); PandocArgs completeness (tree-wide grep: zero surviving string-built pandoc invocations); font embedders (fixed family→filename maps); generator windows (no untrusted prefill); print-preview (DOMPurify flow); no `eval`/`new Function`; no variable-URL `shell.openExternal`; no secrets in the diff.
|
||||||
|
|
||||||
|
## 3. Deferred / accepted risks
|
||||||
|
|
||||||
|
| ID | Risk | Disposition |
|
||||||
|
|----|------|-------------|
|
||||||
|
| D1 | **Real PDF encryption unavailable** (pdf-lib limitation) — feature now fails honestly rather than lying | Accepted for this release. Restoring it means swapping pdf-lib for an encryption-capable fork (e.g. `@cantoo/pdf-lib`, API-compatible) — **needs explicit sign-off on a new dependency** |
|
||||||
|
| D2 | `nodeIntegration:true` + `contextIsolation:false` on mainWindow, pdfWindow, hiddenWindow; main window does not load `preload.js` (inline shim instead) — the IPC whitelist is a live control only on the two generator windows | Accepted legacy risk for this branch; owned by the react-electron migration (contextIsolation + preload-everywhere), tracked separately |
|
||||||
|
| D3 | Generator-window preload whitelist is broad (`execute-code`, `read-file`, `write-file`, `delete-file` reachable from isolated windows) | No current content vector into those windows; flag for the migration to narrow per-window APIs |
|
||||||
|
| D4 | CSP allows `'unsafe-inline'` / `'unsafe-eval'` (required by marked + Mermaid rendering model) | Accepted; revisit under the migration with a nonce-based CSP |
|
||||||
|
| D5 | `outline-panel.js` / `repl-panel.js` / `analytics-panel.js` have local `escapeHtml` helpers that do not escape quotes | Deferred hardening: unsafe only if reused in attribute contexts; no such current use found |
|
||||||
|
| D6 | `scripts/download-tools.js` downloads Pandoc/fonts without checksum pinning | Build-time supply-chain hardening; recommended follow-up (pin + verify SHA-256) |
|
||||||
|
| D7 | Misc functional edge cases (batch same-folder overwrite, `pdfSplit` non-positive interval loop, rate-limiter dialog stall) | Deferred minors, logged in the plan ledger; none security-relevant |
|
||||||
|
|
||||||
|
## 4. Verification state
|
||||||
|
|
||||||
|
- Test suite: **49 suites / 512 tests passing**; ESLint and Prettier clean at every task boundary (enforced per-task during execution).
|
||||||
|
- All new external-process code paths verified `execFile`-array by independent tree-wide grep (Task 23 review) and re-verified in the formal pass.
|
||||||
|
- **Release blocker (human step):** this environment cannot launch the Electron GUI. A human pass in the running app — light + dark themes, file picking in the main dialogs (File B in Document Compare, bibliography/CSL, universal converter, PDF editor), Git sidebar on a real repo — is required before shipping.
|
||||||
|
|
||||||
|
**Bottom line:** the one Critical (argument injection) and one confirmed High (Git panel XSS) are closed with tests; two latent silent-failure bugs (File.path, fake encryption) are fixed; the remaining exposure is the documented legacy trust model (D2–D4) owned by the planned Electron security migration plus one dependency decision (D1).
|
||||||
@@ -1,361 +0,0 @@
|
|||||||
# MarkdownConverter — React + shadcn/ui UI Redesign
|
|
||||||
|
|
||||||
**Date:** 2026-06-05
|
|
||||||
**Status:** Design (awaiting user approval)
|
|
||||||
**Branch:** `react-electron`
|
|
||||||
**Author:** Brainstormed with user via superpowers:brainstorming
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Replace the legacy vanilla JS renderer (`src/renderer.js` is 213 KB; `src/styles.css` is 74 KB) with a modern React 19 + Vite + TypeScript + shadcn/ui renderer that achieves visual feature parity while delivering a Polished + Glassy (Raycast/Arc-style) aesthetic. The Electron main process, preload bridge, and IPC contracts stay unchanged. Work proceeds via vertical slices — each PR ships a demoable feature.
|
|
||||||
|
|
||||||
## Goals
|
|
||||||
|
|
||||||
1. Replace every render-time feature of the legacy renderer with an idiomatic React + shadcn/ui implementation.
|
|
||||||
2. Adopt the "Polished + Glassy" visual language (subtle shadows, 8–12 px radii, gradient accents, gentle depth) on top of the existing ConcreteInfo brand tokens and design system.
|
|
||||||
3. Use a single component foundation (shadcn/ui) and a single motion library (Motion / Framer Motion) to keep the dependency surface narrow and the design coherent.
|
|
||||||
4. Keep the main process, preload, and IPC contracts untouched. The renderer is the only surface being rewritten.
|
|
||||||
5. Keep the app runnable at every commit. No "big bang" merge.
|
|
||||||
|
|
||||||
## Non-Goals
|
|
||||||
|
|
||||||
- Migrating the main process to TypeScript (out of scope for this spec).
|
|
||||||
- Adding new features the legacy renderer does not have (plugin system, AI features, etc. — those are future specs).
|
|
||||||
- Replacing Pandoc/FFmpeg/ImageMagick orchestration.
|
|
||||||
- Changing the packaging pipeline (electron-builder config stays).
|
|
||||||
- Replacing the CodeMirror 6 editor — it is the right tool and is already wired up.
|
|
||||||
|
|
||||||
## Decisions Locked During Brainstorming
|
|
||||||
|
|
||||||
| Decision | Choice | Why |
|
|
||||||
|---|---|---|
|
|
||||||
| Scope | Full feature parity with legacy renderer | User-selected option. Renderer is one cohesive surface; splitting it across specs would force premature contracts. |
|
|
||||||
| Visual style | **B — Polished + Glassy** (Raycast/Arc aesthetic) | "Fancy" comes from elevation, gradient accents, and material depth — not over-designed visuals. |
|
|
||||||
| Layout | **2 — IDE-style** (equal editor/preview, draggable divider, collapsible sidebar) | Power-user markdown apps converge on this. Draggable divider + keyboard reset. |
|
|
||||||
| Modal patterns | **A (Centered Dialog), B (Right Side-Sheet), D (Toasts)** | No command palette. |
|
|
||||||
| Command palette | **No** — full menus, no ⌘K | Power users can use the OS-level launcher. App stays focused on writing. |
|
|
||||||
| Animation | **Motion (Framer Motion)** | Best for layout transitions, modal/drawer enter/exit, drag. Sparingly used. |
|
|
||||||
| Component library | **shadcn/ui** | Tailwind + Radix primitives, copy-paste ownership, perfect fit for the "glassy" aesthetic and the HSL-CSS-variable foundation that is already in place. |
|
|
||||||
| Implementation strategy | **Vertical slices** — one feature end-to-end per PR | App stays runnable. Each PR is reviewable. |
|
|
||||||
|
|
||||||
## Defaults (Used Unless Overridden Later)
|
|
||||||
|
|
||||||
| Item | Default | Why |
|
|
||||||
|---|---|---|
|
|
||||||
| State management | Zustand (already in deps) + Immer for nested patches | Already in `package.json`; perfect for editor state. |
|
|
||||||
| Theming | shadcn `next-themes`, dark default + light, system-aware | shadcn canonical pattern. Brand colors already in CSS vars. |
|
|
||||||
| Icons | `lucide-react` (already in deps) | 1000+ tree-shakable icons. |
|
|
||||||
| Forms | `react-hook-form` + `zod` | Standard for shadcn forms. |
|
|
||||||
| Drag/drop (sortable lists) | `@dnd-kit/core` | De facto React drag lib (file tree reordering, plugin list reorder). |
|
|
||||||
| Pane resize (split layout) | `react-resizable-panels` | Canonical React lib for resizable pane groups; handles drag, arrow keys, snap, persisted sizes. |
|
|
||||||
| Testing | Vitest + RTL + Playwright (E2E + visual regression) | Standard for React + Electron. |
|
|
||||||
| TypeScript | Strict mode (already wired) | Already in deps and `vite.renderer.config.ts`. |
|
|
||||||
|
|
||||||
## Architecture
|
|
||||||
|
|
||||||
The Electron app keeps its existing process model. Only the renderer is rewritten.
|
|
||||||
|
|
||||||
```
|
|
||||||
┌──────────────────────────────────────────────────────────┐
|
|
||||||
│ Electron Main (UNCHANGED) │
|
|
||||||
│ - BrowserWindow, IPC handlers, file/fs ops │
|
|
||||||
│ - Pandoc, FFmpeg, ImageMagick orchestration │
|
|
||||||
└────────────┬─────────────────────────────────────────────┘
|
|
||||||
│ contextBridge (UNCHANGED preload.js)
|
|
||||||
┌────────────▼─────────────────────────────────────────────┐
|
|
||||||
│ React Renderer (REWRITTEN) │
|
|
||||||
│ ┌────────────────────────────────────────────────────┐ │
|
|
||||||
│ │ AppShell (layout) │ │
|
|
||||||
│ │ ├─ MenuBar (native) │ │
|
|
||||||
│ │ ├─ AppHeader (logo, breadcrumbs, theme toggle) │ │
|
|
||||||
│ │ ├─ TabBar (open files) │ │
|
|
||||||
│ │ ├─ Toolbar (formatting) │ │
|
|
||||||
│ │ ├─ ResizablePaneGroup (sidebar | editor | preview) │ │
|
|
||||||
│ │ │ ├─ Sidebar (file tree, outline) │ │
|
|
||||||
│ │ │ ├─ EditorPane (CodeMirror 6) │ │
|
|
||||||
│ │ │ └─ PreviewPane (marked + KaTeX + Mermaid) │ │
|
|
||||||
│ │ ├─ StatusBar (word count, encoding, cursor pos) │ │
|
|
||||||
│ │ └─ ModalLayer (Dialog, SideSheet, Toaster) │ │
|
|
||||||
│ └────────────────────────────────────────────────────┘ │
|
|
||||||
│ ┌────────────────────────────────────────────────────┐ │
|
|
||||||
│ │ Feature Modules (each owns UI + state slice) │ │
|
|
||||||
│ │ ├─ editor/ CodeMirror wrapper, syntax, themes │ │
|
|
||||||
│ │ ├─ preview/ markdown→html, KaTeX, Mermaid │ │
|
|
||||||
│ │ ├─ tabs/ open files, dirty state │ │
|
|
||||||
│ │ ├─ sidebar/ file tree, outline, search results │ │
|
|
||||||
│ │ ├─ modals/ export, settings, about, etc. │ │
|
|
||||||
│ │ ├─ tools/ zen, repl, ascii-gen, table-gen │ │
|
|
||||||
│ │ └─ export/ pdf, docx, html, image batch │ │
|
|
||||||
│ └────────────────────────────────────────────────────┘ │
|
|
||||||
│ ┌────────────────────────────────────────────────────┐ │
|
|
||||||
│ │ Shared Infrastructure │ │
|
|
||||||
│ │ ├─ stores/ Zustand slices per feature │ │
|
|
||||||
│ │ ├─ hooks/ useFile, useEditor, useTheme, etc. │ │
|
|
||||||
│ │ ├─ lib/ cn, ipc, formatters, validators │ │
|
|
||||||
│ │ ├─ ui/ shadcn primitives: button, dialog… │ │
|
|
||||||
│ │ └─ types/ shared TS types │ │
|
|
||||||
│ └────────────────────────────────────────────────────┘ │
|
|
||||||
└──────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
### Architectural Rules
|
|
||||||
|
|
||||||
- **Shell components** (`AppHeader`, `TabBar`, `StatusBar`) subscribe only to `useAppStore`.
|
|
||||||
- **Feature components** subscribe to their own feature's store.
|
|
||||||
- **Cross-feature access** goes through hooks, not direct store imports (e.g., `useFileTree()` wraps `useFileStore`).
|
|
||||||
- **Feature modules are self-contained** — each owns its components, its Zustand slice, and its types. Safe to develop in parallel later.
|
|
||||||
- **No direct `window.electronAPI` calls** from feature code. All IPC goes through `lib/ipc.ts` for type safety and error normalization.
|
|
||||||
|
|
||||||
## State Management
|
|
||||||
|
|
||||||
```
|
|
||||||
stores/
|
|
||||||
├─ useAppStore // global UI: theme, sidebar, pane sizes, modals open
|
|
||||||
├─ useFileStore // file system: tree, open files, active tab
|
|
||||||
├─ useEditorStore // editor: per-file content, cursor, selection, dirty
|
|
||||||
├─ usePreviewStore // preview: scroll sync, zoom, theme
|
|
||||||
├─ useSettingsStore // user prefs (persisted to electron-store)
|
|
||||||
└─ useCommandStore // menu actions registry, recent actions
|
|
||||||
```
|
|
||||||
|
|
||||||
**Why slices instead of one mega-store?** Editor content can be megabytes. Keeping it in its own slice lets React avoid re-rendering the preview when only the editor changes — components subscribe with selectors.
|
|
||||||
|
|
||||||
**Persistent state** (auto-saved to electron-store via Zustand `persist` middleware): theme, sidebar visibility, last open files, pane divider positions, settings.
|
|
||||||
|
|
||||||
**Ephemeral state** (lost on quit): active modal, hover states, search query, current file content (saved to disk on idle).
|
|
||||||
|
|
||||||
## Visual Design System
|
|
||||||
|
|
||||||
### Color Tokens
|
|
||||||
|
|
||||||
The existing `globals.css` HSL variables stay. Additions for the "glassy" aesthetic:
|
|
||||||
|
|
||||||
```css
|
|
||||||
--shadow-sm: 0 1px 2px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-md: 0 4px 12px rgba(13, 11, 9, 0.08), 0 0 0 1px rgba(13, 11, 9, 0.04);
|
|
||||||
--shadow-lg: 0 12px 32px rgba(13, 11, 9, 0.12), 0 0 0 1px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-glow-brand: 0 0 24px rgba(229, 70, 31, 0.25);
|
|
||||||
|
|
||||||
--glass-bg-light: rgba(255, 255, 255, 0.72);
|
|
||||||
--glass-bg-dark: rgba(13, 11, 9, 0.72);
|
|
||||||
--glass-border-light: rgba(255, 255, 255, 0.4);
|
|
||||||
--glass-border-dark: rgba(255, 255, 255, 0.08);
|
|
||||||
```
|
|
||||||
|
|
||||||
### shadcn Components
|
|
||||||
|
|
||||||
Install via `npx shadcn@latest add`:
|
|
||||||
|
|
||||||
**Primitives** (need all of these): `button`, `dialog`, `sheet`, `popover`, `tooltip`, `select`, `dropdown-menu`, `tabs`, `separator`, `scroll-area`, `toggle`, `switch`, `slider`, `input`, `textarea`, `label`, `form`, `skeleton`, `sonner`, `command`.
|
|
||||||
|
|
||||||
**Composite** (custom-built on top of primitives): `file-tree`, `pane-group`, `divider`, `status-bar`, `menu-bar`, `toast`.
|
|
||||||
|
|
||||||
### Typography
|
|
||||||
|
|
||||||
- Body: Plus Jakarta Sans 15 px / line-height 1.6
|
|
||||||
- Code: JetBrains Mono 13.5 px
|
|
||||||
- Display: Barlow Condensed 700/800 — used sparingly (page titles, big metrics)
|
|
||||||
- Headings: Plus Jakarta Sans 600/700 with tight letter-spacing
|
|
||||||
- Labels (`.label`): Plus Jakarta Sans 500, 12 px, uppercase, 0.05 em letter-spacing
|
|
||||||
|
|
||||||
### Motion Choreography
|
|
||||||
|
|
||||||
| Element | Motion | Duration | Easing |
|
|
||||||
|---|---|---|---|
|
|
||||||
| Modal (Dialog A) | Scale 0.96→1, opacity 0→1 | 200 ms | `ease-out` |
|
|
||||||
| Side sheet (B) | TranslateX 100%→0, opacity 0→1 | 300 ms | `cubic-bezier(0.16, 1, 0.3, 1)` |
|
|
||||||
| Toast | TranslateY 100%→0, opacity | 250 ms | spring(stiffness: 300, damping: 30) |
|
|
||||||
| Sidebar toggle | Width 264 px↔72 px, content fade | 250 ms | `ease-in-out` |
|
|
||||||
| Divider drag | Live width update | 0 ms | none (instant) |
|
|
||||||
| Theme switch | CSS variables, opacity overlay | 300 ms | `ease-in-out` |
|
|
||||||
| Tab switch | Underline slide | 200 ms | `ease-out` |
|
|
||||||
| Hover (buttons) | `bg` + `shadow` shift | 150 ms | `ease-out` |
|
|
||||||
| Focus ring | Outline grow | 100 ms | `ease-out` |
|
|
||||||
|
|
||||||
**Rules:** Every motion has a purpose. No gratuitous animation. Respects `prefers-reduced-motion` (Motion handles this automatically).
|
|
||||||
|
|
||||||
### Empty / Loading / Error States
|
|
||||||
|
|
||||||
Every async surface ships all three. Sonner toasts for ephemeral feedback. Skeleton screens for content areas. Empty-state components with icon + message + primary CTA.
|
|
||||||
|
|
||||||
## Modal/Overlay Patterns
|
|
||||||
|
|
||||||
| Use case | Pattern | Why |
|
|
||||||
|---|---|---|
|
|
||||||
| Export (PDF/DOCX/HTML) | A — Centered Dialog | Focused decision, ~3–5 fields, "do one thing" |
|
|
||||||
| Settings | B — Right Side-Sheet | Long form, tabbed sections, stays open while editing |
|
|
||||||
| Find/Replace | Inline toolbar (not modal) | Always-visible utility |
|
|
||||||
| About | A — Centered Dialog | Tiny info dump |
|
|
||||||
| Confirm destructive (delete, close unsaved) | A — Centered Dialog | Forces attention |
|
|
||||||
| File save error | D — Toast | Non-blocking info |
|
|
||||||
| Pandoc/FFmpeg progress | D — Toast → sticky on >3 s | Background work feedback |
|
|
||||||
| Plugin manager | B — Right Side-Sheet | Lists + per-item actions |
|
|
||||||
| ASCII/Table generators | A — Centered Dialog | Tool-style focused input → output |
|
|
||||||
| Print preview | A — Centered Dialog | Full-screen-ish modal overlay |
|
|
||||||
| Welcome (first launch) | A — Centered Dialog | One-time onboarding |
|
|
||||||
| Word export | A — Centered Dialog | Template selection |
|
|
||||||
| Zen mode | Full-viewport toggle (no modal) | Replaces the editor entirely |
|
|
||||||
| REPL | Bottom-pinned panel (split-pane) | Persistent terminal-like UI |
|
|
||||||
| Quick file open | B — Right Side-Sheet | File tree, search, recent |
|
|
||||||
|
|
||||||
### Dialog A Anatomy (Export as example)
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─ Backdrop (rgba(13,11,9,0.45) + backdrop-blur 4px) ─────────┐
|
|
||||||
│ │
|
|
||||||
│ ┌──── Modal (max-w-md, rounded-2xl, shadow-lg) ─────┐ │
|
|
||||||
│ │ ┌── Header ────────────────────────────────────┐ │ │
|
|
||||||
│ │ │ [Icon] Export as PDF [×] │ │ │
|
|
||||||
│ │ │ Choose format options │ │ │
|
|
||||||
│ │ └─────────────────────────────────────────────┘ │ │
|
|
||||||
│ │ ┌── Body ──────────────────────────────────────┐ │ │
|
|
||||||
│ │ │ Format: [Letter] [A4] [Legal] │ │ │
|
|
||||||
│ │ │ Margins: ────●──── │ │ │
|
|
||||||
│ │ │ ☐ Include table of contents │ │ │
|
|
||||||
│ │ │ ☐ Embed fonts │ │ │
|
|
||||||
│ │ └─────────────────────────────────────────────┘ │ │
|
|
||||||
│ │ ┌── Footer ────────────────────────────────────┐ │ │
|
|
||||||
│ │ │ [Cancel] [Export →] │ │ │
|
|
||||||
│ │ └─────────────────────────────────────────────┘ │ │
|
|
||||||
│ └──────────────────────────────────────────────────┘ │
|
|
||||||
│ │
|
|
||||||
└────────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
### Side-Sheet B Anatomy (Settings as example)
|
|
||||||
|
|
||||||
Slides in from right, ~50 % width (max 560 px). Backdrop is `rgba(13,11,9,0.2)` with `backdrop-blur(2 px)` (lighter than dialog — the sheet is the focus). Tab navigation in the sheet header (Editor / Theme / Export / Plugins / About).
|
|
||||||
|
|
||||||
### Toast D Anatomy (Sonner)
|
|
||||||
|
|
||||||
Stacked bottom-right, max 3 visible. Glass background. Color-coded 3 px left border — success `#1a7a56`, error `#ef4444`, info `#0ea5e9`, warning `#eab308`. Icon + title + description. Optional action button. Auto-dismiss 4 s for success, sticky for error.
|
|
||||||
|
|
||||||
## Data Flow (Editor → Preview Pipeline)
|
|
||||||
|
|
||||||
```
|
|
||||||
User types
|
|
||||||
↓
|
|
||||||
CodeMirror onChange
|
|
||||||
↓
|
|
||||||
useEditorStore.updateContent(tabId, content) ← debounced 50 ms
|
|
||||||
↓
|
|
||||||
┌─ Persist to electron-store on idle (1 s) ─┐
|
|
||||||
│ │
|
|
||||||
└─ Publish to usePreviewStore (subscribed) ─┘
|
|
||||||
↓
|
|
||||||
marked(content) → sanitized HTML
|
|
||||||
↓
|
|
||||||
PreviewPane renders HTML
|
|
||||||
KaTeX post-processes $...$
|
|
||||||
Mermaid post-processes ```mermaid
|
|
||||||
Highlight.js post-processes ```lang
|
|
||||||
↓
|
|
||||||
useEffect: scroll-sync editor cursor → preview position
|
|
||||||
```
|
|
||||||
|
|
||||||
**Bidirectional scroll sync:** editor scroll → preview (primary), preview click → editor cursor (secondary). Throttled to 60 fps via `requestAnimationFrame`.
|
|
||||||
|
|
||||||
## IPC Contract
|
|
||||||
|
|
||||||
The preload bridge stays unchanged. A new `src/renderer/lib/ipc.ts` wraps every channel with TypeScript types and normalizes errors to a discriminated union:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
type IpcResult<T> =
|
|
||||||
| { ok: true; data: T }
|
|
||||||
| { ok: false; error: { code: string; message: string } };
|
|
||||||
|
|
||||||
export const ipc = {
|
|
||||||
file: {
|
|
||||||
open: (): Promise<IpcResult<FileResult>>,
|
|
||||||
read: (path: string): Promise<IpcResult<string>>,
|
|
||||||
write: (path: string, content: string): Promise<IpcResult<void>>,
|
|
||||||
list: (dir: string): Promise<IpcResult<FileEntry[]>>,
|
|
||||||
onChange: (cb: (path: string) => void) => () => void,
|
|
||||||
},
|
|
||||||
export: {
|
|
||||||
pdf: (opts: PdfOptions): Promise<IpcResult<ExportResult>>,
|
|
||||||
docx: (opts: DocxOptions): Promise<IpcResult<ExportResult>>,
|
|
||||||
html: (opts: HtmlOptions): Promise<IpcResult<ExportResult>>,
|
|
||||||
batch: (items: BatchItem[], opts: BatchOptions): Promise<IpcResult<BatchResult>>,
|
|
||||||
},
|
|
||||||
app: {
|
|
||||||
getVersion: (): Promise<IpcResult<string>>,
|
|
||||||
openExternal: (url: string): Promise<IpcResult<void>>,
|
|
||||||
showItemInFolder: (path: string): Promise<IpcResult<void>>,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
## Error Handling
|
|
||||||
|
|
||||||
Layered defense — no single failure can crash the app:
|
|
||||||
|
|
||||||
1. **IPC errors** → caught in `lib/ipc.ts` wrapper, returned as `IpcResult<T>` discriminated union. Components show toast on error.
|
|
||||||
2. **Component errors** → React error boundary per feature area (one for editor, one for preview, one for modals). On error: show inline error UI with "Reload this panel" + "Copy details" actions.
|
|
||||||
3. **Async operations** (export, file ops) → loading state on button + toast on completion. Long ops (>2 s) get a sticky toast with cancel.
|
|
||||||
4. **Validation errors** (settings, export options) → inline form errors via `react-hook-form` + `zod`. shadcn `Form` component for consistent error display.
|
|
||||||
5. **Pandoc/FFmpeg missing** → detected at startup, banner + disable export menu items. Don't surprise-fail at export time.
|
|
||||||
|
|
||||||
## Testing Strategy
|
|
||||||
|
|
||||||
- **Unit (Vitest):** stores, hooks, lib utilities, formatters, validators
|
|
||||||
- **Component (Vitest + RTL):** shadcn wrappers, dialog interactions, sidebar toggle, divider drag, theme toggle
|
|
||||||
- **Integration (Vitest + RTL):** editor ↔ preview flow, file open → tab add → content display, settings change persists
|
|
||||||
- **E2E (Playwright):** app launches, file opens, markdown renders, export to PDF works
|
|
||||||
- **Visual regression (Playwright snapshots):** locked-in screenshots for header, sidebar, dialogs, toasts — catch accidental style drift
|
|
||||||
- **Target coverage:** stores/hooks/lib ≥ 90 %, components ≥ 75 %, E2E covers all critical paths
|
|
||||||
|
|
||||||
## Accessibility (WCAG 2.1 AA)
|
|
||||||
|
|
||||||
Baked in via shadcn + Radix:
|
|
||||||
|
|
||||||
- All dialogs focus-trap, Esc to close, return focus to trigger
|
|
||||||
- All interactive elements keyboard-reachable
|
|
||||||
- Visible focus rings (2 px brand ring)
|
|
||||||
- 4.5:1 contrast minimum (already met by brand colors)
|
|
||||||
- `aria-label` on icon buttons, `role="alert"` on toasts
|
|
||||||
- Respects `prefers-reduced-motion` (Motion handles this automatically)
|
|
||||||
|
|
||||||
## Implementation Phases (Vertical Slices)
|
|
||||||
|
|
||||||
Each phase is a shippable PR that keeps the app runnable. The legacy `renderer.js` is gradually replaced; until each phase is complete, the old renderer code still runs the missing parts.
|
|
||||||
|
|
||||||
| # | Phase | Output | Acceptance |
|
|
||||||
|---|---|---|---|
|
|
||||||
| 1 | **Foundation** | shadcn installed; `next-themes`, `motion`, `react-hook-form`, `zod`, `@dnd-kit/core`, `react-resizable-panels`, `sonner` installed; design tokens finalized; `lib/utils.ts` (`cn`), `lib/ipc.ts` typed wrappers, `lib/motion.ts` preset transitions, `App.tsx` shell skeleton renders | `npm run build` succeeds; dev server shows the new shell with theme toggle working |
|
|
||||||
| 2 | **App shell + layout** | `AppHeader`, `TabBar`, `Toolbar`, `Breadcrumb`, `StatusBar`, `ResizablePaneGroup` with sidebar toggle and draggable divider. Empty editor/preview panes. | Resize divider with mouse and arrow keys; sidebar collapses; pane sizes persist. |
|
|
||||||
| 3 | **Editor pane** | CodeMirror 6 wrapped, dark/light themes wired to shadcn theme, syntax highlighting, line numbers, search, autocomplete | Open `.md` file → renders in editor; can edit and save. |
|
|
||||||
| 4 | **Preview pane** | marked + DOMPurify + KaTeX + Mermaid + highlight.js. Bidirectional scroll sync with editor. | Open file → preview renders, follows cursor. |
|
|
||||||
| 5 | **File tree + tabs** | Sidebar file tree (read directory on demand, lazy-expand children only on click). Tabs for open files. Dirty state indicator. File content is read from disk only when the tab is activated. | Open folder → root populates; click folder → children load; click file → opens in tab; close tab reverts dirty. |
|
|
||||||
| 6 | **Native menus + toolbar** | Replace the legacy `CommandPalette` with full menus (File / Edit / View / Insert / Format / Tools / Help) bound to keyboard shortcuts. Toolbar buttons. | All menu items invoke the right action; shortcuts work; toolbar reflects active state. |
|
|
||||||
| 7 | **Modals** | Export dialog (PDF/DOCX/HTML/batch), Settings side-sheet (Editor/Theme/Export/Plugins/About tabs), About dialog, Confirm-destructive dialog | All dialogs and sheet render with proper motion; settings persist; export works end-to-end. |
|
|
||||||
| 8 | **Toasts** | Sonner wired into all async operations (save, export, errors, tool missing) | All operations give appropriate feedback; no silent failures. |
|
|
||||||
| 9 | **Advanced tools** | Zen mode (full-viewport toggle), REPL (bottom-pinned panel), ASCII generator, Table generator, Word export template picker, Print preview | Each tool is feature-complete vs. legacy version. |
|
|
||||||
| 10 | **Polish + delete legacy** | Visual regression snapshots locked; remove `renderer.js` and old `styles*.css` references from build; `npm run build:linux` produces a working installer | Final PR ships an installer with no legacy code paths. |
|
|
||||||
|
|
||||||
## Risks and Mitigations
|
|
||||||
|
|
||||||
| Risk | Mitigation |
|
|
||||||
|---|---|
|
|
||||||
| shadcn CLI requires Vite (not vanilla Electron renderer) | Vite is already configured for the renderer in `vite.renderer.config.ts`; the CLI works against the same project. |
|
|
||||||
| shadcn CLI assumes Tailwind is at project root; we have it in renderer/ only | Point the CLI at `src/renderer/components.json` and set `tailwind.css` to the right path. |
|
|
||||||
| Marked + KaTeX + Mermaid + highlight.js together is heavy | Lazy-load Mermaid (only when `mermaid` code block encountered). KaTeX is loaded once, cached. |
|
|
||||||
| Editor content state can be megabytes → re-render storms | Editor content lives in its own slice; preview subscribes to a derived/cached HTML string; components use `useShallow` / selector subscriptions. |
|
|
||||||
| Bidirectional scroll sync loops | `useEffect` debounce + ignore if cursor/selection is the sync source. |
|
|
||||||
| CodeMirror 6 doesn't ship a Tailwind theme by default | Use `@codemirror/theme-one-dark` for dark; build a custom theme that pulls from CSS variables for light. |
|
|
||||||
| The legacy `renderer.js` and `styles*.css` are referenced from `index.html` (now `src/renderer/index.html`) | Phase 10 deletes the references; until then, both run side-by-side and the new React app sits in a known root div. |
|
|
||||||
| Electron `nodeIntegration` is off; we use contextBridge | Already the case. Document the contract clearly in `lib/ipc.ts`. |
|
|
||||||
|
|
||||||
## Open Questions (to confirm before implementation)
|
|
||||||
|
|
||||||
None. All major decisions are locked. Defaults will be used unless the user overrides them when reviewing the implementation plan.
|
|
||||||
|
|
||||||
## References
|
|
||||||
|
|
||||||
- `src/renderer.js` (213 KB) — legacy renderer being replaced
|
|
||||||
- `src/styles.css` (74 KB), `src/styles-modern.css` (71 KB), `src/styles-concreteinfo.css` (21 KB) — legacy styles being replaced
|
|
||||||
- `src/renderer/styles/globals.css` — already shadcn-compatible (HSL CSS variables)
|
|
||||||
- `src/renderer/App.tsx` — empty skeleton that references components we will build
|
|
||||||
- `tailwind.config.js` — brand colors and fonts already defined
|
|
||||||
- `vite.renderer.config.ts` — Vite + React plugin already configured
|
|
||||||
- `package.json` — CodeMirror 6, TanStack Table, lucide-react, cva, clsx, tailwind-merge, tailwindcss-animate already installed
|
|
||||||
@@ -0,0 +1,216 @@
|
|||||||
|
# MarkdownConverter — Monospace Font Embedding Design
|
||||||
|
|
||||||
|
**Date:** 2026-06-30
|
||||||
|
**Status:** Approved
|
||||||
|
**Author:** Amit Haridas
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
Guarantee proper ASCII character alignment in MarkdownConverter's preview and every supported export format (PDF, DOCX, HTML, plus ODT/RTF/EPUB/LaTeX), with no OS-level font dependency. The user can pick between **JetBrains Mono** (default) and **Fira Code**, and toggle ligatures (default off). Both font families are bundled inside the app, so alignment holds on every supported platform (Windows/macOS/Linux) without an internet connection, without system-wide font installation, and without the user touching anything system-level.
|
||||||
|
|
||||||
|
## Goals
|
||||||
|
|
||||||
|
1. ASCII art and code-block tables (e.g. `+----+----+` column delimiters) render at identical advance widths in the live preview **and** in every exported file.
|
||||||
|
2. No OS font dependency — TTFs ship inside the app.
|
||||||
|
3. Per-user choice of monospace family + ligature behaviour.
|
||||||
|
4. Self-contained exports: the exported PDF/DOCX/HTML file is portable to another machine and stays aligned.
|
||||||
|
|
||||||
|
## Non-Goals (v1)
|
||||||
|
|
||||||
|
- No font subsetting of TTFs (we ship the full file; xelatex subsets it into the PDF automatically; DOCX carriers get the full TTF in `word/fonts/`).
|
||||||
|
- No support for the user adding a third bundled font family.
|
||||||
|
- No PPTX or revealjs/Beamer ligature-toggle (PPTX is a slide format that rarely carries ASCII tables; revealjs/Beamer inherit HTML/LaTeX defaults).
|
||||||
|
- No licensed/commercial fonts (Fira Code and JetBrains Mono are both SIL OFL — confirmed in `assets/fonts/JetBrainsMono-LICENSE.txt`).
|
||||||
|
|
||||||
|
## Decisions Locked
|
||||||
|
|
||||||
|
| Decision | Choice | Reason |
|
||||||
|
|---|---|---|
|
||||||
|
| Scope | All export formats | All-surfaces alignment |
|
||||||
|
| DOCX strategy | Embed TTF into the DOCX zip | Truly portable; alignment holds even when the recipient lacks the font |
|
||||||
|
| PDF strategy | Pass TTF path to xelatex via `fontspec` (`\setmonofont[Path=...]`) | xelatex subsets the font into the PDF; reproducible across machines |
|
||||||
|
| Font choice | Both bundled; user-pickable in settings | Cover both preferences; default JetBrains Mono |
|
||||||
|
| Ligatures | Off by default; user toggle | Ligatures change advance widths and break ASCII grid alignment |
|
||||||
|
| License | SIL OFL (both families) | Embedding/bundling explicitly permitted when license travels with the binary (already present at `assets/fonts/JetBrainsMono-LICENSE.txt`) |
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
```
|
||||||
|
settings.json
|
||||||
|
│
|
||||||
|
│ (renderer + main read on init)
|
||||||
|
▼
|
||||||
|
CSS body classes: .mono-jetbrains / .mono-fira
|
||||||
|
.mono-ligatures-on / .mono-ligatures-off
|
||||||
|
--font-mono-active token
|
||||||
|
▲ ▲
|
||||||
|
│ IPC │ IPC
|
||||||
|
│ │
|
||||||
|
Preview pane ┌───────────┴──────────┐
|
||||||
|
ASCII Generator window │ Export pipeline │
|
||||||
|
Print-preview iframe │ (main process) │
|
||||||
|
│ uses MonospaceFontConfig
|
||||||
|
└──────────────────────┘
|
||||||
|
│
|
||||||
|
▼
|
||||||
|
Bundle: assets/fonts/
|
||||||
|
├─ JetBrainsMono-Regular.ttf
|
||||||
|
├─ JetBrainsMono-Bold.ttf
|
||||||
|
├─ FiraCode-Regular.ttf
|
||||||
|
├─ FiraCode-Bold.ttf
|
||||||
|
└─ (existing woff2 for renderer)
|
||||||
|
```
|
||||||
|
|
||||||
|
## New Modules
|
||||||
|
|
||||||
|
| File | Role |
|
||||||
|
|---|---|
|
||||||
|
| `src/main/MonospaceFontConfig.js` | Single source of truth. Resolves the active monospace family + weight → absolute TTF path, with awareness of dev vs packaged (asar.unpacked) layout. Returns `null` + warns when a file is missing. |
|
||||||
|
| `src/main/PdfFontHeader.js` | Builds the xelatex `header.tex` snippet with `\usepackage{fontspec}\setmonofont{...ttf}[Path=...,UprightFont=*-Regular,BoldFont=*-Bold,Ligatures=NoCommon/TeX]`. Also returns the lualatex equivalent. |
|
||||||
|
| `src/main/DocxFontEmbedder.js` | Unzips a pandoc-produced DOCX with `jszip`, writes TTFs into `word/fonts/`, patches `[Content_Types].xml`, `_rels/document.xml.rels`, creates `word/fontTable.xml` with `<w:embedRegular/>` referencing the TTF, patches `word/styles.xml` so the `SourceCode`/`VerbatimChar` styles bind to the embedded font name, then rezips. Idempotent. |
|
||||||
|
| `src/main/EpubFontEmbedder.js` | Wrapper around pandoc `--epub-embed-font` — verifies the chosen TTF is referenced in `OEBPS/content.opf`; patches the manifest if missing. |
|
||||||
|
| `src/main/ExportCss.js` | Returns a self-contained CSS string with `@font-face { src: url(data:font/woff2;base64,...) }` for the chosen family. Used by HTML export `--css` and by print-preview iframe. |
|
||||||
|
| `src/main/settings/SettingsUI.Monospace.js` | Two new controls in the in-app settings dialog: monospace font select + ligatures checkbox. Persists to `<userData>/settings.json`. |
|
||||||
|
|
||||||
|
## Modified Modules
|
||||||
|
|
||||||
|
| File | Change |
|
||||||
|
|---|---|
|
||||||
|
| `src/fonts.css` | Add `@font-face` entries for Fira Code Regular (400) and Bold (700), pointing to `assets/fonts/FiraCode-*.woff2` (downloaded via the extended `download-tools.js`). |
|
||||||
|
| `src/styles/tokens.css` + `src/styles-concreteinfo.css` | Define new tokens `--font-mono-active` (resolves to `"JetBrains Mono"` or `"Fira Code"`) and `--font-mono-feature` (`"liga" 0, "calt" 0, "dlig" 0` for ligatures-off, else `normal`). Body classes flip these. |
|
||||||
|
| `src/styles-modern.css` | `.editor-textarea`, `.preview-content code`, `.preview-content pre`, `.codemirror-container .cm-editor` reference `var(--font-mono-active)` and apply `font-feature-settings: var(--font-mono-feature)`. |
|
||||||
|
| `src/ascii-generator.html` | Replace `<link href="https://fonts.googleapis.com/...">` with `<link rel="stylesheet" href="../styles/fonts.css">` plus inline `body` class defaulting. The window is plain HTML; the renderer script that opens it sets `body.classList` from settings. |
|
||||||
|
| `src/print-preview.js` | Inject `<style>` with embedded woff2 base64 from `ExportCss.js` into the srcdoc iframe HTML; set `pre`/`code` font-family to `var(--font-mono-active)`. |
|
||||||
|
| `src/main.js` | Five `--css/-V monofont=Consolas` lines and the export pipelines need surgery (table below). On successful DOCX export, pipeline the output through `DocxFontEmbedder`. On HTML export, pass `--css` referencing a temp file emitted by `ExportCss.js`. On EPUB, pass `--epub-embed-font` for both Regular and Bold. On LaTeX/PDF, pass `--include-in-header` referencing a temp `header.tex` emitted by `PdfFontHeader.js`. The Electron `printToPDF` fallback also consumes `ExportCss.js`. |
|
||||||
|
| `src/renderer.js` | On `settings-changed`, toggle `document.body.classList` between `mono-jetbrains` / `mono-fira` and `mono-ligatures-on` / `mono-ligatures-off`. The active class is also written by the bit that initializes Monaco/CodeMirror when the editor is mounted. |
|
||||||
|
| `scripts/download-tools.js` | Add `fira-code` task: downloads `FiraCode-Regular.ttf`, `FiraCode-Bold.ttf`, `FiraCode-LICENSE.txt` from the official `tonsky/FiraCode` GitHub release (version-pinned, mirrors how Pandoc is downloaded). |
|
||||||
|
| `package.json` | `build.asarUnpack` extended to `"assets/fonts/**"` so xelatex/Pandoc can read TTFs at runtime in packaged builds. No new NPM dependencies — `jszip ^3.10.1` is already present. |
|
||||||
|
|
||||||
|
## Per-Export Behaviour
|
||||||
|
|
||||||
|
| Format | What changes | Post-processing | Resulting file shape |
|
||||||
|
|---|---|---|---|
|
||||||
|
| **PDF** (xelatex) | Replace `-V monofont="Consolas"` with `--include-in-header=<tmp>.tex` from `PdfFontHeader` (`\setmonofont{JetBrainsMono-Regular.ttf}[Path=…,Extension=.ttf,UprightFont=*-Regular,BoldFont=*-Bold,Ligatures=NoCommon]`). | none — xelatex subsets the font into the PDF. | Self-contained PDF; code-block columns align across pages. |
|
||||||
|
| **PDF** (lualatex fallback) | Same header uses lualatex-compatible fontspec syntax (identical to xelatex in modern LuaTeX). | none | Same as above. |
|
||||||
|
| **PDF** (pdflatex final fallback) | Revert to `-V monofont="Consolas"` + warn (Consolas not on all systems; document limitation). | none | Best-effort — relies on pdftex default monospace. |
|
||||||
|
| **DOCX** | Existing pandoc invocation. After pandoc writes, hand to `DocxFontEmbedder`. | Embed Regular + Bold TTF into `word/fonts/`; patch `[Content_Types].xml` Default+Override; add `word/_rels` entry for `fontTable.xml.rels`; create `word/fontTable.xml` with `<w:embedRegular/>` for each font weight; patch `word/styles.xml` so `SourceCode` (or whatever style Pandoc wrote under) sets `w:rFonts ascii="JetBrains Mono" hAnsi="JetBrains Mono"`. | ~550 KB larger DOCX; fully portable. |
|
||||||
|
| **HTML** (standalone) | Add `--css=<tmp>.css` (built by `ExportCss` with base64 woff2). | none | One self-contained `.html`; aligned anywhere, offline. |
|
||||||
|
| **EPUB** | Add `--epub-embed-font=<bundleAbs>/<Family>-Regular.ttf` and same for Bold (Pandoc 2.11+ supports this natively). | `EpubFontEmbedder` patches `OEBPS/content.opf` if the font reference is missing. | Embedded font travels in the EPUB. |
|
||||||
|
| **ODT** | `--variable=mainfont="JetBrains Mono"` (or Fira). | Before final write, show a non-blocking confirmation: "ODT embeds the font *name* — recipients must also have it installed to keep alignment. Continue?". | Light; portability caveat explicit to user. |
|
||||||
|
| **RTF** | `\fonttbl` directive already injected by pandoc when `mainfont=` is set. | Same ODT confirmation. | Same caveat as ODT. |
|
||||||
|
| **LaTeX (`.tex`)** | `--include-in-header=<tmp>.tex` identical to the PDF header. | none | Self-contained `.tex` for downstream compile. |
|
||||||
|
| **PPTX** | unchanged | n/a | v1: don't try to enforce. |
|
||||||
|
| **RevealJS** | behaves like HTML (uses `ExportCss`). | n/a | self-contained. |
|
||||||
|
| **Beamer** | behaves like LaTeX (uses `PdfFontHeader` snippet). | n/a | downstream PDF compile respects font. |
|
||||||
|
| **Print preview** | n/a | `ExportCss` injected into srcdoc iframe HTML. | Inside-app preview aligned. |
|
||||||
|
| **ASCII Generator window** | Replace Google Fonts CDN link with local `fonts.css`. | n/a | Offline, aligned. |
|
||||||
|
|
||||||
|
## Path Resolution
|
||||||
|
|
||||||
|
`MonospaceFontConfig` exposes:
|
||||||
|
|
||||||
|
```js
|
||||||
|
exports.getActiveMonoFontPath = function getActiveMonoFontPath(weight = 400)
|
||||||
|
exports.getActiveMonoFamily = function getActiveMonoFamily()
|
||||||
|
exports.ligaturesEnabled = function ligaturesEnabled()
|
||||||
|
```
|
||||||
|
|
||||||
|
- Dev: `<repoRoot>/assets/fonts/<Family>-<Weight>.ttf`
|
||||||
|
- Packaged: `<process.resourcesPath>/app.asar.unpacked/assets/fonts/<Family>-<Weight>.ttf`
|
||||||
|
- If the file is missing, returns `null` and emits a `console.warn` + a single non-blocking toast: "Using system monospace — bundled font missing".
|
||||||
|
|
||||||
|
## Settings Schema
|
||||||
|
|
||||||
|
Extended `<userData>/settings.json`:
|
||||||
|
|
||||||
|
```jsonc
|
||||||
|
{
|
||||||
|
// ... existing keys ...
|
||||||
|
"monospaceFont": "jetbrains-mono", // "jetbrains-mono" | "fira-code"
|
||||||
|
"monospaceLigatures": false // bool
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Defaults: `monospaceFont: "jetbrains-mono"`, `monospaceLigatures: false`. Migration: if a settings file exists without these keys, fill with defaults silently on read.
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
**New test files:**
|
||||||
|
|
||||||
|
| File | Asserts |
|
||||||
|
|---|---|
|
||||||
|
| `tests/monospace-font-config.test.js` | Dev vs packaged path semantics; null-and-warn on missing TTF; settings-driven family selection. |
|
||||||
|
| `tests/docx-font-embedder.test.js` | Produces a valid DOCX; `unzip -l` lists `word/fonts/JetBrainsMono-{Regular,Bold}.ttf`; `word/fontTable.xml` contains `<w:embedRegular r:id="…"/>` entries with correct names; `styles.xml` binds the monospace style to `"JetBrains Mono"`; idempotent (running twice doesn't double-embed). |
|
||||||
|
| `tests/pdf-font-header.test.js` | Output contains `\setmonofont{JetBrainsMono-Regular.ttf}` with `Path=` matching the resolved absolute path; `Ligatures=NoCommon` when settings say off. |
|
||||||
|
| `tests/export-css.test.js` | Output contains a `@font-face` block with `src: url('data:font/woff2;base64,<…>')`; the base64 string decodes to > 50 000 bytes; `pre`/`code`/`kbd` use `var(--font-mono-active)`. |
|
||||||
|
| `tests/epub-font-embedder.test.js` | After embedding, `OEBPS/content.opf` references both Regular and Bold TTFs in `<manifest>`. |
|
||||||
|
|
||||||
|
**Integration test (manual, repeatable):**
|
||||||
|
|
||||||
|
1. Create a fixture markdown file with three ASCII grids (boxes, columns, arrows).
|
||||||
|
2. Open the file in MarkdownConverter.
|
||||||
|
3. Set monospace font = JetBrains Mono, ligatures off.
|
||||||
|
4. Export to PDF / DOCX / HTML.
|
||||||
|
5. Open each result; confirm the `+---+` column delimiters sit at identical X-positions across all three formats and across pages.
|
||||||
|
6. Switch to Fira Code with ligatures on; export again; confirm round-trip works (no crashes) and ligature toggle affects preview.
|
||||||
|
|
||||||
|
## Error Handling
|
||||||
|
|
||||||
|
| Failure | Behaviour |
|
||||||
|
|---|---|
|
||||||
|
| Bundled TTF missing | `MonospaceFontConfig` returns `null`; renderer/main falls back to system monospace; non-blocking toast; never a silent drop. |
|
||||||
|
| `DocxFontEmbedder` fails (zip corruption, insufficient permissions, missing required OOXML element) | Keep the un-embedded DOCX; show a dialog with the exact failure message and a "Report issue" link. Do **not** claim success. |
|
||||||
|
| `PdfFontHeader` can't write temp tex (filesystem permission) | Show an error dialog naming the permission issue; abort the export. |
|
||||||
|
| Pandoc `--epub-embed-font` not supported (Pandoc < 2.11) | Detect via `pandoc --version` at startup (cache `pandocAvailable` already exists). Skip embedding; warn user that the EPUB will degrade if their reader lacks the font. |
|
||||||
|
| Pandoc `--css` flag missing (Pandoc < 2.0) | Detect via the same version check. Skip the `--css` injection; warn user that the exported HTML is not self-contained for the chosen font. |
|
||||||
|
| xelatex fails after fontspec injection | Existing `tryPdfFallback` chain reorders to `lualatex → pdflatex` (Consolas). Already implemented; the reorder is a one-liner. |
|
||||||
|
|
||||||
|
## Acceptance Criteria
|
||||||
|
|
||||||
|
- [ ] All five rows of `Per-Export Behaviour` produce files where ASCII alignment is identical to the editor.
|
||||||
|
- [ ] No new NPM dependencies added (use existing `jszip`, `fontkit`).
|
||||||
|
- [ ] `asarUnpack` covers `assets/fonts/**`.
|
||||||
|
- [ ] Bundle size increase ≤ 1.5 MB (TTFs + Fira TTF + extra metadata).
|
||||||
|
- [ ] No `TODO`/`FIXME`/`HACK` markers in newly touched code.
|
||||||
|
- [ ] Preview, ASCII Generator window, print-preview iframe, PDF, DOCX, HTML, EPUB, ODT all use the same active font + ligature setting (single source of truth).
|
||||||
|
- [ ] On a clean machine with no JetBrains Mono / Fira Code installed system-wide, every export still produces correct alignment.
|
||||||
|
- [ ] Switching between fonts in settings updates preview immediately and is honoured by all subsequent exports in the same session.
|
||||||
|
- [ ] Both font files travel with the binary (`LICENSE.txt` present for both families).
|
||||||
|
|
||||||
|
## File Inventory
|
||||||
|
|
||||||
|
**New (10 files):**
|
||||||
|
|
||||||
|
```
|
||||||
|
src/main/MonospaceFontConfig.js
|
||||||
|
src/main/PdfFontHeader.js
|
||||||
|
src/main/DocxFontEmbedder.js
|
||||||
|
src/main/EpubFontEmbedder.js
|
||||||
|
src/main/ExportCss.js
|
||||||
|
src/main/settings/SettingsUI.Monospace.js
|
||||||
|
tests/monospace-font-config.test.js
|
||||||
|
tests/docx-font-embedder.test.js
|
||||||
|
tests/pdf-font-header.test.js
|
||||||
|
tests/export-css.test.js
|
||||||
|
tests/epub-font-embedder.test.js
|
||||||
|
assets/fonts/FiraCode-Regular.ttf
|
||||||
|
assets/fonts/FiraCode-Bold.ttf
|
||||||
|
assets/fonts/FiraCode-LICENSE.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
**Modified:**
|
||||||
|
|
||||||
|
```
|
||||||
|
src/fonts.css
|
||||||
|
src/styles/tokens.css
|
||||||
|
src/styles-concreteinfo.css
|
||||||
|
src/styles-modern.css
|
||||||
|
src/ascii-generator.html
|
||||||
|
src/print-preview.js
|
||||||
|
src/main.js
|
||||||
|
src/renderer.js
|
||||||
|
scripts/download-tools.js
|
||||||
|
package.json
|
||||||
|
```
|
||||||
|
|
||||||
|
(3 added TTF files counted under "New"; OFL `LICENSE.txt` only required when bundling Fira Code.)
|
||||||
+10
-12
@@ -11,10 +11,7 @@ module.exports = {
|
|||||||
rootDir: '.',
|
rootDir: '.',
|
||||||
|
|
||||||
// Test file patterns
|
// Test file patterns
|
||||||
testMatch: [
|
testMatch: ['**/tests/**/*.test.js', '**/tests/**/*.spec.js'],
|
||||||
'**/tests/**/*.test.js',
|
|
||||||
'**/tests/**/*.spec.js'
|
|
||||||
],
|
|
||||||
|
|
||||||
// Coverage configuration
|
// Coverage configuration
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
@@ -22,7 +19,7 @@ module.exports = {
|
|||||||
'!src/main.js', // Main process needs electron-mock
|
'!src/main.js', // Main process needs electron-mock
|
||||||
'!src/renderer.js', // Large renderer file with duplicate declarations
|
'!src/renderer.js', // Large renderer file with duplicate declarations
|
||||||
'!src/preload.js', // Electron preload requires contextBridge
|
'!src/preload.js', // Electron preload requires contextBridge
|
||||||
'!**/node_modules/**'
|
'!**/node_modules/**',
|
||||||
],
|
],
|
||||||
|
|
||||||
// Coverage thresholds (raised with expanded test suite)
|
// Coverage thresholds (raised with expanded test suite)
|
||||||
@@ -31,8 +28,8 @@ module.exports = {
|
|||||||
branches: 10,
|
branches: 10,
|
||||||
functions: 15,
|
functions: 15,
|
||||||
lines: 15,
|
lines: 15,
|
||||||
statements: 15
|
statements: 15,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Transform settings (no transpilation needed for vanilla JS)
|
// Transform settings (no transpilation needed for vanilla JS)
|
||||||
@@ -45,10 +42,11 @@ module.exports = {
|
|||||||
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
|
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
|
||||||
|
|
||||||
// Ignore patterns
|
// Ignore patterns
|
||||||
testPathIgnorePatterns: [
|
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
|
||||||
'/node_modules/',
|
|
||||||
'/dist/'
|
// Keep the haste map / snapshot scanner out of build output — electron-builder's
|
||||||
],
|
// .snap (Squashfs) artifacts otherwise register as obsolete Jest snapshots.
|
||||||
|
modulePathIgnorePatterns: ['/dist/'],
|
||||||
|
|
||||||
// Verbose output
|
// Verbose output
|
||||||
verbose: true,
|
verbose: true,
|
||||||
@@ -57,5 +55,5 @@ module.exports = {
|
|||||||
clearMocks: true,
|
clearMocks: true,
|
||||||
|
|
||||||
// Reset modules between tests
|
// Reset modules between tests
|
||||||
resetModules: true
|
resetModules: true,
|
||||||
};
|
};
|
||||||
|
|||||||
Generated
+146
-3264
File diff suppressed because it is too large
Load Diff
+13
-48
@@ -1,16 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "markdown-converter",
|
"name": "markdown-converter",
|
||||||
"version": "4.4.2",
|
"version": "4.5.0",
|
||||||
"description": "Professional Markdown editor and universal file converter with PDF editing, batch processing, and syntax highlighting",
|
"description": "Professional Markdown editor and universal file converter with PDF editing, batch processing, and syntax highlighting",
|
||||||
"main": "src/main.js",
|
"main": "src/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "electron .",
|
"start": "electron .",
|
||||||
"test": "jest",
|
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
||||||
"test:watch": "jest --watch",
|
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
||||||
"test:coverage": "jest --coverage",
|
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
|
||||||
"test:renderer": "vitest run",
|
|
||||||
"test:renderer:watch": "vitest",
|
|
||||||
"test:renderer:coverage": "vitest run --coverage",
|
|
||||||
"lint": "eslint src tests",
|
"lint": "eslint src tests",
|
||||||
"lint:fix": "eslint src tests --fix",
|
"lint:fix": "eslint src tests --fix",
|
||||||
"format": "prettier --write src tests",
|
"format": "prettier --write src tests",
|
||||||
@@ -46,19 +43,7 @@
|
|||||||
"url": "https://github.com/amitwh/markdown-converter"
|
"url": "https://github.com/amitwh/markdown-converter"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@playwright/test": "^1.60.0",
|
|
||||||
"@testing-library/dom": "^10.4.1",
|
"@testing-library/dom": "^10.4.1",
|
||||||
"@testing-library/jest-dom": "^6.9.1",
|
|
||||||
"@testing-library/react": "^16.3.2",
|
|
||||||
"@testing-library/user-event": "^14.6.1",
|
|
||||||
"@types/node": "^25.9.1",
|
|
||||||
"@types/react": "^19.2.16",
|
|
||||||
"@types/react-dom": "^19.2.3",
|
|
||||||
"@vitejs/plugin-react": "^6.0.2",
|
|
||||||
"@vitest/ui": "^4.1.8",
|
|
||||||
"autoprefixer": "^10.5.0",
|
|
||||||
"class-variance-authority": "^0.7.1",
|
|
||||||
"clsx": "^2.1.1",
|
|
||||||
"cross-env": "^10.0.0",
|
"cross-env": "^10.0.0",
|
||||||
"electron": "^41.1.1",
|
"electron": "^41.1.1",
|
||||||
"electron-builder": "^26.0.12",
|
"electron-builder": "^26.0.12",
|
||||||
@@ -67,17 +52,7 @@
|
|||||||
"eslint-plugin-prettier": "^5.5.4",
|
"eslint-plugin-prettier": "^5.5.4",
|
||||||
"jest": "^30.2.0",
|
"jest": "^30.2.0",
|
||||||
"jest-environment-jsdom": "^30.2.0",
|
"jest-environment-jsdom": "^30.2.0",
|
||||||
"jsdom": "^29.1.1",
|
"prettier": "^3.7.4"
|
||||||
"lucide-react": "^1.17.0",
|
|
||||||
"postcss": "^8.5.15",
|
|
||||||
"prettier": "^3.7.4",
|
|
||||||
"sharp": "^0.34.3",
|
|
||||||
"tailwind-merge": "^3.6.0",
|
|
||||||
"tailwindcss": "^3.4.19",
|
|
||||||
"tailwindcss-animate": "^1.0.7",
|
|
||||||
"typescript": "^6.0.3",
|
|
||||||
"vite": "^8.0.16",
|
|
||||||
"vitest": "^4.1.8"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemirror/autocomplete": "^6.20.1",
|
"@codemirror/autocomplete": "^6.20.1",
|
||||||
@@ -94,12 +69,6 @@
|
|||||||
"@codemirror/state": "^6.5.4",
|
"@codemirror/state": "^6.5.4",
|
||||||
"@codemirror/theme-one-dark": "^6.1.3",
|
"@codemirror/theme-one-dark": "^6.1.3",
|
||||||
"@codemirror/view": "^6.39.16",
|
"@codemirror/view": "^6.39.16",
|
||||||
"@dnd-kit/core": "^6.3.1",
|
|
||||||
"@dnd-kit/sortable": "^10.0.0",
|
|
||||||
"@dnd-kit/utilities": "^3.2.2",
|
|
||||||
"@hookform/resolvers": "^5.4.0",
|
|
||||||
"@radix-ui/react-slot": "^1.2.4",
|
|
||||||
"@tanstack/react-table": "^8.21.3",
|
|
||||||
"codemirror": "^6.0.2",
|
"codemirror": "^6.0.2",
|
||||||
"core-util-is": "^1.0.3",
|
"core-util-is": "^1.0.3",
|
||||||
"docx": "^9.6.0",
|
"docx": "^9.6.0",
|
||||||
@@ -109,26 +78,18 @@
|
|||||||
"ffmpeg-static": "^5.3.0",
|
"ffmpeg-static": "^5.3.0",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
"html2pdf.js": "^0.14.0",
|
"html2pdf.js": "^0.14.0",
|
||||||
"immer": "^11.1.8",
|
"jszip": "^3.10.1",
|
||||||
"marked": "^17.0.3",
|
"marked": "^17.0.3",
|
||||||
"marked-footnote": "^1.4.0",
|
"marked-footnote": "^1.4.0",
|
||||||
"marked-highlight": "^2.2.3",
|
"marked-highlight": "^2.2.3",
|
||||||
"mermaid": "^11.12.3",
|
"mermaid": "^11.12.3",
|
||||||
"motion": "^12.40.0",
|
|
||||||
"next-themes": "^0.4.6",
|
|
||||||
"pdf-lib": "^1.17.1",
|
"pdf-lib": "^1.17.1",
|
||||||
"pdfjs-dist": "^5.5.207",
|
"pdfjs-dist": "^5.5.207",
|
||||||
"pdfkit": "^0.17.2",
|
"pdfkit": "^0.17.2",
|
||||||
"pizzip": "^3.2.0",
|
"pizzip": "^3.2.0",
|
||||||
"react": "^19.2.7",
|
"sharp": "^0.34.3",
|
||||||
"react-dom": "^19.2.7",
|
|
||||||
"react-hook-form": "^7.77.0",
|
|
||||||
"react-resizable-panels": "^4.11.2",
|
|
||||||
"simple-git": "^3.32.3",
|
"simple-git": "^3.32.3",
|
||||||
"sonner": "^2.0.7",
|
"tslib": "^2.8.1"
|
||||||
"tslib": "^2.8.1",
|
|
||||||
"zod": "^4.4.3",
|
|
||||||
"zustand": "^5.0.14"
|
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
@@ -153,7 +114,11 @@
|
|||||||
"package.json"
|
"package.json"
|
||||||
],
|
],
|
||||||
"asarUnpack": [
|
"asarUnpack": [
|
||||||
"node_modules/ffmpeg-static/**"
|
"node_modules/ffmpeg-static/**",
|
||||||
|
"node_modules/sharp/**",
|
||||||
|
"node_modules/@img/**",
|
||||||
|
"node_modules/@napi-rs/**",
|
||||||
|
"assets/fonts/**"
|
||||||
],
|
],
|
||||||
"extraFiles": [],
|
"extraFiles": [],
|
||||||
"fileAssociations": [
|
"fileAssociations": [
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
plugins: {
|
|
||||||
tailwindcss: {},
|
|
||||||
autoprefixer: {},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
+604
@@ -0,0 +1,604 @@
|
|||||||
|
# Repository Structure Map
|
||||||
|
|
||||||
|
Auto-generated by `~/.claude-shared/scripts/repo-map.sh` (universal-ctags).
|
||||||
|
Signatures only — classes, functions, methods, interfaces, enums, types, namespaces, traits.
|
||||||
|
Regenerate after structural changes. Languages: `JavaScript,Sh`.
|
||||||
|
|
||||||
|
```
|
||||||
|
scripts/download-tools.js:
|
||||||
|
L22 method extract (PANDOC_CONFIG.linux)
|
||||||
|
L36 method extract (PANDOC_CONFIG.win32)
|
||||||
|
L51 method extract (PANDOC_CONFIG.darwin)
|
||||||
|
L63 function download
|
||||||
|
L70 function get (download)
|
||||||
|
L109 function downloadPandoc
|
||||||
|
|
||||||
|
scripts/generate-icons.js:
|
||||||
|
L17 function generateIcons
|
||||||
|
|
||||||
|
src/adapters/electron/fs.js:
|
||||||
|
L20 method readFile (electronFsAdapter)
|
||||||
|
L30 method writeFile (electronFsAdapter)
|
||||||
|
L39 method deleteFile (electronFsAdapter)
|
||||||
|
L48 method ensureDir (electronFsAdapter)
|
||||||
|
L57 method listDirectory (electronFsAdapter)
|
||||||
|
L77 method exists (electronFsAdapter)
|
||||||
|
L86 method isDirectory (electronFsAdapter)
|
||||||
|
L96 method copy (electronFsAdapter)
|
||||||
|
L106 method move (electronFsAdapter)
|
||||||
|
|
||||||
|
src/analytics/analytics-panel.js:
|
||||||
|
L7 function showAnalyticsModal
|
||||||
|
L105 function escHandler (showAnalyticsModal)
|
||||||
|
L116 function escapeHtml
|
||||||
|
|
||||||
|
src/analytics/writing-analytics.js:
|
||||||
|
L77 function countSyllables
|
||||||
|
L83 function extractWords
|
||||||
|
L87 function getReadabilityLabel
|
||||||
|
L95 function analyze
|
||||||
|
|
||||||
|
src/command-palette.js:
|
||||||
|
L1 class CommandPalette
|
||||||
|
L2 method constructor (CommandPalette)
|
||||||
|
L12 method register (CommandPalette)
|
||||||
|
L16 method open (CommandPalette)
|
||||||
|
L24 method close (CommandPalette)
|
||||||
|
L28 method isOpen (CommandPalette)
|
||||||
|
L32 method setupEventListeners (CommandPalette)
|
||||||
|
L61 method renderResults (CommandPalette)
|
||||||
|
L90 method highlightMatch (CommandPalette)
|
||||||
|
L96 method updateSelection (CommandPalette)
|
||||||
|
L105 method executeSelected (CommandPalette)
|
||||||
|
|
||||||
|
src/editor/codemirror-setup.js:
|
||||||
|
L46 function createEditor
|
||||||
|
L61 function onChange (createEditor)
|
||||||
|
L118 function getLanguageExtension
|
||||||
|
L120 method javascript (getLanguageExtension.loaders)
|
||||||
|
L124 method html (getLanguageExtension.loaders)
|
||||||
|
L128 method css (getLanguageExtension.loaders)
|
||||||
|
L132 method json (getLanguageExtension.loaders)
|
||||||
|
L136 method python (getLanguageExtension.loaders)
|
||||||
|
|
||||||
|
src/main.js:
|
||||||
|
L18 function getPandocPath
|
||||||
|
L36 function getFFmpegPath
|
||||||
|
L55 function sanitizeErrorMessage
|
||||||
|
L64 function createRateLimiter
|
||||||
|
L66 function canProceed (createRateLimiter)
|
||||||
|
L83 function validatePath
|
||||||
|
L136 function resolveWritablePath
|
||||||
|
L181 function isPathAccessible
|
||||||
|
L203 function convertDataToMarkdown
|
||||||
|
L225 function runPandocCmd
|
||||||
|
L247 function parseCommand
|
||||||
|
L282 method get (store)
|
||||||
|
L291 method set (store)
|
||||||
|
L488 function checkPandocAvailability
|
||||||
|
L500 function createWindow
|
||||||
|
L586 function buildRecentFilesMenu
|
||||||
|
L599 method click (buildRecentFilesMenu.anonymousObjectc5643c890c05)
|
||||||
|
L637 function getRecentFiles
|
||||||
|
L647 function createMenu
|
||||||
|
L872 method click (createMenu.anonymousObjectc5643c890e05.anonymousObjectc5643c894505)
|
||||||
|
L1118 method click (createMenu.anonymousObjectc5643c895205.anonymousObjectc5643c897e05)
|
||||||
|
L1279 method click (createMenu.anonymousObjectc5643c899305.anonymousObjectc5643c89a505)
|
||||||
|
L1351 function showAboutDialog
|
||||||
|
L1452 function showDependenciesDialog
|
||||||
|
L1564 function openPDFFile
|
||||||
|
L1583 function openFile
|
||||||
|
L1622 function openPdfFile
|
||||||
|
L1645 function saveAsFile
|
||||||
|
L1664 function exportFile
|
||||||
|
L1673 function showExportOptionsDialog
|
||||||
|
L1676 function showBatchConversionDialog
|
||||||
|
L1681 function selectWordTemplate
|
||||||
|
L1705 function showTemplateSettings
|
||||||
|
L1902 function processDynamicFields
|
||||||
|
L1921 function setDocxPageSize
|
||||||
|
L1980 function addHeaderFooterToDocx
|
||||||
|
L2111 function exportWordWithTemplate
|
||||||
|
L2153 function exportPDFViaWordTemplate
|
||||||
|
L2231 function showUniversalConverterDialog
|
||||||
|
L2236 function showPDFEditorDialog
|
||||||
|
L2246 function checkConverterAvailable
|
||||||
|
L2370 function collectFiles
|
||||||
|
L2464 function convertWithLibreOffice
|
||||||
|
L2498 function convertWithImageMagick
|
||||||
|
L2507 function convertWithFFmpeg
|
||||||
|
L2515 function convertWithPandoc
|
||||||
|
L2521 function performExportWithOptions
|
||||||
|
L2805 function tryPdfFallback
|
||||||
|
L2882 function showExportSuccess
|
||||||
|
L2892 function exportWithPandoc
|
||||||
|
L2964 function exportToHTML
|
||||||
|
L3080 function exportToPDFElectron
|
||||||
|
L3224 function exportSpreadsheet
|
||||||
|
L3233 function importDocument
|
||||||
|
L3355 function setTheme
|
||||||
|
L3536 function extractTablesFromMarkdown
|
||||||
|
L3574 function performBatchConversion
|
||||||
|
L3597 function findMarkdownFiles (performBatchConversion)
|
||||||
|
L3636 function processNextFile (performBatchConversion)
|
||||||
|
L3970 function handleCLIConversion
|
||||||
|
L3997 function showConversionDialog
|
||||||
|
L4064 function performCLIConversion
|
||||||
|
L4098 function buildPandocCommand
|
||||||
|
L4319 function openFileFromPath
|
||||||
|
L4394 function openAsciiGenerator
|
||||||
|
L4426 function openTableGenerator
|
||||||
|
L4724 function loadSnippets
|
||||||
|
L4734 function saveSnippetsFile
|
||||||
|
|
||||||
|
src/main/GitOperations.js:
|
||||||
|
L3 function getGitInstance
|
||||||
|
L7 function getStatus
|
||||||
|
L16 function stage
|
||||||
|
L26 function commit
|
||||||
|
L35 function log
|
||||||
|
|
||||||
|
src/main/PDFOperations.js:
|
||||||
|
L5 function parsePageRanges
|
||||||
|
L28 function hexToRgb
|
||||||
|
L39 function pdfMerge
|
||||||
|
L59 function pdfSplit
|
||||||
|
L126 function pdfCompress
|
||||||
|
L152 function pdfRotate
|
||||||
|
L182 function pdfDeletePages
|
||||||
|
L208 function pdfReorder
|
||||||
|
L233 function pdfWatermark
|
||||||
|
L319 function pdfEncrypt
|
||||||
|
L353 function pdfDecrypt
|
||||||
|
L370 function pdfSetPermissions
|
||||||
|
L404 function executeOperation
|
||||||
|
L431 function getPageCount
|
||||||
|
|
||||||
|
src/plugins/built-in/_sample/index.js:
|
||||||
|
L3 class SamplePlugin
|
||||||
|
L4 method init (SamplePlugin)
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/goal-tracker.js:
|
||||||
|
L3 class GoalTracker
|
||||||
|
L7 method constructor (GoalTracker)
|
||||||
|
L11 method _getHistory (GoalTracker)
|
||||||
|
L16 method _setHistory (GoalTracker)
|
||||||
|
L20 method _setHistoryDay (GoalTracker)
|
||||||
|
L26 method addWords (GoalTracker)
|
||||||
|
L37 method getDailyProgress (GoalTracker)
|
||||||
|
L44 method getStreak (GoalTracker)
|
||||||
|
L61 method getLast30Days (GoalTracker)
|
||||||
|
L74 method getWeeklyTotal (GoalTracker)
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/index.js:
|
||||||
|
L7 class WritingStudioPlugin
|
||||||
|
L8 method init (WritingStudioPlugin)
|
||||||
|
L34 method _registerCommands (WritingStudioPlugin)
|
||||||
|
L112 method _registerStatusBar (WritingStudioPlugin)
|
||||||
|
L123 method deactivate (WritingStudioPlugin)
|
||||||
|
L127 method getEngines (WritingStudioPlugin)
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/panels/goals-panel.js:
|
||||||
|
L1 function renderGoalsPanel
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/panels/manuscript-panel.js:
|
||||||
|
L1 function renderManuscriptPanel
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/panels/proofread-panel.js:
|
||||||
|
L1 function renderProofreadPanel
|
||||||
|
L41 method callback (anonymousObject39a0f0110105)
|
||||||
|
L50 function renderIssues
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/panels/snapshots-panel.js:
|
||||||
|
L1 function renderSnapshotsPanel
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/project-manager.js:
|
||||||
|
L1 class ProjectManager
|
||||||
|
L5 method constructor (ProjectManager)
|
||||||
|
L9 method createProject (ProjectManager)
|
||||||
|
L21 method loadProject (ProjectManager)
|
||||||
|
L27 method _saveProject (ProjectManager)
|
||||||
|
L31 method addChapter (ProjectManager)
|
||||||
|
L38 method updateChapter (ProjectManager)
|
||||||
|
L45 method compileManuscript (ProjectManager)
|
||||||
|
L56 method getStats (ProjectManager)
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/snapshot-manager.js:
|
||||||
|
L1 class SnapshotManager
|
||||||
|
L6 method constructor (SnapshotManager)
|
||||||
|
L11 method _getAll (SnapshotManager)
|
||||||
|
L16 method _saveAll (SnapshotManager)
|
||||||
|
L20 method create (SnapshotManager)
|
||||||
|
L34 method list (SnapshotManager)
|
||||||
|
L38 method getById (SnapshotManager)
|
||||||
|
L42 method restore (SnapshotManager)
|
||||||
|
L48 method delete (SnapshotManager)
|
||||||
|
L53 method diff (SnapshotManager)
|
||||||
|
L71 method prune (SnapshotManager)
|
||||||
|
|
||||||
|
src/plugins/built-in/writing-studio/sprint-engine.js:
|
||||||
|
L1 class SprintEngine
|
||||||
|
L6 method constructor (SprintEngine)
|
||||||
|
L14 method start (SprintEngine)
|
||||||
|
L22 method stop (SprintEngine)
|
||||||
|
L33 method tick (SprintEngine)
|
||||||
|
L43 method isActive (SprintEngine)
|
||||||
|
L47 method getRemaining (SprintEngine)
|
||||||
|
|
||||||
|
src/plugins/event-bus.js:
|
||||||
|
L1 class EventBus
|
||||||
|
L2 method constructor (EventBus)
|
||||||
|
L6 method on (EventBus)
|
||||||
|
L13 method off (EventBus)
|
||||||
|
L25 method emit (EventBus)
|
||||||
|
L37 method hasHandler (EventBus)
|
||||||
|
|
||||||
|
src/plugins/plugin-api.js:
|
||||||
|
L1 class PluginAPI
|
||||||
|
L7 method init (PluginAPI)
|
||||||
|
L12 method activate (PluginAPI)
|
||||||
|
L15 method deactivate (PluginAPI)
|
||||||
|
L18 method getManifest (PluginAPI)
|
||||||
|
|
||||||
|
src/plugins/plugin-context.js:
|
||||||
|
L1 class PluginContext
|
||||||
|
L14 method constructor (PluginContext)
|
||||||
|
L23 method register (PluginContext.constructor.commands)
|
||||||
|
L24 function safeHandler (PluginContext.constructor.commands.register)
|
||||||
|
L65 method registerPreHook (PluginContext.constructor.exports)
|
||||||
|
L68 method registerPostHook (PluginContext.constructor.exports)
|
||||||
|
|
||||||
|
src/plugins/plugin-loader.js:
|
||||||
|
L4 class PluginLoader
|
||||||
|
L8 method constructor (PluginLoader)
|
||||||
|
L17 method discoverPlugins (PluginLoader)
|
||||||
|
L66 method validateManifest (PluginLoader)
|
||||||
|
|
||||||
|
src/plugins/plugin-registry.js:
|
||||||
|
L4 class PluginRegistry
|
||||||
|
L5 method constructor (PluginRegistry)
|
||||||
|
L15 method register (PluginRegistry)
|
||||||
|
L49 method getPlugin (PluginRegistry)
|
||||||
|
L53 method getAll (PluginRegistry)
|
||||||
|
L57 method activate (PluginRegistry)
|
||||||
|
L68 method deactivate (PluginRegistry)
|
||||||
|
|
||||||
|
src/plugins/settings-store.js:
|
||||||
|
L1 class SettingsStore
|
||||||
|
L5 method constructor (SettingsStore)
|
||||||
|
L9 method get (SettingsStore)
|
||||||
|
L13 method set (SettingsStore)
|
||||||
|
L17 method onChanged (SettingsStore)
|
||||||
|
|
||||||
|
src/preload.js:
|
||||||
|
L257 method send (anonymousObjectb0724fcb0105)
|
||||||
|
L271 method invoke (anonymousObjectb0724fcb0105)
|
||||||
|
L290 method on (anonymousObjectb0724fcb0105)
|
||||||
|
L292 function subscription (anonymousObjectb0724fcb0105.on)
|
||||||
|
L310 method once (anonymousObjectb0724fcb0105)
|
||||||
|
L322 method removeAllListeners (anonymousObjectb0724fcb0105)
|
||||||
|
|
||||||
|
src/print-preview.js:
|
||||||
|
L1 class PrintPreview
|
||||||
|
L2 method constructor (PrintPreview)
|
||||||
|
L9 method open (PrintPreview)
|
||||||
|
L20 method close (PrintPreview)
|
||||||
|
L28 method setupEventListeners (PrintPreview)
|
||||||
|
L53 method updateScaleLabel (PrintPreview)
|
||||||
|
L59 method updatePreview (PrintPreview)
|
||||||
|
L111 method refreshPreview (PrintPreview)
|
||||||
|
L117 method getOptions (PrintPreview)
|
||||||
|
L130 method executePrint (PrintPreview)
|
||||||
|
|
||||||
|
src/renderer.js:
|
||||||
|
L19 method send (window.electronAPI)
|
||||||
|
L22 method invoke (window.electronAPI)
|
||||||
|
L25 method on (window.electronAPI)
|
||||||
|
L26 function subscription (window.electronAPI.on)
|
||||||
|
L32 method once (window.electronAPI)
|
||||||
|
L35 method removeAllListeners (window.electronAPI)
|
||||||
|
L81 function getSidebarManager
|
||||||
|
L85 function getRenderTemplatesPanel
|
||||||
|
L90 function getRenderExplorerPanel
|
||||||
|
L95 function getRenderGitPanel
|
||||||
|
L99 function getRenderSnippetsPanel
|
||||||
|
L105 function getRenderOutlinePanel
|
||||||
|
L110 function getReplPanel
|
||||||
|
L114 function getCommandPalette
|
||||||
|
L118 function getPrintPreview
|
||||||
|
L122 function getCreateWelcomeContent
|
||||||
|
L127 function getZenMode
|
||||||
|
L132 function getShowAnalyticsModal
|
||||||
|
L137 function ensureToastContainer
|
||||||
|
L147 function notifyUser
|
||||||
|
L159 function dismiss (notifyUser)
|
||||||
|
L173 method highlight (anonymousObject71555c7b0405)
|
||||||
|
L202 method start (anonymousObject71555c7b0705.anonymousObject71555c7b0805)
|
||||||
|
L205 method tokenizer (anonymousObject71555c7b0705.anonymousObject71555c7b0805)
|
||||||
|
L221 method renderer (anonymousObject71555c7b0705.anonymousObject71555c7b0805)
|
||||||
|
L241 function plantumlEncode (notifyUser)
|
||||||
|
L249 function scopeCSS (notifyUser)
|
||||||
|
L271 class TabManager (notifyUser)
|
||||||
|
L272 method constructor (notifyUser.TabManager)
|
||||||
|
L306 method setupEventListeners (notifyUser.TabManager)
|
||||||
|
L354 method createNewTab (notifyUser.TabManager)
|
||||||
|
L379 method createPdfTab (notifyUser.TabManager)
|
||||||
|
L405 method createPdfTabElements (notifyUser.TabManager)
|
||||||
|
L436 method setupPdfTabEvents (notifyUser.TabManager)
|
||||||
|
L503 method loadPdfInTab (notifyUser.TabManager)
|
||||||
|
L528 method renderPdfPageInTab (notifyUser.TabManager)
|
||||||
|
L555 method createTabElements (notifyUser.TabManager)
|
||||||
|
L580 method onChange (anonymousObject71555c7b0d05)
|
||||||
|
L602 method onUpdate (anonymousObject71555c7b0d05)
|
||||||
|
L614 method switchToTab (notifyUser.TabManager)
|
||||||
|
L641 method switchToNextTab (notifyUser.TabManager)
|
||||||
|
L647 method closeTab (notifyUser.TabManager)
|
||||||
|
L692 method updateTabBar (notifyUser.TabManager)
|
||||||
|
L718 method updateUI (notifyUser.TabManager)
|
||||||
|
L748 method saveCurrentTabState (notifyUser.TabManager)
|
||||||
|
L756 method restoreTabState (notifyUser.TabManager)
|
||||||
|
L765 method focusActiveEditor (notifyUser.TabManager)
|
||||||
|
L771 method updatePreview (notifyUser.TabManager)
|
||||||
|
L800 method _hash (notifyUser.TabManager)
|
||||||
|
L809 method _renderPreview (notifyUser.TabManager)
|
||||||
|
L963 function onerror (img)
|
||||||
|
L997 method updatePreviewVisibility (notifyUser.TabManager)
|
||||||
|
L1010 method updateLineNumbers (notifyUser.TabManager)
|
||||||
|
L1015 method updateWordCount (notifyUser.TabManager)
|
||||||
|
L1031 method updateCursorPosition (notifyUser.TabManager)
|
||||||
|
L1038 method updateFilePath (notifyUser.TabManager)
|
||||||
|
L1046 method updateBreadcrumb (notifyUser.TabManager)
|
||||||
|
L1054 method setupEditorEvents (notifyUser.TabManager)
|
||||||
|
L1058 method handleEditorInput (notifyUser.TabManager)
|
||||||
|
L1073 method startAutoSave (notifyUser.TabManager)
|
||||||
|
L1081 method stopAutoSave (notifyUser.TabManager)
|
||||||
|
L1087 method performAutoSave (notifyUser.TabManager)
|
||||||
|
L1103 method showAutoSaveIndicator (notifyUser.TabManager)
|
||||||
|
L1119 method addToRecentFiles (notifyUser.TabManager)
|
||||||
|
L1135 method getRecentFiles (notifyUser.TabManager)
|
||||||
|
L1145 method setupToolbarEvents (notifyUser.TabManager)
|
||||||
|
L1215 method wrapSelection (notifyUser.TabManager)
|
||||||
|
L1233 method insertAtLineStart (notifyUser.TabManager)
|
||||||
|
L1249 method insertTable (notifyUser.TabManager)
|
||||||
|
L1259 method insertCodeBlock (notifyUser.TabManager)
|
||||||
|
L1277 method insertHorizontalRule (notifyUser.TabManager)
|
||||||
|
L1280 method setupFindEvents (notifyUser.TabManager)
|
||||||
|
L1350 method performFind (notifyUser.TabManager)
|
||||||
|
L1384 method findNext (notifyUser.TabManager)
|
||||||
|
L1390 method findPrevious (notifyUser.TabManager)
|
||||||
|
L1399 method highlightMatch (notifyUser.TabManager)
|
||||||
|
L1430 method replaceOne (notifyUser.TabManager)
|
||||||
|
L1454 method replaceAll (notifyUser.TabManager)
|
||||||
|
L1485 method clearFindHighlights (notifyUser.TabManager)
|
||||||
|
L1492 method checkForLargeFile (notifyUser.TabManager)
|
||||||
|
L1508 method openFile (notifyUser.TabManager)
|
||||||
|
L1555 method getEditorContent (notifyUser.TabManager)
|
||||||
|
L1564 method setEditorContent (notifyUser.TabManager)
|
||||||
|
L1579 method insertAtCursor (notifyUser.TabManager)
|
||||||
|
L1594 method getSelection (notifyUser.TabManager)
|
||||||
|
L1602 method replaceSelection (notifyUser.TabManager)
|
||||||
|
L1616 method getCurrentContent (notifyUser.TabManager)
|
||||||
|
L1620 method getCurrentFilePath (notifyUser.TabManager)
|
||||||
|
L1735 method render (anonymousObject71555c7b2d05)
|
||||||
|
L1788 method registerIndicator (anonymousObject71555c7b3105.statusBar)
|
||||||
|
L1881 function onload (reader)
|
||||||
|
L2032 method onChange (anonymousObject71555c7b3405)
|
||||||
|
L2040 method onUpdate (anonymousObject71555c7b3405)
|
||||||
|
L2164 function applyCustomPreviewCSS (notifyUser)
|
||||||
|
L2174 function triggerLoadCustomCSS (notifyUser)
|
||||||
|
L2188 function triggerClearCustomCSS (notifyUser)
|
||||||
|
L2202 function updateFontSizes (notifyUser)
|
||||||
|
L2234 function openPrintPreviewDialog (notifyUser)
|
||||||
|
L2255 function showExportDialog (notifyUser)
|
||||||
|
L2269 function hideExportDialog (notifyUser)
|
||||||
|
L2273 function initializeExportForm (notifyUser)
|
||||||
|
L2343 function collectExportOptions (notifyUser)
|
||||||
|
L2444 function loadExportProfiles (notifyUser)
|
||||||
|
L2456 function saveExportProfiles (notifyUser)
|
||||||
|
L2459 function populateProfileDropdown (notifyUser)
|
||||||
|
L2476 function saveCurrentProfile (notifyUser)
|
||||||
|
L2511 function loadProfile (notifyUser)
|
||||||
|
L2545 function deleteSelectedProfile (notifyUser)
|
||||||
|
L2679 function onchange (input)
|
||||||
|
L2776 function showBatchDialog (notifyUser)
|
||||||
|
L2796 function hideBatchDialog (notifyUser)
|
||||||
|
L2799 function updateBatchProgress (notifyUser)
|
||||||
|
L2816 function validateBatchForm (notifyUser)
|
||||||
|
L3375 function showUniversalConverterDialog (notifyUser)
|
||||||
|
L3383 function updateConverterFormats (notifyUser)
|
||||||
|
L3423 function updateConverterAdvancedOptions (notifyUser)
|
||||||
|
L3434 function collectConverterAdvancedOptions (notifyUser)
|
||||||
|
L3645 function showPDFEditorDialog (notifyUser)
|
||||||
|
L3769 function hidePDFEditorDialog (notifyUser)
|
||||||
|
L3780 function updateMergeFilesList (notifyUser)
|
||||||
|
L4107 function getPDFStatusElement (notifyUser)
|
||||||
|
L4110 function showPDFStatus (notifyUser)
|
||||||
|
L4117 function clearPDFStatus (notifyUser)
|
||||||
|
L4124 function showPDFValidationMessage (notifyUser)
|
||||||
|
L4135 function processPDFOperation (notifyUser)
|
||||||
|
L4379 function initMathSupport (notifyUser)
|
||||||
|
L4391 function onload (katexJS)
|
||||||
|
L4396 function onload (autoRenderJS)
|
||||||
|
L4417 function openHeaderFooterDialog (notifyUser)
|
||||||
|
L4425 function closeHeaderFooterDialog (notifyUser)
|
||||||
|
L4430 function openFieldPickerDialog (notifyUser)
|
||||||
|
L4436 function closeFieldPickerDialog (notifyUser)
|
||||||
|
L4477 function toggleConfigContent (notifyUser)
|
||||||
|
L4488 function saveHeaderFooterSettings (notifyUser)
|
||||||
|
L4509 function browseForLogo (notifyUser)
|
||||||
|
L4519 function clearLogo (notifyUser)
|
||||||
|
L4528 function insertDynamicField (notifyUser)
|
||||||
|
L4594 function showTableGenerator (notifyUser)
|
||||||
|
L4605 function hideTableGenerator (notifyUser)
|
||||||
|
L4608 function generateTablePreview (notifyUser)
|
||||||
|
L4616 function generateMarkdownTable (notifyUser)
|
||||||
|
L4685 function insertGeneratedTable (notifyUser)
|
||||||
|
L4742 function showASCIIGenerator (notifyUser)
|
||||||
|
L4753 function hideASCIIGenerator (notifyUser)
|
||||||
|
L4756 function switchASCIIMode (notifyUser)
|
||||||
|
L4784 function generateASCIIPreview (notifyUser)
|
||||||
|
L4802 function textToASCII (notifyUser)
|
||||||
|
L5238 function createASCIIBox (notifyUser)
|
||||||
|
L5312 function getASCIITemplate (notifyUser)
|
||||||
|
L5469 function loadASCIITemplate (notifyUser)
|
||||||
|
L5473 function insertASCIIArt (notifyUser)
|
||||||
|
L5523 function anonymousFunction71555c7bd300
|
||||||
|
L5603 function getPdfjsLib (notifyUser)
|
||||||
|
L5612 function openPdfFile (notifyUser)
|
||||||
|
L5627 function renderPdfPage (notifyUser)
|
||||||
|
L5733 function closePdfViewer (notifyUser)
|
||||||
|
L5783 function openPdfEditorDialog (notifyUser)
|
||||||
|
L5831 function initPaneResizer (notifyUser)
|
||||||
|
L5920 function onPDFFileSelected (notifyUser)
|
||||||
|
L5935 function loadPDFThumbnails (notifyUser)
|
||||||
|
L5966 function renderThumbnailGrid (notifyUser)
|
||||||
|
L6060 function renderThumbnail (notifyUser)
|
||||||
|
L6085 function syncRotateInput (notifyUser)
|
||||||
|
L6094 function syncDeleteInput (notifyUser)
|
||||||
|
L6103 function syncReorderInput (notifyUser)
|
||||||
|
|
||||||
|
src/repl/repl-panel.js:
|
||||||
|
L1 class ReplPanel
|
||||||
|
L2 method constructor (ReplPanel)
|
||||||
|
L8 method setupEventListeners (ReplPanel)
|
||||||
|
L13 method toggle (ReplPanel)
|
||||||
|
L19 method show (ReplPanel)
|
||||||
|
L25 method clear (ReplPanel)
|
||||||
|
L29 method appendOutput (ReplPanel)
|
||||||
|
L42 method escapeHtml (ReplPanel)
|
||||||
|
|
||||||
|
src/sidebar/explorer-panel.js:
|
||||||
|
L1 function renderExplorerPanel
|
||||||
|
L40 function renderTree
|
||||||
|
L79 function getFileIcon
|
||||||
|
|
||||||
|
src/sidebar/git-panel.js:
|
||||||
|
L1 function renderGitPanel
|
||||||
|
L24 function loadGitStatus (renderGitPanel)
|
||||||
|
|
||||||
|
src/sidebar/outline-panel.js:
|
||||||
|
L6 function renderOutlinePanel
|
||||||
|
L18 function parseHeadings (renderOutlinePanel)
|
||||||
|
L36 function findActiveHeading (renderOutlinePanel)
|
||||||
|
L48 function renderHeadings (renderOutlinePanel)
|
||||||
|
L89 function escapeHtml (renderOutlinePanel)
|
||||||
|
L95 function refresh (renderOutlinePanel)
|
||||||
|
L100 function setActiveHeading (renderOutlinePanel)
|
||||||
|
|
||||||
|
src/sidebar/sidebar-manager.js:
|
||||||
|
L1 class SidebarManager
|
||||||
|
L2 method constructor (SidebarManager)
|
||||||
|
L11 method setupEventListeners (SidebarManager)
|
||||||
|
L20 method registerPanel (SidebarManager)
|
||||||
|
L24 method togglePanel (SidebarManager)
|
||||||
|
L32 method expand (SidebarManager)
|
||||||
|
L45 method collapse (SidebarManager)
|
||||||
|
|
||||||
|
src/sidebar/snippets-panel.js:
|
||||||
|
L1 function renderSnippetsPanel
|
||||||
|
L14 function loadSnippets (renderSnippetsPanel)
|
||||||
|
L19 function renderList (renderSnippetsPanel)
|
||||||
|
|
||||||
|
src/sidebar/templates-panel.js:
|
||||||
|
L18 function renderTemplatesPanel
|
||||||
|
|
||||||
|
src/utils/ModalManager.js:
|
||||||
|
L5 class ModalManager
|
||||||
|
L16 method constructor (ModalManager)
|
||||||
|
L31 method init (ModalManager)
|
||||||
|
L47 method setupCloseTriggers (ModalManager)
|
||||||
|
L51 function handler (ModalManager.setupCloseTriggers)
|
||||||
|
L65 function handler
|
||||||
|
L74 method getFocusableElements (ModalManager)
|
||||||
|
L89 method trapFocus (ModalManager)
|
||||||
|
L111 method handleKeydown (ModalManager)
|
||||||
|
L119 method open (ModalManager)
|
||||||
|
L141 function keydownHandler (ModalManager.open)
|
||||||
|
L164 method close (ModalManager)
|
||||||
|
L182 function addHidden (ModalManager.close)
|
||||||
|
L188 function onTransitionEnd (ModalManager.close)
|
||||||
|
L223 method isOpen (ModalManager)
|
||||||
|
L227 method destroy (ModalManager)
|
||||||
|
|
||||||
|
src/welcome.js:
|
||||||
|
L1 function createWelcomeContent
|
||||||
|
|
||||||
|
src/wordTemplateExporter.js:
|
||||||
|
L11 class WordTemplateExporter
|
||||||
|
L12 method constructor (WordTemplateExporter)
|
||||||
|
L24 method preprocessMarkdownForWordExport (WordTemplateExporter)
|
||||||
|
L33 function flush (WordTemplateExporter.preprocessMarkdownForWordExport)
|
||||||
|
L59 function stripArtifacts (WordTemplateExporter.preprocessMarkdownForWordExport)
|
||||||
|
|
||||||
|
src/zen-mode.js:
|
||||||
|
L10 class ZenMode
|
||||||
|
L14 method constructor (ZenMode)
|
||||||
|
L23 method activate (ZenMode)
|
||||||
|
L65 method deactivate (ZenMode)
|
||||||
|
L101 method toggle (ZenMode)
|
||||||
|
L109 method _applyTypewriterBehavior (ZenMode)
|
||||||
|
L111 function scrollFn (ZenMode._applyTypewriterBehavior)
|
||||||
|
L151 method _createHUD (ZenMode)
|
||||||
|
L169 method _updateHUD (ZenMode)
|
||||||
|
L220 method constructor (anonymousObject3acf7ce30205)
|
||||||
|
L240 function getOpacity
|
||||||
|
L250 method constructor (anonymousObject3acf7ce30405)
|
||||||
|
|
||||||
|
tests/git-operations.test.js:
|
||||||
|
L26 function asyncFn
|
||||||
|
L35 function asyncFnWithError
|
||||||
|
|
||||||
|
tests/main-utils.test.js:
|
||||||
|
L7 function sanitizeErrorMessage
|
||||||
|
L49 function createRateLimiter
|
||||||
|
L51 function canProceed (createRateLimiter)
|
||||||
|
|
||||||
|
tests/markdown-extensions.test.js:
|
||||||
|
L83 method start (extension)
|
||||||
|
L86 method tokenizer (extension)
|
||||||
|
L102 method renderer (extension)
|
||||||
|
L151 function plantumlEncode
|
||||||
|
L176 function slugify
|
||||||
|
L203 function scopeCSS
|
||||||
|
|
||||||
|
tests/modal-manager.test.js:
|
||||||
|
L11 function createModalElement
|
||||||
|
|
||||||
|
tests/plugin-api.test.js:
|
||||||
|
L18 class MyPlugin
|
||||||
|
L19 method init (MyPlugin)
|
||||||
|
|
||||||
|
tests/plugin-context.test.js:
|
||||||
|
L39 function badHandler
|
||||||
|
|
||||||
|
tests/plugin-loader.test.js:
|
||||||
|
L17 function writeManifest
|
||||||
|
|
||||||
|
tests/plugin-registry.test.js:
|
||||||
|
L5 class TestPlugin
|
||||||
|
L6 method init (TestPlugin)
|
||||||
|
L10 method activate (TestPlugin)
|
||||||
|
L13 method deactivate (TestPlugin)
|
||||||
|
L69 class BadPlugin
|
||||||
|
L70 method init (BadPlugin)
|
||||||
|
|
||||||
|
tests/setup.js:
|
||||||
|
L96 function error (console)
|
||||||
|
|
||||||
|
tests/sidebar.test.js:
|
||||||
|
L41 method render (anonymousObjectfe2d35d70105)
|
||||||
|
L52 method render (anonymousObjectfe2d35d70205)
|
||||||
|
L62 method render (anonymousObjectfe2d35d70305)
|
||||||
|
L68 method render (anonymousObjectfe2d35d70405)
|
||||||
|
L80 method render (anonymousObjectfe2d35d70505)
|
||||||
|
L88 method render (anonymousObjectfe2d35d70605)
|
||||||
|
L96 method render (anonymousObjectfe2d35d70705)
|
||||||
|
L120 method render (anonymousObjectfe2d35d70905)
|
||||||
|
L130 method render (anonymousObjectfe2d35d70a05)
|
||||||
|
|
||||||
|
tests/utils.test.js:
|
||||||
|
L9 function parseCommand
|
||||||
|
L78 function hexToRgb
|
||||||
|
L121 function getExtension
|
||||||
|
L133 function replaceExtension
|
||||||
|
```
|
||||||
@@ -106,6 +106,27 @@ function download(url, destPath) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function downloadFiraCode() {
|
||||||
|
const destDir = path.join(__dirname, '..', 'assets', 'fonts');
|
||||||
|
fs.mkdirSync(destDir, { recursive: true });
|
||||||
|
|
||||||
|
const targets = [
|
||||||
|
{ url: 'https://github.com/tonsky/FiraCode/raw/master/distr/ttf/FiraCode-Regular.ttf', out: 'FiraCode-Regular.ttf' },
|
||||||
|
{ url: 'https://github.com/tonsky/FiraCode/raw/master/distr/ttf/FiraCode-Bold.ttf', out: 'FiraCode-Bold.ttf' },
|
||||||
|
{ url: 'https://raw.githubusercontent.com/tonsky/FiraCode/master/LICENSE', out: 'FiraCode-LICENSE.txt' },
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const t of targets) {
|
||||||
|
const destFile = path.join(destDir, t.out);
|
||||||
|
if (fs.existsSync(destFile)) {
|
||||||
|
console.log(`[download-tools] ${t.out} already present — skipping.`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
console.log(`[download-tools] Downloading ${t.out}...`);
|
||||||
|
await download(t.url, destFile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function downloadPandoc() {
|
async function downloadPandoc() {
|
||||||
const platform = process.platform;
|
const platform = process.platform;
|
||||||
const config = PANDOC_CONFIG[platform];
|
const config = PANDOC_CONFIG[platform];
|
||||||
@@ -142,7 +163,7 @@ async function downloadPandoc() {
|
|||||||
console.log(`[download-tools] pandoc ready: ${destFile}`);
|
console.log(`[download-tools] pandoc ready: ${destFile}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadPandoc().catch((err) => {
|
Promise.all([downloadPandoc(), downloadFiraCode()]).catch((err) => {
|
||||||
console.error('[download-tools] FAILED:', err.message);
|
console.error('[download-tools] FAILED:', err.message);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ const electronFsAdapter = {
|
|||||||
isDir: entry.isDirectory,
|
isDir: entry.isDirectory,
|
||||||
size: entry.size ?? 0,
|
size: entry.size ?? 0,
|
||||||
modified: entry.modified ?? 0,
|
modified: entry.modified ?? 0,
|
||||||
path: entry.path
|
path: entry.path,
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -105,7 +105,7 @@ const electronFsAdapter = {
|
|||||||
*/
|
*/
|
||||||
async move(source, dest) {
|
async move(source, dest) {
|
||||||
return await window.electronAPI.file.move(source, dest);
|
return await window.electronAPI.file.move(source, dest);
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = { electronFsAdapter };
|
module.exports = { electronFsAdapter };
|
||||||
|
|||||||
@@ -61,11 +61,15 @@ function showAnalyticsModal(tabManager) {
|
|||||||
<span class="analytics-label">Avg Sentence</span>
|
<span class="analytics-label">Avg Sentence</span>
|
||||||
<span class="analytics-value">${metrics.avgSentenceLength} words</span>
|
<span class="analytics-value">${metrics.avgSentenceLength} words</span>
|
||||||
</div>
|
</div>
|
||||||
${metrics.longestSentenceLength > 0 ? `
|
${
|
||||||
|
metrics.longestSentenceLength > 0
|
||||||
|
? `
|
||||||
<div class="analytics-row analytics-longest">
|
<div class="analytics-row analytics-longest">
|
||||||
<span class="analytics-label">Longest (${metrics.longestSentenceLength} words)</span>
|
<span class="analytics-label">Longest (${metrics.longestSentenceLength} words)</span>
|
||||||
<span class="analytics-value analytics-sentence-preview">${escapeHtml(metrics.longestSentence)}</span>
|
<span class="analytics-value analytics-sentence-preview">${escapeHtml(metrics.longestSentence)}</span>
|
||||||
</div>` : ''}
|
</div>`
|
||||||
|
: ''
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="analytics-section">
|
<div class="analytics-section">
|
||||||
@@ -74,13 +78,19 @@ function showAnalyticsModal(tabManager) {
|
|||||||
<span class="analytics-label">Unique</span>
|
<span class="analytics-label">Unique</span>
|
||||||
<span class="analytics-value">${metrics.uniqueWordCount} / ${metrics.wordCount}<small>${metrics.lexicalDiversity}%</small></span>
|
<span class="analytics-value">${metrics.uniqueWordCount} / ${metrics.wordCount}<small>${metrics.lexicalDiversity}%</small></span>
|
||||||
</div>
|
</div>
|
||||||
${metrics.topWords.length > 0 ? `
|
${
|
||||||
|
metrics.topWords.length > 0
|
||||||
|
? `
|
||||||
<div class="word-cloud">
|
<div class="word-cloud">
|
||||||
${metrics.topWords.map(w => {
|
${metrics.topWords
|
||||||
|
.map((w) => {
|
||||||
const scale = 13 + Math.round((w.count / maxCount) * 3);
|
const scale = 13 + Math.round((w.count / maxCount) * 3);
|
||||||
return `<span class="word-tag" style="font-size:${scale}px">${escapeHtml(w.word)}<small>${w.count}</small></span>`;
|
return `<span class="word-tag" style="font-size:${scale}px">${escapeHtml(w.word)}<small>${w.count}</small></span>`;
|
||||||
}).join('')}
|
})
|
||||||
</div>` : ''}
|
.join('')}
|
||||||
|
</div>`
|
||||||
|
: ''
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,14 +4,74 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const STOP_WORDS = new Set([
|
const STOP_WORDS = new Set([
|
||||||
'the', 'a', 'an', 'is', 'are', 'was', 'were', 'be', 'been',
|
'the',
|
||||||
'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would',
|
'a',
|
||||||
'could', 'should', 'to', 'of', 'in', 'for', 'on', 'with',
|
'an',
|
||||||
'at', 'by', 'from', 'as', 'and', 'or', 'but', 'if', 'it',
|
'is',
|
||||||
'its', 'this', 'that', 'these', 'those', 'i', 'me', 'my',
|
'are',
|
||||||
'we', 'our', 'you', 'your', 'he', 'him', 'his', 'she', 'her',
|
'was',
|
||||||
'they', 'them', 'their', 'not', 'no', 'so', 'than', 'too',
|
'were',
|
||||||
'very', 'also', 'just', 'about', 'up', 'out', 'what', 'which', 'who'
|
'be',
|
||||||
|
'been',
|
||||||
|
'have',
|
||||||
|
'has',
|
||||||
|
'had',
|
||||||
|
'do',
|
||||||
|
'does',
|
||||||
|
'did',
|
||||||
|
'will',
|
||||||
|
'would',
|
||||||
|
'could',
|
||||||
|
'should',
|
||||||
|
'to',
|
||||||
|
'of',
|
||||||
|
'in',
|
||||||
|
'for',
|
||||||
|
'on',
|
||||||
|
'with',
|
||||||
|
'at',
|
||||||
|
'by',
|
||||||
|
'from',
|
||||||
|
'as',
|
||||||
|
'and',
|
||||||
|
'or',
|
||||||
|
'but',
|
||||||
|
'if',
|
||||||
|
'it',
|
||||||
|
'its',
|
||||||
|
'this',
|
||||||
|
'that',
|
||||||
|
'these',
|
||||||
|
'those',
|
||||||
|
'i',
|
||||||
|
'me',
|
||||||
|
'my',
|
||||||
|
'we',
|
||||||
|
'our',
|
||||||
|
'you',
|
||||||
|
'your',
|
||||||
|
'he',
|
||||||
|
'him',
|
||||||
|
'his',
|
||||||
|
'she',
|
||||||
|
'her',
|
||||||
|
'they',
|
||||||
|
'them',
|
||||||
|
'their',
|
||||||
|
'not',
|
||||||
|
'no',
|
||||||
|
'so',
|
||||||
|
'than',
|
||||||
|
'too',
|
||||||
|
'very',
|
||||||
|
'also',
|
||||||
|
'just',
|
||||||
|
'about',
|
||||||
|
'up',
|
||||||
|
'out',
|
||||||
|
'what',
|
||||||
|
'which',
|
||||||
|
'who',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
function countSyllables(word) {
|
function countSyllables(word) {
|
||||||
@@ -48,17 +108,23 @@ function analyze(text) {
|
|||||||
avgSentenceLength: 0,
|
avgSentenceLength: 0,
|
||||||
longestSentence: '',
|
longestSentence: '',
|
||||||
longestSentenceLength: 0,
|
longestSentenceLength: 0,
|
||||||
topWords: []
|
topWords: [],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const words = extractWords(text);
|
const words = extractWords(text);
|
||||||
const wordCount = words.length;
|
const wordCount = words.length;
|
||||||
|
|
||||||
const sentences = text.split(/[.!?]+/).map(s => s.trim()).filter(Boolean);
|
const sentences = text
|
||||||
|
.split(/[.!?]+/)
|
||||||
|
.map((s) => s.trim())
|
||||||
|
.filter(Boolean);
|
||||||
const sentenceCount = Math.max(sentences.length, 1);
|
const sentenceCount = Math.max(sentences.length, 1);
|
||||||
|
|
||||||
const paragraphs = text.split(/\n\s*\n/).map(p => p.trim()).filter(Boolean);
|
const paragraphs = text
|
||||||
|
.split(/\n\s*\n/)
|
||||||
|
.map((p) => p.trim())
|
||||||
|
.filter(Boolean);
|
||||||
const paragraphCount = Math.max(paragraphs.length, 1);
|
const paragraphCount = Math.max(paragraphs.length, 1);
|
||||||
|
|
||||||
let totalSyllables = 0;
|
let totalSyllables = 0;
|
||||||
@@ -66,16 +132,23 @@ function analyze(text) {
|
|||||||
totalSyllables += countSyllables(w);
|
totalSyllables += countSyllables(w);
|
||||||
}
|
}
|
||||||
|
|
||||||
const fleschEase = Math.round((206.835 - 1.015 * (wordCount / sentenceCount) - 84.6 * (totalSyllables / wordCount)) * 10) / 10;
|
const fleschEase =
|
||||||
const fleschGrade = Math.round((0.39 * (wordCount / sentenceCount) + 11.8 * (totalSyllables / wordCount) - 15.59) * 10) / 10;
|
Math.round(
|
||||||
|
(206.835 - 1.015 * (wordCount / sentenceCount) - 84.6 * (totalSyllables / wordCount)) * 10
|
||||||
|
) / 10;
|
||||||
|
const fleschGrade =
|
||||||
|
Math.round(
|
||||||
|
(0.39 * (wordCount / sentenceCount) + 11.8 * (totalSyllables / wordCount) - 15.59) * 10
|
||||||
|
) / 10;
|
||||||
const readabilityLabel = getReadabilityLabel(fleschEase);
|
const readabilityLabel = getReadabilityLabel(fleschEase);
|
||||||
|
|
||||||
const readingTime = Math.ceil(wordCount / 200);
|
const readingTime = Math.ceil(wordCount / 200);
|
||||||
const speakingTime = Math.ceil(wordCount / 130);
|
const speakingTime = Math.ceil(wordCount / 130);
|
||||||
|
|
||||||
const uniqueWords = new Set(words.map(w => w.toLowerCase()));
|
const uniqueWords = new Set(words.map((w) => w.toLowerCase()));
|
||||||
const uniqueWordCount = uniqueWords.size;
|
const uniqueWordCount = uniqueWords.size;
|
||||||
const lexicalDiversity = wordCount > 0 ? Math.round((uniqueWordCount / wordCount) * 1000) / 10 : 0;
|
const lexicalDiversity =
|
||||||
|
wordCount > 0 ? Math.round((uniqueWordCount / wordCount) * 1000) / 10 : 0;
|
||||||
|
|
||||||
const avgSentenceLength = Math.round((wordCount / sentenceCount) * 10) / 10;
|
const avgSentenceLength = Math.round((wordCount / sentenceCount) * 10) / 10;
|
||||||
|
|
||||||
@@ -120,7 +193,7 @@ function analyze(text) {
|
|||||||
avgSentenceLength,
|
avgSentenceLength,
|
||||||
longestSentence,
|
longestSentence,
|
||||||
longestSentenceLength,
|
longestSentenceLength,
|
||||||
topWords
|
topWords,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+286
-136
@@ -1,10 +1,10 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>ASCII Art Generator - MarkdownConverter</title>
|
<title>ASCII Art Generator - MarkdownConverter</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
<link rel="stylesheet" href="../fonts.css" />
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--ci-dark-gray: #464646;
|
--ci-dark-gray: #464646;
|
||||||
@@ -103,7 +103,9 @@
|
|||||||
color: var(--ci-dark-gray);
|
color: var(--ci-dark-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-input, .form-select, .form-textarea {
|
.form-input,
|
||||||
|
.form-select,
|
||||||
|
.form-textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px 14px;
|
padding: 10px 14px;
|
||||||
border: 2px solid var(--ci-light-gray);
|
border: 2px solid var(--ci-light-gray);
|
||||||
@@ -113,7 +115,9 @@
|
|||||||
transition: border-color 0.2s;
|
transition: border-color 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-input:focus, .form-select:focus, .form-textarea:focus {
|
.form-input:focus,
|
||||||
|
.form-select:focus,
|
||||||
|
.form-textarea:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-color: var(--ci-accent);
|
border-color: var(--ci-accent);
|
||||||
}
|
}
|
||||||
@@ -133,11 +137,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.preview-content {
|
.preview-content {
|
||||||
font-family: 'JetBrains Mono', monospace;
|
font-family: 'JetBrains Mono', 'Fira Code', monospace;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
color: #00ff00;
|
color: #00ff00;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
font-feature-settings:
|
||||||
|
'liga' 0,
|
||||||
|
'calt' 0,
|
||||||
|
'dlig' 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.template-grid {
|
.template-grid {
|
||||||
@@ -245,7 +253,13 @@
|
|||||||
<div id="text-mode" class="mode-section active">
|
<div id="text-mode" class="mode-section active">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label">Text to Convert</label>
|
<label class="form-label">Text to Convert</label>
|
||||||
<input type="text" id="text-input" class="form-input" placeholder="Enter your text..." maxlength="30">
|
<input
|
||||||
|
type="text"
|
||||||
|
id="text-input"
|
||||||
|
class="form-input"
|
||||||
|
placeholder="Enter your text..."
|
||||||
|
maxlength="30"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label">Style</label>
|
<label class="form-label">Style</label>
|
||||||
@@ -263,7 +277,11 @@
|
|||||||
<div id="box-mode" class="mode-section">
|
<div id="box-mode" class="mode-section">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label">Text Content</label>
|
<label class="form-label">Text Content</label>
|
||||||
<textarea id="box-text" class="form-textarea" placeholder="Enter text for the box..."></textarea>
|
<textarea
|
||||||
|
id="box-text"
|
||||||
|
class="form-textarea"
|
||||||
|
placeholder="Enter text for the box..."
|
||||||
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label">Box Style</label>
|
<label class="form-label">Box Style</label>
|
||||||
@@ -277,7 +295,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="form-label">Padding</label>
|
<label class="form-label">Padding</label>
|
||||||
<input type="number" id="box-padding" class="form-input" min="0" max="10" value="2" style="width: 100px;">
|
<input
|
||||||
|
type="number"
|
||||||
|
id="box-padding"
|
||||||
|
class="form-input"
|
||||||
|
min="0"
|
||||||
|
max="10"
|
||||||
|
value="2"
|
||||||
|
style="width: 100px"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -341,138 +367,262 @@
|
|||||||
standard: {
|
standard: {
|
||||||
height: 5,
|
height: 5,
|
||||||
chars: {
|
chars: {
|
||||||
'A': [' /\\ ', ' / \\ ', '/----\\', '| |', '| |'],
|
A: [' /\\ ', ' / \\ ', '/----\\', '| |', '| |'],
|
||||||
'B': ['|----\\', '| |', '|----/', '| \\', '|----/'],
|
B: ['|----\\', '| |', '|----/', '| \\', '|----/'],
|
||||||
'C': ['/----\\', '| ', '| ', '| ', '\\----/'],
|
C: ['/----\\', '| ', '| ', '| ', '\\----/'],
|
||||||
'D': ['|----\\', '| |', '| |', '| |', '|----/'],
|
D: ['|----\\', '| |', '| |', '| |', '|----/'],
|
||||||
'E': ['|----', '| ', '|--- ', '| ', '|----'],
|
E: ['|----', '| ', '|--- ', '| ', '|----'],
|
||||||
'F': ['|----', '| ', '|--- ', '| ', '| '],
|
F: ['|----', '| ', '|--- ', '| ', '| '],
|
||||||
'G': ['/----\\', '| ', '| |--\\', '| |', '\\----/'],
|
G: ['/----\\', '| ', '| |--\\', '| |', '\\----/'],
|
||||||
'H': ['| |', '| |', '|----/', '| |', '| |'],
|
H: ['| |', '| |', '|----/', '| |', '| |'],
|
||||||
'I': ['|---|', ' | ', ' | ', ' | ', '|---|'],
|
I: ['|---|', ' | ', ' | ', ' | ', '|---|'],
|
||||||
'J': [' |', ' |', ' |', '| |', '\\---/'],
|
J: [' |', ' |', ' |', '| |', '\\---/'],
|
||||||
'K': ['| /', '| / ', '|-- ', '| \\ ', '| \\'],
|
K: ['| /', '| / ', '|-- ', '| \\ ', '| \\'],
|
||||||
'L': ['| ', '| ', '| ', '| ', '|----'],
|
L: ['| ', '| ', '| ', '| ', '|----'],
|
||||||
'M': ['|\\ /|', '| \\/ |', '| |', '| |', '| |'],
|
M: ['|\\ /|', '| \\/ |', '| |', '| |', '| |'],
|
||||||
'N': ['|\\ |', '| \\ |', '| \\ |', '| \\|', '| |'],
|
N: ['|\\ |', '| \\ |', '| \\ |', '| \\|', '| |'],
|
||||||
'O': ['/----\\', '| |', '| |', '| |', '\\----/'],
|
O: ['/----\\', '| |', '| |', '| |', '\\----/'],
|
||||||
'P': ['|----\\', '| |', '|----/', '| ', '| '],
|
P: ['|----\\', '| |', '|----/', '| ', '| '],
|
||||||
'Q': ['/----\\', '| |', '| \\ |', '| \\|', '\\----\\'],
|
Q: ['/----\\', '| |', '| \\ |', '| \\|', '\\----\\'],
|
||||||
'R': ['|----\\', '| |', '|----/', '| \\ ', '| \\ '],
|
R: ['|----\\', '| |', '|----/', '| \\ ', '| \\ '],
|
||||||
'S': ['/----\\', '| ', '\\----\\', ' |', '\\----/'],
|
S: ['/----\\', '| ', '\\----\\', ' |', '\\----/'],
|
||||||
'T': ['-----', ' | ', ' | ', ' | ', ' | '],
|
T: ['-----', ' | ', ' | ', ' | ', ' | '],
|
||||||
'U': ['| |', '| |', '| |', '| |', '\\----/'],
|
U: ['| |', '| |', '| |', '| |', '\\----/'],
|
||||||
'V': ['| |', '| |', ' \\ / ', ' \\/ ', ' '],
|
V: ['| |', '| |', ' \\ / ', ' \\/ ', ' '],
|
||||||
'W': ['| |', '| |', '| |', '| /\\ |', '|/ \\|'],
|
W: ['| |', '| |', '| |', '| /\\ |', '|/ \\|'],
|
||||||
'X': ['\\ /', ' \\ / ', ' \\/ ', ' /\\ ', ' / \\ '],
|
X: ['\\ /', ' \\ / ', ' \\/ ', ' /\\ ', ' / \\ '],
|
||||||
'Y': ['\\ /', ' \\ / ', ' | ', ' | ', ' | '],
|
Y: ['\\ /', ' \\ / ', ' | ', ' | ', ' | '],
|
||||||
'Z': ['-----', ' / ', ' / ', ' / ', '-----'],
|
Z: ['-----', ' / ', ' / ', ' / ', '-----'],
|
||||||
' ': [' ', ' ', ' ', ' ', ' '],
|
' ': [' ', ' ', ' ', ' ', ' '],
|
||||||
'0': ['/---\\', '| |', '| / |', '|/ |', '\\---/'],
|
0: ['/---\\', '| |', '| / |', '|/ |', '\\---/'],
|
||||||
'1': [' /| ', ' / | ', ' | ', ' | ', ' ----'],
|
1: [' /| ', ' / | ', ' | ', ' | ', ' ----'],
|
||||||
'2': ['/---\\', ' |', ' ---/', '/ ', '-----'],
|
2: ['/---\\', ' |', ' ---/', '/ ', '-----'],
|
||||||
'3': ['----\\', ' |', ' ---/', ' |', '----/'],
|
3: ['----\\', ' |', ' ---/', ' |', '----/'],
|
||||||
'4': ['| |', '| |', '-----', ' |', ' |'],
|
4: ['| |', '| |', '-----', ' |', ' |'],
|
||||||
'5': ['-----', '| ', '----\\', ' |', '----/'],
|
5: ['-----', '| ', '----\\', ' |', '----/'],
|
||||||
'6': ['/----', '| ', '|---\\', '| |', '\\---/'],
|
6: ['/----', '| ', '|---\\', '| |', '\\---/'],
|
||||||
'7': ['-----', ' / ', ' / ', ' / ', '/ '],
|
7: ['-----', ' / ', ' / ', ' / ', '/ '],
|
||||||
'8': ['/---\\', '| |', ' --- ', '| |', '\\---/'],
|
8: ['/---\\', '| |', ' --- ', '| |', '\\---/'],
|
||||||
'9': ['/---\\', '| |', '\\----', ' |', '----/']
|
9: ['/---\\', '| |', '\\----', ' |', '----/'],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
banner: {
|
banner: {
|
||||||
height: 7,
|
height: 7,
|
||||||
chars: {
|
chars: {
|
||||||
'A': [' ##### ', ' ## ##', '## ##', '#########', '## ##', '## ##', '## ##'],
|
A: [
|
||||||
'B': ['######## ', '## ##', '## ##', '######## ', '## ##', '## ##', '######## '],
|
' ##### ',
|
||||||
'C': [' ###### ', '## ##', '## ', '## ', '## ', '## ##', ' ###### '],
|
' ## ##',
|
||||||
'D': ['######## ', '## ##', '## ##', '## ##', '## ##', '## ##', '######## '],
|
'## ##',
|
||||||
'E': ['########', '## ', '## ', '###### ', '## ', '## ', '########'],
|
'#########',
|
||||||
'F': ['########', '## ', '## ', '###### ', '## ', '## ', '## '],
|
'## ##',
|
||||||
'G': [' ###### ', '## ##', '## ', '## ####', '## ##', '## ##', ' ###### '],
|
'## ##',
|
||||||
'H': ['## ##', '## ##', '## ##', '#########', '## ##', '## ##', '## ##'],
|
'## ##',
|
||||||
'I': ['####', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', '####'],
|
],
|
||||||
'J': [' ##', ' ##', ' ##', ' ##', '## ##', '## ##', ' ###### '],
|
B: [
|
||||||
'K': ['## ##', '## ## ', '## ## ', '##### ', '## ## ', '## ## ', '## ##'],
|
'######## ',
|
||||||
'L': ['## ', '## ', '## ', '## ', '## ', '## ', '########'],
|
'## ##',
|
||||||
'M': ['## ##', '### ###', '#### ####', '## ### ##', '## ##', '## ##', '## ##'],
|
'## ##',
|
||||||
'N': ['## ##', '### ##', '#### ##', '## ## ##', '## ####', '## ###', '## ##'],
|
'######## ',
|
||||||
'O': [' ####### ', '## ##', '## ##', '## ##', '## ##', '## ##', ' ####### '],
|
'## ##',
|
||||||
'P': ['######## ', '## ##', '## ##', '######## ', '## ', '## ', '## '],
|
'## ##',
|
||||||
'Q': [' ####### ', '## ##', '## ##', '## ##', '## ## ##', '## ## ', ' ##### ##'],
|
'######## ',
|
||||||
'R': ['######## ', '## ##', '## ##', '######## ', '## ## ', '## ## ', '## ##'],
|
],
|
||||||
'S': [' ###### ', '## ##', '## ', ' ###### ', ' ##', '## ##', ' ###### '],
|
C: [' ###### ', '## ##', '## ', '## ', '## ', '## ##', ' ###### '],
|
||||||
'T': ['########', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', ' ## '],
|
D: [
|
||||||
'U': ['## ##', '## ##', '## ##', '## ##', '## ##', '## ##', ' ####### '],
|
'######## ',
|
||||||
'V': ['## ##', '## ##', '## ##', '## ##', ' ## ## ', ' ## ## ', ' ### '],
|
'## ##',
|
||||||
'W': ['## ##', '## ## ##', '## ## ##', '## ## ##', '## ## ##', '## ## ##', ' ### ### '],
|
'## ##',
|
||||||
'X': ['## ##', ' ## ## ', ' ## ## ', ' ### ', ' ## ## ', ' ## ## ', '## ##'],
|
'## ##',
|
||||||
'Y': ['## ##', ' ## ## ', ' #### ', ' ## ', ' ## ', ' ## ', ' ## '],
|
'## ##',
|
||||||
'Z': ['########', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', '########'],
|
'## ##',
|
||||||
|
'######## ',
|
||||||
|
],
|
||||||
|
E: ['########', '## ', '## ', '###### ', '## ', '## ', '########'],
|
||||||
|
F: ['########', '## ', '## ', '###### ', '## ', '## ', '## '],
|
||||||
|
G: [' ###### ', '## ##', '## ', '## ####', '## ##', '## ##', ' ###### '],
|
||||||
|
H: [
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'#########',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
],
|
||||||
|
I: ['####', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', '####'],
|
||||||
|
J: [' ##', ' ##', ' ##', ' ##', '## ##', '## ##', ' ###### '],
|
||||||
|
K: ['## ##', '## ## ', '## ## ', '##### ', '## ## ', '## ## ', '## ##'],
|
||||||
|
L: ['## ', '## ', '## ', '## ', '## ', '## ', '########'],
|
||||||
|
M: [
|
||||||
|
'## ##',
|
||||||
|
'### ###',
|
||||||
|
'#### ####',
|
||||||
|
'## ### ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
],
|
||||||
|
N: ['## ##', '### ##', '#### ##', '## ## ##', '## ####', '## ###', '## ##'],
|
||||||
|
O: [
|
||||||
|
' ####### ',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
' ####### ',
|
||||||
|
],
|
||||||
|
P: [
|
||||||
|
'######## ',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'######## ',
|
||||||
|
'## ',
|
||||||
|
'## ',
|
||||||
|
'## ',
|
||||||
|
],
|
||||||
|
Q: [
|
||||||
|
' ####### ',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ## ##',
|
||||||
|
'## ## ',
|
||||||
|
' ##### ##',
|
||||||
|
],
|
||||||
|
R: [
|
||||||
|
'######## ',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'######## ',
|
||||||
|
'## ## ',
|
||||||
|
'## ## ',
|
||||||
|
'## ##',
|
||||||
|
],
|
||||||
|
S: [' ###### ', '## ##', '## ', ' ###### ', ' ##', '## ##', ' ###### '],
|
||||||
|
T: ['########', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', ' ## '],
|
||||||
|
U: [
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
' ####### ',
|
||||||
|
],
|
||||||
|
V: [
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
'## ##',
|
||||||
|
' ## ## ',
|
||||||
|
' ## ## ',
|
||||||
|
' ### ',
|
||||||
|
],
|
||||||
|
W: [
|
||||||
|
'## ##',
|
||||||
|
'## ## ##',
|
||||||
|
'## ## ##',
|
||||||
|
'## ## ##',
|
||||||
|
'## ## ##',
|
||||||
|
'## ## ##',
|
||||||
|
' ### ### ',
|
||||||
|
],
|
||||||
|
X: [
|
||||||
|
'## ##',
|
||||||
|
' ## ## ',
|
||||||
|
' ## ## ',
|
||||||
|
' ### ',
|
||||||
|
' ## ## ',
|
||||||
|
' ## ## ',
|
||||||
|
'## ##',
|
||||||
|
],
|
||||||
|
Y: ['## ##', ' ## ## ', ' #### ', ' ## ', ' ## ', ' ## ', ' ## '],
|
||||||
|
Z: ['########', ' ## ', ' ## ', ' ## ', ' ## ', ' ## ', '########'],
|
||||||
' ': [' ', ' ', ' ', ' ', ' ', ' ', ' '],
|
' ': [' ', ' ', ' ', ' ', ' ', ' ', ' '],
|
||||||
'0': [' ###### ', '## ##', '## ##', '## ##', '## ##', '## ##', ' ###### '],
|
0: [' ###### ', '## ##', '## ##', '## ##', '## ##', '## ##', ' ###### '],
|
||||||
'1': [' ## ', ' #### ', ' ## ', ' ## ', ' ## ', ' ## ', ' ###### '],
|
1: [' ## ', ' #### ', ' ## ', ' ## ', ' ## ', ' ## ', ' ###### '],
|
||||||
'2': [' ###### ', '## ##', ' ## ', ' ## ', ' ## ', ' ## ', '########'],
|
2: [' ###### ', '## ##', ' ## ', ' ## ', ' ## ', ' ## ', '########'],
|
||||||
'3': [' ###### ', '## ##', ' ## ', ' #### ', ' ## ', '## ##', ' ###### '],
|
3: [' ###### ', '## ##', ' ## ', ' #### ', ' ## ', '## ##', ' ###### '],
|
||||||
'4': [' ## ', ' ### ', ' # ## ', ' # ## ', '########', ' ## ', ' ## '],
|
4: [' ## ', ' ### ', ' # ## ', ' # ## ', '########', ' ## ', ' ## '],
|
||||||
'5': ['########', '## ', '####### ', ' ##', ' ##', '## ##', ' ###### '],
|
5: ['########', '## ', '####### ', ' ##', ' ##', '## ##', ' ###### '],
|
||||||
'6': [' ###### ', '## ', '####### ', '## ##', '## ##', '## ##', ' ###### '],
|
6: [' ###### ', '## ', '####### ', '## ##', '## ##', '## ##', ' ###### '],
|
||||||
'7': ['########', '## ## ', ' ## ', ' ## ', ' ## ', ' ## ', ' ## '],
|
7: ['########', '## ## ', ' ## ', ' ## ', ' ## ', ' ## ', ' ## '],
|
||||||
'8': [' ###### ', '## ##', '## ##', ' ###### ', '## ##', '## ##', ' ###### '],
|
8: [' ###### ', '## ##', '## ##', ' ###### ', '## ##', '## ##', ' ###### '],
|
||||||
'9': [' ###### ', '## ##', '## ##', ' #######', ' ##', '## ##', ' ###### ']
|
9: [' ###### ', '## ##', '## ##', ' #######', ' ##', '## ##', ' ###### '],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
block: {
|
block: {
|
||||||
height: 6,
|
height: 6,
|
||||||
chars: {
|
chars: {
|
||||||
'A': ['█████╗ ', '██╔══██╗', '███████║', '██╔══██║', '██║ ██║', '╚═╝ ╚═╝'],
|
A: ['█████╗ ', '██╔══██╗', '███████║', '██╔══██║', '██║ ██║', '╚═╝ ╚═╝'],
|
||||||
'B': ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔══██╗', '██████╔╝', '╚═════╝ '],
|
B: ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔══██╗', '██████╔╝', '╚═════╝ '],
|
||||||
'C': ['█████╗ ', '██╔══██╗', '██║ ', '██║ ', '╚█████╔╝', ' ╚════╝ '],
|
C: ['█████╗ ', '██╔══██╗', '██║ ', '██║ ', '╚█████╔╝', ' ╚════╝ '],
|
||||||
'D': ['██████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '██████╔╝', '╚═════╝ '],
|
D: ['██████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '██████╔╝', '╚═════╝ '],
|
||||||
'E': ['███████╗', '██╔════╝', '█████╗ ', '██╔══╝ ', '███████╗', '╚══════╝'],
|
E: ['███████╗', '██╔════╝', '█████╗ ', '██╔══╝ ', '███████╗', '╚══════╝'],
|
||||||
'F': ['███████╗', '██╔════╝', '█████╗ ', '██╔══╝ ', '██║ ', '╚═╝ '],
|
F: ['███████╗', '██╔════╝', '█████╗ ', '██╔══╝ ', '██║ ', '╚═╝ '],
|
||||||
'G': ['█████╗ ', '██╔══██╗', '██║ ███', '██║ ██', '╚█████╔╝', ' ╚════╝ '],
|
G: ['█████╗ ', '██╔══██╗', '██║ ███', '██║ ██', '╚█████╔╝', ' ╚════╝ '],
|
||||||
'H': ['██╗ ██╗', '██║ ██║', '███████║', '██╔══██║', '██║ ██║', '╚═╝ ╚═╝'],
|
H: ['██╗ ██╗', '██║ ██║', '███████║', '██╔══██║', '██║ ██║', '╚═╝ ╚═╝'],
|
||||||
'I': ['██╗', '██║', '██║', '██║', '██║', '╚═╝'],
|
I: ['██╗', '██║', '██║', '██║', '██║', '╚═╝'],
|
||||||
'J': [' ██╗', ' ██║', ' ██║', '██ ██║', '╚████╔╝', ' ╚═══╝ '],
|
J: [' ██╗', ' ██║', ' ██║', '██ ██║', '╚████╔╝', ' ╚═══╝ '],
|
||||||
'K': ['██╗ ██╗', '██║ ██╔╝', '█████╔╝ ', '██╔═██╗ ', '██║ ██╗', '╚═╝ ╚═╝'],
|
K: ['██╗ ██╗', '██║ ██╔╝', '█████╔╝ ', '██╔═██╗ ', '██║ ██╗', '╚═╝ ╚═╝'],
|
||||||
'L': ['██╗ ', '██║ ', '██║ ', '██║ ', '███████╗', '╚══════╝'],
|
L: ['██╗ ', '██║ ', '██║ ', '██║ ', '███████╗', '╚══════╝'],
|
||||||
'M': ['███╗ ███╗', '████╗ ████║', '██╔████╔██║', '██║╚██╔╝██║', '██║ ╚═╝ ██║', '╚═╝ ╚═╝'],
|
M: [
|
||||||
'N': ['███╗ ██╗', '████╗ ██║', '██╔██╗ ██║', '██║╚██╗██║', '██║ ╚████║', '╚═╝ ╚═══╝'],
|
'███╗ ███╗',
|
||||||
'O': ['█████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '╚█████╔╝', ' ╚════╝ '],
|
'████╗ ████║',
|
||||||
'P': ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔═══╝ ', '██║ ', '╚═╝ '],
|
'██╔████╔██║',
|
||||||
'Q': ['█████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '╚██████╗', ' ╚═══██╝'],
|
'██║╚██╔╝██║',
|
||||||
'R': ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔══██╗', '██║ ██║', '╚═╝ ╚═╝'],
|
'██║ ╚═╝ ██║',
|
||||||
'S': ['█████╗ ', '██╔══╝ ', '█████╗ ', '╚══██║ ', '█████║ ', '╚════╝ '],
|
'╚═╝ ╚═╝',
|
||||||
'T': ['████████╗', '╚══██╔══╝', ' ██║ ', ' ██║ ', ' ██║ ', ' ╚═╝ '],
|
],
|
||||||
'U': ['██╗ ██╗', '██║ ██║', '██║ ██║', '██║ ██║', '╚█████╔╝', ' ╚════╝ '],
|
N: ['███╗ ██╗', '████╗ ██║', '██╔██╗ ██║', '██║╚██╗██║', '██║ ╚████║', '╚═╝ ╚═══╝'],
|
||||||
'V': ['██╗ ██╗', '██║ ██║', '██║ ██║', '╚██╗ ██╔╝', ' ╚████╔╝ ', ' ╚═══╝ '],
|
O: ['█████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '╚█████╔╝', ' ╚════╝ '],
|
||||||
'W': ['██╗ ██╗', '██║ ██║', '██║ █╗ ██║', '██║███╗██║', '╚███╔███╔╝', ' ╚══╝╚══╝ '],
|
P: ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔═══╝ ', '██║ ', '╚═╝ '],
|
||||||
'X': ['██╗ ██╗', '╚██╗██╔╝', ' ╚███╔╝ ', ' ██╔██╗ ', '██╔╝ ██╗', '╚═╝ ╚═╝'],
|
Q: ['█████╗ ', '██╔══██╗', '██║ ██║', '██║ ██║', '╚██████╗', ' ╚═══██╝'],
|
||||||
'Y': ['██╗ ██╗', '╚██╗ ██╔╝', ' ╚████╔╝ ', ' ╚██╔╝ ', ' ██║ ', ' ╚═╝ '],
|
R: ['██████╗ ', '██╔══██╗', '██████╔╝', '██╔══██╗', '██║ ██║', '╚═╝ ╚═╝'],
|
||||||
'Z': ['███████╗', '╚════██║', ' ███╔═╝', ' ██╔══╝ ', '███████╗', '╚══════╝'],
|
S: ['█████╗ ', '██╔══╝ ', '█████╗ ', '╚══██║ ', '█████║ ', '╚════╝ '],
|
||||||
' ': [' ', ' ', ' ', ' ', ' ', ' ']
|
T: ['████████╗', '╚══██╔══╝', ' ██║ ', ' ██║ ', ' ██║ ', ' ╚═╝ '],
|
||||||
}
|
U: ['██╗ ██╗', '██║ ██║', '██║ ██║', '██║ ██║', '╚█████╔╝', ' ╚════╝ '],
|
||||||
}
|
V: ['██╗ ██╗', '██║ ██║', '██║ ██║', '╚██╗ ██╔╝', ' ╚████╔╝ ', ' ╚═══╝ '],
|
||||||
|
W: ['██╗ ██╗', '██║ ██║', '██║ █╗ ██║', '██║███╗██║', '╚███╔███╔╝', ' ╚══╝╚══╝ '],
|
||||||
|
X: ['██╗ ██╗', '╚██╗██╔╝', ' ╚███╔╝ ', ' ██╔██╗ ', '██╔╝ ██╗', '╚═╝ ╚═╝'],
|
||||||
|
Y: ['██╗ ██╗', '╚██╗ ██╔╝', ' ╚████╔╝ ', ' ╚██╔╝ ', ' ██║ ', ' ╚═╝ '],
|
||||||
|
Z: ['███████╗', '╚════██║', ' ███╔═╝', ' ██╔══╝ ', '███████╗', '╚══════╝'],
|
||||||
|
' ': [' ', ' ', ' ', ' ', ' ', ' '],
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const TEMPLATES = {
|
const TEMPLATES = {
|
||||||
'arrow-right': ' ┌─────────────────────┐\n──▶│ Process or Action │──▶\n └─────────────────────┘',
|
'arrow-right':
|
||||||
'arrow-down': ' │\n ▼\n┌───────────────┐\n│ Process │\n└───────────────┘\n │\n ▼',
|
' ┌─────────────────────┐\n──▶│ Process or Action │──▶\n └─────────────────────┘',
|
||||||
'decision': ' ╱╲\n ╱ ╲\n ╱ ? ╲\n ╱ ╲\n ╱────────╲\n ╱ ╲\n YES NO\n │ │\n ▼ ▼',
|
'arrow-down':
|
||||||
'process': '┌─────┐ ┌─────┐ ┌─────┐\n│ 1 │──▶│ 2 │──▶│ 3 │\n└─────┘ └─────┘ └─────┘',
|
' │\n ▼\n┌───────────────┐\n│ Process │\n└───────────────┘\n │\n ▼',
|
||||||
'flowchart': '┌─────────────┐\n│ START │\n└──────┬──────┘\n │\n ▼\n┌─────────────┐\n│ Process A │\n└──────┬──────┘\n │\n ▼\n ╱────────╲\n ╱ Decision ╲\n ╲ ? ╱\n ╲────────╱\n │ │\n YES NO\n │ │\n ▼ ▼\n┌──────┐ ┌──────┐\n│ B │ │ C │\n└──────┘ └──────┘',
|
decision:
|
||||||
'sequence': ' User System Database\n │ │ │\n │ Request │ │\n ├──────────►│ │\n │ │ Query │\n │ ├──────────►│\n │ │ │\n │ │ Result │\n │ │◄──────────┤\n │ Response │ │\n │◄──────────┤ │\n │ │ │',
|
' ╱╲\n ╱ ╲\n ╱ ? ╲\n ╱ ╲\n ╱────────╲\n ╱ ╲\n YES NO\n │ │\n ▼ ▼',
|
||||||
'network': ' ┌─────────┐\n │ Server │\n └────┬────┘\n │\n ┌─────────┼─────────┐\n │ │ │\n┌────┴────┐ ┌──┴──┐ ┌────┴────┐\n│ Client1 │ │ DB │ │ Client2 │\n└─────────┘ └─────┘ └─────────┘',
|
process:
|
||||||
'hierarchy': ' ┌─────────┐\n │ CEO │\n └────┬────┘\n ┌─────────┼─────────┐\n │ │ │\n ┌───┴───┐ ┌───┴───┐ ┌───┴───┐\n │ VP1 │ │ VP2 │ │ VP3 │\n └───┬───┘ └───┬───┘ └───┬───┘\n │ │ │\n ┌───┴───┐ ┌───┴───┐ ┌───┴───┐\n │ Team1 │ │ Team2 │ │ Team3 │\n └───────┘ └───────┘ └───────┘',
|
'┌─────┐ ┌─────┐ ┌─────┐\n│ 1 │──▶│ 2 │──▶│ 3 │\n└─────┘ └─────┘ └─────┘',
|
||||||
'header': '╔════════════════════════════════════╗\n║ SECTION TITLE ║\n╚════════════════════════════════════╝',
|
flowchart:
|
||||||
'note': '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n┃ NOTE: ┃\n┃ This is an important note ┃\n┃ that requires attention! ┃\n┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛',
|
'┌─────────────┐\n│ START │\n└──────┬──────┘\n │\n ▼\n┌─────────────┐\n│ Process A │\n└──────┬──────┘\n │\n ▼\n ╱────────╲\n ╱ Decision ╲\n ╲ ? ╱\n ╲────────╱\n │ │\n YES NO\n │ │\n ▼ ▼\n┌──────┐ ┌──────┐\n│ B │ │ C │\n└──────┘ └──────┘',
|
||||||
'warning': '╔════════════════════════════════════╗\n║ ⚠️ WARNING ║\n║ ║\n║ Critical information here! ║\n╚════════════════════════════════════╝',
|
sequence:
|
||||||
'info': '╭────────────────────────────────────╮\n│ ℹ️ INFO │\n│ │\n│ Helpful information here. │\n╰────────────────────────────────────╯',
|
' User System Database\n │ │ │\n │ Request │ │\n ├──────────►│ │\n │ │ Query │\n │ ├──────────►│\n │ │ │\n │ │ Result │\n │ │◄──────────┤\n │ Response │ │\n │◄──────────┤ │\n │ │ │',
|
||||||
'divider': '════════════════════════════════════════',
|
network:
|
||||||
'separator': '╭──────────────────────────────────────╮\n│ │\n╰──────────────────────────────────────╯',
|
' ┌─────────┐\n │ Server │\n └────┬────┘\n │\n ┌─────────┼─────────┐\n │ │ │\n┌────┴────┐ ┌──┴──┐ ┌────┴────┐\n│ Client1 │ │ DB │ │ Client2 │\n└─────────┘ └─────┘ └─────────┘',
|
||||||
'banner': '★══════════════════════════════════════★\n║ YOUR TITLE HERE ║\n★══════════════════════════════════════★',
|
hierarchy:
|
||||||
'checklist': '☐ Task 1 - Not completed\n☑ Task 2 - Completed \n☐ Task 3 - Not completed\n☐ Task 4 - Not completed'
|
' ┌─────────┐\n │ CEO │\n └────┬────┘\n ┌─────────┼─────────┐\n │ │ │\n ┌───┴───┐ ┌───┴───┐ ┌───┴───┐\n │ VP1 │ │ VP2 │ │ VP3 │\n └───┬───┘ └───┬───┘ └───┬───┘\n │ │ │\n ┌───┴───┐ ┌───┴───┐ ┌───┴───┐\n │ Team1 │ │ Team2 │ │ Team3 │\n └───────┘ └───────┘ └───────┘',
|
||||||
|
header:
|
||||||
|
'╔════════════════════════════════════╗\n║ SECTION TITLE ║\n╚════════════════════════════════════╝',
|
||||||
|
note: '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n┃ NOTE: ┃\n┃ This is an important note ┃\n┃ that requires attention! ┃\n┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛',
|
||||||
|
warning:
|
||||||
|
'╔════════════════════════════════════╗\n║ ⚠️ WARNING ║\n║ ║\n║ Critical information here! ║\n╚════════════════════════════════════╝',
|
||||||
|
info: '╭────────────────────────────────────╮\n│ ℹ️ INFO │\n│ │\n│ Helpful information here. │\n╰────────────────────────────────────╯',
|
||||||
|
divider: '════════════════════════════════════════',
|
||||||
|
separator:
|
||||||
|
'╭──────────────────────────────────────╮\n│ │\n╰──────────────────────────────────────╯',
|
||||||
|
banner:
|
||||||
|
'★══════════════════════════════════════★\n║ YOUR TITLE HERE ║\n★══════════════════════════════════════★',
|
||||||
|
checklist:
|
||||||
|
'☐ Task 1 - Not completed\n☑ Task 2 - Completed \n☐ Task 3 - Not completed\n☐ Task 4 - Not completed',
|
||||||
};
|
};
|
||||||
|
|
||||||
const BOX_STYLES = {
|
const BOX_STYLES = {
|
||||||
@@ -480,20 +630,20 @@
|
|||||||
double: { tl: '╔', tr: '╗', bl: '╚', br: '╝', h: '═', v: '║' },
|
double: { tl: '╔', tr: '╗', bl: '╚', br: '╝', h: '═', v: '║' },
|
||||||
rounded: { tl: '╭', tr: '╮', bl: '╰', br: '╯', h: '─', v: '│' },
|
rounded: { tl: '╭', tr: '╮', bl: '╰', br: '╯', h: '─', v: '│' },
|
||||||
bold: { tl: '┏', tr: '┓', bl: '┗', br: '┛', h: '━', v: '┃' },
|
bold: { tl: '┏', tr: '┓', bl: '┗', br: '┛', h: '━', v: '┃' },
|
||||||
ascii: { tl: '+', tr: '+', bl: '+', br: '+', h: '-', v: '|' }
|
ascii: { tl: '+', tr: '+', bl: '+', br: '+', h: '-', v: '|' },
|
||||||
};
|
};
|
||||||
|
|
||||||
let currentMode = 'text';
|
let currentMode = 'text';
|
||||||
let currentTemplate = null;
|
let currentTemplate = null;
|
||||||
|
|
||||||
// Mode switching
|
// Mode switching
|
||||||
document.querySelectorAll('.mode-tab').forEach(tab => {
|
document.querySelectorAll('.mode-tab').forEach((tab) => {
|
||||||
tab.addEventListener('click', () => {
|
tab.addEventListener('click', () => {
|
||||||
document.querySelectorAll('.mode-tab').forEach(t => t.classList.remove('active'));
|
document.querySelectorAll('.mode-tab').forEach((t) => t.classList.remove('active'));
|
||||||
tab.classList.add('active');
|
tab.classList.add('active');
|
||||||
currentMode = tab.dataset.mode;
|
currentMode = tab.dataset.mode;
|
||||||
|
|
||||||
document.querySelectorAll('.mode-section').forEach(s => s.classList.remove('active'));
|
document.querySelectorAll('.mode-section').forEach((s) => s.classList.remove('active'));
|
||||||
document.getElementById(currentMode + '-mode').classList.add('active');
|
document.getElementById(currentMode + '-mode').classList.add('active');
|
||||||
|
|
||||||
generatePreview();
|
generatePreview();
|
||||||
@@ -501,9 +651,9 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Template selection
|
// Template selection
|
||||||
document.querySelectorAll('.template-btn').forEach(btn => {
|
document.querySelectorAll('.template-btn').forEach((btn) => {
|
||||||
btn.addEventListener('click', () => {
|
btn.addEventListener('click', () => {
|
||||||
document.querySelectorAll('.template-btn').forEach(b => b.classList.remove('active'));
|
document.querySelectorAll('.template-btn').forEach((b) => b.classList.remove('active'));
|
||||||
btn.classList.add('active');
|
btn.classList.add('active');
|
||||||
currentTemplate = btn.dataset.template;
|
currentTemplate = btn.dataset.template;
|
||||||
generatePreview();
|
generatePreview();
|
||||||
@@ -531,7 +681,7 @@
|
|||||||
function generateBox(text, style, padding) {
|
function generateBox(text, style, padding) {
|
||||||
const box = BOX_STYLES[style] || BOX_STYLES.single;
|
const box = BOX_STYLES[style] || BOX_STYLES.single;
|
||||||
const lines = text.split('\n');
|
const lines = text.split('\n');
|
||||||
const maxLen = Math.max(...lines.map(l => l.length)) + padding * 2;
|
const maxLen = Math.max(...lines.map((l) => l.length)) + padding * 2;
|
||||||
|
|
||||||
let result = box.tl + box.h.repeat(maxLen + 2) + box.tr + '\n';
|
let result = box.tl + box.h.repeat(maxLen + 2) + box.tr + '\n';
|
||||||
|
|
||||||
|
|||||||
@@ -60,15 +60,19 @@ class CommandPalette {
|
|||||||
|
|
||||||
renderResults(query) {
|
renderResults(query) {
|
||||||
this.filteredCommands = query
|
this.filteredCommands = query
|
||||||
? this.commands.filter(cmd => cmd.label.toLowerCase().includes(query.toLowerCase()))
|
? this.commands.filter((cmd) => cmd.label.toLowerCase().includes(query.toLowerCase()))
|
||||||
: [...this.commands];
|
: [...this.commands];
|
||||||
|
|
||||||
this.results.innerHTML = this.filteredCommands.map((cmd, i) => `
|
this.results.innerHTML = this.filteredCommands
|
||||||
|
.map(
|
||||||
|
(cmd, i) => `
|
||||||
<div class="command-item ${i === this.selectedIndex ? 'selected' : ''}" data-index="${i}">
|
<div class="command-item ${i === this.selectedIndex ? 'selected' : ''}" data-index="${i}">
|
||||||
<span class="command-label">${this.highlightMatch(cmd.label, query)}</span>
|
<span class="command-label">${this.highlightMatch(cmd.label, query)}</span>
|
||||||
${cmd.shortcut ? `<span class="command-shortcut">${cmd.shortcut}</span>` : ''}
|
${cmd.shortcut ? `<span class="command-shortcut">${cmd.shortcut}</span>` : ''}
|
||||||
</div>
|
</div>
|
||||||
`).join('');
|
`
|
||||||
|
)
|
||||||
|
.join('');
|
||||||
|
|
||||||
this.results.querySelectorAll('.command-item').forEach((el) => {
|
this.results.querySelectorAll('.command-item').forEach((el) => {
|
||||||
el.addEventListener('click', () => {
|
el.addEventListener('click', () => {
|
||||||
|
|||||||
@@ -12,38 +12,23 @@ const { EditorState } = require('@codemirror/state');
|
|||||||
const { markdown, markdownLanguage } = require('@codemirror/lang-markdown');
|
const { markdown, markdownLanguage } = require('@codemirror/lang-markdown');
|
||||||
// Language extensions loaded lazily on first use
|
// Language extensions loaded lazily on first use
|
||||||
let _javascript, _html, _css, _json, _python;
|
let _javascript, _html, _css, _json, _python;
|
||||||
const {
|
const { defaultKeymap, history, historyKeymap, indentWithTab } = require('@codemirror/commands');
|
||||||
defaultKeymap,
|
const { searchKeymap, highlightSelectionMatches } = require('@codemirror/search');
|
||||||
history,
|
const { autocompletion, completionKeymap } = require('@codemirror/autocomplete');
|
||||||
historyKeymap,
|
const { bracketMatching, foldGutter, indentOnInput } = require('@codemirror/language');
|
||||||
indentWithTab,
|
|
||||||
} = require('@codemirror/commands');
|
|
||||||
const {
|
|
||||||
searchKeymap,
|
|
||||||
highlightSelectionMatches,
|
|
||||||
} = require('@codemirror/search');
|
|
||||||
const {
|
|
||||||
autocompletion,
|
|
||||||
completionKeymap,
|
|
||||||
} = require('@codemirror/autocomplete');
|
|
||||||
const {
|
|
||||||
bracketMatching,
|
|
||||||
foldGutter,
|
|
||||||
indentOnInput,
|
|
||||||
} = require('@codemirror/language');
|
|
||||||
const { oneDark } = require('@codemirror/theme-one-dark');
|
const { oneDark } = require('@codemirror/theme-one-dark');
|
||||||
|
|
||||||
// Custom theme for JetBrains Mono font
|
// Custom theme for JetBrains Mono font
|
||||||
const jetBrainsMonoTheme = EditorView.theme({
|
const jetBrainsMonoTheme = EditorView.theme({
|
||||||
'&': {
|
'&': {
|
||||||
fontFamily: "'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, 'Courier New', monospace"
|
fontFamily: "'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, 'Courier New', monospace",
|
||||||
},
|
},
|
||||||
'.cm-content': {
|
'.cm-content': {
|
||||||
fontFamily: 'inherit'
|
fontFamily: 'inherit',
|
||||||
},
|
},
|
||||||
'.cm-scroller': {
|
'.cm-scroller': {
|
||||||
fontFamily: 'inherit'
|
fontFamily: 'inherit',
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -59,7 +44,14 @@ const jetBrainsMonoTheme = EditorView.theme({
|
|||||||
* @returns {EditorView} the created editor view
|
* @returns {EditorView} the created editor view
|
||||||
*/
|
*/
|
||||||
function createEditor(parentElement, options = {}) {
|
function createEditor(parentElement, options = {}) {
|
||||||
console.log('[createEditor] Called with parentElement:', parentElement?.id, 'dimensions:', parentElement?.clientWidth, 'x', parentElement?.clientHeight);
|
console.log(
|
||||||
|
'[createEditor] Called with parentElement:',
|
||||||
|
parentElement?.id,
|
||||||
|
'dimensions:',
|
||||||
|
parentElement?.clientWidth,
|
||||||
|
'x',
|
||||||
|
parentElement?.clientHeight
|
||||||
|
);
|
||||||
if (!parentElement) {
|
if (!parentElement) {
|
||||||
console.error('[createEditor] ERROR: parentElement is null or undefined!');
|
console.error('[createEditor] ERROR: parentElement is null or undefined!');
|
||||||
return null;
|
return null;
|
||||||
@@ -125,11 +117,26 @@ function createEditor(parentElement, options = {}) {
|
|||||||
*/
|
*/
|
||||||
function getLanguageExtension(lang) {
|
function getLanguageExtension(lang) {
|
||||||
const loaders = {
|
const loaders = {
|
||||||
javascript: () => { if (!_javascript) _javascript = require('@codemirror/lang-javascript').javascript; return _javascript(); },
|
javascript: () => {
|
||||||
html: () => { if (!_html) _html = require('@codemirror/lang-html').html; return _html(); },
|
if (!_javascript) _javascript = require('@codemirror/lang-javascript').javascript;
|
||||||
css: () => { if (!_css) _css = require('@codemirror/lang-css').css; return _css(); },
|
return _javascript();
|
||||||
json: () => { if (!_json) _json = require('@codemirror/lang-json').json; return _json(); },
|
},
|
||||||
python: () => { if (!_python) _python = require('@codemirror/lang-python').python; return _python(); },
|
html: () => {
|
||||||
|
if (!_html) _html = require('@codemirror/lang-html').html;
|
||||||
|
return _html();
|
||||||
|
},
|
||||||
|
css: () => {
|
||||||
|
if (!_css) _css = require('@codemirror/lang-css').css;
|
||||||
|
return _css();
|
||||||
|
},
|
||||||
|
json: () => {
|
||||||
|
if (!_json) _json = require('@codemirror/lang-json').json;
|
||||||
|
return _json();
|
||||||
|
},
|
||||||
|
python: () => {
|
||||||
|
if (!_python) _python = require('@codemirror/lang-python').python;
|
||||||
|
return _python();
|
||||||
|
},
|
||||||
markdown: () => markdown({ base: markdownLanguage }),
|
markdown: () => markdown({ base: markdownLanguage }),
|
||||||
};
|
};
|
||||||
loaders.js = loaders.javascript;
|
loaders.js = loaders.javascript;
|
||||||
|
|||||||
@@ -73,3 +73,20 @@
|
|||||||
font-display: swap;
|
font-display: swap;
|
||||||
src: url('../assets/fonts/JetBrainsMono-Bold.woff2') format('woff2');
|
src: url('../assets/fonts/JetBrainsMono-Bold.woff2') format('woff2');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fira Code Font Family - bundled with the app */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira Code';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
src: url('../assets/fonts/FiraCode-Regular.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira Code';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-display: swap;
|
||||||
|
src: url('../assets/fonts/FiraCode-Bold.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|||||||
+1377
-250
File diff suppressed because it is too large
Load Diff
+2328
-1158
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,171 @@
|
|||||||
|
/**
|
||||||
|
* Audio Operations Module
|
||||||
|
*
|
||||||
|
* Handles audio manipulation via `ffmpeg`: format conversion, trim, extract (audio
|
||||||
|
* track from video/audio), and merge (concat demuxer). Because ffmpeg is an external
|
||||||
|
* binary, this module is split into pure/testable argument-builder functions and a
|
||||||
|
* single `executeOperation` that is the only piece which actually spawns ffmpeg —
|
||||||
|
* the ffmpeg binary path and the `execFile` implementation are both injected so tests
|
||||||
|
* can replace them with fakes, without invoking a real binary.
|
||||||
|
*
|
||||||
|
* @module AudioOperations
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
|
const path = require('path');
|
||||||
|
const { execFile } = require('child_process');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args for a straight format conversion. ffmpeg infers the output format from
|
||||||
|
* outputPath's extension; only pass -f explicitly when format is given and differs
|
||||||
|
* from that extension.
|
||||||
|
*/
|
||||||
|
function buildConvertArgs({ inputPath, outputPath, format }) {
|
||||||
|
const args = ['-i', inputPath, '-y'];
|
||||||
|
|
||||||
|
if (format) {
|
||||||
|
const ext = path.extname(outputPath).replace(/^\./, '').toLowerCase();
|
||||||
|
if (format.toLowerCase() !== ext) {
|
||||||
|
args.push('-f', format);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
args.push(outputPath);
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to trim inputPath to [startTime, startTime + duration) seconds.
|
||||||
|
* startTime/duration must be finite, non-negative numbers — they become argv
|
||||||
|
* elements passed straight to execFile with no shell involved, so there's no
|
||||||
|
* injection risk, but malformed values should still fail fast rather than reach
|
||||||
|
* ffmpeg with garbage.
|
||||||
|
*/
|
||||||
|
function buildTrimArgs({ inputPath, outputPath, startTime, duration }) {
|
||||||
|
const isValid = (n) => typeof n === 'number' && Number.isFinite(n) && n >= 0;
|
||||||
|
|
||||||
|
if (!isValid(startTime) || !isValid(duration)) {
|
||||||
|
throw new Error('Invalid trim range');
|
||||||
|
}
|
||||||
|
|
||||||
|
return ['-i', inputPath, '-ss', String(startTime), '-t', String(duration), '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to extract the audio track (stream copy, no video, no re-encode).
|
||||||
|
* If codec copy fails, executeOperation's 'extract' case retries without -acodec copy.
|
||||||
|
*/
|
||||||
|
function buildExtractArgs({ inputPath, outputPath }) {
|
||||||
|
return ['-i', inputPath, '-vn', '-acodec', 'copy', '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fallback extract args that let ffmpeg transcode instead of stream-copying.
|
||||||
|
*/
|
||||||
|
function buildExtractFallbackArgs({ inputPath, outputPath }) {
|
||||||
|
return ['-i', inputPath, '-vn', '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to merge 2+ files via the concat demuxer. Returns both concatListContent
|
||||||
|
* (the `file '<path>'` lines the caller writes to a temp list file) and args — the
|
||||||
|
* caller doesn't know the temp list file's path until it creates it, so tempListPath
|
||||||
|
* is an optional param: executeOperation's 'merge' case calls this once to obtain
|
||||||
|
* concatListContent, writes it to disk, then calls it again with the real
|
||||||
|
* tempListPath to obtain the final args referencing that file.
|
||||||
|
*/
|
||||||
|
function buildMergeArgs({ inputPaths, outputPath, tempListPath = null }) {
|
||||||
|
if (!Array.isArray(inputPaths) || inputPaths.length < 2) {
|
||||||
|
throw new Error('inputPaths must contain at least 2 files');
|
||||||
|
}
|
||||||
|
|
||||||
|
const concatListContent = inputPaths.map((p) => `file '${p}'`).join('\n') + '\n';
|
||||||
|
|
||||||
|
const args = ['-f', 'concat', '-safe', '0', '-i', tempListPath, '-c', 'copy', '-y', outputPath];
|
||||||
|
|
||||||
|
return { args, concatListContent };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run ffmpeg with the given args via the injected execFileFn, wrapped in a Promise.
|
||||||
|
*/
|
||||||
|
function runFfmpeg(ffmpegPath, args, execFileFn) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
execFileFn(ffmpegPath, args, { maxBuffer: 10 * 1024 * 1024 }, (error, stdout, stderr) => {
|
||||||
|
if (error) {
|
||||||
|
reject(new Error(stderr || error.message));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function executeOperation(operation, data, { ffmpegPath, execFileFn } = {}) {
|
||||||
|
const resolvedFfmpegPath = ffmpegPath || 'ffmpeg';
|
||||||
|
const resolvedExecFileFn = execFileFn || execFile;
|
||||||
|
|
||||||
|
switch (operation) {
|
||||||
|
case 'convert': {
|
||||||
|
const { inputPath, outputPath, format } = data || {};
|
||||||
|
const args = buildConvertArgs({ inputPath, outputPath, format });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'trim': {
|
||||||
|
const { inputPath, outputPath, startTime, duration } = data || {};
|
||||||
|
const args = buildTrimArgs({ inputPath, outputPath, startTime, duration });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'extract': {
|
||||||
|
const { inputPath, outputPath } = data || {};
|
||||||
|
try {
|
||||||
|
const args = buildExtractArgs({ inputPath, outputPath });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
} catch {
|
||||||
|
// Codec copy can fail when the source audio codec isn't valid in the target
|
||||||
|
// container — fall back to letting ffmpeg transcode instead.
|
||||||
|
const fallbackArgs = buildExtractFallbackArgs({ inputPath, outputPath });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, fallbackArgs, resolvedExecFileFn);
|
||||||
|
}
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'merge': {
|
||||||
|
const { inputPaths, outputPath } = data || {};
|
||||||
|
const { concatListContent } = buildMergeArgs({ inputPaths, outputPath });
|
||||||
|
|
||||||
|
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'audio-merge-'));
|
||||||
|
const tempListPath = path.join(tempDir, 'concat-list.txt');
|
||||||
|
|
||||||
|
try {
|
||||||
|
fs.writeFileSync(tempListPath, concatListContent, 'utf8');
|
||||||
|
const { args } = buildMergeArgs({ inputPaths, outputPath, tempListPath });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
fs.rmSync(tempDir, { recursive: true, force: true });
|
||||||
|
} catch {
|
||||||
|
/* best-effort cleanup */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new Error(`Unknown operation: ${operation}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
executeOperation,
|
||||||
|
buildConvertArgs,
|
||||||
|
buildTrimArgs,
|
||||||
|
buildExtractArgs,
|
||||||
|
buildMergeArgs,
|
||||||
|
};
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const JSZip = require('jszip');
|
||||||
|
|
||||||
|
const REL_NS = 'http://schemas.openxmlformats.org/package/2006/relationships';
|
||||||
|
|
||||||
|
function generatedRId(idx) {
|
||||||
|
return `rIdFont${idx}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function patchZipWithFonts(inputPath, fonts) {
|
||||||
|
const buf = fs.readFileSync(inputPath);
|
||||||
|
const zip = await JSZip.loadAsync(buf);
|
||||||
|
const existingFontNames = new Set();
|
||||||
|
|
||||||
|
// Detect prior embeds (idempotency: skip TTF files already present).
|
||||||
|
for (const f of Object.keys(zip.files)) {
|
||||||
|
if (zip.files[f].name && /^word\/fonts\//.test(zip.files[f].name)) {
|
||||||
|
existingFontNames.add(path.basename(f));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < fonts.length; i++) {
|
||||||
|
const { path: fontPath } = fonts[i];
|
||||||
|
const fname = path.basename(fontPath);
|
||||||
|
const wordPath = `word/fonts/${fname}`;
|
||||||
|
if (!existingFontNames.has(fname)) {
|
||||||
|
zip.file(wordPath, fs.readFileSync(fontPath));
|
||||||
|
existingFontNames.add(fname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build/replace word/fontTable.xml so Word knows the family and where to
|
||||||
|
// fetch the embedded TTF data.
|
||||||
|
const fontTableXml =
|
||||||
|
`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n` +
|
||||||
|
`<w:fonts xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/main">\n` +
|
||||||
|
fonts
|
||||||
|
.map(
|
||||||
|
(f, i) =>
|
||||||
|
` <w:font w:name="${f.family}"><w:embedRegular r:id="${generatedRId(i)}" xmlns:r="${REL_NS}"/></w:font>`
|
||||||
|
)
|
||||||
|
.join('\n') +
|
||||||
|
`\n</w:fonts>\n`;
|
||||||
|
|
||||||
|
zip.file('word/fontTable.xml', fontTableXml);
|
||||||
|
|
||||||
|
// Patch [Content_Types].xml — add Override for /word/fontTable.xml and each TTF.
|
||||||
|
const ctPath = '[Content_Types].xml';
|
||||||
|
let ct = await zip.file(ctPath).async('string');
|
||||||
|
if (!ct.includes('PartName="/word/fontTable.xml"')) {
|
||||||
|
ct = ct.replace(
|
||||||
|
'</Types>',
|
||||||
|
'<Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/></Types>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
for (const f of fonts) {
|
||||||
|
const ttfCt = 'application/x-font-ttf';
|
||||||
|
const filePart = `/word/fonts/${path.basename(f.path)}`;
|
||||||
|
if (!ct.includes(`PartName="${filePart}"`)) {
|
||||||
|
ct = ct.replace(
|
||||||
|
'</Types>',
|
||||||
|
`<Override PartName="${filePart}" ContentType="${ttfCt}"/></Types>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!ct.includes('Default Extension="ttf"')) {
|
||||||
|
ct = ct.replace(
|
||||||
|
'</Types>',
|
||||||
|
'<Default Extension="ttf" ContentType="application/x-font-ttf"/></Types>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
zip.file(ctPath, ct);
|
||||||
|
|
||||||
|
// Patch word/_rels/document.xml.rels — relationships for fontTable + each font.
|
||||||
|
const relsPath = 'word/_rels/document.xml.rels';
|
||||||
|
if (!zip.files[relsPath]) {
|
||||||
|
zip.file(
|
||||||
|
relsPath,
|
||||||
|
`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<Relationships xmlns="${REL_NS}"/>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let rels = await zip.file(relsPath).async('string');
|
||||||
|
if (!rels.includes('fontTable.xml')) {
|
||||||
|
rels = rels.replace(
|
||||||
|
'</Relationships>',
|
||||||
|
`<Relationship Id="${generatedRId(fonts.length)}" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/></Relationships>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
for (let i = 0; i < fonts.length; i++) {
|
||||||
|
const fname = path.basename(fonts[i].path);
|
||||||
|
if (!rels.includes(fname)) {
|
||||||
|
rels = rels.replace(
|
||||||
|
'</Relationships>',
|
||||||
|
`<Relationship Id="${generatedRId(i)}" Type="http://schemas.microsoft.com/office/2011/relationships/font" Target="fonts/${fname}"/></Relationships>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
zip.file(relsPath, rels);
|
||||||
|
|
||||||
|
// Patch word/styles.xml — bind SourceCode/VerbatimChar styles to the family.
|
||||||
|
const stylesPath = 'word/styles.xml';
|
||||||
|
if (zip.files[stylesPath]) {
|
||||||
|
let styles = await zip.file(stylesPath).async('string');
|
||||||
|
const family = fonts[0].family;
|
||||||
|
if (!styles.includes(`w:ascii="${family}"`)) {
|
||||||
|
styles = styles.replace(
|
||||||
|
/(<w:style[^>]*w:styleId="(?:SourceCode|VerbatimChar)"[^>]*>)/,
|
||||||
|
`$1<w:rPr><w:rFonts w:ascii="${family}" w:hAnsi="${family}" w:cs="${family}"/></w:rPr>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
zip.file(stylesPath, styles);
|
||||||
|
}
|
||||||
|
|
||||||
|
const outBuf = await zip.generateAsync({ type: 'nodebuffer' });
|
||||||
|
fs.writeFileSync(inputPath, outBuf);
|
||||||
|
return inputPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function embed(docxPath, fonts) {
|
||||||
|
return patchZipWithFonts(docxPath, fonts);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { embed };
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const JSZip = require('jszip');
|
||||||
|
|
||||||
|
// Patches an EPUB produced by pandoc so it embeds the supplied TTF font files
|
||||||
|
// inside the OEBPS and registers them in the OPF manifest. Used after
|
||||||
|
// `pandoc --epub-embed-font=...` runs (which embeds the font data) but does
|
||||||
|
// not always add the manifest item we need for readers to discover the font.
|
||||||
|
//
|
||||||
|
// Writes a new file at `${epubPath}.patched.epub` and returns the patched path.
|
||||||
|
// Caller should overwrite the original after a successful export.
|
||||||
|
async function patchManifest(epubPath, fonts) {
|
||||||
|
const zip = await JSZip.loadAsync(fs.readFileSync(epubPath));
|
||||||
|
const opfPath = Object.keys(zip.files).find((f) => f.endsWith('content.opf'));
|
||||||
|
if (!opfPath) throw new Error('EPUB has no content.opf');
|
||||||
|
let opf = await zip.file(opfPath).async('string');
|
||||||
|
|
||||||
|
for (const { path: fontPath, family, weight } of fonts) {
|
||||||
|
const filename = path.basename(fontPath);
|
||||||
|
const inFontDir = `OEBPS/fonts/${filename}`;
|
||||||
|
zip.file(inFontDir, fs.readFileSync(fontPath));
|
||||||
|
if (!opf.includes(filename)) {
|
||||||
|
const safeFamily = String(family || 'Font').replace(/\s+/g, '-');
|
||||||
|
const item = `<item id="font-${safeFamily}-${weight}" href="${inFontDir}" media-type="application/x-font-ttf"/>`;
|
||||||
|
if (opf.includes('</manifest>')) {
|
||||||
|
opf = opf.replace('</manifest>', `${item}</manifest>`);
|
||||||
|
} else {
|
||||||
|
// OPF without a manifest element (unusual but tolerated): inject one
|
||||||
|
// just before </package> so the font item is still discoverable.
|
||||||
|
opf = opf.replace('</package>', `<manifest>${item}</manifest></package>`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
zip.file(opfPath, opf);
|
||||||
|
const buf = await zip.generateAsync({ type: 'nodebuffer' });
|
||||||
|
const tmp = `${epubPath}.patched.epub`;
|
||||||
|
fs.writeFileSync(tmp, buf);
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { patchManifest };
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
function toDataUri(filePath) {
|
||||||
|
const buf = fs.readFileSync(filePath);
|
||||||
|
return `data:font/woff2;base64,${buf.toString('base64')}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function build({ activeFontPath, family, weight = 400, ligatures = false }) {
|
||||||
|
const features = ligatures ? 'normal' : "'liga' 0, 'calt' 0, 'dlig' 0";
|
||||||
|
const faceBlock = activeFontPath
|
||||||
|
? `@font-face {
|
||||||
|
font-family: '${family}';
|
||||||
|
font-weight: ${weight};
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url('${toDataUri(activeFontPath)}') format('woff2');
|
||||||
|
}
|
||||||
|
`
|
||||||
|
: '';
|
||||||
|
|
||||||
|
return `${faceBlock}code, pre, kbd, samp {
|
||||||
|
font-family: '${family}', monospace;
|
||||||
|
font-feature-settings: ${features};
|
||||||
|
}
|
||||||
|
pre, code {
|
||||||
|
white-space: pre;
|
||||||
|
tab-size: 4;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { build };
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Export preset persistence (Task 21 — export presets/profiles).
|
||||||
|
*
|
||||||
|
* Pure list operations over the `exportPresets` array kept in the app's
|
||||||
|
* settings.json store (the `store.get`/`store.set` helpers defined in
|
||||||
|
* src/main.js — the same store that holds headerFooterSettings and
|
||||||
|
* pageSettings). The store is injected so the logic is unit-testable with a
|
||||||
|
* fake store (see tests/main/ExportPresets.test.js); src/main.js wires these
|
||||||
|
* functions to the get-export-presets / save-export-preset /
|
||||||
|
* delete-export-preset invoke channels.
|
||||||
|
*
|
||||||
|
* Preset shape: { id: string, name: string, format: string|null, options: object }
|
||||||
|
* — `options` is the export-options snapshot captured from the renderer's
|
||||||
|
* export dialog, so selecting a preset can pre-fill that dialog exactly.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const PRESET_KEY = 'exportPresets';
|
||||||
|
const MAX_PRESETS = 50;
|
||||||
|
const MAX_NAME_LENGTH = 100;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read the stored presets, defensively skipping corrupt data.
|
||||||
|
* @param {{get: Function, set: Function}} store settings store
|
||||||
|
* @returns {Array<{id: string, name: string, format: string|null, options: Object}>}
|
||||||
|
*/
|
||||||
|
function loadPresets(store) {
|
||||||
|
const stored = store.get(PRESET_KEY, []);
|
||||||
|
if (!Array.isArray(stored)) return [];
|
||||||
|
return stored.filter(
|
||||||
|
(preset) =>
|
||||||
|
preset &&
|
||||||
|
typeof preset === 'object' &&
|
||||||
|
typeof preset.id === 'string' &&
|
||||||
|
typeof preset.name === 'string'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validate, normalize, and upsert a preset by id. A missing id gets a newly
|
||||||
|
* generated one (insert); an id that already exists is replaced (update).
|
||||||
|
* @param {{get: Function, set: Function}} store settings store
|
||||||
|
* @param {{id?: string, name?: string, format?: string, options?: Object}} preset
|
||||||
|
* @returns {Array} the updated preset list (also persisted)
|
||||||
|
* @throws when the preset is not an object, the name is empty, or the cap is hit
|
||||||
|
*/
|
||||||
|
function savePreset(store, preset) {
|
||||||
|
if (!preset || typeof preset !== 'object') {
|
||||||
|
throw new Error('Preset must be an object');
|
||||||
|
}
|
||||||
|
const name = typeof preset.name === 'string' ? preset.name.trim().slice(0, MAX_NAME_LENGTH) : '';
|
||||||
|
if (!name) {
|
||||||
|
throw new Error('Preset name is required');
|
||||||
|
}
|
||||||
|
const options = preset.options && typeof preset.options === 'object' ? preset.options : {};
|
||||||
|
const format = typeof preset.format === 'string' ? preset.format : null;
|
||||||
|
|
||||||
|
const presets = loadPresets(store);
|
||||||
|
const id = typeof preset.id === 'string' && preset.id ? preset.id : createPresetId();
|
||||||
|
const entry = { id, name, format, options };
|
||||||
|
|
||||||
|
const index = presets.findIndex((existing) => existing.id === id);
|
||||||
|
if (index >= 0) {
|
||||||
|
presets[index] = entry;
|
||||||
|
} else {
|
||||||
|
if (presets.length >= MAX_PRESETS) {
|
||||||
|
throw new Error(`Cannot store more than ${MAX_PRESETS} export presets`);
|
||||||
|
}
|
||||||
|
presets.push(entry);
|
||||||
|
}
|
||||||
|
store.set(PRESET_KEY, presets);
|
||||||
|
return presets;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the preset with the given id (idempotent).
|
||||||
|
* @param {{get: Function, set: Function}} store settings store
|
||||||
|
* @param {string} presetId
|
||||||
|
* @returns {Array} the updated preset list (also persisted)
|
||||||
|
*/
|
||||||
|
function deletePreset(store, presetId) {
|
||||||
|
const presets = loadPresets(store).filter((preset) => preset.id !== presetId);
|
||||||
|
store.set(PRESET_KEY, presets);
|
||||||
|
return presets;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createPresetId() {
|
||||||
|
return `preset-${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 8)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { loadPresets, savePreset, deletePreset, PRESET_KEY, MAX_PRESETS };
|
||||||
@@ -8,7 +8,7 @@ async function getStatus(dir) {
|
|||||||
try {
|
try {
|
||||||
const git = getGitInstance(dir);
|
const git = getGitInstance(dir);
|
||||||
return await git.status();
|
return await git.status();
|
||||||
} catch (err) {
|
} catch {
|
||||||
return { error: 'Not a git repository' };
|
return { error: 'Not a git repository' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -41,4 +41,55 @@ async function log(dir, maxCount = 20) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { getStatus, stage, commit, log };
|
// againstHead=true compares the working tree (staged + unstaged) against the last
|
||||||
|
// commit instead of against the index — used by the Document Compare dialog's
|
||||||
|
// "Git HEAD" mode. Default behavior (worktree vs index) is unchanged.
|
||||||
|
async function diff(dir, file, againstHead = false) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
if (againstHead) {
|
||||||
|
return file ? await git.diff(['HEAD', '--', file]) : await git.diff('HEAD');
|
||||||
|
}
|
||||||
|
return file ? await git.diff([file]) : await git.diff();
|
||||||
|
} catch (err) {
|
||||||
|
return { error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function branches(dir) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
return await git.branchLocal();
|
||||||
|
} catch (err) {
|
||||||
|
return { error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function checkoutBranch(dir, name, isNew) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
return isNew ? await git.checkoutLocalBranch(name) : await git.checkout(name);
|
||||||
|
} catch (err) {
|
||||||
|
return { error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function push(dir) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
return await git.push();
|
||||||
|
} catch (err) {
|
||||||
|
return { error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pull(dir) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
return await git.pull();
|
||||||
|
} catch (err) {
|
||||||
|
return { error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { getStatus, stage, commit, log, diff, branches, checkoutBranch, push, pull };
|
||||||
|
|||||||
@@ -0,0 +1,198 @@
|
|||||||
|
/**
|
||||||
|
* Image Operations Module
|
||||||
|
*
|
||||||
|
* Handles image manipulation via `sharp`: format conversion, resize, compress, rotate.
|
||||||
|
* Mirrors the executeOperation(operation, data) dispatcher pattern used by PDFOperations.js.
|
||||||
|
*
|
||||||
|
* sharp loads LAZILY: its native bindings (@img/sharp-*) are optionalDependencies
|
||||||
|
* that a packaged build can prune or fail to unpack, and a top-level require would
|
||||||
|
* then crash the whole app at boot (src/main.js requires this module unconditionally).
|
||||||
|
* When sharp cannot load, operations degrade honestly instead of killing the app —
|
||||||
|
* the same honest-failure precedent PDFOperations set for missing pdf-lib features.
|
||||||
|
*
|
||||||
|
* @module ImageOperations
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
let sharpModule = null;
|
||||||
|
let sharpLoadError = null;
|
||||||
|
|
||||||
|
function loadSharp() {
|
||||||
|
if (sharpModule) return sharpModule;
|
||||||
|
if (sharpLoadError) throw sharpLoadError;
|
||||||
|
try {
|
||||||
|
sharpModule = require('sharp');
|
||||||
|
return sharpModule;
|
||||||
|
} catch (error) {
|
||||||
|
sharpLoadError = error;
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Strip absolute paths from error text before it reaches callers, mirroring
|
||||||
|
// sanitizeErrorMessage() in main.js (that helper is not importable from here).
|
||||||
|
function sanitizeMessage(message) {
|
||||||
|
if (typeof message !== 'string') return String(message);
|
||||||
|
return message
|
||||||
|
.replace(/[A-Z]:\\[^\s"']+\\([^\s"'\\]+)/gi, '$1')
|
||||||
|
.replace(/\/[^\s"']+\/([^\s"'/]+)/g, '$1');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Must match the MAX_FILE_SIZE convention defined in main.js (50MB). main.js is the
|
||||||
|
// single source of truth for this limit; this module does not redefine it independently
|
||||||
|
// — callers (main.js) pass it in via data.maxFileSize when they want it enforced, and we
|
||||||
|
// fall back to the same 50MB default so direct/unit-test callers are still protected.
|
||||||
|
const DEFAULT_MAX_FILE_SIZE = 50 * 1024 * 1024;
|
||||||
|
|
||||||
|
const RASTER_FORMATS = ['jpeg', 'png', 'webp', 'avif', 'tiff', 'gif'];
|
||||||
|
const RESIZE_FIT_MODES = ['cover', 'contain', 'fill', 'inside', 'outside'];
|
||||||
|
|
||||||
|
function validateInput(data) {
|
||||||
|
const { inputPath, outputPath, maxFileSize } = data || {};
|
||||||
|
|
||||||
|
if (!inputPath || !outputPath) {
|
||||||
|
throw new Error('inputPath and outputPath are required');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!fs.existsSync(inputPath)) {
|
||||||
|
throw new Error(`Input file not found: ${path.basename(inputPath)}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const limit = typeof maxFileSize === 'number' ? maxFileSize : DEFAULT_MAX_FILE_SIZE;
|
||||||
|
const stats = fs.statSync(inputPath);
|
||||||
|
if (stats.size > limit) {
|
||||||
|
throw new Error(`File exceeds the ${Math.floor(limit / (1024 * 1024))}MB size limit.`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function imageConvert(data) {
|
||||||
|
try {
|
||||||
|
const sharp = loadSharp();
|
||||||
|
validateInput(data);
|
||||||
|
const { inputPath, outputPath, format } = data;
|
||||||
|
|
||||||
|
if (!RASTER_FORMATS.includes(format)) {
|
||||||
|
throw new Error(`Unsupported output format: ${format}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
await sharp(inputPath).toFormat(format).toFile(outputPath);
|
||||||
|
|
||||||
|
return { success: true, outputPath };
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(`Image conversion failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function imageResize(data) {
|
||||||
|
try {
|
||||||
|
const sharp = loadSharp();
|
||||||
|
validateInput(data);
|
||||||
|
const { inputPath, outputPath, width = null, height = null, fit = 'inside' } = data;
|
||||||
|
|
||||||
|
if (width === null && height === null) {
|
||||||
|
throw new Error('At least one of width or height must be provided');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!RESIZE_FIT_MODES.includes(fit)) {
|
||||||
|
throw new Error(`Unsupported fit mode: ${fit}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
await sharp(inputPath).resize({ width, height, fit }).toFile(outputPath);
|
||||||
|
|
||||||
|
return { success: true, outputPath };
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(`Image resize failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function imageCompress(data) {
|
||||||
|
try {
|
||||||
|
const sharp = loadSharp();
|
||||||
|
validateInput(data);
|
||||||
|
const { inputPath, outputPath, quality = 80 } = data;
|
||||||
|
|
||||||
|
if (!Number.isInteger(quality) || quality < 1 || quality > 100) {
|
||||||
|
throw new Error('quality must be an integer between 1 and 100');
|
||||||
|
}
|
||||||
|
|
||||||
|
const ext = path.extname(outputPath).toLowerCase().replace('.', '');
|
||||||
|
let pipeline = sharp(inputPath);
|
||||||
|
|
||||||
|
switch (ext) {
|
||||||
|
case 'jpg':
|
||||||
|
case 'jpeg':
|
||||||
|
pipeline = pipeline.jpeg({ quality });
|
||||||
|
break;
|
||||||
|
case 'webp':
|
||||||
|
pipeline = pipeline.webp({ quality });
|
||||||
|
break;
|
||||||
|
case 'avif':
|
||||||
|
pipeline = pipeline.avif({ quality });
|
||||||
|
break;
|
||||||
|
case 'png':
|
||||||
|
pipeline = pipeline.png({ quality, compressionLevel: 9 });
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error(`Unsupported compression output format: ${ext}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
await pipeline.toFile(outputPath);
|
||||||
|
|
||||||
|
return { success: true, outputPath };
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(`Image compression failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function imageRotate(data) {
|
||||||
|
try {
|
||||||
|
const sharp = loadSharp();
|
||||||
|
validateInput(data);
|
||||||
|
const { inputPath, outputPath, angle } = data;
|
||||||
|
|
||||||
|
if (typeof angle !== 'number' || !Number.isFinite(angle)) {
|
||||||
|
throw new Error('angle must be a number');
|
||||||
|
}
|
||||||
|
|
||||||
|
await sharp(inputPath).rotate(angle).toFile(outputPath);
|
||||||
|
|
||||||
|
return { success: true, outputPath };
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(`Image rotation failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function executeOperation(operation, data) {
|
||||||
|
try {
|
||||||
|
loadSharp();
|
||||||
|
} catch (error) {
|
||||||
|
// Honest degradation: the app keeps booting and every image op reports the
|
||||||
|
// unavailable state as a resolved result instead of throwing at import time.
|
||||||
|
return Promise.resolve({
|
||||||
|
success: false,
|
||||||
|
error: `Image operations unavailable: ${sanitizeMessage(error.message)}`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
switch (operation) {
|
||||||
|
case 'convert':
|
||||||
|
return imageConvert(data);
|
||||||
|
case 'resize':
|
||||||
|
return imageResize(data);
|
||||||
|
case 'compress':
|
||||||
|
return imageCompress(data);
|
||||||
|
case 'rotate':
|
||||||
|
return imageRotate(data);
|
||||||
|
default:
|
||||||
|
return Promise.reject(new Error(`Unknown operation: ${operation}`));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
executeOperation,
|
||||||
|
imageConvert,
|
||||||
|
imageResize,
|
||||||
|
imageCompress,
|
||||||
|
imageRotate,
|
||||||
|
};
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const {
|
||||||
|
getActiveMonoFont,
|
||||||
|
isLigaturesEnabled,
|
||||||
|
FAMILY_BY_KEY,
|
||||||
|
} = require('./settings/monospaceSettings');
|
||||||
|
|
||||||
|
const WEIGHT_BY_KEY = { 300: 'Light', 400: 'Regular', 500: 'Medium', 600: 'SemiBold', 700: 'Bold' };
|
||||||
|
|
||||||
|
function getAppRoot() {
|
||||||
|
if (
|
||||||
|
process.resourcesPath &&
|
||||||
|
fs.existsSync(path.join(process.resourcesPath, 'app.asar.unpacked'))
|
||||||
|
) {
|
||||||
|
return process.resourcesPath;
|
||||||
|
}
|
||||||
|
return path.resolve(__dirname, '..', '..');
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCandidatePaths(family, weight) {
|
||||||
|
const familyDir = family === 'Fira Code' ? 'FiraCode' : 'JetBrainsMono';
|
||||||
|
const weightName = WEIGHT_BY_KEY[weight] || 'Regular';
|
||||||
|
const filename = `${familyDir}-${weightName}.ttf`;
|
||||||
|
|
||||||
|
const candidates = [];
|
||||||
|
candidates.push(path.resolve(getAppRoot(), 'assets', 'fonts', filename));
|
||||||
|
const packagedRoot = process.resourcesPath || getAppRoot();
|
||||||
|
candidates.push(path.join(packagedRoot, 'app.asar.unpacked', 'assets', 'fonts', filename));
|
||||||
|
return candidates;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getMonoFontTtfPath(familyKey, weight = 400) {
|
||||||
|
const family = FAMILY_BY_KEY[familyKey] || 'JetBrains Mono';
|
||||||
|
const candidates = getCandidatePaths(family, weight);
|
||||||
|
for (const p of candidates) {
|
||||||
|
if (fs.existsSync(p)) return p;
|
||||||
|
}
|
||||||
|
const filename = path.basename(candidates[candidates.length - 1]);
|
||||||
|
console.warn(
|
||||||
|
`[MonospaceFontConfig] bundled font missing: ${filename}; falling back to system monospace`
|
||||||
|
);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function ligaturesEnabled(settings) {
|
||||||
|
return isLigaturesEnabled(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getActiveFamily(settings) {
|
||||||
|
return getActiveMonoFont(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { getMonoFontTtfPath, ligaturesEnabled, getActiveFamily };
|
||||||
@@ -0,0 +1,177 @@
|
|||||||
|
/**
|
||||||
|
* PDFBatchOperations
|
||||||
|
*
|
||||||
|
* Applies one PDFOperations.executeOperation() operation (watermark, compress,
|
||||||
|
* rotate, split, ...) to every .pdf file in an input folder — the PDF sibling of
|
||||||
|
* runMediaBatchOperation() in main.js (Task 12's image/audio/video batch mode):
|
||||||
|
* collect matching files via collectFilesByExtension (which generalizes the
|
||||||
|
* inline collectFiles() of the 'universal-convert-batch' handler), loop the
|
||||||
|
* operation over them, and report per-file progress plus a final
|
||||||
|
* completed/failed summary.
|
||||||
|
*
|
||||||
|
* Pulled out as its own Electron-free module (same precedent as
|
||||||
|
* collectFilesByExtension) so the batch loop is unit-testable against real
|
||||||
|
* pdf-lib fixtures; main.js injects the IPC-facing callbacks:
|
||||||
|
* onProgress -> mainWindow.webContents.send('batch-progress', ...)
|
||||||
|
* onComplete -> mainWindow.webContents.send('pdf-batch-complete', ...) + dialog
|
||||||
|
*
|
||||||
|
* Not every executeOperation op fits the "apply the same operation to every
|
||||||
|
* file" batch model. Excluded (enforced by absence from PDF_BATCH_OUTPUT_SPEC,
|
||||||
|
* which doubles as the defensive backstop for renderer-supplied op names):
|
||||||
|
* - merge / reorder / fillForm — consume per-file knowledge the batch flow
|
||||||
|
* cannot supply (merge takes many inputs in one op; reorder needs each
|
||||||
|
* file's full page order; fillForm's field values differ per file).
|
||||||
|
* - formFields — a read-only query returning data, not a transform.
|
||||||
|
* - encrypt / decrypt / permissions — pdf-lib 1.17.1 (bundled) lacks
|
||||||
|
* encryption support, so since Task 27 these ops fail honestly with an
|
||||||
|
* "unavailable" result instead of silently writing unprotected files;
|
||||||
|
* a batch run would deterministically fail every file.
|
||||||
|
*
|
||||||
|
* @module PDFBatchOperations
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const PDFOperations = require('./PDFOperations');
|
||||||
|
const { collectFilesByExtension } = require('./collectFilesByExtension');
|
||||||
|
|
||||||
|
// How to derive each output file's path (or directory) from the source file,
|
||||||
|
// mirroring BATCH_OUTPUT_SPEC in main.js:
|
||||||
|
// { ext: 'original' } -> <outputFolder>/<relativeDir>/<baseName>.pdf via outputPath
|
||||||
|
// { ext: 'txt' } -> <outputFolder>/<relativeDir>/<baseName>.txt via outputPath
|
||||||
|
// { folder: true } -> split writes its `<baseName>_part_N.pdf` files into
|
||||||
|
// the mirrored output folder via outputFolder
|
||||||
|
// { dir: true } -> extractImages writes images into a per-PDF
|
||||||
|
// <outputFolder>/<relativeDir>/<baseName>/ via outputDir
|
||||||
|
const PDF_BATCH_OUTPUT_SPEC = {
|
||||||
|
split: { folder: true },
|
||||||
|
compress: { ext: 'original' },
|
||||||
|
rotate: { ext: 'original' },
|
||||||
|
delete: { ext: 'original' },
|
||||||
|
watermark: { ext: 'original' },
|
||||||
|
extractText: { ext: 'txt' },
|
||||||
|
pageNumbers: { ext: 'original' },
|
||||||
|
crop: { ext: 'original' },
|
||||||
|
extractImages: { dir: true },
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a single PDFOperations operation over every .pdf under `inputFolder`.
|
||||||
|
*
|
||||||
|
* @param {object} args
|
||||||
|
* @param {string} args.operation - executeOperation op name (must be batchable).
|
||||||
|
* @param {string} args.inputFolder - Folder to scan for .pdf files.
|
||||||
|
* @param {string} args.outputFolder - Destination folder (created if missing);
|
||||||
|
* the input folder's relative structure is mirrored beneath it.
|
||||||
|
* @param {boolean} [args.includeSubfolders=true] - Recurse into subdirectories.
|
||||||
|
* @param {object} [args.data={}] - Shared operation options forwarded to
|
||||||
|
* executeOperation for every file (same option shapes as the single-file PDF
|
||||||
|
* editor dialog; inputPath/outputPath are added per file here).
|
||||||
|
* @param {number} [args.maxFileSize] - Skip (count as failed) files larger than
|
||||||
|
* this many bytes, mirroring the batch-convert handler's file-size guard.
|
||||||
|
* @param {Function} [args.onProgress] - Called with { completed, failed, total,
|
||||||
|
* currentFile } before each file and once (currentFile: null) at the end —
|
||||||
|
* the existing 'batch-progress' payload shape.
|
||||||
|
* @param {Function} args.onComplete - Called exactly once with the outcome:
|
||||||
|
* { success: false, error } for early failures, otherwise
|
||||||
|
* { success: true, completed, failed, total, outputFolder }.
|
||||||
|
* @param {Function} [args.sanitizeError] - Sanitizer for error messages that
|
||||||
|
* could leak absolute paths (main.js passes sanitizeErrorMessage).
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
async function runPDFBatchOperation({
|
||||||
|
operation,
|
||||||
|
inputFolder,
|
||||||
|
outputFolder,
|
||||||
|
includeSubfolders,
|
||||||
|
data = {},
|
||||||
|
maxFileSize,
|
||||||
|
onProgress = () => {},
|
||||||
|
onComplete,
|
||||||
|
sanitizeError = (message) => message,
|
||||||
|
}) {
|
||||||
|
const spec = PDF_BATCH_OUTPUT_SPEC[operation];
|
||||||
|
if (!spec) {
|
||||||
|
onComplete({
|
||||||
|
success: false,
|
||||||
|
error: `Batch mode is not supported for the "${operation}" operation.`,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!inputFolder || !fs.existsSync(inputFolder)) {
|
||||||
|
onComplete({ success: false, error: 'Input folder does not exist.' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
fs.mkdirSync(outputFolder, { recursive: true });
|
||||||
|
} catch (error) {
|
||||||
|
onComplete({
|
||||||
|
success: false,
|
||||||
|
error: sanitizeError(`Failed to create output folder: ${error.message}`),
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const files = collectFilesByExtension(inputFolder, ['.pdf'], includeSubfolders !== false);
|
||||||
|
if (files.length === 0) {
|
||||||
|
onComplete({ success: false, error: 'No matching files found in the selected folder.' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const total = files.length;
|
||||||
|
let completed = 0;
|
||||||
|
let failed = 0;
|
||||||
|
|
||||||
|
for (const filePath of files) {
|
||||||
|
onProgress({
|
||||||
|
completed,
|
||||||
|
failed,
|
||||||
|
total,
|
||||||
|
currentFile: path.basename(filePath),
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (maxFileSize && fs.statSync(filePath).size > maxFileSize) {
|
||||||
|
failed++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const baseName = path.basename(filePath, path.extname(filePath));
|
||||||
|
const relativeDir = path.dirname(path.relative(inputFolder, filePath));
|
||||||
|
const targetDir = relativeDir === '.' ? outputFolder : path.join(outputFolder, relativeDir);
|
||||||
|
fs.mkdirSync(targetDir, { recursive: true });
|
||||||
|
|
||||||
|
const fileData = { ...data, inputPath: filePath };
|
||||||
|
if (spec.dir) {
|
||||||
|
fileData.outputDir = path.join(targetDir, baseName);
|
||||||
|
} else if (spec.folder) {
|
||||||
|
fileData.outputFolder = targetDir;
|
||||||
|
} else {
|
||||||
|
const ext = spec.ext === 'original' ? 'pdf' : spec.ext;
|
||||||
|
fileData.outputPath = path.join(targetDir, `${baseName}.${ext}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// PDFOperations ops report failures via { success: false } rather than by
|
||||||
|
// throwing (each op catches internally), so the result flag — not just
|
||||||
|
// the promise — decides the per-file outcome.
|
||||||
|
const result = await PDFOperations.executeOperation(operation, fileData);
|
||||||
|
if (result && result.success) {
|
||||||
|
completed++;
|
||||||
|
} else {
|
||||||
|
failed++;
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// stat/mkdir can throw (file vanished mid-scan, output path became a
|
||||||
|
// file, ...): count the file as failed and keep the batch going, matching
|
||||||
|
// how executeOperation's own failures are handled.
|
||||||
|
failed++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onProgress({ completed, failed, total, currentFile: null });
|
||||||
|
onComplete({ success: true, completed, failed, total, outputFolder });
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { runPDFBatchOperation, PDF_BATCH_OUTPUT_SPEC };
|
||||||
+405
-78
@@ -2,13 +2,37 @@ const fs = require('fs');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const { PDFDocument, rgb, degrees, StandardFonts } = require('pdf-lib');
|
const { PDFDocument, rgb, degrees, StandardFonts } = require('pdf-lib');
|
||||||
|
|
||||||
|
// pdf-lib 1.17.1 cannot encrypt: SaveOptions has no userPassword/ownerPassword/
|
||||||
|
// permissions fields, so save() silently ignores them and writes an unprotected
|
||||||
|
// file, and PDFDocument.load() cannot open password-protected input (verified
|
||||||
|
// empirically in Task 22's review). Rather than trusting a pinned version
|
||||||
|
// string, probe the installed library once at module load: save a tiny
|
||||||
|
// in-memory document with a userPassword and check the raw bytes for an
|
||||||
|
// /Encrypt dictionary (which an unencrypted document never contains). A library
|
||||||
|
// that supports encryption passes the probe and the password ops re-enable
|
||||||
|
// automatically. Probe errors fail closed (treated as unsupported).
|
||||||
|
const pdfEncryptionSupported = (async () => {
|
||||||
|
try {
|
||||||
|
const probeDoc = await PDFDocument.create();
|
||||||
|
const probeBytes = await probeDoc.save({ userPassword: 'encryption-capability-probe' });
|
||||||
|
return Buffer.from(probeBytes).includes('/Encrypt');
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
|
// Returned by the password ops when the probe reports no encryption support
|
||||||
|
// (Task 27): fail honestly instead of silently writing an unprotected file.
|
||||||
|
const PDF_ENCRYPTION_UNAVAILABLE_MESSAGE =
|
||||||
|
'Password protection is not available in this build (pdf-lib lacks encryption support).';
|
||||||
|
|
||||||
function parsePageRanges(rangeString, totalPages) {
|
function parsePageRanges(rangeString, totalPages) {
|
||||||
const pages = [];
|
const pages = [];
|
||||||
const ranges = rangeString.split(',').map(r => r.trim());
|
const ranges = rangeString.split(',').map((r) => r.trim());
|
||||||
|
|
||||||
for (const range of ranges) {
|
for (const range of ranges) {
|
||||||
if (range.includes('-')) {
|
if (range.includes('-')) {
|
||||||
const [start, end] = range.split('-').map(n => parseInt(n.trim()));
|
const [start, end] = range.split('-').map((n) => parseInt(n.trim()));
|
||||||
for (let i = start; i <= end && i <= totalPages; i++) {
|
for (let i = start; i <= end && i <= totalPages; i++) {
|
||||||
if (i > 0 && !pages.includes(i - 1)) {
|
if (i > 0 && !pages.includes(i - 1)) {
|
||||||
pages.push(i - 1);
|
pages.push(i - 1);
|
||||||
@@ -27,11 +51,13 @@ function parsePageRanges(rangeString, totalPages) {
|
|||||||
|
|
||||||
function hexToRgb(hex) {
|
function hexToRgb(hex) {
|
||||||
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
||||||
return result ? {
|
return result
|
||||||
|
? {
|
||||||
r: parseInt(result[1], 16) / 255,
|
r: parseInt(result[1], 16) / 255,
|
||||||
g: parseInt(result[2], 16) / 255,
|
g: parseInt(result[2], 16) / 255,
|
||||||
b: parseInt(result[3], 16) / 255
|
b: parseInt(result[3], 16) / 255,
|
||||||
} : { r: 0, g: 0, b: 0 };
|
}
|
||||||
|
: { r: 0, g: 0, b: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
async function pdfMerge(data) {
|
async function pdfMerge(data) {
|
||||||
@@ -42,7 +68,7 @@ async function pdfMerge(data) {
|
|||||||
const pdfBytes = fs.readFileSync(filePath);
|
const pdfBytes = fs.readFileSync(filePath);
|
||||||
const pdf = await PDFDocument.load(pdfBytes);
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
const copiedPages = await mergedPdf.copyPages(pdf, pdf.getPageIndices());
|
const copiedPages = await mergedPdf.copyPages(pdf, pdf.getPageIndices());
|
||||||
copiedPages.forEach(page => mergedPdf.addPage(page));
|
copiedPages.forEach((page) => mergedPdf.addPage(page));
|
||||||
}
|
}
|
||||||
|
|
||||||
const pdfBytes = await mergedPdf.save();
|
const pdfBytes = await mergedPdf.save();
|
||||||
@@ -63,13 +89,13 @@ async function pdfSplit(data) {
|
|||||||
const splits = [];
|
const splits = [];
|
||||||
|
|
||||||
if (data.splitMode === 'pages') {
|
if (data.splitMode === 'pages') {
|
||||||
const ranges = data.pageRanges.split(',').map(r => r.trim());
|
const ranges = data.pageRanges.split(',').map((r) => r.trim());
|
||||||
for (let i = 0; i < ranges.length; i++) {
|
for (let i = 0; i < ranges.length; i++) {
|
||||||
const range = ranges[i];
|
const range = ranges[i];
|
||||||
const pages = [];
|
const pages = [];
|
||||||
|
|
||||||
if (range.includes('-')) {
|
if (range.includes('-')) {
|
||||||
const [start, end] = range.split('-').map(n => parseInt(n.trim()));
|
const [start, end] = range.split('-').map((n) => parseInt(n.trim()));
|
||||||
for (let p = start; p <= end && p <= totalPages; p++) {
|
for (let p = start; p <= end && p <= totalPages; p++) {
|
||||||
pages.push(p - 1);
|
pages.push(p - 1);
|
||||||
}
|
}
|
||||||
@@ -86,6 +112,9 @@ async function pdfSplit(data) {
|
|||||||
}
|
}
|
||||||
} else if (data.splitMode === 'interval') {
|
} else if (data.splitMode === 'interval') {
|
||||||
const interval = data.interval;
|
const interval = data.interval;
|
||||||
|
if (!Number.isInteger(interval) || interval <= 0) {
|
||||||
|
return { success: false, message: 'Split interval must be a positive integer.' };
|
||||||
|
}
|
||||||
for (let i = 0; i < totalPages; i += interval) {
|
for (let i = 0; i < totalPages; i += interval) {
|
||||||
const pages = [];
|
const pages = [];
|
||||||
for (let j = i; j < i + interval && j < totalPages; j++) {
|
for (let j = i; j < i + interval && j < totalPages; j++) {
|
||||||
@@ -108,7 +137,7 @@ async function pdfSplit(data) {
|
|||||||
for (const split of splits) {
|
for (const split of splits) {
|
||||||
const newPdf = await PDFDocument.create();
|
const newPdf = await PDFDocument.create();
|
||||||
const copiedPages = await newPdf.copyPages(pdf, split.pages);
|
const copiedPages = await newPdf.copyPages(pdf, split.pages);
|
||||||
copiedPages.forEach(page => newPdf.addPage(page));
|
copiedPages.forEach((page) => newPdf.addPage(page));
|
||||||
|
|
||||||
const outputPath = path.join(data.outputFolder, `${baseName}_${split.name}.pdf`);
|
const outputPath = path.join(data.outputFolder, `${baseName}_${split.name}.pdf`);
|
||||||
const newPdfBytes = await newPdf.save();
|
const newPdfBytes = await newPdf.save();
|
||||||
@@ -129,18 +158,18 @@ async function pdfCompress(data) {
|
|||||||
const compressedPdfBytes = await pdf.save({
|
const compressedPdfBytes = await pdf.save({
|
||||||
useObjectStreams: true,
|
useObjectStreams: true,
|
||||||
addDefaultPage: false,
|
addDefaultPage: false,
|
||||||
objectsPerTick: 50
|
objectsPerTick: 50,
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.writeFileSync(data.outputPath, compressedPdfBytes);
|
fs.writeFileSync(data.outputPath, compressedPdfBytes);
|
||||||
|
|
||||||
const originalSize = fs.statSync(data.inputPath).size;
|
const originalSize = fs.statSync(data.inputPath).size;
|
||||||
const compressedSize = fs.statSync(data.outputPath).size;
|
const compressedSize = fs.statSync(data.outputPath).size;
|
||||||
const savings = ((originalSize - compressedSize) / originalSize * 100).toFixed(1);
|
const savings = (((originalSize - compressedSize) / originalSize) * 100).toFixed(1);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
message: `PDF compressed. Size reduced by ${savings}% (${(originalSize / 1024).toFixed(1)}KB → ${(compressedSize / 1024).toFixed(1)}KB)`
|
message: `PDF compressed. Size reduced by ${savings}% (${(originalSize / 1024).toFixed(1)}KB → ${(compressedSize / 1024).toFixed(1)}KB)`,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
@@ -160,7 +189,7 @@ async function pdfRotate(data) {
|
|||||||
pagesToRotate = Array.from({ length: totalPages }, (_, i) => i);
|
pagesToRotate = Array.from({ length: totalPages }, (_, i) => i);
|
||||||
}
|
}
|
||||||
|
|
||||||
pagesToRotate.forEach(pageIndex => {
|
pagesToRotate.forEach((pageIndex) => {
|
||||||
const page = pdf.getPage(pageIndex);
|
const page = pdf.getPage(pageIndex);
|
||||||
page.setRotation(degrees(data.angle));
|
page.setRotation(degrees(data.angle));
|
||||||
});
|
});
|
||||||
@@ -170,7 +199,7 @@ async function pdfRotate(data) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
message: `Successfully rotated ${pagesToRotate.length} page(s) by ${data.angle}\u00B0`
|
message: `Successfully rotated ${pagesToRotate.length} page(s) by ${data.angle}\u00B0`,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
@@ -185,7 +214,9 @@ async function pdfDeletePages(data) {
|
|||||||
|
|
||||||
const pagesToDelete = parsePageRanges(data.pages, totalPages);
|
const pagesToDelete = parsePageRanges(data.pages, totalPages);
|
||||||
|
|
||||||
pagesToDelete.sort((a, b) => b - a).forEach(pageIndex => {
|
pagesToDelete
|
||||||
|
.sort((a, b) => b - a)
|
||||||
|
.forEach((pageIndex) => {
|
||||||
pdf.removePage(pageIndex);
|
pdf.removePage(pageIndex);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -194,7 +225,7 @@ async function pdfDeletePages(data) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
message: `Successfully deleted ${pagesToDelete.length} page(s). New PDF has ${totalPages - pagesToDelete.length} pages`
|
message: `Successfully deleted ${pagesToDelete.length} page(s). New PDF has ${totalPages - pagesToDelete.length} pages`,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
@@ -207,7 +238,7 @@ async function pdfReorder(data) {
|
|||||||
const pdf = await PDFDocument.load(pdfBytes);
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
const totalPages = pdf.getPageCount();
|
const totalPages = pdf.getPageCount();
|
||||||
|
|
||||||
const newOrder = data.newOrder.split(',').map(n => parseInt(n.trim()) - 1);
|
const newOrder = data.newOrder.split(',').map((n) => parseInt(n.trim()) - 1);
|
||||||
|
|
||||||
if (newOrder.length !== totalPages) {
|
if (newOrder.length !== totalPages) {
|
||||||
return { success: false, error: `New order must include all ${totalPages} pages` };
|
return { success: false, error: `New order must include all ${totalPages} pages` };
|
||||||
@@ -215,7 +246,7 @@ async function pdfReorder(data) {
|
|||||||
|
|
||||||
const newPdf = await PDFDocument.create();
|
const newPdf = await PDFDocument.create();
|
||||||
const copiedPages = await newPdf.copyPages(pdf, newOrder);
|
const copiedPages = await newPdf.copyPages(pdf, newOrder);
|
||||||
copiedPages.forEach(page => newPdf.addPage(page));
|
copiedPages.forEach((page) => newPdf.addPage(page));
|
||||||
|
|
||||||
const reorderedPdfBytes = await newPdf.save();
|
const reorderedPdfBytes = await newPdf.save();
|
||||||
fs.writeFileSync(data.outputPath, reorderedPdfBytes);
|
fs.writeFileSync(data.outputPath, reorderedPdfBytes);
|
||||||
@@ -226,6 +257,30 @@ async function pdfReorder(data) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Shared corner/center coordinate mapping used by pdfWatermark and pdfAddPageNumbers.
|
||||||
|
function resolvePosition(position, width, height, margin = 50) {
|
||||||
|
switch (position) {
|
||||||
|
case 'center':
|
||||||
|
return { x: width / 2, y: height / 2 };
|
||||||
|
case 'diagonal':
|
||||||
|
return { x: width / 2, y: height / 2 };
|
||||||
|
case 'top-left':
|
||||||
|
return { x: margin, y: height - margin };
|
||||||
|
case 'top-center':
|
||||||
|
return { x: width / 2, y: height - margin };
|
||||||
|
case 'top-right':
|
||||||
|
return { x: width - margin, y: height - margin };
|
||||||
|
case 'bottom-left':
|
||||||
|
return { x: margin, y: margin };
|
||||||
|
case 'bottom-center':
|
||||||
|
return { x: width / 2, y: margin };
|
||||||
|
case 'bottom-right':
|
||||||
|
return { x: width - margin, y: margin };
|
||||||
|
default:
|
||||||
|
return { x: width / 2, y: height / 2 };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function pdfWatermark(data) {
|
async function pdfWatermark(data) {
|
||||||
try {
|
try {
|
||||||
const pdfBytes = fs.readFileSync(data.inputPath);
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
@@ -246,46 +301,8 @@ async function pdfWatermark(data) {
|
|||||||
const page = pdf.getPage(pageIndex);
|
const page = pdf.getPage(pageIndex);
|
||||||
const { width, height } = page.getSize();
|
const { width, height } = page.getSize();
|
||||||
|
|
||||||
let x, y, rotation = 0;
|
const { x, y } = resolvePosition(data.position, width, height, 50);
|
||||||
|
const rotation = data.position === 'diagonal' ? 45 : 0;
|
||||||
switch (data.position) {
|
|
||||||
case 'center':
|
|
||||||
x = width / 2;
|
|
||||||
y = height / 2;
|
|
||||||
break;
|
|
||||||
case 'diagonal':
|
|
||||||
x = width / 2;
|
|
||||||
y = height / 2;
|
|
||||||
rotation = 45;
|
|
||||||
break;
|
|
||||||
case 'top-left':
|
|
||||||
x = 50;
|
|
||||||
y = height - 50;
|
|
||||||
break;
|
|
||||||
case 'top-center':
|
|
||||||
x = width / 2;
|
|
||||||
y = height - 50;
|
|
||||||
break;
|
|
||||||
case 'top-right':
|
|
||||||
x = width - 50;
|
|
||||||
y = height - 50;
|
|
||||||
break;
|
|
||||||
case 'bottom-left':
|
|
||||||
x = 50;
|
|
||||||
y = 50;
|
|
||||||
break;
|
|
||||||
case 'bottom-center':
|
|
||||||
x = width / 2;
|
|
||||||
y = 50;
|
|
||||||
break;
|
|
||||||
case 'bottom-right':
|
|
||||||
x = width - 50;
|
|
||||||
y = 50;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
x = width / 2;
|
|
||||||
y = height / 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
page.drawText(data.text, {
|
page.drawText(data.text, {
|
||||||
x,
|
x,
|
||||||
@@ -294,7 +311,7 @@ async function pdfWatermark(data) {
|
|||||||
font,
|
font,
|
||||||
color: rgb(color.r, color.g, color.b),
|
color: rgb(color.r, color.g, color.b),
|
||||||
opacity: data.opacity,
|
opacity: data.opacity,
|
||||||
rotate: degrees(rotation)
|
rotate: degrees(rotation),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -303,7 +320,7 @@ async function pdfWatermark(data) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
message: `Successfully added watermark to ${pagesToWatermark.length} page(s)`
|
message: `Successfully added watermark to ${pagesToWatermark.length} page(s)`,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
@@ -311,6 +328,9 @@ async function pdfWatermark(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function pdfEncrypt(data) {
|
async function pdfEncrypt(data) {
|
||||||
|
if (!(await pdfEncryptionSupported)) {
|
||||||
|
return { success: false, message: PDF_ENCRYPTION_UNAVAILABLE_MESSAGE };
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
const pdfBytes = fs.readFileSync(data.inputPath);
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
const pdf = await PDFDocument.load(pdfBytes);
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
@@ -325,8 +345,8 @@ async function pdfEncrypt(data) {
|
|||||||
annotating: data.permissions.annotating,
|
annotating: data.permissions.annotating,
|
||||||
fillingForms: data.permissions.fillingForms,
|
fillingForms: data.permissions.fillingForms,
|
||||||
contentAccessibility: data.permissions.contentAccessibility,
|
contentAccessibility: data.permissions.contentAccessibility,
|
||||||
documentAssembly: data.permissions.documentAssembly
|
documentAssembly: data.permissions.documentAssembly,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.writeFileSync(data.outputPath, encryptedPdfBytes);
|
fs.writeFileSync(data.outputPath, encryptedPdfBytes);
|
||||||
@@ -336,7 +356,8 @@ async function pdfEncrypt(data) {
|
|||||||
if (error.message.includes('encrypt') || error.message.includes('password')) {
|
if (error.message.includes('encrypt') || error.message.includes('password')) {
|
||||||
return {
|
return {
|
||||||
success: false,
|
success: false,
|
||||||
error: 'PDF encryption requires pdf-lib with encryption support. This feature may not be available in the current version.'
|
error:
|
||||||
|
'PDF encryption requires pdf-lib with encryption support. This feature may not be available in the current version.',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
@@ -344,6 +365,9 @@ async function pdfEncrypt(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function pdfDecrypt(data) {
|
async function pdfDecrypt(data) {
|
||||||
|
if (!(await pdfEncryptionSupported)) {
|
||||||
|
return { success: false, message: PDF_ENCRYPTION_UNAVAILABLE_MESSAGE };
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
const pdfBytes = fs.readFileSync(data.inputPath);
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
const pdf = await PDFDocument.load(pdfBytes, { password: data.password });
|
const pdf = await PDFDocument.load(pdfBytes, { password: data.password });
|
||||||
@@ -361,6 +385,9 @@ async function pdfDecrypt(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function pdfSetPermissions(data) {
|
async function pdfSetPermissions(data) {
|
||||||
|
if (!(await pdfEncryptionSupported)) {
|
||||||
|
return { success: false, message: PDF_ENCRYPTION_UNAVAILABLE_MESSAGE };
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
const pdfBytes = fs.readFileSync(data.inputPath);
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
const loadOptions = data.currentPassword ? { password: data.currentPassword } : {};
|
const loadOptions = data.currentPassword ? { password: data.currentPassword } : {};
|
||||||
@@ -375,8 +402,8 @@ async function pdfSetPermissions(data) {
|
|||||||
annotating: data.permissions.annotating,
|
annotating: data.permissions.annotating,
|
||||||
fillingForms: data.permissions.fillingForms,
|
fillingForms: data.permissions.fillingForms,
|
||||||
contentAccessibility: data.permissions.contentAccessibility,
|
contentAccessibility: data.permissions.contentAccessibility,
|
||||||
documentAssembly: data.permissions.documentAssembly
|
documentAssembly: data.permissions.documentAssembly,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.writeFileSync(data.outputPath, newPdfBytes);
|
fs.writeFileSync(data.outputPath, newPdfBytes);
|
||||||
@@ -386,26 +413,318 @@ async function pdfSetPermissions(data) {
|
|||||||
if (error.message.includes('encrypt') || error.message.includes('permission')) {
|
if (error.message.includes('encrypt') || error.message.includes('permission')) {
|
||||||
return {
|
return {
|
||||||
success: false,
|
success: false,
|
||||||
error: 'PDF permissions require pdf-lib with encryption support. This feature may not be available in the current version.'
|
error:
|
||||||
|
'PDF permissions require pdf-lib with encryption support. This feature may not be available in the current version.',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return { success: false, error: error.message };
|
return { success: false, error: error.message };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// pdf-lib has no text-extraction API, so this loads pdfjs-dist's Node-friendly
|
||||||
|
// "legacy" build (the standard build assumes DOM globals like DOMMatrix).
|
||||||
|
// pdfjs-dist v5.x ships ESM-only, so it must be loaded via dynamic import()
|
||||||
|
// even from this CommonJS module.
|
||||||
|
async function loadPdfjs() {
|
||||||
|
return import('pdfjs-dist/legacy/build/pdf.mjs');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Points pdfjs-dist at its bundled standard font metrics so it doesn't warn
|
||||||
|
// (and degrade text-extraction fidelity) when a PDF uses a standard font.
|
||||||
|
function getStandardFontDataUrl() {
|
||||||
|
return (
|
||||||
|
path.join(path.dirname(require.resolve('pdfjs-dist/package.json')), 'standard_fonts') + path.sep
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfExtractText(data) {
|
||||||
|
try {
|
||||||
|
const pdfjsLib = await loadPdfjs();
|
||||||
|
const fileData = new Uint8Array(fs.readFileSync(data.inputPath));
|
||||||
|
const pdf = await pdfjsLib.getDocument({
|
||||||
|
data: fileData,
|
||||||
|
standardFontDataUrl: getStandardFontDataUrl(),
|
||||||
|
}).promise;
|
||||||
|
|
||||||
|
let text = '';
|
||||||
|
for (let pageNum = 1; pageNum <= pdf.numPages; pageNum++) {
|
||||||
|
const page = await pdf.getPage(pageNum);
|
||||||
|
const content = await page.getTextContent();
|
||||||
|
const pageText = content.items.map((item) => item.str).join(' ');
|
||||||
|
text += pageText + '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
const trimmedText = text.trim();
|
||||||
|
const result = { success: true, text: trimmedText };
|
||||||
|
|
||||||
|
// outputPath is optional: when provided (e.g. from the PDF editor UI),
|
||||||
|
// also save the extracted text to disk and report where it went.
|
||||||
|
if (data.outputPath) {
|
||||||
|
fs.writeFileSync(data.outputPath, trimmedText, 'utf8');
|
||||||
|
result.message = `Successfully extracted text to ${data.outputPath}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfAddPageNumbers(data) {
|
||||||
|
try {
|
||||||
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
|
const totalPages = pdf.getPageCount();
|
||||||
|
|
||||||
|
const font = await pdf.embedFont(StandardFonts.Helvetica);
|
||||||
|
const position = data.position || 'bottom-center';
|
||||||
|
const fontSize = data.fontSize || 12;
|
||||||
|
const startNumber = data.startNumber && data.startNumber > 0 ? data.startNumber : 1;
|
||||||
|
|
||||||
|
for (let i = 0; i < totalPages; i++) {
|
||||||
|
const page = pdf.getPage(i);
|
||||||
|
const { width, height } = page.getSize();
|
||||||
|
const { x, y } = resolvePosition(position, width, height, 30);
|
||||||
|
|
||||||
|
const label = String(startNumber + i);
|
||||||
|
const textWidth = font.widthOfTextAtSize(label, fontSize);
|
||||||
|
|
||||||
|
let drawX = x;
|
||||||
|
if (position.includes('center')) {
|
||||||
|
drawX = x - textWidth / 2;
|
||||||
|
} else if (position.includes('right')) {
|
||||||
|
drawX = x - textWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
page.drawText(label, {
|
||||||
|
x: drawX,
|
||||||
|
y,
|
||||||
|
size: fontSize,
|
||||||
|
font,
|
||||||
|
color: rgb(0, 0, 0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const newPdfBytes = await pdf.save();
|
||||||
|
fs.writeFileSync(data.outputPath, newPdfBytes);
|
||||||
|
|
||||||
|
return { success: true, message: `Successfully added page numbers to ${totalPages} page(s)` };
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfCrop(data) {
|
||||||
|
try {
|
||||||
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
|
const totalPages = pdf.getPageCount();
|
||||||
|
|
||||||
|
const margins = data.margins || {};
|
||||||
|
const top = margins.top || 0;
|
||||||
|
const bottom = margins.bottom || 0;
|
||||||
|
const left = margins.left || 0;
|
||||||
|
const right = margins.right || 0;
|
||||||
|
|
||||||
|
for (let i = 0; i < totalPages; i++) {
|
||||||
|
const page = pdf.getPage(i);
|
||||||
|
const mediaBox = page.getMediaBox();
|
||||||
|
const newWidth = mediaBox.width - left - right;
|
||||||
|
const newHeight = mediaBox.height - top - bottom;
|
||||||
|
|
||||||
|
if (newWidth <= 0 || newHeight <= 0) {
|
||||||
|
return { success: false, error: `Crop margins are too large for page ${i + 1}` };
|
||||||
|
}
|
||||||
|
|
||||||
|
page.setCropBox(mediaBox.x + left, mediaBox.y + bottom, newWidth, newHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
const croppedPdfBytes = await pdf.save();
|
||||||
|
fs.writeFileSync(data.outputPath, croppedPdfBytes);
|
||||||
|
|
||||||
|
return { success: true, message: `Successfully cropped ${totalPages} page(s)` };
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfExtractImages(data) {
|
||||||
|
try {
|
||||||
|
const pdfjsLib = await loadPdfjs();
|
||||||
|
// sharp is only needed here; require lazily to match the module's existing
|
||||||
|
// pattern of not pulling heavy optional deps in until an operation runs.
|
||||||
|
const sharp = require('sharp');
|
||||||
|
|
||||||
|
const fileData = new Uint8Array(fs.readFileSync(data.inputPath));
|
||||||
|
const pdf = await pdfjsLib.getDocument({
|
||||||
|
data: fileData,
|
||||||
|
standardFontDataUrl: getStandardFontDataUrl(),
|
||||||
|
}).promise;
|
||||||
|
|
||||||
|
if (!fs.existsSync(data.outputDir)) {
|
||||||
|
fs.mkdirSync(data.outputDir, { recursive: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
const baseName = path.basename(data.inputPath, path.extname(data.inputPath));
|
||||||
|
const files = [];
|
||||||
|
let imageIndex = 0;
|
||||||
|
|
||||||
|
for (let pageNum = 1; pageNum <= pdf.numPages; pageNum++) {
|
||||||
|
const page = await pdf.getPage(pageNum);
|
||||||
|
const opList = await page.getOperatorList();
|
||||||
|
|
||||||
|
for (let i = 0; i < opList.fnArray.length; i++) {
|
||||||
|
if (opList.fnArray[i] !== pdfjsLib.OPS.paintImageXObject) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const objId = opList.argsArray[i][0];
|
||||||
|
|
||||||
|
try {
|
||||||
|
const imgObj = await new Promise((resolve) => page.objs.get(objId, resolve));
|
||||||
|
|
||||||
|
if (!imgObj || !imgObj.data || !imgObj.width || !imgObj.height) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const channels =
|
||||||
|
imgObj.kind === pdfjsLib.ImageKind.RGBA_32BPP
|
||||||
|
? 4
|
||||||
|
: imgObj.kind === pdfjsLib.ImageKind.GRAYSCALE_1BPP
|
||||||
|
? 1
|
||||||
|
: 3;
|
||||||
|
|
||||||
|
imageIndex++;
|
||||||
|
const outputFile = path.join(
|
||||||
|
data.outputDir,
|
||||||
|
`${baseName}_page${pageNum}_img${imageIndex}.png`
|
||||||
|
);
|
||||||
|
|
||||||
|
await sharp(Buffer.from(imgObj.data), {
|
||||||
|
raw: { width: imgObj.width, height: imgObj.height, channels },
|
||||||
|
})
|
||||||
|
.png()
|
||||||
|
.toFile(outputFile);
|
||||||
|
|
||||||
|
files.push(outputFile);
|
||||||
|
} catch {
|
||||||
|
// Skip images pdfjs/sharp can't decode (e.g. unsupported color spaces).
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
count: files.length,
|
||||||
|
files,
|
||||||
|
message: `Successfully extracted ${files.length} image(s)`,
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfGetFormFields(data) {
|
||||||
|
try {
|
||||||
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
|
const form = pdf.getForm();
|
||||||
|
|
||||||
|
const fields = form.getFields().map((field) => {
|
||||||
|
let value;
|
||||||
|
try {
|
||||||
|
if (typeof field.getText === 'function') {
|
||||||
|
value = field.getText();
|
||||||
|
} else if (typeof field.isChecked === 'function') {
|
||||||
|
value = field.isChecked();
|
||||||
|
} else if (typeof field.getSelected === 'function') {
|
||||||
|
value = field.getSelected();
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// Some field types throw when read in an unexpected state; leave value undefined.
|
||||||
|
value = undefined;
|
||||||
|
}
|
||||||
|
return { name: field.getName(), type: field.constructor.name, value };
|
||||||
|
});
|
||||||
|
|
||||||
|
return { success: true, fields };
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function pdfFillForm(data) {
|
||||||
|
try {
|
||||||
|
const pdfBytes = fs.readFileSync(data.inputPath);
|
||||||
|
const pdf = await PDFDocument.load(pdfBytes);
|
||||||
|
const form = pdf.getForm();
|
||||||
|
|
||||||
|
const values = data.values || {};
|
||||||
|
let filledCount = 0;
|
||||||
|
|
||||||
|
for (const [name, value] of Object.entries(values)) {
|
||||||
|
try {
|
||||||
|
const field = form.getTextField(name);
|
||||||
|
field.setText(value !== null && value !== undefined ? String(value) : '');
|
||||||
|
filledCount++;
|
||||||
|
} catch (fieldError) {
|
||||||
|
// Batch-of-independent-fields: a field that doesn't exist or isn't a text
|
||||||
|
// field shouldn't fail the whole fill — skip it and keep going (same
|
||||||
|
// partial-success precedent as pdfExtractImages).
|
||||||
|
console.warn(`pdfFillForm: skipping field "${name}": ${fieldError.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.flatten) {
|
||||||
|
form.flatten();
|
||||||
|
}
|
||||||
|
|
||||||
|
const filledPdfBytes = await pdf.save();
|
||||||
|
fs.writeFileSync(data.outputPath, filledPdfBytes);
|
||||||
|
|
||||||
|
return { success: true, message: `Successfully filled ${filledCount} form field(s)` };
|
||||||
|
} catch (error) {
|
||||||
|
return { success: false, error: error.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function executeOperation(operation, data) {
|
function executeOperation(operation, data) {
|
||||||
switch (operation) {
|
switch (operation) {
|
||||||
case 'merge': return pdfMerge(data);
|
case 'merge':
|
||||||
case 'split': return pdfSplit(data);
|
return pdfMerge(data);
|
||||||
case 'compress': return pdfCompress(data);
|
case 'split':
|
||||||
case 'rotate': return pdfRotate(data);
|
return pdfSplit(data);
|
||||||
case 'delete': return pdfDeletePages(data);
|
case 'compress':
|
||||||
case 'reorder': return pdfReorder(data);
|
return pdfCompress(data);
|
||||||
case 'watermark': return pdfWatermark(data);
|
case 'rotate':
|
||||||
case 'encrypt': return pdfEncrypt(data);
|
return pdfRotate(data);
|
||||||
case 'decrypt': return pdfDecrypt(data);
|
case 'delete':
|
||||||
case 'permissions': return pdfSetPermissions(data);
|
return pdfDeletePages(data);
|
||||||
default: return Promise.resolve({ success: false, error: `Unknown operation: ${operation}` });
|
case 'reorder':
|
||||||
|
return pdfReorder(data);
|
||||||
|
case 'watermark':
|
||||||
|
return pdfWatermark(data);
|
||||||
|
case 'encrypt':
|
||||||
|
return pdfEncrypt(data);
|
||||||
|
case 'decrypt':
|
||||||
|
return pdfDecrypt(data);
|
||||||
|
case 'permissions':
|
||||||
|
return pdfSetPermissions(data);
|
||||||
|
case 'extractText':
|
||||||
|
return pdfExtractText(data);
|
||||||
|
case 'pageNumbers':
|
||||||
|
return pdfAddPageNumbers(data);
|
||||||
|
case 'crop':
|
||||||
|
return pdfCrop(data);
|
||||||
|
case 'extractImages':
|
||||||
|
return pdfExtractImages(data);
|
||||||
|
case 'formFields':
|
||||||
|
return pdfGetFormFields(data);
|
||||||
|
case 'fillForm':
|
||||||
|
return pdfFillForm(data);
|
||||||
|
default:
|
||||||
|
return Promise.resolve({ success: false, error: `Unknown operation: ${operation}` });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -418,6 +737,8 @@ async function getPageCount(filePath) {
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
parsePageRanges,
|
parsePageRanges,
|
||||||
hexToRgb,
|
hexToRgb,
|
||||||
|
pdfEncryptionSupported,
|
||||||
|
PDF_ENCRYPTION_UNAVAILABLE_MESSAGE,
|
||||||
pdfMerge,
|
pdfMerge,
|
||||||
pdfSplit,
|
pdfSplit,
|
||||||
pdfCompress,
|
pdfCompress,
|
||||||
@@ -428,6 +749,12 @@ module.exports = {
|
|||||||
pdfEncrypt,
|
pdfEncrypt,
|
||||||
pdfDecrypt,
|
pdfDecrypt,
|
||||||
pdfSetPermissions,
|
pdfSetPermissions,
|
||||||
|
pdfExtractText,
|
||||||
|
pdfAddPageNumbers,
|
||||||
|
pdfCrop,
|
||||||
|
pdfExtractImages,
|
||||||
|
pdfGetFormFields,
|
||||||
|
pdfFillForm,
|
||||||
executeOperation,
|
executeOperation,
|
||||||
getPageCount
|
getPageCount,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,135 @@
|
|||||||
|
/**
|
||||||
|
* Pure builders for Pandoc execFile argument arrays.
|
||||||
|
*
|
||||||
|
* Every Pandoc invocation in the main process must call
|
||||||
|
* execFile(pandocPath, args) with an argument array built here or with plain
|
||||||
|
* Array.push calls — never a command string that is later re-tokenized.
|
||||||
|
* Values that come from the user (file paths, template names, metadata values)
|
||||||
|
* are pushed verbatim as single argv elements, so a crafted value such as
|
||||||
|
* `/tmp/x.bib" --lua-filter=/tmp/evil.lua` can never break out of its argument
|
||||||
|
* and inject additional Pandoc flags (security finding SEC-1).
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formats exported through a plain `-t <target>` conversion. The export dialog
|
||||||
|
* replaces the whole command for these formats (dialog options like template or
|
||||||
|
* metadata are not applied) — this map preserves that pre-existing behavior.
|
||||||
|
*/
|
||||||
|
const SIMPLE_TARGET_FORMATS = {
|
||||||
|
json: 'json',
|
||||||
|
beamer: 'beamer',
|
||||||
|
confluence: 'jira',
|
||||||
|
jira: 'jira',
|
||||||
|
asciidoc: 'asciidoc',
|
||||||
|
rst: 'rst',
|
||||||
|
mediawiki: 'mediawiki',
|
||||||
|
org: 'org',
|
||||||
|
textile: 'textile',
|
||||||
|
man: 'man',
|
||||||
|
ipynb: 'ipynb',
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the export-dialog options shared by the export, batch-conversion and
|
||||||
|
* fallback paths. Each value lands in argv exactly once, unquoted and
|
||||||
|
* unescaped — execFile passes array elements as literal arguments.
|
||||||
|
* @param {string[]} args - Argument array to append to (mutated)
|
||||||
|
* @param {Object} options - Export options ({ template, metadata, variables,
|
||||||
|
* toc, tocDepth, numberSections, citeproc, bibliography, csl })
|
||||||
|
*/
|
||||||
|
function appendCommonOptions(args, options) {
|
||||||
|
if (!options) return;
|
||||||
|
|
||||||
|
if (options.template && options.template !== 'default') {
|
||||||
|
args.push(`--template=${options.template}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.metadata) {
|
||||||
|
for (const [key, value] of Object.entries(options.metadata)) {
|
||||||
|
if (value.trim()) {
|
||||||
|
args.push('-M', `${key}=${value}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.variables) {
|
||||||
|
for (const [key, value] of Object.entries(options.variables)) {
|
||||||
|
if (value.trim()) {
|
||||||
|
args.push('-V', `${key}=${value}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.toc) args.push('--toc');
|
||||||
|
if (options.tocDepth) args.push(`--toc-depth=${options.tocDepth}`);
|
||||||
|
if (options.numberSections) args.push('--number-sections');
|
||||||
|
if (options.citeproc) args.push('--citeproc');
|
||||||
|
if (options.bibliography) args.push(`--bibliography=${options.bibliography}`);
|
||||||
|
if (options.csl) args.push(`--csl=${options.csl}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the shared prefix of every PDF invocation: the pdf engine flag and,
|
||||||
|
* when set, the page geometry variable.
|
||||||
|
* @param {string[]} args - Argument array to append to (mutated)
|
||||||
|
* @param {Object} params
|
||||||
|
* @param {string} [params.pdfEngine] - Falls back to xelatex when omitted
|
||||||
|
* @param {string} [params.geometry] - LaTeX geometry string (e.g. margin=1in)
|
||||||
|
*/
|
||||||
|
function appendPdfEngineOptions(args, { pdfEngine, geometry } = {}) {
|
||||||
|
args.push(`--pdf-engine=${pdfEngine || 'xelatex'}`);
|
||||||
|
if (geometry) args.push('-V', `geometry:${geometry}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the PowerPoint footer variable (used when header/footer is enabled).
|
||||||
|
* @param {string[]} args - Argument array to append to (mutated)
|
||||||
|
* @param {string} footerText - Processed footer text
|
||||||
|
*/
|
||||||
|
function appendFooterVariable(args, footerText) {
|
||||||
|
if (footerText) args.push('--variable', `footer=${footerText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build the base argument array for the export dialog and batch conversion:
|
||||||
|
* input, -o output, the shared export options, and the `-t docx` tail for
|
||||||
|
* Word exports. Format-specific extras (PDF engine flags, EPUB fonts, HTML
|
||||||
|
* css, reveal.js themes) are appended by the call site.
|
||||||
|
* @param {Object} params
|
||||||
|
* @param {string} params.inputFile - Path passed to pandoc verbatim
|
||||||
|
* @param {string} params.outputFile - Path passed to pandoc verbatim
|
||||||
|
* @param {string} [params.format] - Export format name
|
||||||
|
* @param {Object} [params.options] - Export dialog options
|
||||||
|
* @returns {string[]}
|
||||||
|
*/
|
||||||
|
function buildPandocArgs({ inputFile, outputFile, format, options = {} }) {
|
||||||
|
const args = [inputFile, '-o', outputFile];
|
||||||
|
appendCommonOptions(args, options);
|
||||||
|
if (format === 'docx') {
|
||||||
|
args.push('-t', 'docx');
|
||||||
|
}
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args for the simple `-t <target>` formats (see SIMPLE_TARGET_FORMATS).
|
||||||
|
* @param {string} inputFile - Input path
|
||||||
|
* @param {string} outputFile - Output path
|
||||||
|
* @param {string} format - Export format name
|
||||||
|
* @returns {string[]|null} Argument array, or null when format is not one of
|
||||||
|
* the simple target formats
|
||||||
|
*/
|
||||||
|
function buildSimpleTargetArgs(inputFile, outputFile, format) {
|
||||||
|
const target = SIMPLE_TARGET_FORMATS[format];
|
||||||
|
if (!target) return null;
|
||||||
|
return [inputFile, '-t', target, '-o', outputFile];
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
SIMPLE_TARGET_FORMATS,
|
||||||
|
appendCommonOptions,
|
||||||
|
appendPdfEngineOptions,
|
||||||
|
appendFooterVariable,
|
||||||
|
buildPandocArgs,
|
||||||
|
buildSimpleTargetArgs,
|
||||||
|
};
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
// fontspec accepts forward-slash paths on all platforms (TeX normalizes).
|
||||||
|
// Normalize Windows backslashes so we can reliably build Path/filename.
|
||||||
|
function toPosix(p) {
|
||||||
|
return String(p).replace(/\\/g, '/');
|
||||||
|
}
|
||||||
|
|
||||||
|
function escape(s) {
|
||||||
|
// fontspec values: braces are the only TeX-significant chars we might emit
|
||||||
|
// from a basename. Backslashes are converted to '/' upstream by toPosix().
|
||||||
|
return String(s).replace(/[{}]/g, '\\$&');
|
||||||
|
}
|
||||||
|
|
||||||
|
function dirOf(p) {
|
||||||
|
return toPosix(p).replace(/\/[^/]+$/, '') + '/';
|
||||||
|
}
|
||||||
|
|
||||||
|
function baseName(p) {
|
||||||
|
return toPosix(p).split('/').pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Strip a weight-style suffix from a TTF filename to get the family prefix
|
||||||
|
// (e.g. JetBrainsMono-Regular.ttf -> JetBrainsMono). Used as the `\setmonofont`
|
||||||
|
// argument so `*-Regular` / `*-Bold` globs resolve to the right files.
|
||||||
|
function weightPrefix(p) {
|
||||||
|
return baseName(p).replace(/-(Regular|Bold|Light|Medium|SemiBold|Italic)\.ttf$/i, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function build({ fontTtfPath, boldTtfPath, ligatures }) {
|
||||||
|
if (!fontTtfPath) {
|
||||||
|
return '% Monospace font path unavailable; TeX will use its default monospace.\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
// `boldTtfPath` is accepted for API symmetry with future formats; the glob
|
||||||
|
// below resolves the bold file from the regular file's family prefix.
|
||||||
|
void boldTtfPath;
|
||||||
|
|
||||||
|
const ligValue = ligatures ? 'Ligatures=TeX' : 'Ligatures=NoCommon';
|
||||||
|
const prefix = escape(weightPrefix(fontTtfPath));
|
||||||
|
|
||||||
|
return `\\usepackage{fontspec}
|
||||||
|
\\setmonofont[Path=${escape(dirOf(fontTtfPath))},Extension=.ttf,UprightFont=*-Regular,BoldFont=*-Bold,${ligValue}]{${prefix}}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { build };
|
||||||
@@ -0,0 +1,145 @@
|
|||||||
|
/**
|
||||||
|
* Video Operations Module
|
||||||
|
*
|
||||||
|
* Handles video manipulation via `ffmpeg`: format conversion, compression, trim,
|
||||||
|
* frame extraction, and GIF conversion. Because ffmpeg is an external binary, this
|
||||||
|
* module is split into pure/testable argument-builder functions and a single
|
||||||
|
* `executeOperation` that is the only piece which actually spawns ffmpeg — the
|
||||||
|
* ffmpeg binary path and the `execFile` implementation are both injected so tests
|
||||||
|
* can replace them with fakes, without invoking a real binary.
|
||||||
|
*
|
||||||
|
* @module VideoOperations
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const { execFile } = require('child_process');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args for a straight format conversion. ffmpeg infers the output format
|
||||||
|
* from outputPath's extension.
|
||||||
|
*/
|
||||||
|
function buildConvertArgs({ inputPath, outputPath }) {
|
||||||
|
return ['-i', inputPath, '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to re-encode inputPath with libx264 at the given CRF (Constant Rate
|
||||||
|
* Factor). Lower CRF = higher quality/larger file, per libx264 convention. crf
|
||||||
|
* must be an integer in [0, 51].
|
||||||
|
*/
|
||||||
|
function buildCompressArgs({ inputPath, outputPath, crf = 28 }) {
|
||||||
|
if (!Number.isInteger(crf) || crf < 0 || crf > 51) {
|
||||||
|
throw new Error('Invalid crf: must be an integer between 0 and 51');
|
||||||
|
}
|
||||||
|
|
||||||
|
return ['-i', inputPath, '-vcodec', 'libx264', '-crf', String(crf), '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to trim inputPath to [startTime, startTime + duration) seconds.
|
||||||
|
* startTime/duration must be finite, non-negative numbers — they become argv
|
||||||
|
* elements passed straight to execFile with no shell involved, so there's no
|
||||||
|
* injection risk, but malformed values should still fail fast rather than reach
|
||||||
|
* ffmpeg with garbage.
|
||||||
|
*/
|
||||||
|
function buildTrimArgs({ inputPath, outputPath, startTime, duration }) {
|
||||||
|
const isValid = (n) => typeof n === 'number' && Number.isFinite(n) && n >= 0;
|
||||||
|
|
||||||
|
if (!isValid(startTime) || !isValid(duration)) {
|
||||||
|
throw new Error('Invalid trim range');
|
||||||
|
}
|
||||||
|
|
||||||
|
return ['-i', inputPath, '-ss', String(startTime), '-t', String(duration), '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to extract frames from inputPath at fps frames-per-second, written
|
||||||
|
* as sequentially numbered PNGs into outputDir. fps must be a positive finite
|
||||||
|
* number.
|
||||||
|
*/
|
||||||
|
function buildFramesArgs({ inputPath, outputDir, fps = 1 }) {
|
||||||
|
if (typeof fps !== 'number' || !Number.isFinite(fps) || fps <= 0) {
|
||||||
|
throw new Error('Invalid fps: must be a positive finite number');
|
||||||
|
}
|
||||||
|
|
||||||
|
return ['-i', inputPath, '-vf', `fps=${fps}`, path.join(outputDir, 'frame-%04d.png')];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build args to convert inputPath to an animated GIF at the given fps and width
|
||||||
|
* (height scales automatically via -1), using the lanczos scaling filter.
|
||||||
|
*/
|
||||||
|
function buildGifArgs({ inputPath, outputPath, fps = 10, width = 480 }) {
|
||||||
|
return ['-i', inputPath, '-vf', `fps=${fps},scale=${width}:-1:flags=lanczos`, '-y', outputPath];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run ffmpeg with the given args via the injected execFileFn, wrapped in a Promise.
|
||||||
|
*/
|
||||||
|
function runFfmpeg(ffmpegPath, args, execFileFn) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
execFileFn(ffmpegPath, args, { maxBuffer: 10 * 1024 * 1024 }, (error, stdout, stderr) => {
|
||||||
|
if (error) {
|
||||||
|
reject(new Error(stderr || error.message));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function executeOperation(operation, data, { ffmpegPath, execFileFn } = {}) {
|
||||||
|
const resolvedFfmpegPath = ffmpegPath || 'ffmpeg';
|
||||||
|
const resolvedExecFileFn = execFileFn || execFile;
|
||||||
|
|
||||||
|
switch (operation) {
|
||||||
|
case 'convert': {
|
||||||
|
const { inputPath, outputPath } = data || {};
|
||||||
|
const args = buildConvertArgs({ inputPath, outputPath });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'compress': {
|
||||||
|
const { inputPath, outputPath, crf } = data || {};
|
||||||
|
const args = buildCompressArgs({ inputPath, outputPath, crf });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'trim': {
|
||||||
|
const { inputPath, outputPath, startTime, duration } = data || {};
|
||||||
|
const args = buildTrimArgs({ inputPath, outputPath, startTime, duration });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'frames': {
|
||||||
|
const { inputPath, outputDir, fps } = data || {};
|
||||||
|
const args = buildFramesArgs({ inputPath, outputDir, fps });
|
||||||
|
fs.mkdirSync(outputDir, { recursive: true });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputDir };
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'gif': {
|
||||||
|
const { inputPath, outputPath, fps, width } = data || {};
|
||||||
|
const args = buildGifArgs({ inputPath, outputPath, fps, width });
|
||||||
|
await runFfmpeg(resolvedFfmpegPath, args, resolvedExecFileFn);
|
||||||
|
return { success: true, outputPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new Error(`Unknown operation: ${operation}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
executeOperation,
|
||||||
|
buildConvertArgs,
|
||||||
|
buildCompressArgs,
|
||||||
|
buildTrimArgs,
|
||||||
|
buildFramesArgs,
|
||||||
|
buildGifArgs,
|
||||||
|
};
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
/**
|
||||||
|
* collectFilesByExtension
|
||||||
|
*
|
||||||
|
* Recursively (optionally) collects files under a directory whose extension matches
|
||||||
|
* one of a given set of extensions. Generalizes the `collectFiles()` closure defined
|
||||||
|
* inside `ipcMain.on('universal-convert-batch', ...)` in main.js (which matches a
|
||||||
|
* single `.${fromFormat}` extension) to match against an arbitrary extension list —
|
||||||
|
* used by the batch-image/audio/video-operation handlers, which need to match several
|
||||||
|
* possible input extensions per media kind (e.g. .jpg/.jpeg/.png/... for images).
|
||||||
|
*
|
||||||
|
* Pulled out as its own module (rather than an inline closure like the original) so it
|
||||||
|
* can be unit tested without Electron.
|
||||||
|
*
|
||||||
|
* @module collectFilesByExtension
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} dir - Directory to scan.
|
||||||
|
* @param {string[]} extensions - Extensions to match, each including the leading dot
|
||||||
|
* (e.g. ['.jpg', '.png']). Matching is case-insensitive.
|
||||||
|
* @param {boolean} [includeSubfolders=true] - Recurse into subdirectories.
|
||||||
|
* @returns {string[]} Absolute paths of matching files, in directory-walk order.
|
||||||
|
*/
|
||||||
|
function collectFilesByExtension(dir, extensions, includeSubfolders = true) {
|
||||||
|
const normalizedExts = (extensions || []).map((ext) => ext.toLowerCase());
|
||||||
|
const results = [];
|
||||||
|
|
||||||
|
function walk(currentDir) {
|
||||||
|
const entries = fs.readdirSync(currentDir, { withFileTypes: true });
|
||||||
|
for (const entry of entries) {
|
||||||
|
const fullPath = path.join(currentDir, entry.name);
|
||||||
|
if (entry.isDirectory()) {
|
||||||
|
if (includeSubfolders) {
|
||||||
|
walk(fullPath);
|
||||||
|
}
|
||||||
|
} else if (entry.isFile()) {
|
||||||
|
const ext = path.extname(entry.name).toLowerCase();
|
||||||
|
if (normalizedExts.includes(ext)) {
|
||||||
|
results.push(fullPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
walk(dir);
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { collectFilesByExtension };
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const FAMILY_BY_KEY = {
|
||||||
|
'jetbrains-mono': 'JetBrains Mono',
|
||||||
|
'fira-code': 'Fira Code',
|
||||||
|
};
|
||||||
|
|
||||||
|
function getDefaults() {
|
||||||
|
return Object.freeze({ monospaceFont: 'jetbrains-mono', monospaceLigatures: false });
|
||||||
|
}
|
||||||
|
|
||||||
|
function getActiveMonoFont(settings) {
|
||||||
|
const key = settings && settings.monospaceFont;
|
||||||
|
return FAMILY_BY_KEY[key] || 'JetBrains Mono';
|
||||||
|
}
|
||||||
|
|
||||||
|
function isLigaturesEnabled(settings) {
|
||||||
|
return Boolean(settings && settings.monospaceLigatures === true);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { getDefaults, getActiveMonoFont, isLigaturesEnabled, FAMILY_BY_KEY };
|
||||||
@@ -5,9 +5,7 @@
|
|||||||
"description": "Demonstrates the plugin system. Safe to delete.",
|
"description": "Demonstrates the plugin system. Safe to delete.",
|
||||||
"icon": "puzzle",
|
"icon": "puzzle",
|
||||||
"extensionPoints": {
|
"extensionPoints": {
|
||||||
"commands": [
|
"commands": [{ "id": "hello", "label": "Sample: Hello World", "shortcut": "" }]
|
||||||
{ "id": "hello", "label": "Sample: Hello World", "shortcut": "" }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"settings": []
|
"settings": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ class WritingStudioPlugin extends PluginAPI {
|
|||||||
this.context = context;
|
this.context = context;
|
||||||
|
|
||||||
this.sprintEngine = new SprintEngine({
|
this.sprintEngine = new SprintEngine({
|
||||||
onEvent: (name, data) => context.events.emit(name, data)
|
onEvent: (name, data) => context.events.emit(name, data),
|
||||||
});
|
});
|
||||||
this.goalTracker = new GoalTracker(context.settings);
|
this.goalTracker = new GoalTracker(context.settings);
|
||||||
this.snapshotManager = new SnapshotManager(context.settings);
|
this.snapshotManager = new SnapshotManager(context.settings);
|
||||||
@@ -17,76 +17,143 @@ class WritingStudioPlugin extends PluginAPI {
|
|||||||
readFile: (p) => context.ipc.invoke('read-file', p),
|
readFile: (p) => context.ipc.invoke('read-file', p),
|
||||||
writeFile: (p, c) => context.ipc.invoke('write-file', p, c),
|
writeFile: (p, c) => context.ipc.invoke('write-file', p, c),
|
||||||
fileExists: (p) => context.ipc.invoke('path-exists', p),
|
fileExists: (p) => context.ipc.invoke('path-exists', p),
|
||||||
listDir: (p) => context.ipc.invoke('list-directory', p)
|
listDir: (p) => context.ipc.invoke('list-directory', p),
|
||||||
});
|
});
|
||||||
|
|
||||||
this._engines = {
|
this._engines = {
|
||||||
sprint: this.sprintEngine,
|
sprint: this.sprintEngine,
|
||||||
goals: this.goalTracker,
|
goals: this.goalTracker,
|
||||||
snapshots: this.snapshotManager,
|
snapshots: this.snapshotManager,
|
||||||
projects: this.projectManager
|
projects: this.projectManager,
|
||||||
};
|
};
|
||||||
|
|
||||||
this._registerCommands(context);
|
this._registerCommands(context);
|
||||||
this._registerStatusBar(context);
|
this._registerStatusBar(context);
|
||||||
|
this._registerExportFormats(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
_registerCommands(context) {
|
_registerCommands(context) {
|
||||||
const { sprintEngine, snapshotManager, goalTracker } = this;
|
const { sprintEngine, snapshotManager, goalTracker } = this;
|
||||||
|
|
||||||
context.commands.register('start-sprint', 'Studio: Start Sprint', () => {
|
context.commands.register(
|
||||||
|
'start-sprint',
|
||||||
|
'Studio: Start Sprint',
|
||||||
|
() => {
|
||||||
const duration = context.settings.get('sprintDuration') || 25;
|
const duration = context.settings.get('sprintDuration') || 25;
|
||||||
const content = context.editor.getContent() || '';
|
const content = context.editor.getContent() || '';
|
||||||
const words = content.split(/\s+/).filter(Boolean).length;
|
const words = content.split(/\s+/).filter(Boolean).length;
|
||||||
sprintEngine.start(duration, words);
|
sprintEngine.start(duration, words);
|
||||||
}, 'Ctrl+Alt+S');
|
},
|
||||||
|
'Ctrl+Alt+S'
|
||||||
|
);
|
||||||
|
|
||||||
context.commands.register('stop-sprint', 'Studio: Stop Sprint', () => {
|
context.commands.register(
|
||||||
|
'stop-sprint',
|
||||||
|
'Studio: Stop Sprint',
|
||||||
|
() => {
|
||||||
if (!sprintEngine.isActive()) return;
|
if (!sprintEngine.isActive()) return;
|
||||||
const content = context.editor.getContent() || '';
|
const content = context.editor.getContent() || '';
|
||||||
const words = content.split(/\s+/).filter(Boolean).length;
|
const words = content.split(/\s+/).filter(Boolean).length;
|
||||||
const result = sprintEngine.stop(words);
|
const result = sprintEngine.stop(words);
|
||||||
goalTracker.addWords(result.wordDelta);
|
goalTracker.addWords(result.wordDelta);
|
||||||
context.events.emit('sprint:stopped', result);
|
context.events.emit('sprint:stopped', result);
|
||||||
}, 'Ctrl+Alt+Shift+S');
|
},
|
||||||
|
'Ctrl+Alt+Shift+S'
|
||||||
|
);
|
||||||
|
|
||||||
context.commands.register('take-snapshot', 'Studio: Take Snapshot', () => {
|
context.commands.register(
|
||||||
|
'take-snapshot',
|
||||||
|
'Studio: Take Snapshot',
|
||||||
|
() => {
|
||||||
const content = context.editor.getContent() || '';
|
const content = context.editor.getContent() || '';
|
||||||
snapshotManager.create(content, 'manual');
|
snapshotManager.create(content, 'manual');
|
||||||
context.events.emit('snapshot:created', {});
|
context.events.emit('snapshot:created', {});
|
||||||
}, 'Ctrl+Alt+N');
|
},
|
||||||
|
'Ctrl+Alt+N'
|
||||||
|
);
|
||||||
|
|
||||||
context.commands.register('restore-last-snapshot', 'Studio: Restore Last Snapshot', () => {
|
context.commands.register(
|
||||||
|
'restore-last-snapshot',
|
||||||
|
'Studio: Restore Last Snapshot',
|
||||||
|
() => {
|
||||||
const snaps = snapshotManager.list();
|
const snaps = snapshotManager.list();
|
||||||
if (snaps.length === 0) return;
|
if (snaps.length === 0) return;
|
||||||
const content = snapshotManager.restore(snaps[0].id);
|
const content = snapshotManager.restore(snaps[0].id);
|
||||||
context.editor.insertAtCursor(content);
|
context.editor.insertAtCursor(content);
|
||||||
}, 'Ctrl+Alt+Z');
|
},
|
||||||
|
'Ctrl+Alt+Z'
|
||||||
|
);
|
||||||
|
|
||||||
context.commands.register('new-project', 'Studio: New Project', () => {
|
context.commands.register('new-project', 'Studio: New Project', () => {
|
||||||
context.events.emit('studio:new-project', {});
|
context.events.emit('studio:new-project', {});
|
||||||
});
|
});
|
||||||
|
|
||||||
context.commands.register('compile-manuscript', 'Studio: Compile Manuscript', () => {
|
context.commands.register(
|
||||||
|
'compile-manuscript',
|
||||||
|
'Studio: Compile Manuscript',
|
||||||
|
() => {
|
||||||
context.events.emit('studio:compile', {});
|
context.events.emit('studio:compile', {});
|
||||||
}, 'Ctrl+Alt+E');
|
},
|
||||||
|
'Ctrl+Alt+E'
|
||||||
|
);
|
||||||
|
|
||||||
context.commands.register('proofread-document', 'Studio: Proofread Document', () => {
|
context.commands.register(
|
||||||
|
'proofread-document',
|
||||||
|
'Studio: Proofread Document',
|
||||||
|
() => {
|
||||||
if (context.events.hasHandler('ai:analyze')) {
|
if (context.events.hasHandler('ai:analyze')) {
|
||||||
const content = context.editor.getContent() || '';
|
const content = context.editor.getContent() || '';
|
||||||
context.events.emit('ai:analyze', { text: content, type: 'grammar' });
|
context.events.emit('ai:analyze', { text: content, type: 'grammar' });
|
||||||
}
|
}
|
||||||
}, 'Ctrl+Alt+G');
|
},
|
||||||
|
'Ctrl+Alt+G'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
_registerStatusBar(context) {
|
_registerStatusBar(context) {
|
||||||
context.statusBar.registerIndicator('word-goal', {
|
context.statusBar.registerIndicator('word-goal', {
|
||||||
text: '0/1000',
|
text: '0/1000',
|
||||||
tooltip: 'Daily word goal progress'
|
tooltip: 'Daily word goal progress',
|
||||||
});
|
});
|
||||||
context.statusBar.registerIndicator('sprint-timer', {
|
context.statusBar.registerIndicator('sprint-timer', {
|
||||||
text: '',
|
text: '',
|
||||||
tooltip: 'Writing sprint timer'
|
tooltip: 'Writing sprint timer',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Example usage of context.formats.registerExportFormat (Task 17): adds
|
||||||
|
// a "Writing Studio Summary" entry to the Export menu that writes a
|
||||||
|
// plain-text snapshot of today's sprint/goal progress instead of going
|
||||||
|
// through Pandoc. Doubles as documentation for how a plugin can offer
|
||||||
|
// its own export target.
|
||||||
|
_registerExportFormats(context) {
|
||||||
|
const { sprintEngine, goalTracker } = this;
|
||||||
|
|
||||||
|
context.formats.registerExportFormat('sprint-summary', {
|
||||||
|
label: 'Writing Studio Summary (.txt)',
|
||||||
|
extension: 'txt',
|
||||||
|
handler: async (markdownContent, outputPath) => {
|
||||||
|
const fs = require('fs');
|
||||||
|
const goal = context.settings.get('dailyGoal') || 1000;
|
||||||
|
const progress = goalTracker.getDailyProgress(goal);
|
||||||
|
const streak = goalTracker.getStreak(goal);
|
||||||
|
const wordCount = (markdownContent || '').split(/\s+/).filter(Boolean).length;
|
||||||
|
|
||||||
|
const lines = [
|
||||||
|
'Writing Studio Summary',
|
||||||
|
'=======================',
|
||||||
|
`Generated: ${new Date().toISOString()}`,
|
||||||
|
'',
|
||||||
|
`Document word count: ${wordCount}`,
|
||||||
|
`Daily goal: ${goal}`,
|
||||||
|
`Words written today: ${progress.written} (${progress.pct}%)`,
|
||||||
|
`Current streak: ${streak} day(s)`,
|
||||||
|
`Sprint active: ${sprintEngine.isActive() ? 'yes' : 'no'}`,
|
||||||
|
'',
|
||||||
|
];
|
||||||
|
|
||||||
|
fs.writeFileSync(outputPath, lines.join('\n'), 'utf-8');
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,17 +15,41 @@
|
|||||||
{ "id": "start-sprint", "label": "Studio: Start Sprint", "shortcut": "Ctrl+Alt+S" },
|
{ "id": "start-sprint", "label": "Studio: Start Sprint", "shortcut": "Ctrl+Alt+S" },
|
||||||
{ "id": "stop-sprint", "label": "Studio: Stop Sprint", "shortcut": "Ctrl+Alt+Shift+S" },
|
{ "id": "stop-sprint", "label": "Studio: Stop Sprint", "shortcut": "Ctrl+Alt+Shift+S" },
|
||||||
{ "id": "take-snapshot", "label": "Studio: Take Snapshot", "shortcut": "Ctrl+Alt+N" },
|
{ "id": "take-snapshot", "label": "Studio: Take Snapshot", "shortcut": "Ctrl+Alt+N" },
|
||||||
{ "id": "restore-last-snapshot", "label": "Studio: Restore Last Snapshot", "shortcut": "Ctrl+Alt+Z" },
|
{
|
||||||
|
"id": "restore-last-snapshot",
|
||||||
|
"label": "Studio: Restore Last Snapshot",
|
||||||
|
"shortcut": "Ctrl+Alt+Z"
|
||||||
|
},
|
||||||
{ "id": "new-project", "label": "Studio: New Project", "shortcut": "" },
|
{ "id": "new-project", "label": "Studio: New Project", "shortcut": "" },
|
||||||
{ "id": "compile-manuscript", "label": "Studio: Compile Manuscript", "shortcut": "Ctrl+Alt+E" },
|
{
|
||||||
{ "id": "proofread-document", "label": "Studio: Proofread Document", "shortcut": "Ctrl+Alt+G" }
|
"id": "compile-manuscript",
|
||||||
|
"label": "Studio: Compile Manuscript",
|
||||||
|
"shortcut": "Ctrl+Alt+E"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "proofread-document",
|
||||||
|
"label": "Studio: Proofread Document",
|
||||||
|
"shortcut": "Ctrl+Alt+G"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"statusBar": { "indicators": ["sprint-timer", "word-goal"] }
|
"statusBar": { "indicators": ["sprint-timer", "word-goal"] },
|
||||||
|
"exportFormats": [
|
||||||
|
{
|
||||||
|
"id": "sprint-summary",
|
||||||
|
"label": "Writing Studio Summary (.txt)",
|
||||||
|
"extension": "txt"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"settings": [
|
"settings": [
|
||||||
{ "key": "dailyGoal", "type": "number", "default": 1000, "label": "Daily word goal" },
|
{ "key": "dailyGoal", "type": "number", "default": 1000, "label": "Daily word goal" },
|
||||||
{ "key": "sprintDuration", "type": "number", "default": 25, "label": "Sprint duration (min)" },
|
{ "key": "sprintDuration", "type": "number", "default": 25, "label": "Sprint duration (min)" },
|
||||||
{ "key": "autoSnapshotInterval", "type": "number", "default": 0, "label": "Auto-snapshot interval (min, 0=off)" },
|
{
|
||||||
|
"key": "autoSnapshotInterval",
|
||||||
|
"type": "number",
|
||||||
|
"default": 0,
|
||||||
|
"label": "Auto-snapshot interval (min, 0=off)"
|
||||||
|
},
|
||||||
{ "key": "maxSnapshots", "type": "number", "default": 50, "label": "Max snapshots to keep" }
|
{ "key": "maxSnapshots", "type": "number", "default": 50, "label": "Max snapshots to keep" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,8 @@ function renderGoalsPanel(container, { engines, settings }) {
|
|||||||
const row = document.createElement('div');
|
const row = document.createElement('div');
|
||||||
row.className = 'ws-stat-row';
|
row.className = 'ws-stat-row';
|
||||||
const label = document.createElement('span');
|
const label = document.createElement('span');
|
||||||
label.textContent = progress.written.toLocaleString() + ' / ' + dailyGoal.toLocaleString() + ' words';
|
label.textContent =
|
||||||
|
progress.written.toLocaleString() + ' / ' + dailyGoal.toLocaleString() + ' words';
|
||||||
const pct = document.createElement('span');
|
const pct = document.createElement('span');
|
||||||
pct.className = 'ws-pct';
|
pct.className = 'ws-pct';
|
||||||
pct.textContent = progress.pct + '%';
|
pct.textContent = progress.pct + '%';
|
||||||
@@ -81,7 +82,7 @@ function renderGoalsPanel(container, { engines, settings }) {
|
|||||||
|
|
||||||
const chart = document.createElement('div');
|
const chart = document.createElement('div');
|
||||||
chart.className = 'ws-chart';
|
chart.className = 'ws-chart';
|
||||||
const maxWords = Math.max(...last30.map(d => d.words), 1);
|
const maxWords = Math.max(...last30.map((d) => d.words), 1);
|
||||||
for (const day of last30) {
|
for (const day of last30) {
|
||||||
const barEl = document.createElement('div');
|
const barEl = document.createElement('div');
|
||||||
const height = Math.max(2, (day.words / maxWords) * 60);
|
const height = Math.max(2, (day.words / maxWords) * 60);
|
||||||
|
|||||||
@@ -69,7 +69,8 @@ function renderManuscriptPanel(container, { engines, editor, settings }) {
|
|||||||
const row = document.createElement('div');
|
const row = document.createElement('div');
|
||||||
row.className = 'ws-stat-row';
|
row.className = 'ws-stat-row';
|
||||||
const label = document.createElement('span');
|
const label = document.createElement('span');
|
||||||
label.textContent = stats.totalWords.toLocaleString() + ' / ' + stats.targetWords.toLocaleString() + ' words';
|
label.textContent =
|
||||||
|
stats.totalWords.toLocaleString() + ' / ' + stats.targetWords.toLocaleString() + ' words';
|
||||||
const pct = document.createElement('span');
|
const pct = document.createElement('span');
|
||||||
pct.className = 'ws-pct';
|
pct.className = 'ws-pct';
|
||||||
pct.textContent = stats.pctComplete + '%';
|
pct.textContent = stats.pctComplete + '%';
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ function renderProofreadPanel(container, { events, editor }) {
|
|||||||
if (result && result.issues) {
|
if (result && result.issues) {
|
||||||
renderIssues(issuesList, result.issues);
|
renderIssues(issuesList, result.issues);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -80,7 +80,10 @@ function renderIssues(container, issues) {
|
|||||||
|
|
||||||
const actions = document.createElement('div');
|
const actions = document.createElement('div');
|
||||||
actions.className = 'ws-issue-actions';
|
actions.className = 'ws-issue-actions';
|
||||||
for (const [action, label] of [['accept', 'Accept'], ['dismiss', 'Dismiss']]) {
|
for (const [, label] of [
|
||||||
|
['accept', 'Accept'],
|
||||||
|
['dismiss', 'Dismiss'],
|
||||||
|
]) {
|
||||||
const actionBtn = document.createElement('button');
|
const actionBtn = document.createElement('button');
|
||||||
actionBtn.className = 'ws-btn ws-btn-sm';
|
actionBtn.className = 'ws-btn ws-btn-sm';
|
||||||
actionBtn.textContent = label;
|
actionBtn.textContent = label;
|
||||||
|
|||||||
@@ -45,7 +45,11 @@ function renderSnapshotsPanel(container, { engines, editor }) {
|
|||||||
|
|
||||||
const actions = document.createElement('div');
|
const actions = document.createElement('div');
|
||||||
actions.className = 'ws-snapshot-actions';
|
actions.className = 'ws-snapshot-actions';
|
||||||
for (const [action, text, cls] of [['restore', 'Restore', ''], ['diff', 'Diff', ''], ['delete', 'Delete', 'ws-btn-danger']]) {
|
for (const [action, text, cls] of [
|
||||||
|
['restore', 'Restore', ''],
|
||||||
|
['diff', 'Diff', ''],
|
||||||
|
['delete', 'Delete', 'ws-btn-danger'],
|
||||||
|
]) {
|
||||||
const actionBtn = document.createElement('button');
|
const actionBtn = document.createElement('button');
|
||||||
actionBtn.className = 'ws-btn ws-btn-sm' + (cls ? ' ' + cls : '');
|
actionBtn.className = 'ws-btn ws-btn-sm' + (cls ? ' ' + cls : '');
|
||||||
actionBtn.textContent = text;
|
actionBtn.textContent = text;
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class ProjectManager {
|
|||||||
type: opts.type || 'manuscript',
|
type: opts.type || 'manuscript',
|
||||||
target: { words: opts.targetWords || 0, deadline: opts.deadline || null },
|
target: { words: opts.targetWords || 0, deadline: opts.deadline || null },
|
||||||
chapters: [],
|
chapters: [],
|
||||||
metadata: opts.metadata || {}
|
metadata: opts.metadata || {},
|
||||||
};
|
};
|
||||||
this.fs.writeFile(dir + '/.project.json', JSON.stringify(project, null, 2));
|
this.fs.writeFile(dir + '/.project.json', JSON.stringify(project, null, 2));
|
||||||
return project;
|
return project;
|
||||||
@@ -66,7 +66,7 @@ class ProjectManager {
|
|||||||
totalWords,
|
totalWords,
|
||||||
chapterCount: project.chapters.length,
|
chapterCount: project.chapters.length,
|
||||||
targetWords: target,
|
targetWords: target,
|
||||||
pctComplete: target > 0 ? Math.min(100, Math.round((totalWords / target) * 100)) : 0
|
pctComplete: target > 0 ? Math.min(100, Math.round((totalWords / target) * 100)) : 0,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class SnapshotManager {
|
|||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
content,
|
content,
|
||||||
wordCount: content.split(/\s+/).filter(Boolean).length,
|
wordCount: content.split(/\s+/).filter(Boolean).length,
|
||||||
label
|
label,
|
||||||
};
|
};
|
||||||
snaps.unshift(snap);
|
snaps.unshift(snap);
|
||||||
this._saveAll(snaps);
|
this._saveAll(snaps);
|
||||||
@@ -36,7 +36,7 @@ class SnapshotManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getById(id) {
|
getById(id) {
|
||||||
return this._getAll().find(s => s.id === id) || null;
|
return this._getAll().find((s) => s.id === id) || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
restore(id) {
|
restore(id) {
|
||||||
@@ -46,7 +46,7 @@ class SnapshotManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
delete(id) {
|
delete(id) {
|
||||||
const snaps = this._getAll().filter(s => s.id !== id);
|
const snaps = this._getAll().filter((s) => s.id !== id);
|
||||||
this._saveAll(snaps);
|
this._saveAll(snaps);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,8 +59,12 @@ class SnapshotManager {
|
|||||||
const newSet = new Set(newLines);
|
const newSet = new Set(newLines);
|
||||||
let added = 0;
|
let added = 0;
|
||||||
let removed = 0;
|
let removed = 0;
|
||||||
for (const line of newLines) { if (!oldSet.has(line)) added++; }
|
for (const line of newLines) {
|
||||||
for (const line of oldLines) { if (!newSet.has(line)) removed++; }
|
if (!oldSet.has(line)) added++;
|
||||||
|
}
|
||||||
|
for (const line of oldLines) {
|
||||||
|
if (!newSet.has(line)) removed++;
|
||||||
|
}
|
||||||
return { added, removed };
|
return { added, removed };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,9 @@ class SprintEngine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
isActive() { return this._active; }
|
isActive() {
|
||||||
|
return this._active;
|
||||||
|
}
|
||||||
|
|
||||||
getRemaining() {
|
getRemaining() {
|
||||||
if (!this._active) return 0;
|
if (!this._active) return 0;
|
||||||
|
|||||||
@@ -0,0 +1,40 @@
|
|||||||
|
/**
|
||||||
|
* FormatRegistry — tracks export formats registered by plugins via
|
||||||
|
* `context.formats.registerExportFormat(id, opts)`.
|
||||||
|
*
|
||||||
|
* Mirrors the simple Map-backed storage pattern used by PluginRegistry
|
||||||
|
* (see plugin-registry.js), scoped to a single concern: export format
|
||||||
|
* metadata + handler functions rather than whole plugin instances.
|
||||||
|
*/
|
||||||
|
class FormatRegistry {
|
||||||
|
constructor() {
|
||||||
|
this.formats = new Map();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register (or overwrite) an export format entry.
|
||||||
|
* @param {string} id - Fully-namespaced format id, e.g. "writing-studio:sprint-summary"
|
||||||
|
* @param {object} opts - { label, extension, handler: async (markdownContent, outputPath, options) => void }
|
||||||
|
*/
|
||||||
|
register(id, opts) {
|
||||||
|
this.formats.set(id, opts);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Look up a single registered format entry by its namespaced id.
|
||||||
|
* @param {string} id
|
||||||
|
* @returns {object|undefined}
|
||||||
|
*/
|
||||||
|
get(id) {
|
||||||
|
return this.formats.get(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return all registered formats as an array of { id, ...opts }.
|
||||||
|
*/
|
||||||
|
getAll() {
|
||||||
|
return Array.from(this.formats.entries()).map(([id, opts]) => ({ id, ...opts }));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { FormatRegistry };
|
||||||
@@ -10,12 +10,24 @@ class PluginContext {
|
|||||||
* @param {object} deps.editor - { getContent, getSelection, insertAtCursor, onContentChanged }
|
* @param {object} deps.editor - { getContent, getSelection, insertAtCursor, onContentChanged }
|
||||||
* @param {object} deps.ipc - { invoke, on }
|
* @param {object} deps.ipc - { invoke, on }
|
||||||
* @param {object} deps.exportHooks - { preHooks: [], postHooks: [] }
|
* @param {object} deps.exportHooks - { preHooks: [], postHooks: [] }
|
||||||
|
* @param {object} deps.formatRegistry - FormatRegistry instance ({ register, get, getAll })
|
||||||
*/
|
*/
|
||||||
constructor(deps) {
|
constructor(deps) {
|
||||||
const { pluginId, sidebar, commands, statusBar, eventBus, settings, editor, ipc, exportHooks } = deps;
|
const {
|
||||||
|
pluginId,
|
||||||
|
sidebar,
|
||||||
|
commands,
|
||||||
|
statusBar,
|
||||||
|
eventBus,
|
||||||
|
settings,
|
||||||
|
editor,
|
||||||
|
ipc,
|
||||||
|
exportHooks,
|
||||||
|
formatRegistry,
|
||||||
|
} = deps;
|
||||||
|
|
||||||
this.sidebar = {
|
this.sidebar = {
|
||||||
registerPanel: (id, opts) => sidebar.registerPanel(`${pluginId}:${id}`, opts)
|
registerPanel: (id, opts) => sidebar.registerPanel(`${pluginId}:${id}`, opts),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.commands = {
|
this.commands = {
|
||||||
@@ -28,41 +40,58 @@ class PluginContext {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
commands.register(`${pluginId}:${id}`, label, safeHandler, shortcut);
|
commands.register(`${pluginId}:${id}`, label, safeHandler, shortcut);
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
this.statusBar = {
|
this.statusBar = {
|
||||||
registerIndicator: (id, opts) => statusBar.registerIndicator(`${pluginId}:${id}`, opts)
|
registerIndicator: (id, opts) => statusBar.registerIndicator(`${pluginId}:${id}`, opts),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.settings = {
|
this.settings = {
|
||||||
get: (key) => settings.get(`plugins.${pluginId}.${key}`),
|
get: (key) => settings.get(`plugins.${pluginId}.${key}`),
|
||||||
set: (key, value) => settings.set(`plugins.${pluginId}.${key}`, value),
|
set: (key, value) => settings.set(`plugins.${pluginId}.${key}`, value),
|
||||||
onChanged: (key, cb) => settings.onChanged(`plugins.${pluginId}.${key}`, cb)
|
onChanged: (key, cb) => settings.onChanged(`plugins.${pluginId}.${key}`, cb),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.editor = {
|
this.editor = {
|
||||||
getContent: () => editor.getContent(),
|
getContent: () => editor.getContent(),
|
||||||
getSelection: () => editor.getSelection(),
|
getSelection: () => editor.getSelection(),
|
||||||
insertAtCursor: (text) => editor.insertAtCursor(text),
|
insertAtCursor: (text) => editor.insertAtCursor(text),
|
||||||
onContentChanged: (cb) => editor.onContentChanged(cb)
|
onContentChanged: (cb) => editor.onContentChanged(cb),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.events = {
|
this.events = {
|
||||||
on: (event, handler) => eventBus.on(event, handler),
|
on: (event, handler) => eventBus.on(event, handler),
|
||||||
off: (event, handler) => eventBus.off(event, handler),
|
off: (event, handler) => eventBus.off(event, handler),
|
||||||
emit: (event, payload) => eventBus.emit(event, payload),
|
emit: (event, payload) => eventBus.emit(event, payload),
|
||||||
hasHandler: (event) => eventBus.hasHandler(event)
|
hasHandler: (event) => eventBus.hasHandler(event),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.ipc = {
|
this.ipc = {
|
||||||
invoke: (channel, ...args) => ipc.invoke(channel, ...args),
|
invoke: (channel, ...args) => ipc.invoke(channel, ...args),
|
||||||
on: (channel, handler) => ipc.on(channel, handler)
|
on: (channel, handler) => ipc.on(channel, handler),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.exports = {
|
this.exports = {
|
||||||
registerPreHook: (handler) => { if (exportHooks) exportHooks.preHooks.push(handler); },
|
registerPreHook: (handler) => {
|
||||||
registerPostHook: (handler) => { if (exportHooks) exportHooks.postHooks.push(handler); }
|
if (exportHooks) exportHooks.preHooks.push(handler);
|
||||||
|
},
|
||||||
|
registerPostHook: (handler) => {
|
||||||
|
if (exportHooks) exportHooks.postHooks.push(handler);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
this.formats = {
|
||||||
|
/**
|
||||||
|
* Register a plugin-provided export format. It is namespaced as
|
||||||
|
* `${pluginId}:${id}` so plugins can't collide with each other or
|
||||||
|
* with the built-in Pandoc-backed formats.
|
||||||
|
* @param {string} id - Format id, unique within this plugin.
|
||||||
|
* @param {object} opts - { label, extension, handler: async (markdownContent, outputPath, options) => void }
|
||||||
|
*/
|
||||||
|
registerExportFormat: (id, opts) => {
|
||||||
|
if (formatRegistry) formatRegistry.register(`${pluginId}:${id}`, opts);
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,10 @@ class PluginLoader {
|
|||||||
const loaded = require(indexPath);
|
const loaded = require(indexPath);
|
||||||
PluginClass = loaded.Plugin || loaded.default || null;
|
PluginClass = loaded.Plugin || loaded.default || null;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(`[PluginLoader] Failed to load index.js for "${manifest.id}":`, err.message);
|
console.error(
|
||||||
|
`[PluginLoader] Failed to load index.js for "${manifest.id}":`,
|
||||||
|
err.message
|
||||||
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -46,7 +49,7 @@ class PluginLoader {
|
|||||||
description: manifest.description,
|
description: manifest.description,
|
||||||
manifest,
|
manifest,
|
||||||
PluginClass,
|
PluginClass,
|
||||||
dir: pluginDir
|
dir: pluginDir,
|
||||||
});
|
});
|
||||||
this.loadedIds.add(manifest.id);
|
this.loadedIds.add(manifest.id);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|||||||
@@ -32,7 +32,8 @@ class PluginRegistry {
|
|||||||
settings: this.deps.settings,
|
settings: this.deps.settings,
|
||||||
editor: this.deps.editor,
|
editor: this.deps.editor,
|
||||||
ipc: this.deps.ipc,
|
ipc: this.deps.ipc,
|
||||||
exportHooks: this.exportHooks
|
exportHooks: this.exportHooks,
|
||||||
|
formatRegistry: this.deps.formatRegistry,
|
||||||
});
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ class SettingsStore {
|
|||||||
this.backend.set(key, value);
|
this.backend.set(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
onChanged(key, callback) {
|
onChanged(_key, _callback) {
|
||||||
// Deferred: plugins read settings on init/activate for MVP.
|
// Deferred: plugins read settings on init/activate for MVP.
|
||||||
// Full change notification requires IPC watcher in main process.
|
// Full change notification requires IPC watcher in main process.
|
||||||
}
|
}
|
||||||
|
|||||||
+87
-63
@@ -12,7 +12,7 @@
|
|||||||
* @version 4.4.1
|
* @version 4.4.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const { contextBridge, ipcRenderer } = require('electron');
|
const { contextBridge, ipcRenderer, webUtils } = require('electron');
|
||||||
|
|
||||||
// Define allowed IPC channels for security
|
// Define allowed IPC channels for security
|
||||||
const ALLOWED_SEND_CHANNELS = [
|
const ALLOWED_SEND_CHANNELS = [
|
||||||
@@ -36,6 +36,10 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'export-with-options',
|
'export-with-options',
|
||||||
'export-spreadsheet',
|
'export-spreadsheet',
|
||||||
|
|
||||||
|
// Plugin export formats
|
||||||
|
'plugin-export-formats-registered',
|
||||||
|
'plugin-export-format-result',
|
||||||
|
|
||||||
// Batch conversion
|
// Batch conversion
|
||||||
'batch-convert',
|
'batch-convert',
|
||||||
'select-folder',
|
'select-folder',
|
||||||
@@ -45,26 +49,17 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'universal-convert-batch',
|
'universal-convert-batch',
|
||||||
|
|
||||||
// Image converter
|
// Image converter
|
||||||
'image-convert',
|
'process-image-operation',
|
||||||
'image-batch-convert',
|
'select-image-folder',
|
||||||
'image-resize',
|
'batch-image-operation',
|
||||||
'image-compress',
|
|
||||||
'image-rotate',
|
|
||||||
|
|
||||||
// Audio converter
|
// Audio converter
|
||||||
'audio-convert',
|
'process-audio-operation',
|
||||||
'audio-batch-convert',
|
'batch-audio-operation',
|
||||||
'audio-extract',
|
|
||||||
'audio-trim',
|
|
||||||
'audio-merge',
|
|
||||||
|
|
||||||
// Video converter
|
// Video converter
|
||||||
'video-convert',
|
'process-video-operation',
|
||||||
'video-batch-convert',
|
'batch-video-operation',
|
||||||
'video-compress',
|
|
||||||
'video-trim',
|
|
||||||
'video-frames',
|
|
||||||
'video-gif',
|
|
||||||
|
|
||||||
// Header/Footer
|
// Header/Footer
|
||||||
'get-header-footer-settings',
|
'get-header-footer-settings',
|
||||||
@@ -73,17 +68,28 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'save-header-footer-logo',
|
'save-header-footer-logo',
|
||||||
'clear-header-footer-logo',
|
'clear-header-footer-logo',
|
||||||
|
|
||||||
|
// Word template settings
|
||||||
|
'get-word-template-settings',
|
||||||
|
'save-word-template-settings',
|
||||||
|
'browse-word-template',
|
||||||
|
'clear-word-template',
|
||||||
|
|
||||||
|
// Export presets (invoke channels — gated by this same array)
|
||||||
|
'get-export-presets',
|
||||||
|
'save-export-preset',
|
||||||
|
'delete-export-preset',
|
||||||
|
|
||||||
// Page settings
|
// Page settings
|
||||||
'get-page-settings',
|
'get-page-settings',
|
||||||
'update-page-settings',
|
'update-page-settings',
|
||||||
|
|
||||||
// Template settings
|
|
||||||
'set-custom-start-page',
|
|
||||||
|
|
||||||
// PDF operations
|
// PDF operations
|
||||||
'process-pdf-operation',
|
'process-pdf-operation',
|
||||||
'get-pdf-page-count',
|
'get-pdf-page-count',
|
||||||
|
'get-pdf-form-fields',
|
||||||
|
'get-pdf-capabilities',
|
||||||
'select-pdf-folder',
|
'select-pdf-folder',
|
||||||
|
'batch-pdf-operation',
|
||||||
|
|
||||||
// ASCII generator (separate window)
|
// ASCII generator (separate window)
|
||||||
'open-ascii-generator',
|
'open-ascii-generator',
|
||||||
@@ -116,6 +122,10 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'git-stage',
|
'git-stage',
|
||||||
'git-commit',
|
'git-commit',
|
||||||
'git-log',
|
'git-log',
|
||||||
|
'git-branches',
|
||||||
|
'git-checkout',
|
||||||
|
'git-push',
|
||||||
|
'git-pull',
|
||||||
|
|
||||||
// Snippets
|
// Snippets
|
||||||
'get-snippets',
|
'get-snippets',
|
||||||
@@ -140,7 +150,11 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
|
|
||||||
// Plugin settings
|
// Plugin settings
|
||||||
'plugin-settings:get',
|
'plugin-settings:get',
|
||||||
'plugin-settings:set'
|
'plugin-settings:set',
|
||||||
|
|
||||||
|
// Monospace font settings
|
||||||
|
'get-monospace-settings',
|
||||||
|
'set-monospace-settings',
|
||||||
];
|
];
|
||||||
|
|
||||||
const ALLOWED_RECEIVE_CHANNELS = [
|
const ALLOWED_RECEIVE_CHANNELS = [
|
||||||
@@ -168,6 +182,7 @@ const ALLOWED_RECEIVE_CHANNELS = [
|
|||||||
|
|
||||||
// Font
|
// Font
|
||||||
'adjust-font-size',
|
'adjust-font-size',
|
||||||
|
'monospace-setting-change',
|
||||||
|
|
||||||
// Print
|
// Print
|
||||||
'print-preview',
|
'print-preview',
|
||||||
@@ -179,6 +194,7 @@ const ALLOWED_RECEIVE_CHANNELS = [
|
|||||||
'show-universal-converter-dialog',
|
'show-universal-converter-dialog',
|
||||||
'show-table-generator',
|
'show-table-generator',
|
||||||
'show-pdf-editor-dialog',
|
'show-pdf-editor-dialog',
|
||||||
|
'show-document-compare',
|
||||||
|
|
||||||
// Converter dialogs
|
// Converter dialogs
|
||||||
'show-image-converter',
|
'show-image-converter',
|
||||||
@@ -196,22 +212,34 @@ const ALLOWED_RECEIVE_CHANNELS = [
|
|||||||
'audio-conversion-complete',
|
'audio-conversion-complete',
|
||||||
'video-conversion-complete',
|
'video-conversion-complete',
|
||||||
|
|
||||||
|
// Batch media operations (Image/Audio/Video Tools dialog batch mode)
|
||||||
|
'media-batch-progress',
|
||||||
|
'media-batch-complete',
|
||||||
|
|
||||||
// Folder selection
|
// Folder selection
|
||||||
'folder-selected',
|
'folder-selected',
|
||||||
'pdf-folder-selected',
|
'pdf-folder-selected',
|
||||||
|
'image-folder-selected',
|
||||||
|
|
||||||
// Header/Footer
|
// Header/Footer
|
||||||
'header-footer-settings-data',
|
'header-footer-settings-data',
|
||||||
'header-footer-logo-selected',
|
'header-footer-logo-selected',
|
||||||
'header-footer-logo-saved',
|
'header-footer-logo-saved',
|
||||||
|
|
||||||
|
// Word template settings
|
||||||
|
'word-template-settings-data',
|
||||||
|
'word-template-browsed',
|
||||||
|
'open-word-template-dialog',
|
||||||
|
|
||||||
// Page settings
|
// Page settings
|
||||||
'page-settings-data',
|
'page-settings-data',
|
||||||
|
|
||||||
// PDF operations
|
// PDF operations
|
||||||
'pdf-page-count',
|
'pdf-page-count',
|
||||||
|
'pdf-form-fields',
|
||||||
'pdf-operation-complete',
|
'pdf-operation-complete',
|
||||||
'pdf-operation-error',
|
'pdf-operation-error',
|
||||||
|
'pdf-batch-complete',
|
||||||
|
|
||||||
// ASCII Art Generator
|
// ASCII Art Generator
|
||||||
'show-ascii-generator-window',
|
'show-ascii-generator-window',
|
||||||
@@ -237,7 +265,10 @@ const ALLOWED_RECEIVE_CHANNELS = [
|
|||||||
'load-template-menu',
|
'load-template-menu',
|
||||||
'toggle-command-palette',
|
'toggle-command-palette',
|
||||||
'toggle-sidebar-panel',
|
'toggle-sidebar-panel',
|
||||||
'toggle-bottom-panel'
|
'toggle-bottom-panel',
|
||||||
|
|
||||||
|
// Plugin export formats
|
||||||
|
'run-plugin-export-format',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -344,23 +375,23 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
exists: (filePath) => ipcRenderer.invoke('path-exists', filePath),
|
exists: (filePath) => ipcRenderer.invoke('path-exists', filePath),
|
||||||
isDirectory: (filePath) => ipcRenderer.invoke('is-directory', filePath),
|
isDirectory: (filePath) => ipcRenderer.invoke('is-directory', filePath),
|
||||||
copy: (source, destination) => ipcRenderer.invoke('copy-path', { source, destination }),
|
copy: (source, destination) => ipcRenderer.invoke('copy-path', { source, destination }),
|
||||||
move: (source, destination) => ipcRenderer.invoke('move-path', { source, destination })
|
move: (source, destination) => ipcRenderer.invoke('move-path', { source, destination }),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Theme Operations
|
// Theme Operations
|
||||||
theme: {
|
theme: {
|
||||||
get: () => ipcRenderer.send('get-theme')
|
get: () => ipcRenderer.send('get-theme'),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Print Operations
|
// Print Operations
|
||||||
print: {
|
print: {
|
||||||
doPrint: (options) => ipcRenderer.send('do-print', options)
|
doPrint: (options) => ipcRenderer.send('do-print', options),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Export Operations
|
// Export Operations
|
||||||
export: {
|
export: {
|
||||||
withOptions: (format, options) => ipcRenderer.send('export-with-options', { format, options }),
|
withOptions: (format, options) => ipcRenderer.send('export-with-options', { format, options }),
|
||||||
spreadsheet: (content, format) => ipcRenderer.send('export-spreadsheet', { content, format })
|
spreadsheet: (content, format) => ipcRenderer.send('export-spreadsheet', { content, format }),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Batch Conversion
|
// Batch Conversion
|
||||||
@@ -368,7 +399,7 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
convert: (inputFolder, outputFolder, format, options) => {
|
convert: (inputFolder, outputFolder, format, options) => {
|
||||||
ipcRenderer.send('batch-convert', { inputFolder, outputFolder, format, options });
|
ipcRenderer.send('batch-convert', { inputFolder, outputFolder, format, options });
|
||||||
},
|
},
|
||||||
selectFolder: (type) => ipcRenderer.send('select-folder', type)
|
selectFolder: (type) => ipcRenderer.send('select-folder', type),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Universal Converter
|
// Universal Converter
|
||||||
@@ -377,8 +408,14 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
ipcRenderer.send('universal-convert', { tool, fromFormat, toFormat, filePath });
|
ipcRenderer.send('universal-convert', { tool, fromFormat, toFormat, filePath });
|
||||||
},
|
},
|
||||||
convertBatch: (tool, fromFormat, toFormat, inputFolder, outputFolder) => {
|
convertBatch: (tool, fromFormat, toFormat, inputFolder, outputFolder) => {
|
||||||
ipcRenderer.send('universal-convert-batch', { tool, fromFormat, toFormat, inputFolder, outputFolder });
|
ipcRenderer.send('universal-convert-batch', {
|
||||||
}
|
tool,
|
||||||
|
fromFormat,
|
||||||
|
toFormat,
|
||||||
|
inputFolder,
|
||||||
|
outputFolder,
|
||||||
|
});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Header/Footer Operations
|
// Header/Footer Operations
|
||||||
@@ -386,59 +423,46 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
getSettings: () => ipcRenderer.send('get-header-footer-settings'),
|
getSettings: () => ipcRenderer.send('get-header-footer-settings'),
|
||||||
saveSettings: (settings) => ipcRenderer.send('save-header-footer-settings', settings),
|
saveSettings: (settings) => ipcRenderer.send('save-header-footer-settings', settings),
|
||||||
browseLogo: (position) => ipcRenderer.send('browse-header-footer-logo', position),
|
browseLogo: (position) => ipcRenderer.send('browse-header-footer-logo', position),
|
||||||
saveLogo: (position, filePath) => ipcRenderer.send('save-header-footer-logo', { position, filePath }),
|
saveLogo: (position, filePath) =>
|
||||||
clearLogo: (position) => ipcRenderer.send('clear-header-footer-logo', position)
|
ipcRenderer.send('save-header-footer-logo', { position, filePath }),
|
||||||
|
clearLogo: (position) => ipcRenderer.send('clear-header-footer-logo', position),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Page Settings
|
// Page Settings
|
||||||
page: {
|
page: {
|
||||||
getSettings: () => ipcRenderer.send('get-page-settings'),
|
getSettings: () => ipcRenderer.send('get-page-settings'),
|
||||||
updateSettings: (settings) => ipcRenderer.send('update-page-settings', settings),
|
updateSettings: (settings) => ipcRenderer.send('update-page-settings', settings),
|
||||||
setCustomStartPage: (pageNumber) => ipcRenderer.send('set-custom-start-page', pageNumber)
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolve a File object chosen via `<input type="file">` to its absolute
|
||||||
|
* path. `File.path` was removed in Electron 32; `webUtils.getPathForFile`
|
||||||
|
* is its replacement. Falls back to `file.path` on older Electron where
|
||||||
|
* webUtils is unavailable.
|
||||||
|
* @param {File} file - File object from a file input's files list
|
||||||
|
* @returns {string | undefined} Absolute filesystem path when resolvable
|
||||||
|
*/
|
||||||
|
getFilePath: (file) => {
|
||||||
|
if (webUtils && typeof webUtils.getPathForFile === 'function') {
|
||||||
|
return webUtils.getPathForFile(file);
|
||||||
|
}
|
||||||
|
return file && file.path;
|
||||||
},
|
},
|
||||||
|
|
||||||
// PDF Operations
|
// PDF Operations
|
||||||
pdf: {
|
pdf: {
|
||||||
processOperation: (data) => ipcRenderer.send('process-pdf-operation', data),
|
processOperation: (data) => ipcRenderer.send('process-pdf-operation', data),
|
||||||
getPageCount: (filePath) => ipcRenderer.send('get-pdf-page-count', filePath),
|
getPageCount: (filePath) => ipcRenderer.send('get-pdf-page-count', filePath),
|
||||||
selectFolder: (inputId) => ipcRenderer.send('select-pdf-folder', inputId)
|
selectFolder: (inputId) => ipcRenderer.send('select-pdf-folder', inputId),
|
||||||
},
|
|
||||||
|
|
||||||
// Image Converter Operations
|
|
||||||
image: {
|
|
||||||
convert: (data) => ipcRenderer.send('image-convert', data),
|
|
||||||
batchConvert: (data) => ipcRenderer.send('image-batch-convert', data),
|
|
||||||
resize: (data) => ipcRenderer.send('image-resize', data),
|
|
||||||
compress: (data) => ipcRenderer.send('image-compress', data),
|
|
||||||
rotate: (data) => ipcRenderer.send('image-rotate', data)
|
|
||||||
},
|
|
||||||
|
|
||||||
// Audio Converter Operations
|
|
||||||
audio: {
|
|
||||||
convert: (data) => ipcRenderer.send('audio-convert', data),
|
|
||||||
batchConvert: (data) => ipcRenderer.send('audio-batch-convert', data),
|
|
||||||
extract: (data) => ipcRenderer.send('audio-extract', data),
|
|
||||||
trim: (data) => ipcRenderer.send('audio-trim', data),
|
|
||||||
merge: (data) => ipcRenderer.send('audio-merge', data)
|
|
||||||
},
|
|
||||||
|
|
||||||
// Video Converter Operations
|
|
||||||
video: {
|
|
||||||
convert: (data) => ipcRenderer.send('video-convert', data),
|
|
||||||
batchConvert: (data) => ipcRenderer.send('video-batch-convert', data),
|
|
||||||
compress: (data) => ipcRenderer.send('video-compress', data),
|
|
||||||
trim: (data) => ipcRenderer.send('video-trim', data),
|
|
||||||
extractFrames: (data) => ipcRenderer.send('video-frames', data),
|
|
||||||
toGif: (data) => ipcRenderer.send('video-gif', data)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Generator Windows
|
// Generator Windows
|
||||||
generators: {
|
generators: {
|
||||||
openAscii: () => ipcRenderer.send('open-ascii-generator'),
|
openAscii: () => ipcRenderer.send('open-ascii-generator'),
|
||||||
openTable: () => ipcRenderer.send('open-table-generator')
|
openTable: () => ipcRenderer.send('open-table-generator'),
|
||||||
},
|
},
|
||||||
|
|
||||||
getAppVersion: () => ipcRenderer.invoke('get-app-version')
|
getAppVersion: () => ipcRenderer.invoke('get-app-version'),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Log successful preload initialization
|
// Log successful preload initialization
|
||||||
|
|||||||
+74
-9
@@ -1,11 +1,58 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
function getBundledFontWoff2Path(familyKey, weight) {
|
||||||
|
// Renderer can read directly from disk because nodeIntegration is on.
|
||||||
|
// Try repo-relative first, then packaged app.asar mirror.
|
||||||
|
const familyDir = familyKey === 'fira-code' ? 'FiraCode' : 'JetBrainsMono';
|
||||||
|
const weightName = weight >= 700 ? 'Bold' : 'Regular';
|
||||||
|
const filename = `${familyDir}-${weightName}.woff2`;
|
||||||
|
const repoPath = path.resolve(__dirname, '..', 'assets', 'fonts', filename);
|
||||||
|
if (fs.existsSync(repoPath)) return repoPath;
|
||||||
|
// Packaged: under <resourcesPath>/assets/fonts/
|
||||||
|
if (process.resourcesPath) {
|
||||||
|
const packaged = path.join(process.resourcesPath, 'assets', 'fonts', filename);
|
||||||
|
if (fs.existsSync(packaged)) return packaged;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildFontFaceBlock(familyKey) {
|
||||||
|
const family = familyKey === 'fira-code' ? 'Fira Code' : 'JetBrains Mono';
|
||||||
|
const fontPath = getBundledFontWoff2Path(familyKey, 400);
|
||||||
|
if (!fontPath) return '';
|
||||||
|
try {
|
||||||
|
const data = fs.readFileSync(fontPath);
|
||||||
|
const dataUri = `data:font/woff2;base64,${data.toString('base64')}`;
|
||||||
|
return `@font-face { font-family: '${family}'; font-weight: 400; font-style: normal; src: url('${dataUri}') format('woff2'); }`;
|
||||||
|
} catch (err) {
|
||||||
|
// Non-fatal: fall back to the system monospace stack declared in styles-modern.css.
|
||||||
|
if (typeof console !== 'undefined')
|
||||||
|
console.warn('[print-preview] font embed failed:', err.message);
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class PrintPreview {
|
class PrintPreview {
|
||||||
constructor() {
|
constructor(monospaceSettings = {}) {
|
||||||
this.overlay = document.getElementById('print-preview-overlay');
|
this.overlay = document.getElementById('print-preview-overlay');
|
||||||
this.modal = window.modals?.printPreviewModal;
|
this.modal = window.modals?.printPreviewModal;
|
||||||
this._lastContent = '';
|
this._lastContent = '';
|
||||||
|
this._monospaceSettings = {
|
||||||
|
monospaceFont: monospaceSettings.monospaceFont || 'jetbrains-mono',
|
||||||
|
monospaceLigatures: monospaceSettings.monospaceLigatures === true,
|
||||||
|
};
|
||||||
this.setupEventListeners();
|
this.setupEventListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setMonospaceSettings(settings) {
|
||||||
|
this._monospaceSettings = {
|
||||||
|
monospaceFont: (settings && settings.monospaceFont) || 'jetbrains-mono',
|
||||||
|
monospaceLigatures: !!(settings && settings.monospaceLigatures === true),
|
||||||
|
};
|
||||||
|
this.refreshPreview();
|
||||||
|
}
|
||||||
|
|
||||||
open(htmlContent) {
|
open(htmlContent) {
|
||||||
this._lastContent = htmlContent;
|
this._lastContent = htmlContent;
|
||||||
if (this.modal) {
|
if (this.modal) {
|
||||||
@@ -31,7 +78,7 @@ class PrintPreview {
|
|||||||
document.getElementById('print-execute')?.addEventListener('click', () => this.executePrint());
|
document.getElementById('print-execute')?.addEventListener('click', () => this.executePrint());
|
||||||
|
|
||||||
// Update preview on option changes
|
// Update preview on option changes
|
||||||
['print-paper-size', 'print-orientation', 'print-margins'].forEach(id => {
|
['print-paper-size', 'print-orientation', 'print-margins'].forEach((id) => {
|
||||||
document.getElementById(id)?.addEventListener('change', () => this.refreshPreview());
|
document.getElementById(id)?.addEventListener('change', () => this.refreshPreview());
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -67,23 +114,30 @@ class PrintPreview {
|
|||||||
|
|
||||||
// Get dimensions for paper size
|
// Get dimensions for paper size
|
||||||
const sizes = {
|
const sizes = {
|
||||||
'A3': { width: '297mm', height: '420mm' },
|
A3: { width: '297mm', height: '420mm' },
|
||||||
'A4': { width: '210mm', height: '297mm' },
|
A4: { width: '210mm', height: '297mm' },
|
||||||
'A5': { width: '148mm', height: '210mm' },
|
A5: { width: '148mm', height: '210mm' },
|
||||||
'Letter': { width: '8.5in', height: '11in' },
|
Letter: { width: '8.5in', height: '11in' },
|
||||||
'Legal': { width: '8.5in', height: '14in' },
|
Legal: { width: '8.5in', height: '14in' },
|
||||||
'Tabloid': { width: '11in', height: '17in' },
|
Tabloid: { width: '11in', height: '17in' },
|
||||||
};
|
};
|
||||||
|
|
||||||
const size = sizes[paperSize] || sizes['A4'];
|
const size = sizes[paperSize] || sizes['A4'];
|
||||||
const width = orientation === 'landscape' ? size.height : size.width;
|
const width = orientation === 'landscape' ? size.height : size.width;
|
||||||
const height = orientation === 'landscape' ? size.width : size.height;
|
const height = orientation === 'landscape' ? size.width : size.height;
|
||||||
|
|
||||||
|
const family =
|
||||||
|
this._monospaceSettings.monospaceFont === 'fira-code' ? 'Fira Code' : 'JetBrains Mono';
|
||||||
|
const ligaturesOn = this._monospaceSettings.monospaceLigatures === true;
|
||||||
|
const featureSettings = ligaturesOn ? 'normal' : "'liga' 0, 'calt' 0, 'dlig' 0";
|
||||||
|
const fontFaceBlock = buildFontFaceBlock(this._monospaceSettings.monospaceFont);
|
||||||
|
|
||||||
const previewHtml = `
|
const previewHtml = `
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
|
${fontFaceBlock}
|
||||||
body {
|
body {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||||
@@ -91,7 +145,18 @@ class PrintPreview {
|
|||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
@page { size: ${width} ${height}; }
|
@page { size: ${width} ${height}; }
|
||||||
pre { background: #f5f5f5; padding: 12px; border-radius: 6px; overflow-x: auto; }
|
pre, code, kbd, samp {
|
||||||
|
font-family: '${family}', monospace;
|
||||||
|
font-feature-settings: ${featureSettings};
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
background: #f5f5f5;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 6px;
|
||||||
|
overflow-x: auto;
|
||||||
|
white-space: pre;
|
||||||
|
tab-size: 4;
|
||||||
|
}
|
||||||
code { background: #f0f0f0; padding: 2px 6px; border-radius: 3px; font-size: 13px; }
|
code { background: #f0f0f0; padding: 2px 6px; border-radius: 3px; font-size: 13px; }
|
||||||
pre code { background: none; padding: 0; }
|
pre code { background: none; padding: 0; }
|
||||||
table { border-collapse: collapse; width: 100%; }
|
table { border-collapse: collapse; width: 100%; }
|
||||||
|
|||||||
+2345
-1084
File diff suppressed because it is too large
Load Diff
@@ -1,7 +0,0 @@
|
|||||||
import { AppShell } from './components/layout/AppShell';
|
|
||||||
|
|
||||||
function App() {
|
|
||||||
return <AppShell />;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
import { useEffect, useRef } from 'react';
|
|
||||||
import { EditorState, Compartment } from '@codemirror/state';
|
|
||||||
import { EditorView, keymap, lineNumbers, highlightActiveLine, drawSelection } from '@codemirror/view';
|
|
||||||
import { defaultKeymap, history, historyKeymap, indentWithTab } from '@codemirror/commands';
|
|
||||||
import { markdown, markdownLanguage } from '@codemirror/lang-markdown';
|
|
||||||
import { searchKeymap, highlightSelectionMatches } from '@codemirror/search';
|
|
||||||
import { autocompletion, completionKeymap } from '@codemirror/autocomplete';
|
|
||||||
import { oneDark } from '@codemirror/theme-one-dark';
|
|
||||||
import { useTheme } from 'next-themes';
|
|
||||||
import { lightTheme, lightHighlight } from './themes/light';
|
|
||||||
import { useEditorStore } from '@/stores/editor-store';
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
bufferId: string;
|
|
||||||
initialContent: string;
|
|
||||||
onChange?: (content: string) => void;
|
|
||||||
onCursorChange?: (line: number, column: number) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorChange }: Props) {
|
|
||||||
const ref = useRef<HTMLDivElement>(null);
|
|
||||||
const viewRef = useRef<EditorView | null>(null);
|
|
||||||
const themeCompartment = useRef(new Compartment());
|
|
||||||
const { resolvedTheme } = useTheme();
|
|
||||||
const updateContent = useEditorStore((s) => s.updateContent);
|
|
||||||
const setCursor = useEditorStore((s) => s.setCursor);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!ref.current) return;
|
|
||||||
const state = EditorState.create({
|
|
||||||
doc: initialContent,
|
|
||||||
extensions: [
|
|
||||||
lineNumbers(),
|
|
||||||
highlightActiveLine(),
|
|
||||||
highlightSelectionMatches(),
|
|
||||||
history(),
|
|
||||||
drawSelection(),
|
|
||||||
markdown({ base: markdownLanguage, codeLanguages: [] }),
|
|
||||||
autocompletion(),
|
|
||||||
keymap.of([...defaultKeymap, ...historyKeymap, ...searchKeymap, ...completionKeymap, indentWithTab]),
|
|
||||||
themeCompartment.current.of(resolvedTheme === 'dark' ? [oneDark] : [lightTheme, lightHighlight]),
|
|
||||||
EditorView.lineWrapping,
|
|
||||||
EditorView.updateListener.of((v) => {
|
|
||||||
if (v.docChanged) {
|
|
||||||
const content = v.state.doc.toString();
|
|
||||||
updateContent(bufferId, content);
|
|
||||||
onChange?.(content);
|
|
||||||
}
|
|
||||||
if (v.selectionSet || v.docChanged) {
|
|
||||||
const head = v.state.selection.main.head;
|
|
||||||
const line = v.state.doc.lineAt(head);
|
|
||||||
const lineNo = line.number;
|
|
||||||
const col = head - line.from + 1;
|
|
||||||
setCursor(bufferId, lineNo, col);
|
|
||||||
onCursorChange?.(lineNo, col);
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
const view = new EditorView({ state, parent: ref.current });
|
|
||||||
viewRef.current = view;
|
|
||||||
return () => {
|
|
||||||
view.destroy();
|
|
||||||
viewRef.current = null;
|
|
||||||
};
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
}, [bufferId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const view = viewRef.current;
|
|
||||||
if (!view) return;
|
|
||||||
view.dispatch({
|
|
||||||
effects: themeCompartment.current.reconfigure(
|
|
||||||
resolvedTheme === 'dark' ? [oneDark] : [lightTheme, lightHighlight]
|
|
||||||
),
|
|
||||||
});
|
|
||||||
}, [resolvedTheme]);
|
|
||||||
|
|
||||||
return <div ref={ref} className="h-full overflow-hidden" />;
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import { useEffect } from 'react';
|
|
||||||
import { CodeMirrorEditor } from './CodeMirrorEditor';
|
|
||||||
import { useEditorStore } from '@/stores/editor-store';
|
|
||||||
import { usePreviewStore } from '@/stores/preview-store';
|
|
||||||
|
|
||||||
export function EditorPane() {
|
|
||||||
const { buffers, activeId } = useEditorStore();
|
|
||||||
const buf = activeId ? buffers.get(activeId) : null;
|
|
||||||
const setPreviewSource = usePreviewStore((s) => s.setSource);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (buf) setPreviewSource(buf.content);
|
|
||||||
}, [buf?.id, buf?.content, buf, setPreviewSource]);
|
|
||||||
|
|
||||||
if (!buf) {
|
|
||||||
return (
|
|
||||||
<div className="flex h-full items-center justify-center bg-background text-muted-foreground">
|
|
||||||
<p>No file open. Use File → Open to start.</p>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="h-full">
|
|
||||||
<CodeMirrorEditor
|
|
||||||
key={buf.id}
|
|
||||||
bufferId={buf.id}
|
|
||||||
initialContent={buf.content}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
import { EditorView } from '@codemirror/view';
|
|
||||||
import { HighlightStyle, syntaxHighlighting } from '@codemirror/language';
|
|
||||||
import { tags as t } from '@lezer/highlight';
|
|
||||||
|
|
||||||
const colors = {
|
|
||||||
background: '#ffffff',
|
|
||||||
foreground: '#0d0b09',
|
|
||||||
cursor: '#e5461f',
|
|
||||||
selection: 'rgba(229, 70, 31, 0.15)',
|
|
||||||
gutterBackground: '#fafbfc',
|
|
||||||
gutterForeground: '#7a7878',
|
|
||||||
lineHighlight: 'rgba(0, 0, 0, 0.04)',
|
|
||||||
};
|
|
||||||
|
|
||||||
export const lightTheme = EditorView.theme(
|
|
||||||
{
|
|
||||||
'&': {
|
|
||||||
backgroundColor: colors.background,
|
|
||||||
color: colors.foreground,
|
|
||||||
height: '100%',
|
|
||||||
},
|
|
||||||
'.cm-content': {
|
|
||||||
caretColor: colors.cursor,
|
|
||||||
fontFamily: 'JetBrains Mono, Fira Code, monospace',
|
|
||||||
fontSize: '13.5px',
|
|
||||||
},
|
|
||||||
'.cm-cursor, .cm-dropCursor': { borderLeftColor: colors.cursor },
|
|
||||||
'&.cm-focused .cm-selectionBackground, .cm-selectionBackground, ::selection': {
|
|
||||||
backgroundColor: colors.selection,
|
|
||||||
},
|
|
||||||
'.cm-gutters': {
|
|
||||||
backgroundColor: colors.gutterBackground,
|
|
||||||
color: colors.gutterForeground,
|
|
||||||
border: 'none',
|
|
||||||
},
|
|
||||||
'.cm-activeLine': { backgroundColor: colors.lineHighlight },
|
|
||||||
'.cm-activeLineGutter': { backgroundColor: 'transparent', color: '#e5461f' },
|
|
||||||
},
|
|
||||||
{ dark: false }
|
|
||||||
);
|
|
||||||
|
|
||||||
const highlightStyle = HighlightStyle.define([
|
|
||||||
{ tag: t.heading1, color: '#0d0b09', fontWeight: '700' },
|
|
||||||
{ tag: t.heading2, color: '#0d0b09', fontWeight: '700' },
|
|
||||||
{ tag: t.heading3, color: '#464646', fontWeight: '600' },
|
|
||||||
{ tag: t.link, color: '#e5461f', textDecoration: 'underline' },
|
|
||||||
{ tag: t.url, color: '#e5461f' },
|
|
||||||
{ tag: t.emphasis, fontStyle: 'italic' },
|
|
||||||
{ tag: t.strong, fontWeight: '700' },
|
|
||||||
{ tag: t.monospace, color: '#c93a18' },
|
|
||||||
{ tag: t.list, color: '#0ea5e9' },
|
|
||||||
{ tag: t.quote, color: '#7a7878', fontStyle: 'italic' },
|
|
||||||
]);
|
|
||||||
|
|
||||||
export const lightHighlight = syntaxHighlighting(highlightStyle);
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
import { PanelLeft, PanelRight } from 'lucide-react';
|
|
||||||
import { Button } from '@/components/ui/button';
|
|
||||||
import { ThemeToggle } from '@/components/theme-toggle';
|
|
||||||
import { useAppStore } from '@/stores/app-store';
|
|
||||||
|
|
||||||
export function AppHeader() {
|
|
||||||
const { sidebarVisible, previewVisible, toggleSidebar, togglePreview } = useAppStore();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<header className="flex h-14 items-center justify-between border-b border-border bg-card/40 px-4 backdrop-blur">
|
|
||||||
<div className="flex items-center gap-3">
|
|
||||||
<div
|
|
||||||
className="h-7 w-7 rounded-md bg-gradient-to-br from-brand to-brand-dark shadow-[var(--shadow-glow-brand)]"
|
|
||||||
aria-label="MarkdownConverter logo"
|
|
||||||
/>
|
|
||||||
<h1 className="font-display text-lg font-bold tracking-tight">MarkdownConverter</h1>
|
|
||||||
</div>
|
|
||||||
<div className="flex items-center gap-1">
|
|
||||||
<Button
|
|
||||||
variant="ghost"
|
|
||||||
size="icon"
|
|
||||||
aria-label="Toggle sidebar"
|
|
||||||
aria-pressed={sidebarVisible}
|
|
||||||
onClick={toggleSidebar}
|
|
||||||
>
|
|
||||||
<PanelLeft className="h-4 w-4" />
|
|
||||||
</Button>
|
|
||||||
<Button
|
|
||||||
variant="ghost"
|
|
||||||
size="icon"
|
|
||||||
aria-label="Toggle preview"
|
|
||||||
aria-pressed={previewVisible}
|
|
||||||
onClick={togglePreview}
|
|
||||||
>
|
|
||||||
<PanelRight className="h-4 w-4" />
|
|
||||||
</Button>
|
|
||||||
<ThemeToggle />
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
import { AppHeader } from './AppHeader';
|
|
||||||
import { TabBar } from './TabBar';
|
|
||||||
import { Toolbar } from './Toolbar';
|
|
||||||
import { Breadcrumb } from './Breadcrumb';
|
|
||||||
import { StatusBar } from './StatusBar';
|
|
||||||
import { EditorPane } from '@/components/editor/EditorPane';
|
|
||||||
import { PreviewPane } from '@/components/preview/PreviewPane';
|
|
||||||
import { useAppStore } from '@/stores/app-store';
|
|
||||||
import { ResizablePanelGroup, ResizablePanel, ResizableHandle } from '@/components/ui/resizable';
|
|
||||||
|
|
||||||
export function AppShell() {
|
|
||||||
const { sidebarVisible, previewVisible, paneSizes, setPaneSizes } = useAppStore();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex h-screen flex-col bg-background text-foreground">
|
|
||||||
<AppHeader />
|
|
||||||
<TabBar />
|
|
||||||
<Toolbar />
|
|
||||||
<Breadcrumb />
|
|
||||||
<main className="flex-1 overflow-hidden">
|
|
||||||
<ResizablePanelGroup
|
|
||||||
direction="horizontal"
|
|
||||||
onLayout={(sizes) => setPaneSizes({ sidebar: sizes[0], editor: sizes[1], preview: sizes[2] })}
|
|
||||||
>
|
|
||||||
{sidebarVisible && (
|
|
||||||
<>
|
|
||||||
<ResizablePanel defaultSize={paneSizes.sidebar} minSize={15} maxSize={40}>
|
|
||||||
<aside className="h-full border-r border-border bg-card/10 p-3 text-sm text-muted-foreground">
|
|
||||||
File tree placeholder
|
|
||||||
</aside>
|
|
||||||
</ResizablePanel>
|
|
||||||
<ResizableHandle />
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
<ResizablePanel defaultSize={previewVisible ? paneSizes.editor : 100} minSize={20}>
|
|
||||||
<EditorPane />
|
|
||||||
</ResizablePanel>
|
|
||||||
{previewVisible && (
|
|
||||||
<>
|
|
||||||
<ResizableHandle />
|
|
||||||
<ResizablePanel defaultSize={paneSizes.preview} minSize={20}>
|
|
||||||
<PreviewPane />
|
|
||||||
</ResizablePanel>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</ResizablePanelGroup>
|
|
||||||
</main>
|
|
||||||
<StatusBar />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
export function Breadcrumb() {
|
|
||||||
return (
|
|
||||||
<nav aria-label="File path" className="flex h-7 items-center border-b border-border bg-card/10 px-3 text-xs text-muted-foreground">
|
|
||||||
<span>No file selected</span>
|
|
||||||
</nav>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
import { useEditorStore } from '@/stores/editor-store';
|
|
||||||
|
|
||||||
function countWords(text: string): number {
|
|
||||||
return text.trim().length === 0 ? 0 : text.trim().split(/\s+/).length;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function StatusBar() {
|
|
||||||
const { buffers, activeId } = useEditorStore();
|
|
||||||
const buf = activeId ? buffers.get(activeId) : null;
|
|
||||||
const wordCount = buf ? countWords(buf.content) : 0;
|
|
||||||
const cursor = buf?.cursor ?? { line: 1, column: 1 };
|
|
||||||
|
|
||||||
return (
|
|
||||||
<footer className="flex h-7 items-center justify-between border-t border-border bg-card/20 px-3 text-xs text-muted-foreground">
|
|
||||||
<div className="flex items-center gap-4">
|
|
||||||
<span>{wordCount} words</span>
|
|
||||||
<span>UTF-8</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex items-center gap-4">
|
|
||||||
<span>Ln {cursor.line}, Col {cursor.column}</span>
|
|
||||||
<span>Markdown</span>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
export function TabBar() {
|
|
||||||
return (
|
|
||||||
<div className="flex h-9 items-center border-b border-border bg-card/20 px-3 text-xs text-muted-foreground">
|
|
||||||
<span>No files open</span>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
import { Bold, Italic, List, ListOrdered, Code, Link as LinkIcon } from 'lucide-react';
|
|
||||||
import { Button } from '@/components/ui/button';
|
|
||||||
|
|
||||||
export function Toolbar() {
|
|
||||||
return (
|
|
||||||
<div className="flex h-10 items-center gap-1 border-b border-border bg-card/10 px-3">
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Bold"><Bold className="h-4 w-4" /></Button>
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Italic"><Italic className="h-4 w-4" /></Button>
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Unordered list"><List className="h-4 w-4" /></Button>
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Ordered list"><ListOrdered className="h-4 w-4" /></Button>
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Code"><Code className="h-4 w-4" /></Button>
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Link"><LinkIcon className="h-4 w-4" /></Button>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
import { useEffect, useRef, useState } from 'react';
|
|
||||||
import { renderMarkdown } from '@/lib/markdown';
|
|
||||||
import { MermaidLazy } from './MermaidLazy';
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
source: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const MERMAID_RE = /```mermaid\n([\s\S]*?)```/g;
|
|
||||||
|
|
||||||
function extractMermaidCodes(source: string): string[] {
|
|
||||||
const codes: string[] = [];
|
|
||||||
let match: RegExpExecArray | null;
|
|
||||||
while ((match = MERMAID_RE.exec(source)) !== null) {
|
|
||||||
codes.push(match[1].trim());
|
|
||||||
}
|
|
||||||
return codes;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function MarkdownRenderer({ source }: Props) {
|
|
||||||
const html = renderMarkdown(source);
|
|
||||||
const containerRef = useRef<HTMLDivElement>(null);
|
|
||||||
const [mermaidCodes, setMermaidCodes] = useState<string[]>([]);
|
|
||||||
|
|
||||||
// Re-derive mermaid codes from the original source. The renderMarkdown function
|
|
||||||
// replaces mermaid blocks with placeholders (data-mermaid-source="${idx}"), but
|
|
||||||
// it does not return the actual codes. Rather than thread them through the API,
|
|
||||||
// we re-extract from the source. Source is small (single buffer content) so this
|
|
||||||
// cost is negligible.
|
|
||||||
useEffect(() => {
|
|
||||||
setMermaidCodes(extractMermaidCodes(source));
|
|
||||||
}, [source]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="prose prose-neutral dark:prose-invert max-w-none p-6" ref={containerRef}>
|
|
||||||
<div dangerouslySetInnerHTML={{ __html: html }} />
|
|
||||||
{mermaidCodes.map((code, i) => (
|
|
||||||
<div key={i} className="my-4">
|
|
||||||
<MermaidLazy code={code} />
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
import { useEffect, useRef, useState } from 'react';
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
code: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mermaidModule: typeof import('mermaid').default | null = null;
|
|
||||||
let initialized = false;
|
|
||||||
|
|
||||||
async function getMermaid() {
|
|
||||||
if (!mermaidModule) {
|
|
||||||
const mod = await import('mermaid');
|
|
||||||
mermaidModule = mod.default;
|
|
||||||
}
|
|
||||||
if (!initialized) {
|
|
||||||
mermaidModule.initialize({ startOnLoad: false, theme: 'default' });
|
|
||||||
initialized = true;
|
|
||||||
}
|
|
||||||
return mermaidModule;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function MermaidLazy({ code }: Props) {
|
|
||||||
const [svg, setSvg] = useState<string | null>(null);
|
|
||||||
const [error, setError] = useState<string | null>(null);
|
|
||||||
const idRef = useRef(`mermaid-${Math.random().toString(36).slice(2)}`);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
let cancelled = false;
|
|
||||||
getMermaid()
|
|
||||||
.then((m) => m.render(idRef.current, code))
|
|
||||||
.then((rendered) => {
|
|
||||||
if (!cancelled) setSvg(rendered);
|
|
||||||
})
|
|
||||||
.catch((err: Error) => {
|
|
||||||
if (!cancelled) setError(err.message);
|
|
||||||
});
|
|
||||||
return () => {
|
|
||||||
cancelled = true;
|
|
||||||
};
|
|
||||||
}, [code]);
|
|
||||||
|
|
||||||
if (error) return <div className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">{error}</div>;
|
|
||||||
if (!svg) return <div className="text-xs text-muted-foreground">Loading diagram…</div>;
|
|
||||||
return <div data-testid="mermaid-output" dangerouslySetInnerHTML={{ __html: svg }} />;
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import { MarkdownRenderer } from './MarkdownRenderer';
|
|
||||||
import { usePreviewStore } from '@/stores/preview-store';
|
|
||||||
import { useScrollSync } from '@/hooks/use-scroll-sync';
|
|
||||||
|
|
||||||
export function PreviewPane() {
|
|
||||||
const { source, setScrollRatio } = usePreviewStore();
|
|
||||||
const { handlePreviewScroll } = useScrollSync({ onPreviewScroll: setScrollRatio });
|
|
||||||
|
|
||||||
if (!source) {
|
|
||||||
return (
|
|
||||||
<div className="flex h-full items-center justify-center text-muted-foreground">
|
|
||||||
<p>Nothing to preview. Start typing in the editor.</p>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="h-full overflow-auto bg-card/10" onScroll={handlePreviewScroll}>
|
|
||||||
<MarkdownRenderer source={source} />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { ThemeProvider as NextThemesProvider } from 'next-themes';
|
|
||||||
import type { ComponentProps } from 'react';
|
|
||||||
|
|
||||||
export function ThemeProvider({ children, ...props }: ComponentProps<typeof NextThemesProvider>) {
|
|
||||||
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
import { useTheme } from 'next-themes';
|
|
||||||
import { Moon, Sun } from 'lucide-react';
|
|
||||||
import { Button } from '@/components/ui/button';
|
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
|
|
||||||
export function ThemeToggle() {
|
|
||||||
const { resolvedTheme, setTheme } = useTheme();
|
|
||||||
const [mounted, setMounted] = useState(false);
|
|
||||||
useEffect(() => setMounted(true), []);
|
|
||||||
|
|
||||||
if (!mounted) {
|
|
||||||
return (
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Toggle theme" className="opacity-0">
|
|
||||||
<Sun className="h-4 w-4" />
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const isDark = resolvedTheme === 'dark';
|
|
||||||
return (
|
|
||||||
<Button
|
|
||||||
variant="ghost"
|
|
||||||
size="icon"
|
|
||||||
aria-label="Toggle theme"
|
|
||||||
onClick={() => setTheme(isDark ? 'light' : 'dark')}
|
|
||||||
>
|
|
||||||
{isDark ? <Sun className="h-4 w-4" /> : <Moon className="h-4 w-4" />}
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
import * as React from "react"
|
|
||||||
import { Slot } from "@radix-ui/react-slot"
|
|
||||||
import { cva, type VariantProps } from "class-variance-authority"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
|
||||||
|
|
||||||
const buttonVariants = cva(
|
|
||||||
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
||||||
{
|
|
||||||
variants: {
|
|
||||||
variant: {
|
|
||||||
default:
|
|
||||||
"bg-primary text-primary-foreground shadow hover:bg-primary/90",
|
|
||||||
destructive:
|
|
||||||
"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
|
|
||||||
outline:
|
|
||||||
"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
|
|
||||||
secondary:
|
|
||||||
"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
|
|
||||||
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
||||||
link: "text-primary underline-offset-4 hover:underline",
|
|
||||||
},
|
|
||||||
size: {
|
|
||||||
default: "h-9 px-4 py-2",
|
|
||||||
sm: "h-8 rounded-md px-3 text-xs",
|
|
||||||
lg: "h-10 rounded-md px-8",
|
|
||||||
icon: "h-9 w-9",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
defaultVariants: {
|
|
||||||
variant: "default",
|
|
||||||
size: "default",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
export interface ButtonProps
|
|
||||||
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
||||||
VariantProps<typeof buttonVariants> {
|
|
||||||
asChild?: boolean
|
|
||||||
}
|
|
||||||
|
|
||||||
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
|
||||||
({ className, variant, size, asChild = false, ...props }, ref) => {
|
|
||||||
const Comp = asChild ? Slot : "button"
|
|
||||||
return (
|
|
||||||
<Comp
|
|
||||||
className={cn(buttonVariants({ variant, size, className }))}
|
|
||||||
ref={ref}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
Button.displayName = "Button"
|
|
||||||
|
|
||||||
export { Button, buttonVariants }
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
"use client"
|
|
||||||
|
|
||||||
import * as React from "react"
|
|
||||||
import { GripVertical } from "lucide-react"
|
|
||||||
import * as ResizablePrimitive from "react-resizable-panels"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
|
||||||
|
|
||||||
const ResizablePanelGroup = React.forwardRef<
|
|
||||||
React.ElementRef<typeof ResizablePrimitive.Group>,
|
|
||||||
React.ComponentPropsWithoutRef<typeof ResizablePrimitive.Group>
|
|
||||||
>(({ className, ...props }, ref) => (
|
|
||||||
<ResizablePrimitive.Group
|
|
||||||
ref={ref}
|
|
||||||
className={cn(
|
|
||||||
"flex h-full w-full data-[panel-group-direction=vertical]:flex-col",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
))
|
|
||||||
ResizablePanelGroup.displayName = "ResizablePanelGroup"
|
|
||||||
|
|
||||||
const ResizablePanel = React.forwardRef<
|
|
||||||
React.ElementRef<typeof ResizablePrimitive.Panel>,
|
|
||||||
React.ComponentPropsWithoutRef<typeof ResizablePrimitive.Panel>
|
|
||||||
>(({ className, ...props }, ref) => (
|
|
||||||
<ResizablePrimitive.Panel
|
|
||||||
ref={ref}
|
|
||||||
className={cn(
|
|
||||||
"h-full w-full overflow-hidden",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
))
|
|
||||||
ResizablePanel.displayName = "ResizablePanel"
|
|
||||||
|
|
||||||
const ResizableHandle = ({
|
|
||||||
withHandle,
|
|
||||||
className,
|
|
||||||
...props
|
|
||||||
}: React.ComponentPropsWithoutRef<typeof ResizablePrimitive.Separator> & {
|
|
||||||
withHandle?: boolean
|
|
||||||
}) => (
|
|
||||||
<ResizablePrimitive.Separator
|
|
||||||
className={cn(
|
|
||||||
"relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
{...props}
|
|
||||||
>
|
|
||||||
{withHandle && (
|
|
||||||
<div className="z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border">
|
|
||||||
<GripVertical className="h-2.5 w-2.5" />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</ResizablePrimitive.Separator>
|
|
||||||
)
|
|
||||||
ResizableHandle.displayName = "ResizableHandle"
|
|
||||||
|
|
||||||
export { ResizablePanelGroup, ResizablePanel, ResizableHandle }
|
|
||||||
@@ -0,0 +1,343 @@
|
|||||||
|
/**
|
||||||
|
* Document Compare Dialog
|
||||||
|
*
|
||||||
|
* Two-pane line diff opened from Tools > Document Compare (main.js sends
|
||||||
|
* `show-document-compare`; renderer.js registers the listener).
|
||||||
|
*
|
||||||
|
* Construction mirrors src/renderer/media-operations-dialog.js: a modal built from
|
||||||
|
* `.modal` / `.modal-content` / `.modal-header` / `.modal-body` / `.modal-footer`
|
||||||
|
* markup appended to document.body on first use, driven by ModalManager, with a
|
||||||
|
* status line reusing the `info-message` / `warning-message` classes. File
|
||||||
|
* selection reuses the app's existing convention: a plain `<input type="file">`
|
||||||
|
* whose chosen File is resolved to a path via `window.electronAPI.getFilePath`
|
||||||
|
* (webUtils.getPathForFile — `File.path` was removed in Electron 32) —
|
||||||
|
* no new IPC channel for picking files. File *contents* are read through the
|
||||||
|
* existing `read-file` invoke channel (the same one the renderer's electronAPI
|
||||||
|
* adapters use), not through a new privileged renderer-side file path.
|
||||||
|
*
|
||||||
|
* Two modes:
|
||||||
|
* - Local: File A (prefilled with the current tab's file, changeable) vs File B,
|
||||||
|
* diffed locally by the pure LCS function in src/utils/line-diff.js.
|
||||||
|
* - Git HEAD: the current file against its last commit, via the existing
|
||||||
|
* `git-diff` invoke channel with `againstHead: true` (GitOperations.diff).
|
||||||
|
* Git's own raw diff text is rendered verbatim, one row per line, colored by
|
||||||
|
* leading character — it is already a diff and is never re-diffed through
|
||||||
|
* line-diff. When the current file is not inside a git repository (or no file
|
||||||
|
* is open), the option is disabled with a hint instead of erroring.
|
||||||
|
*
|
||||||
|
* @module document-compare-dialog
|
||||||
|
*/
|
||||||
|
|
||||||
|
const { ipcRenderer } = require('electron');
|
||||||
|
const { getFilePath } = require('../utils/file-path');
|
||||||
|
const { computeLineDiff } = require('../utils/line-diff');
|
||||||
|
|
||||||
|
const COMPARE_ACCEPT = '.md,.markdown,.txt,.text,.log,.json,.xml,.yml,.yaml,.csv';
|
||||||
|
|
||||||
|
const GIT_DIFF_ROW_CLASS = [
|
||||||
|
{ prefix: '@@', className: 'diff-hunk' },
|
||||||
|
{ prefix: '+++', className: 'diff-context' },
|
||||||
|
{ prefix: '---', className: 'diff-context' },
|
||||||
|
{ prefix: '+', className: 'diff-added' },
|
||||||
|
{ prefix: '-', className: 'diff-removed' },
|
||||||
|
];
|
||||||
|
|
||||||
|
let modalEl = null;
|
||||||
|
let modalManager = null;
|
||||||
|
let els = null;
|
||||||
|
let currentFilePath = null;
|
||||||
|
|
||||||
|
function buildDialogDom() {
|
||||||
|
modalEl = document.createElement('div');
|
||||||
|
modalEl.id = 'document-compare-dialog';
|
||||||
|
modalEl.className = 'modal hidden';
|
||||||
|
modalEl.setAttribute('role', 'dialog');
|
||||||
|
modalEl.setAttribute('aria-modal', 'true');
|
||||||
|
modalEl.setAttribute('aria-labelledby', 'document-compare-title');
|
||||||
|
modalEl.innerHTML = `
|
||||||
|
<div class="modal-backdrop" data-close></div>
|
||||||
|
<div class="modal-content large">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 id="document-compare-title">Document Compare</h3>
|
||||||
|
<button class="modal-close" id="document-compare-close" aria-label="Close">×</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="compare-mode-select">Mode:</label>
|
||||||
|
<select id="compare-mode-select">
|
||||||
|
<option value="local">Compare Two Files</option>
|
||||||
|
<option value="git">Compare Current File with Git HEAD</option>
|
||||||
|
</select>
|
||||||
|
<small id="compare-git-hint" class="hidden"></small>
|
||||||
|
</div>
|
||||||
|
<div id="compare-local-section">
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="compare-file-a-input">File A (original):</label>
|
||||||
|
<div class="folder-input-group">
|
||||||
|
<input type="text" id="compare-file-a-input" readonly>
|
||||||
|
<button type="button" id="compare-file-a-browse">Choose File A</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="compare-file-b-input">File B (revised):</label>
|
||||||
|
<div class="folder-input-group">
|
||||||
|
<input type="text" id="compare-file-b-input" readonly>
|
||||||
|
<button type="button" id="compare-file-b-browse">Choose File B</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="compare-git-section" class="hidden">
|
||||||
|
<div class="export-section">
|
||||||
|
<label>Current file:</label>
|
||||||
|
<code id="compare-git-file"></code>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="compare-status-message" class="info-message hidden" aria-live="polite"></div>
|
||||||
|
<div id="compare-result" class="diff-view hidden"></div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button id="document-compare-cancel" class="btn btn-secondary" data-close>Close</button>
|
||||||
|
<button id="document-compare-run" class="btn btn-primary">Compare</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.body.appendChild(modalEl);
|
||||||
|
|
||||||
|
els = {
|
||||||
|
modeSelect: modalEl.querySelector('#compare-mode-select'),
|
||||||
|
gitHint: modalEl.querySelector('#compare-git-hint'),
|
||||||
|
localSection: modalEl.querySelector('#compare-local-section'),
|
||||||
|
fileAInput: modalEl.querySelector('#compare-file-a-input'),
|
||||||
|
fileABrowse: modalEl.querySelector('#compare-file-a-browse'),
|
||||||
|
fileBInput: modalEl.querySelector('#compare-file-b-input'),
|
||||||
|
fileBBrowse: modalEl.querySelector('#compare-file-b-browse'),
|
||||||
|
gitSection: modalEl.querySelector('#compare-git-section'),
|
||||||
|
gitFile: modalEl.querySelector('#compare-git-file'),
|
||||||
|
status: modalEl.querySelector('#compare-status-message'),
|
||||||
|
result: modalEl.querySelector('#compare-result'),
|
||||||
|
runBtn: modalEl.querySelector('#document-compare-run'),
|
||||||
|
cancelBtn: modalEl.querySelector('#document-compare-cancel'),
|
||||||
|
};
|
||||||
|
|
||||||
|
els.modeSelect.addEventListener('change', updateModeSections);
|
||||||
|
els.fileABrowse.addEventListener('click', () => chooseFile(els.fileAInput));
|
||||||
|
els.fileBBrowse.addEventListener('click', () => chooseFile(els.fileBInput));
|
||||||
|
els.runBtn.addEventListener('click', handleCompare);
|
||||||
|
els.cancelBtn.addEventListener('click', hideDialog);
|
||||||
|
|
||||||
|
modalManager = new window.ModalManager(modalEl);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ensureDialog() {
|
||||||
|
if (!modalEl) {
|
||||||
|
buildDialogDom();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Same renderer-side picker the Media Operations and PDF Editor dialogs use.
|
||||||
|
function chooseFile(input) {
|
||||||
|
const fileInput = document.createElement('input');
|
||||||
|
fileInput.type = 'file';
|
||||||
|
fileInput.accept = COMPARE_ACCEPT;
|
||||||
|
fileInput.onchange = (e) => {
|
||||||
|
const file = e.target.files[0];
|
||||||
|
if (file) {
|
||||||
|
input.value = getFilePath(file);
|
||||||
|
clearResult();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
fileInput.click();
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearStatus() {
|
||||||
|
if (!els.status) return;
|
||||||
|
els.status.textContent = '';
|
||||||
|
els.status.classList.remove('info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
function showStatus(message, type = 'info') {
|
||||||
|
if (!els.status) return;
|
||||||
|
els.status.textContent = message;
|
||||||
|
els.status.classList.remove('hidden', 'info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add(`${type}-message`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearResult() {
|
||||||
|
if (!els.result) return;
|
||||||
|
els.result.innerHTML = '';
|
||||||
|
els.result.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateModeSections() {
|
||||||
|
const isGit = els.modeSelect.value === 'git';
|
||||||
|
els.localSection.classList.toggle('hidden', isGit);
|
||||||
|
els.gitSection.classList.toggle('hidden', !isGit);
|
||||||
|
clearStatus();
|
||||||
|
clearResult();
|
||||||
|
}
|
||||||
|
|
||||||
|
function appendDiffRow(className, text, marker) {
|
||||||
|
const row = document.createElement('div');
|
||||||
|
row.className = `diff-row ${className}`;
|
||||||
|
const markerSpan = document.createElement('span');
|
||||||
|
markerSpan.className = 'diff-marker';
|
||||||
|
markerSpan.textContent = marker;
|
||||||
|
const textSpan = document.createElement('span');
|
||||||
|
textSpan.className = 'diff-text';
|
||||||
|
// Non-breaking space keeps empty lines one row tall under pre-wrap.
|
||||||
|
textSpan.textContent = text === '' ? ' ' : text;
|
||||||
|
row.appendChild(markerSpan);
|
||||||
|
row.appendChild(textSpan);
|
||||||
|
els.result.appendChild(row);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mode 1: local two-file diff through the pure LCS line-diff function.
|
||||||
|
function renderLocalDiff(entries) {
|
||||||
|
clearResult();
|
||||||
|
entries.forEach((entry) => {
|
||||||
|
const marker = entry.type === 'added' ? '+' : entry.type === 'removed' ? '-' : '';
|
||||||
|
const rowClass = entry.type === 'unchanged' ? 'diff-context' : `diff-${entry.type}`;
|
||||||
|
appendDiffRow(rowClass, entry.text, marker);
|
||||||
|
});
|
||||||
|
els.result.classList.remove('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mode 2: git's own diff text, rendered verbatim (one row per line), colored by
|
||||||
|
// leading character. This is presentation only — the text is never re-diffed.
|
||||||
|
function renderGitDiff(rawDiff) {
|
||||||
|
clearResult();
|
||||||
|
rawDiff.split('\n').forEach((line) => {
|
||||||
|
const match = GIT_DIFF_ROW_CLASS.find(({ prefix }) => line.startsWith(prefix));
|
||||||
|
const className = match ? match.className : 'diff-context';
|
||||||
|
appendDiffRow(className, line, '');
|
||||||
|
});
|
||||||
|
els.result.classList.remove('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
async function compareLocalFiles() {
|
||||||
|
const pathA = els.fileAInput.value.trim();
|
||||||
|
const pathB = els.fileBInput.value.trim();
|
||||||
|
if (!pathA || !pathB) {
|
||||||
|
showStatus('Choose both files to compare.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
clearResult();
|
||||||
|
let contentA;
|
||||||
|
let contentB;
|
||||||
|
try {
|
||||||
|
contentA = await ipcRenderer.invoke('read-file', pathA);
|
||||||
|
contentB = await ipcRenderer.invoke('read-file', pathB);
|
||||||
|
} catch (err) {
|
||||||
|
showStatus(`Error reading file: ${err.message}`, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const entries = computeLineDiff(contentA, contentB);
|
||||||
|
const added = entries.filter((entry) => entry.type === 'added').length;
|
||||||
|
const removed = entries.filter((entry) => entry.type === 'removed').length;
|
||||||
|
if (added === 0 && removed === 0) {
|
||||||
|
showStatus('Files are identical.', 'info');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
renderLocalDiff(entries);
|
||||||
|
showStatus(`${added} line(s) added, ${removed} line(s) removed.`, 'success');
|
||||||
|
}
|
||||||
|
|
||||||
|
async function compareWithGitHead() {
|
||||||
|
if (!currentFilePath) {
|
||||||
|
showStatus('No file is open — save the current document first.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
clearResult();
|
||||||
|
let rawDiff;
|
||||||
|
try {
|
||||||
|
rawDiff = await ipcRenderer.invoke('git-diff', { file: currentFilePath, againstHead: true });
|
||||||
|
} catch (err) {
|
||||||
|
showStatus(`Error: ${err.message}`, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (rawDiff && typeof rawDiff === 'object' && rawDiff.error) {
|
||||||
|
showStatus(`Git diff unavailable: ${rawDiff.error}`, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!rawDiff || rawDiff.trim() === '') {
|
||||||
|
showStatus('No differences against HEAD.', 'info');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
renderGitDiff(rawDiff);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleCompare() {
|
||||||
|
if (els.modeSelect.value === 'git') {
|
||||||
|
await compareWithGitHead();
|
||||||
|
} else {
|
||||||
|
await compareLocalFiles();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// The Git HEAD option must degrade gracefully (disabled + hint), never error:
|
||||||
|
// no file open, or the file's directory is not a git repository.
|
||||||
|
async function refreshGitModeAvailability() {
|
||||||
|
const gitOption = els.modeSelect.querySelector('option[value="git"]');
|
||||||
|
if (!gitOption) return;
|
||||||
|
|
||||||
|
const disableGitOption = (hint) => {
|
||||||
|
gitOption.disabled = true;
|
||||||
|
els.gitHint.textContent = hint;
|
||||||
|
els.gitHint.classList.remove('hidden');
|
||||||
|
if (els.modeSelect.value === 'git') {
|
||||||
|
els.modeSelect.value = 'local';
|
||||||
|
updateModeSections();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!currentFilePath) {
|
||||||
|
disableGitOption('Open (or save) a file to compare it with its git history.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const status = await ipcRenderer.invoke('git-status');
|
||||||
|
if (status && typeof status === 'object' && status.error) {
|
||||||
|
disableGitOption('Current file is not inside a git repository.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
disableGitOption(`Git check failed: ${err.message}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
gitOption.disabled = false;
|
||||||
|
els.gitHint.textContent = '';
|
||||||
|
els.gitHint.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideDialog() {
|
||||||
|
if (modalManager) modalManager.close();
|
||||||
|
clearStatus();
|
||||||
|
clearResult();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Open the Document Compare dialog.
|
||||||
|
* @param {object} [context] - Current editor context from renderer.js.
|
||||||
|
* @param {string|null} [context.filePath] - Active tab's file path, used to
|
||||||
|
* prefill File A and to resolve the Git HEAD mode.
|
||||||
|
*/
|
||||||
|
function showDocumentCompareDialog({ filePath = null } = {}) {
|
||||||
|
ensureDialog();
|
||||||
|
currentFilePath = filePath;
|
||||||
|
|
||||||
|
els.fileAInput.value = filePath || '';
|
||||||
|
els.fileBInput.value = '';
|
||||||
|
els.gitFile.textContent = filePath || '(unsaved document)';
|
||||||
|
els.modeSelect.value = 'local';
|
||||||
|
updateModeSections();
|
||||||
|
refreshGitModeAvailability();
|
||||||
|
modalManager.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { showDocumentCompareDialog };
|
||||||
@@ -0,0 +1,524 @@
|
|||||||
|
/**
|
||||||
|
* Export Presets UI
|
||||||
|
*
|
||||||
|
* Preset dropdown + "Save as preset" for the export-options dialog
|
||||||
|
* (#export-dialog in src/index.html). Replaces the earlier localStorage-only
|
||||||
|
* "export profiles": presets are now owned by the main process and persisted
|
||||||
|
* in settings.json (`exportPresets` key) through three invoke channels —
|
||||||
|
* get-export-presets / save-export-preset / delete-export-preset — so they
|
||||||
|
* behave like every other app setting instead of living and dying with the
|
||||||
|
* renderer's localStorage.
|
||||||
|
*
|
||||||
|
* Construction mirrors src/renderer/document-compare-dialog.js: a dialog
|
||||||
|
* module in src/renderer/ using the raw `ipcRenderer` invoke surface
|
||||||
|
* (nodeIntegration is enabled for this renderer). DOM is hand-rolled — a
|
||||||
|
* button + row list instead of a native <select> so each preset row can carry
|
||||||
|
* its own delete icon.
|
||||||
|
*
|
||||||
|
* The dialog markup lives in src/index.html; renderer.js calls
|
||||||
|
* initExportPresets() once at startup and refreshExportPresets() whenever the
|
||||||
|
* export dialog opens.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const { ipcRenderer } = require('electron');
|
||||||
|
|
||||||
|
// localStorage key of the pre-4.x renderer-only "export profiles" that the
|
||||||
|
// preset system replaced; consumed once by importLegacyProfiles().
|
||||||
|
const LEGACY_PROFILES_KEY = 'exportProfiles';
|
||||||
|
|
||||||
|
let currentPresets = [];
|
||||||
|
let selectedPresetId = null;
|
||||||
|
let notify = (message, type) => console.warn(`Export presets (${type}): ${message}`);
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// DOM helpers (all element access is guarded —
|
||||||
|
// this module may outlive a dialog re-render)
|
||||||
|
// ============================================
|
||||||
|
|
||||||
|
function elementById(id) {
|
||||||
|
return document.getElementById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function valueOf(id) {
|
||||||
|
const el = elementById(id);
|
||||||
|
return el ? el.value : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function setValue(id, value) {
|
||||||
|
const el = elementById(id);
|
||||||
|
if (el) el.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
function isChecked(id) {
|
||||||
|
const el = elementById(id);
|
||||||
|
return !!(el && el.checked);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setChecked(id, checked) {
|
||||||
|
const el = elementById(id);
|
||||||
|
if (el) el.checked = checked;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setVisible(id, visible) {
|
||||||
|
const el = elementById(id);
|
||||||
|
if (el) el.style.display = visible ? 'block' : 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getDialogFormat() {
|
||||||
|
const dialogEl = elementById('export-dialog');
|
||||||
|
return dialogEl ? dialogEl.getAttribute('data-format') : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// Capture / restore of the dialog's option values
|
||||||
|
// ============================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Snapshot every option field of the export dialog into a plain object.
|
||||||
|
* Side-effect free (unlike collectExportOptions in renderer.js, which also
|
||||||
|
* pushes page settings to the main process) — the snapshot is stored as the
|
||||||
|
* preset's `options` and replayed by applyPresetToDialog().
|
||||||
|
* @returns {Object} options snapshot
|
||||||
|
*/
|
||||||
|
function captureDialogOptions() {
|
||||||
|
const format = getDialogFormat();
|
||||||
|
const advancedMode = isChecked('advanced-export-toggle');
|
||||||
|
const options = {
|
||||||
|
advancedMode,
|
||||||
|
pageSize: valueOf('page-size'),
|
||||||
|
pageOrientation: valueOf('page-orientation'),
|
||||||
|
customWidth: valueOf('custom-width').trim() || null,
|
||||||
|
customHeight: valueOf('custom-height').trim() || null,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!advancedMode) {
|
||||||
|
options.toc = isChecked('basic-toc');
|
||||||
|
options.numberSections = isChecked('basic-number-sections');
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
const template = valueOf('export-template');
|
||||||
|
options.template = template === 'custom' ? valueOf('custom-template-path').trim() : template;
|
||||||
|
|
||||||
|
options.metadata = {};
|
||||||
|
document.querySelectorAll('.metadata-field').forEach((field) => {
|
||||||
|
const key = field.querySelector('.metadata-key').value.trim();
|
||||||
|
const value = field.querySelector('.metadata-value').value.trim();
|
||||||
|
if (key && value) options.metadata[key] = value;
|
||||||
|
});
|
||||||
|
options.toc = isChecked('export-toc');
|
||||||
|
options.tocDepth = valueOf('export-toc-depth') || '3';
|
||||||
|
options.numberSections = isChecked('export-number-sections');
|
||||||
|
options.citeproc = isChecked('export-citeproc');
|
||||||
|
|
||||||
|
if (format === 'pdf') {
|
||||||
|
options.pdfEngine = valueOf('pdf-engine');
|
||||||
|
const geometrySelect = valueOf('pdf-geometry');
|
||||||
|
options.geometry =
|
||||||
|
geometrySelect === 'custom'
|
||||||
|
? valueOf('custom-geometry').trim() || 'margin=1in'
|
||||||
|
: geometrySelect;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (format === 'revealjs') {
|
||||||
|
options.revealTheme = valueOf('reveal-theme');
|
||||||
|
options.revealTransition = valueOf('reveal-transition');
|
||||||
|
options.revealTransitionSpeed = valueOf('reveal-speed');
|
||||||
|
options.revealSlideNumber = isChecked('reveal-slide-number');
|
||||||
|
options.revealControls = isChecked('reveal-controls');
|
||||||
|
options.revealProgress = isChecked('reveal-progress');
|
||||||
|
options.revealHistory = isChecked('reveal-history');
|
||||||
|
options.revealCenter = isChecked('reveal-center');
|
||||||
|
}
|
||||||
|
|
||||||
|
const bibliography = valueOf('bibliography-file').trim();
|
||||||
|
const csl = valueOf('csl-file').trim();
|
||||||
|
if (bibliography) options.bibliography = bibliography;
|
||||||
|
if (csl) options.csl = csl;
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Restore a preset's option snapshot onto the dialog. Every field is written
|
||||||
|
* explicitly (preset value or the dialog default), so switching from a rich
|
||||||
|
* preset to a plain one clears whatever the rich one had set.
|
||||||
|
* @param {{options?: Object}} preset preset to apply
|
||||||
|
*/
|
||||||
|
function applyPresetToDialog(preset) {
|
||||||
|
const options = (preset && preset.options) || {};
|
||||||
|
const advancedMode = options.advancedMode === true;
|
||||||
|
|
||||||
|
setChecked('advanced-export-toggle', advancedMode);
|
||||||
|
const advancedSection = elementById('advanced-export-options');
|
||||||
|
if (advancedSection) advancedSection.classList.toggle('hidden', !advancedMode);
|
||||||
|
|
||||||
|
// Page setup (applies to both modes)
|
||||||
|
setValue('page-size', options.pageSize || 'a4');
|
||||||
|
setValue('page-orientation', options.pageOrientation || 'portrait');
|
||||||
|
setValue('custom-width', options.customWidth || '');
|
||||||
|
setValue('custom-height', options.customHeight || '');
|
||||||
|
setVisible('custom-page-size', valueOf('page-size') === 'custom');
|
||||||
|
|
||||||
|
setChecked('basic-toc', !advancedMode && options.toc === true);
|
||||||
|
setChecked('basic-number-sections', !advancedMode && options.numberSections === true);
|
||||||
|
|
||||||
|
// In basic mode the advanced-only fields are reset to their defaults so no
|
||||||
|
// stale values from a previously applied rich preset survive the switch.
|
||||||
|
const advancedOptions = advancedMode ? options : {};
|
||||||
|
|
||||||
|
// Template: anything other than the literal default is a custom path
|
||||||
|
const template =
|
||||||
|
advancedOptions.template && advancedOptions.template !== 'default'
|
||||||
|
? advancedOptions.template
|
||||||
|
: null;
|
||||||
|
if (template) {
|
||||||
|
setValue('export-template', 'custom');
|
||||||
|
setValue('custom-template-path', template);
|
||||||
|
setVisible('custom-template-path', true);
|
||||||
|
setVisible('template-file-input', true);
|
||||||
|
} else {
|
||||||
|
setValue('export-template', 'default');
|
||||||
|
setValue('custom-template-path', '');
|
||||||
|
setVisible('custom-template-path', false);
|
||||||
|
setVisible('template-file-input', false);
|
||||||
|
}
|
||||||
|
|
||||||
|
rebuildMetadataRows(advancedOptions.metadata || {});
|
||||||
|
|
||||||
|
setChecked('export-toc', advancedOptions.toc === true);
|
||||||
|
setValue('export-toc-depth', advancedOptions.tocDepth || '3');
|
||||||
|
setChecked('export-number-sections', advancedOptions.numberSections === true);
|
||||||
|
setChecked('export-citeproc', advancedOptions.citeproc === true);
|
||||||
|
|
||||||
|
// PDF options
|
||||||
|
setValue('pdf-engine', advancedOptions.pdfEngine || 'xelatex');
|
||||||
|
const geometry = advancedOptions.geometry || 'margin=1in';
|
||||||
|
const geometrySelect = elementById('pdf-geometry');
|
||||||
|
const hasGeometryOption =
|
||||||
|
geometrySelect && Array.from(geometrySelect.options).some((opt) => opt.value === geometry);
|
||||||
|
if (hasGeometryOption) {
|
||||||
|
setValue('pdf-geometry', geometry);
|
||||||
|
setValue('custom-geometry', '');
|
||||||
|
setVisible('custom-geometry', false);
|
||||||
|
} else {
|
||||||
|
setValue('pdf-geometry', 'custom');
|
||||||
|
setValue('custom-geometry', geometry);
|
||||||
|
setVisible('custom-geometry', true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reveal.js options
|
||||||
|
setValue('reveal-theme', advancedOptions.revealTheme || 'black');
|
||||||
|
setValue('reveal-transition', advancedOptions.revealTransition || 'slide');
|
||||||
|
setValue('reveal-speed', advancedOptions.revealTransitionSpeed || 'default');
|
||||||
|
setChecked('reveal-slide-number', advancedOptions.revealSlideNumber === true);
|
||||||
|
setChecked('reveal-controls', advancedOptions.revealControls !== false);
|
||||||
|
setChecked('reveal-progress', advancedOptions.revealProgress !== false);
|
||||||
|
setChecked('reveal-history', advancedOptions.revealHistory !== false);
|
||||||
|
setChecked('reveal-center', advancedOptions.revealCenter !== false);
|
||||||
|
|
||||||
|
setValue('bibliography-file', advancedOptions.bibliography || '');
|
||||||
|
setValue('csl-file', advancedOptions.csl || '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function rebuildMetadataRows(metadata) {
|
||||||
|
const container = document.querySelector('.metadata-container');
|
||||||
|
if (!container) return;
|
||||||
|
const entries = Object.keys(metadata).map((key) => [key, metadata[key]]);
|
||||||
|
if (entries.length === 0) {
|
||||||
|
['title', 'author', 'date', 'subject'].forEach((key) => entries.push([key, '']));
|
||||||
|
}
|
||||||
|
container.innerHTML = '';
|
||||||
|
entries.forEach(([key, value]) => {
|
||||||
|
const field = document.createElement('div');
|
||||||
|
field.className = 'metadata-field';
|
||||||
|
const keyInput = document.createElement('input');
|
||||||
|
keyInput.type = 'text';
|
||||||
|
keyInput.className = 'metadata-key';
|
||||||
|
keyInput.value = key;
|
||||||
|
const valueInput = document.createElement('input');
|
||||||
|
valueInput.type = 'text';
|
||||||
|
valueInput.className = 'metadata-value';
|
||||||
|
valueInput.value = value;
|
||||||
|
field.append(keyInput, valueInput);
|
||||||
|
container.appendChild(field);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// Preset dropdown rendering + interaction
|
||||||
|
// ============================================
|
||||||
|
|
||||||
|
function createPresetRow(preset) {
|
||||||
|
const selected = preset.id === selectedPresetId;
|
||||||
|
const row = document.createElement('div');
|
||||||
|
row.className = selected ? 'preset-row selected' : 'preset-row';
|
||||||
|
row.dataset.id = preset.id;
|
||||||
|
row.setAttribute('role', 'option');
|
||||||
|
row.setAttribute('aria-selected', selected ? 'true' : 'false');
|
||||||
|
|
||||||
|
const selectButton = document.createElement('button');
|
||||||
|
selectButton.type = 'button';
|
||||||
|
selectButton.className = 'preset-row-select';
|
||||||
|
selectButton.textContent = preset.name;
|
||||||
|
row.appendChild(selectButton);
|
||||||
|
|
||||||
|
if (preset.format) {
|
||||||
|
const badge = document.createElement('span');
|
||||||
|
badge.className = 'preset-format';
|
||||||
|
badge.textContent = preset.format;
|
||||||
|
row.appendChild(badge);
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteButton = document.createElement('button');
|
||||||
|
deleteButton.type = 'button';
|
||||||
|
deleteButton.className = 'preset-delete';
|
||||||
|
deleteButton.textContent = '×';
|
||||||
|
deleteButton.title = `Delete preset ${preset.name}`;
|
||||||
|
deleteButton.setAttribute('aria-label', `Delete preset ${preset.name}`);
|
||||||
|
row.appendChild(deleteButton);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPresets() {
|
||||||
|
const list = elementById('preset-dropdown-list');
|
||||||
|
const toggle = elementById('preset-dropdown-toggle');
|
||||||
|
if (!list || !toggle) return;
|
||||||
|
|
||||||
|
list.innerHTML = '';
|
||||||
|
if (currentPresets.length === 0) {
|
||||||
|
const empty = document.createElement('div');
|
||||||
|
empty.className = 'preset-empty';
|
||||||
|
empty.textContent = 'No saved presets';
|
||||||
|
list.appendChild(empty);
|
||||||
|
} else {
|
||||||
|
currentPresets.forEach((preset) => list.appendChild(createPresetRow(preset)));
|
||||||
|
}
|
||||||
|
|
||||||
|
const selected = currentPresets.find((preset) => preset.id === selectedPresetId);
|
||||||
|
toggle.textContent = selected ? selected.name : 'Custom Settings';
|
||||||
|
closeDropdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleDropdown() {
|
||||||
|
const list = elementById('preset-dropdown-list');
|
||||||
|
if (!list) return;
|
||||||
|
const opened = !list.classList.contains('hidden');
|
||||||
|
list.classList.toggle('hidden');
|
||||||
|
const toggle = elementById('preset-dropdown-toggle');
|
||||||
|
if (toggle) toggle.setAttribute('aria-expanded', String(!opened));
|
||||||
|
}
|
||||||
|
|
||||||
|
function closeDropdown() {
|
||||||
|
const list = elementById('preset-dropdown-list');
|
||||||
|
if (list) list.classList.add('hidden');
|
||||||
|
const toggle = elementById('preset-dropdown-toggle');
|
||||||
|
if (toggle) toggle.setAttribute('aria-expanded', 'false');
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleListClick(event) {
|
||||||
|
const deleteButton = event.target.closest('.preset-delete');
|
||||||
|
const row = event.target.closest('.preset-row');
|
||||||
|
if (deleteButton && row) {
|
||||||
|
deleteExportPreset(row.dataset.id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (row) selectPreset(row.dataset.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectPreset(presetId) {
|
||||||
|
const preset = currentPresets.find((candidate) => candidate.id === presetId);
|
||||||
|
if (!preset) return;
|
||||||
|
selectedPresetId = presetId;
|
||||||
|
applyPresetToDialog(preset);
|
||||||
|
renderPresets();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// IPC-backed preset operations
|
||||||
|
// ============================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch presets from the main process and re-render the dropdown.
|
||||||
|
* Called whenever the export dialog opens.
|
||||||
|
*/
|
||||||
|
async function refreshExportPresets() {
|
||||||
|
try {
|
||||||
|
const presets = await ipcRenderer.invoke('get-export-presets');
|
||||||
|
currentPresets = Array.isArray(presets) ? presets : [];
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to load export presets:', error);
|
||||||
|
currentPresets = [];
|
||||||
|
}
|
||||||
|
if (!currentPresets.some((preset) => preset.id === selectedPresetId)) {
|
||||||
|
selectedPresetId = null;
|
||||||
|
}
|
||||||
|
renderPresets();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function saveCurrentAsPreset() {
|
||||||
|
const selected = currentPresets.find((preset) => preset.id === selectedPresetId);
|
||||||
|
const defaultName = selected ? selected.name : 'My Preset';
|
||||||
|
const answer = window.prompt('Enter a name for this export preset:', defaultName);
|
||||||
|
if (answer === null) return; // user cancelled the prompt
|
||||||
|
const name = answer.trim();
|
||||||
|
if (!name) {
|
||||||
|
notify('Preset name cannot be empty.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// A selected preset is overwritten (same id); otherwise a new id is minted.
|
||||||
|
// The main process re-validates and remains the source of truth.
|
||||||
|
const preset = {
|
||||||
|
id: selected ? selected.id : createPresetId(),
|
||||||
|
name,
|
||||||
|
format: getDialogFormat(),
|
||||||
|
options: captureDialogOptions(),
|
||||||
|
};
|
||||||
|
try {
|
||||||
|
const presets = await ipcRenderer.invoke('save-export-preset', preset);
|
||||||
|
currentPresets = Array.isArray(presets) ? presets : currentPresets;
|
||||||
|
// Normally the saved preset keeps the id we sent; fall back to the last
|
||||||
|
// entry with the same name should the main process have normalized it.
|
||||||
|
selectedPresetId = preset.id;
|
||||||
|
if (!currentPresets.some((candidate) => candidate.id === selectedPresetId)) {
|
||||||
|
const byName = currentPresets.filter((candidate) => candidate.name === name).pop();
|
||||||
|
selectedPresetId = byName ? byName.id : null;
|
||||||
|
}
|
||||||
|
renderPresets();
|
||||||
|
notify(`Preset "${name}" saved.`, 'success');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to save export preset:', error);
|
||||||
|
notify('Failed to save preset. Please try again.', 'warning');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function deleteExportPreset(presetId) {
|
||||||
|
const preset = currentPresets.find((candidate) => candidate.id === presetId);
|
||||||
|
const label = preset ? preset.name : 'this preset';
|
||||||
|
if (!window.confirm(`Are you sure you want to delete the preset "${label}"?`)) return;
|
||||||
|
try {
|
||||||
|
const presets = await ipcRenderer.invoke('delete-export-preset', presetId);
|
||||||
|
currentPresets = Array.isArray(presets) ? presets : currentPresets;
|
||||||
|
if (selectedPresetId === presetId) selectedPresetId = null;
|
||||||
|
renderPresets();
|
||||||
|
notify(`Preset "${label}" deleted.`, 'success');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to delete export preset:', error);
|
||||||
|
notify('Failed to delete preset. Please try again.', 'warning');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function createPresetId() {
|
||||||
|
return `preset-${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 8)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// One-time import of legacy localStorage profiles
|
||||||
|
// ============================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map one legacy export profile onto the preset options shape captured by
|
||||||
|
* captureDialogOptions(). Legacy shape (saveCurrentProfile at git 52ef5b4):
|
||||||
|
* { format, advancedMode, pageSize, pageOrientation, basicToc,
|
||||||
|
* basicNumberSections } plus, in advanced mode, { template, toc, tocDepth,
|
||||||
|
* numberSections, citeproc, pdfEngine, pdfGeometry } — all raw select/input
|
||||||
|
* values. Two fidelity limits of the legacy format itself: the custom
|
||||||
|
* template PATH and the custom geometry TEXT were never persisted (only the
|
||||||
|
* literal select value 'custom'), so those map back to the dialog defaults.
|
||||||
|
* @param {Object} profile legacy profile value
|
||||||
|
* @returns {Object} preset options snapshot
|
||||||
|
*/
|
||||||
|
function mapLegacyProfileOptions(profile) {
|
||||||
|
const advancedMode = profile.advancedMode === true;
|
||||||
|
const options = {
|
||||||
|
advancedMode,
|
||||||
|
pageSize: typeof profile.pageSize === 'string' ? profile.pageSize : 'a4',
|
||||||
|
pageOrientation:
|
||||||
|
typeof profile.pageOrientation === 'string' ? profile.pageOrientation : 'portrait',
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!advancedMode) {
|
||||||
|
// Basic mode maps like collectExportOptions: basicToc -> toc,
|
||||||
|
// basicNumberSections -> numberSections.
|
||||||
|
options.toc = profile.basicToc === true;
|
||||||
|
options.numberSections = profile.basicNumberSections === true;
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
options.template = 'default';
|
||||||
|
options.metadata = {};
|
||||||
|
options.toc = profile.toc === true;
|
||||||
|
options.tocDepth =
|
||||||
|
typeof profile.tocDepth === 'string' && profile.tocDepth ? profile.tocDepth : '3';
|
||||||
|
options.numberSections = profile.numberSections === true;
|
||||||
|
options.citeproc = profile.citeproc === true;
|
||||||
|
options.pdfEngine = typeof profile.pdfEngine === 'string' ? profile.pdfEngine : 'xelatex';
|
||||||
|
options.geometry =
|
||||||
|
typeof profile.pdfGeometry === 'string' && profile.pdfGeometry !== 'custom'
|
||||||
|
? profile.pdfGeometry
|
||||||
|
: 'margin=1in';
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Import the legacy localStorage export profiles into the main-process preset
|
||||||
|
* store via save-export-preset, then remove the legacy key so the import runs
|
||||||
|
* only once. Ids are deterministic (`preset-legacy-<name>`), so an import
|
||||||
|
* interrupted midway retries as an upsert on the next launch instead of
|
||||||
|
* duplicating presets. Malformed or unexpected data degrades to "skip import"
|
||||||
|
* — it must never break dialog init.
|
||||||
|
* @returns {Promise<boolean>} true when at least one preset was imported
|
||||||
|
*/
|
||||||
|
async function importLegacyProfiles() {
|
||||||
|
try {
|
||||||
|
const raw = localStorage.getItem(LEGACY_PROFILES_KEY);
|
||||||
|
if (!raw) return false;
|
||||||
|
const legacy = JSON.parse(raw);
|
||||||
|
if (!legacy || typeof legacy !== 'object' || Array.isArray(legacy)) return false;
|
||||||
|
|
||||||
|
let imported = false;
|
||||||
|
for (const name of Object.keys(legacy)) {
|
||||||
|
const profile = legacy[name];
|
||||||
|
if (!name.trim() || !profile || typeof profile !== 'object') continue;
|
||||||
|
await ipcRenderer.invoke('save-export-preset', {
|
||||||
|
id: `preset-legacy-${name}`,
|
||||||
|
name,
|
||||||
|
format: typeof profile.format === 'string' ? profile.format : null,
|
||||||
|
options: mapLegacyProfileOptions(profile),
|
||||||
|
});
|
||||||
|
imported = true;
|
||||||
|
}
|
||||||
|
localStorage.removeItem(LEGACY_PROFILES_KEY);
|
||||||
|
return imported;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Skipping legacy export profile import:', error);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wire the preset section of the export dialog. Call once after DOM ready.
|
||||||
|
* @param {{notify?: Function}} options hooks from renderer.js
|
||||||
|
*/
|
||||||
|
function initExportPresets(options = {}) {
|
||||||
|
if (typeof options.notify === 'function') notify = options.notify;
|
||||||
|
selectedPresetId = null;
|
||||||
|
const saveButton = elementById('save-preset-btn');
|
||||||
|
if (saveButton) saveButton.addEventListener('click', saveCurrentAsPreset);
|
||||||
|
const toggle = elementById('preset-dropdown-toggle');
|
||||||
|
if (toggle) toggle.addEventListener('click', toggleDropdown);
|
||||||
|
const list = elementById('preset-dropdown-list');
|
||||||
|
if (list) list.addEventListener('click', handleListClick);
|
||||||
|
|
||||||
|
// One-time legacy import; refresh afterwards so imported presets are
|
||||||
|
// visible even if the dialog is already open.
|
||||||
|
importLegacyProfiles().then((imported) => {
|
||||||
|
if (imported) refreshExportPresets();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
initExportPresets,
|
||||||
|
refreshExportPresets,
|
||||||
|
captureDialogOptions,
|
||||||
|
applyPresetToDialog,
|
||||||
|
};
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
import { useCallback, useRef } from 'react';
|
|
||||||
|
|
||||||
interface Options {
|
|
||||||
onEditorScroll?: (ratio: number) => void;
|
|
||||||
onPreviewScroll?: (ratio: number) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useScrollSync(opts: Options) {
|
|
||||||
const FRAME_MS = 1000 / 60;
|
|
||||||
const lastTick = useRef(-FRAME_MS);
|
|
||||||
|
|
||||||
const handleEditorScroll = useCallback((evt: React.UIEvent<HTMLElement>) => {
|
|
||||||
const target = evt.currentTarget;
|
|
||||||
const ratio = target.scrollTop / Math.max(target.scrollHeight - target.clientHeight, 1);
|
|
||||||
const now = performance.now();
|
|
||||||
if (now - lastTick.current < FRAME_MS) return;
|
|
||||||
lastTick.current = now;
|
|
||||||
opts.onEditorScroll?.(ratio);
|
|
||||||
}, [opts]);
|
|
||||||
|
|
||||||
const handlePreviewScroll = useCallback((evt: React.UIEvent<HTMLElement>) => {
|
|
||||||
const target = evt.currentTarget;
|
|
||||||
const ratio = target.scrollTop / Math.max(target.scrollHeight - target.clientHeight, 1);
|
|
||||||
opts.onPreviewScroll?.(ratio);
|
|
||||||
}, [opts]);
|
|
||||||
|
|
||||||
return { handleEditorScroll, handlePreviewScroll };
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self';">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>MarkdownConverter</title>
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
||||||
</head>
|
|
||||||
<body class="font-sans antialiased">
|
|
||||||
<div id="root"></div>
|
|
||||||
<script type="module" src="./main.tsx"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
import type {
|
|
||||||
IpcResult,
|
|
||||||
FileResult,
|
|
||||||
FileEntry,
|
|
||||||
PdfOptions,
|
|
||||||
DocxOptions,
|
|
||||||
HtmlOptions,
|
|
||||||
ExportResult,
|
|
||||||
BatchItem,
|
|
||||||
BatchOptions,
|
|
||||||
BatchResult,
|
|
||||||
} from '@/types/ipc';
|
|
||||||
|
|
||||||
type ChannelMissing = { code: 'CHANNEL_MISSING'; message: string };
|
|
||||||
|
|
||||||
function wrap<T>(fn: () => Promise<T>): Promise<IpcResult<T | ChannelMissing>> {
|
|
||||||
if (typeof window === 'undefined' || !window.electronAPI) {
|
|
||||||
return Promise.resolve({
|
|
||||||
ok: false,
|
|
||||||
error: { code: 'NO_BRIDGE', message: 'window.electronAPI is unavailable' },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return fn().then(
|
|
||||||
(data) => ({ ok: true as const, data }),
|
|
||||||
(err: Error) => ({
|
|
||||||
ok: false as const,
|
|
||||||
error: { code: err.name || 'IPC_ERROR', message: err.message || String(err) },
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function safeCall<T extends (...args: any[]) => Promise<any>>(
|
|
||||||
channel: string,
|
|
||||||
method: string,
|
|
||||||
...args: Parameters<T>
|
|
||||||
): Promise<IpcResult<Awaited<ReturnType<T>> | ChannelMissing>> {
|
|
||||||
if (typeof window === 'undefined' || !window.electronAPI) {
|
|
||||||
return Promise.resolve({
|
|
||||||
ok: false,
|
|
||||||
error: { code: 'NO_BRIDGE', message: 'window.electronAPI is unavailable' },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
const target = (window.electronAPI as any)[channel]?.[method];
|
|
||||||
if (!target) {
|
|
||||||
return Promise.resolve({
|
|
||||||
ok: false,
|
|
||||||
error: { code: 'CHANNEL_MISSING', message: `Missing channel: ${channel}.${method}` },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (typeof target !== 'function') {
|
|
||||||
return Promise.resolve({
|
|
||||||
ok: false,
|
|
||||||
error: { code: 'CHANNEL_MISSING', message: `Not a function: ${channel}.${method}` },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return wrap(() => target(...args));
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ipc = {
|
|
||||||
file: {
|
|
||||||
open: (): Promise<IpcResult<FileResult | ChannelMissing>> =>
|
|
||||||
safeCall('file', 'open'),
|
|
||||||
read: (path: string): Promise<IpcResult<string | ChannelMissing>> =>
|
|
||||||
safeCall('file', 'read', path),
|
|
||||||
write: (path: string, content: string): Promise<IpcResult<void | ChannelMissing>> =>
|
|
||||||
safeCall('file', 'write', path, content),
|
|
||||||
list: (dir: string): Promise<IpcResult<FileEntry[] | ChannelMissing>> =>
|
|
||||||
safeCall('file', 'list', dir),
|
|
||||||
onChange: (cb: (path: string) => void): (() => void) => {
|
|
||||||
if (typeof window === 'undefined' || !window.electronAPI?.file?.onChange) {
|
|
||||||
return () => {};
|
|
||||||
}
|
|
||||||
return window.electronAPI.file.onChange(cb);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
export: {
|
|
||||||
pdf: (opts: PdfOptions): Promise<IpcResult<ExportResult | ChannelMissing>> =>
|
|
||||||
safeCall('export', 'pdf', opts),
|
|
||||||
docx: (opts: DocxOptions): Promise<IpcResult<ExportResult | ChannelMissing>> =>
|
|
||||||
safeCall('export', 'docx', opts),
|
|
||||||
html: (opts: HtmlOptions): Promise<IpcResult<ExportResult | ChannelMissing>> =>
|
|
||||||
safeCall('export', 'html', opts),
|
|
||||||
batch: (items: BatchItem[], opts: BatchOptions): Promise<IpcResult<BatchResult | ChannelMissing>> =>
|
|
||||||
safeCall('export', 'batch', items, opts),
|
|
||||||
},
|
|
||||||
app: {
|
|
||||||
getVersion: (): Promise<IpcResult<string | ChannelMissing>> =>
|
|
||||||
safeCall('app', 'getVersion'),
|
|
||||||
openExternal: (url: string): Promise<IpcResult<void | ChannelMissing>> =>
|
|
||||||
safeCall('app', 'openExternal', url),
|
|
||||||
showItemInFolder: (path: string): Promise<IpcResult<void | ChannelMissing>> =>
|
|
||||||
safeCall('app', 'showItemInFolder', path),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
import { marked } from 'marked';
|
|
||||||
import DOMPurify from 'dompurify';
|
|
||||||
|
|
||||||
marked.setOptions({
|
|
||||||
gfm: true,
|
|
||||||
breaks: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const MERMAID_RE = /```mermaid\n([\s\S]*?)```/g;
|
|
||||||
|
|
||||||
export function renderMarkdown(source: string): string {
|
|
||||||
// Mark mermaid blocks with a placeholder we can replace client-side.
|
|
||||||
const placeholders: string[] = [];
|
|
||||||
const withPlaceholders = source.replace(MERMAID_RE, (_m, code) => {
|
|
||||||
const idx = placeholders.length;
|
|
||||||
placeholders.push(code.trim());
|
|
||||||
return `<div class="mermaid-block" data-mermaid-source="${idx}"></div>`;
|
|
||||||
});
|
|
||||||
|
|
||||||
const rawHtml = marked.parse(withPlaceholders, { async: false }) as string;
|
|
||||||
const clean = DOMPurify.sanitize(rawHtml, {
|
|
||||||
ALLOWED_ATTR: ['href', 'src', 'alt', 'title', 'class', 'data-mermaid-source', 'data-language', 'id'],
|
|
||||||
});
|
|
||||||
|
|
||||||
// The sanitized HTML still has placeholders; we leave the actual mermaid
|
|
||||||
// rendering to the React layer (MermaidLazy component) so the heavy
|
|
||||||
// mermaid library only loads when needed.
|
|
||||||
return clean;
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
import type { Transition, Variants } from 'motion/react';
|
|
||||||
|
|
||||||
export const fadeIn: Transition = {
|
|
||||||
duration: 0.2,
|
|
||||||
ease: 'easeOut',
|
|
||||||
};
|
|
||||||
|
|
||||||
export const slideInRight: Variants = {
|
|
||||||
x: '100%',
|
|
||||||
initial: { x: '100%', opacity: 0 },
|
|
||||||
animate: { x: 0, opacity: 1, transition: { duration: 0.3, ease: [0.16, 1, 0.3, 1] } },
|
|
||||||
exit: { x: '100%', opacity: 0, transition: { duration: 0.2, ease: 'easeIn' } },
|
|
||||||
};
|
|
||||||
|
|
||||||
export const modalPop: Variants = {
|
|
||||||
scale: 0.96,
|
|
||||||
opacity: 0,
|
|
||||||
initial: { scale: 0.96, opacity: 0 },
|
|
||||||
animate: { scale: 1, opacity: 1, transition: { duration: 0.2, ease: 'easeOut' } },
|
|
||||||
exit: { scale: 0.96, opacity: 0, transition: { duration: 0.15, ease: 'easeIn' } },
|
|
||||||
};
|
|
||||||
|
|
||||||
export const toastSpring: Transition = {
|
|
||||||
type: 'spring',
|
|
||||||
stiffness: 300,
|
|
||||||
damping: 30,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const sidebarToggle: Transition = {
|
|
||||||
duration: 0.25,
|
|
||||||
ease: 'easeInOut',
|
|
||||||
width: {
|
|
||||||
duration: 0.25,
|
|
||||||
ease: 'easeInOut',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export const tabSwitch: Transition = {
|
|
||||||
duration: 0.2,
|
|
||||||
ease: 'easeOut',
|
|
||||||
};
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { clsx, type ClassValue } from 'clsx';
|
|
||||||
import { twMerge } from 'tailwind-merge';
|
|
||||||
|
|
||||||
export function cn(...inputs: ClassValue[]): string {
|
|
||||||
return twMerge(clsx(inputs));
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import ReactDOM from 'react-dom/client';
|
|
||||||
import App from './App';
|
|
||||||
import { ThemeProvider } from './components/theme-provider';
|
|
||||||
import './styles/globals.css';
|
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
||||||
<React.StrictMode>
|
|
||||||
<ThemeProvider defaultTheme="dark" attribute="class" enableSystem>
|
|
||||||
<App />
|
|
||||||
</ThemeProvider>
|
|
||||||
</React.StrictMode>
|
|
||||||
);
|
|
||||||
@@ -0,0 +1,922 @@
|
|||||||
|
/**
|
||||||
|
* Media Operations Dialog
|
||||||
|
*
|
||||||
|
* Single dialog for image/audio/video operation-specific tasks (resize, compress,
|
||||||
|
* rotate, trim, extract, merge, frames, gif, ...). Mirrors the construction pattern
|
||||||
|
* used by the PDF Editor dialog in renderer.js (a modal built from `.modal` /
|
||||||
|
* `.modal-content` / `.modal-header` / `.modal-body` / `.modal-footer` markup, driven
|
||||||
|
* by ModalManager, with a readonly text input + "Browse" button for file/folder
|
||||||
|
* selection, and a status line reusing the `info-message` / `success-message` /
|
||||||
|
* `warning-message` classes) — except the operation-specific fields are generated
|
||||||
|
* dynamically instead of being hand-authored per-operation in index.html, since the
|
||||||
|
* three media kinds together cover 13 distinct operations.
|
||||||
|
*
|
||||||
|
* File selection reuses the app's existing convention: a plain `<input type="file">`
|
||||||
|
* whose chosen File is resolved to a path via `window.electronAPI.getFilePath`
|
||||||
|
* (webUtils.getPathForFile — `File.path` was removed in Electron 32), the same
|
||||||
|
* approach already used throughout the PDF Editor and Universal Converter
|
||||||
|
* dialogs. No new IPC channel is needed for single-file or save-file pickers. Output
|
||||||
|
* *folder* selection (used by the video "Extract Frames" operation, and by batch
|
||||||
|
* mode below) reuses the existing generic `select-folder` / `folder-selected` IPC
|
||||||
|
* channels already wired up in main.js for the batch converter — filtered here by a
|
||||||
|
* unique `type` string per picker so this dialog only reacts to requests it made.
|
||||||
|
*
|
||||||
|
* A "Mode: Single File / Batch Folder" dropdown (disabled for audio "Merge", which
|
||||||
|
* doesn't fit a per-file batch model) swaps the input/output file fields for an
|
||||||
|
* Input Folder + "Include subfolders" + Output Folder trio while keeping every other
|
||||||
|
* parameter field as-is; Process then fires `batch-image-operation` /
|
||||||
|
* `batch-audio-operation` / `batch-video-operation` (fire-and-forget, like
|
||||||
|
* `universal-convert-batch`) and progress/completion arrive via the
|
||||||
|
* `media-batch-progress` / `media-batch-complete` events sent by
|
||||||
|
* `runMediaBatchOperation()` in main.js.
|
||||||
|
*
|
||||||
|
* @module media-operations-dialog
|
||||||
|
*/
|
||||||
|
|
||||||
|
const { ipcRenderer } = require('electron');
|
||||||
|
const { getFilePath } = require('../utils/file-path');
|
||||||
|
|
||||||
|
const IMAGE_ACCEPT = '.jpg,.jpeg,.png,.webp,.avif,.tiff,.tif,.gif';
|
||||||
|
const AUDIO_ACCEPT = '.mp3,.wav,.ogg,.flac,.aac,.m4a,.wma';
|
||||||
|
const VIDEO_ACCEPT = '.mp4,.mov,.avi,.mkv,.webm,.flv,.wmv';
|
||||||
|
|
||||||
|
// Field names below are chosen to exactly match the `data` shape each backend
|
||||||
|
// operation destructures — see src/main/ImageOperations.js, AudioOperations.js,
|
||||||
|
// VideoOperations.js.
|
||||||
|
const MEDIA_KIND_CONFIG = {
|
||||||
|
image: {
|
||||||
|
title: 'Image Tools',
|
||||||
|
channel: 'process-image-operation',
|
||||||
|
batchChannel: 'batch-image-operation',
|
||||||
|
operations: {
|
||||||
|
convert: {
|
||||||
|
label: 'Convert Format',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Image', type: 'file', accept: IMAGE_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'format',
|
||||||
|
label: 'Output Format',
|
||||||
|
type: 'select',
|
||||||
|
options: ['jpeg', 'png', 'webp', 'avif', 'tiff', 'gif'],
|
||||||
|
default: 'png',
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
resize: {
|
||||||
|
label: 'Resize',
|
||||||
|
help: 'Provide at least one of Width or Height; the other scales proportionally.',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Image', type: 'file', accept: IMAGE_ACCEPT },
|
||||||
|
{ name: 'width', label: 'Width (px)', type: 'number', min: 1, optional: true },
|
||||||
|
{ name: 'height', label: 'Height (px)', type: 'number', min: 1, optional: true },
|
||||||
|
{
|
||||||
|
name: 'fit',
|
||||||
|
label: 'Fit Mode',
|
||||||
|
type: 'select',
|
||||||
|
options: ['cover', 'contain', 'fill', 'inside', 'outside'],
|
||||||
|
default: 'inside',
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
compress: {
|
||||||
|
label: 'Compress',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Image', type: 'file', accept: IMAGE_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'quality',
|
||||||
|
label: 'Quality (1-100)',
|
||||||
|
type: 'number',
|
||||||
|
min: 1,
|
||||||
|
max: 100,
|
||||||
|
default: 80,
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
rotate: {
|
||||||
|
label: 'Rotate',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Image', type: 'file', accept: IMAGE_ACCEPT },
|
||||||
|
{ name: 'angle', label: 'Angle (degrees)', type: 'number', default: 90, step: 1 },
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
audio: {
|
||||||
|
title: 'Audio Tools',
|
||||||
|
channel: 'process-audio-operation',
|
||||||
|
batchChannel: 'batch-audio-operation',
|
||||||
|
operations: {
|
||||||
|
convert: {
|
||||||
|
label: 'Convert Format',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Audio', type: 'file', accept: AUDIO_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'format',
|
||||||
|
label: 'Output Format',
|
||||||
|
type: 'select',
|
||||||
|
options: ['mp3', 'wav', 'ogg', 'flac', 'aac', 'm4a'],
|
||||||
|
default: 'mp3',
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
trim: {
|
||||||
|
label: 'Trim',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Audio', type: 'file', accept: AUDIO_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'startTime',
|
||||||
|
label: 'Start Time (seconds)',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
{ name: 'duration', label: 'Duration (seconds)', type: 'number', min: 0, default: 10 },
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
extract: {
|
||||||
|
label: 'Extract Audio Track',
|
||||||
|
help: 'Extracts the audio track from a video or audio file.',
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'inputPath',
|
||||||
|
label: 'Input File (video or audio)',
|
||||||
|
type: 'file',
|
||||||
|
accept: `${VIDEO_ACCEPT},${AUDIO_ACCEPT}`,
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
merge: {
|
||||||
|
label: 'Merge',
|
||||||
|
help: 'Select at least 2 audio files to merge, in order.',
|
||||||
|
// Merge combines several input files into a single output — it does not
|
||||||
|
// fit the "apply the same operation to every file in a folder" batch model
|
||||||
|
// (there is no single "one operation per file" mapping), so batch mode is
|
||||||
|
// unavailable for it. Enforced both here (hides the Batch option in the UI)
|
||||||
|
// and defensively in main.js's BATCH_OUTPUT_SPEC (no 'merge' entry).
|
||||||
|
batchable: false,
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'inputPaths',
|
||||||
|
label: 'Input Audio Files',
|
||||||
|
type: 'files',
|
||||||
|
accept: AUDIO_ACCEPT,
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
video: {
|
||||||
|
title: 'Video Tools',
|
||||||
|
channel: 'process-video-operation',
|
||||||
|
batchChannel: 'batch-video-operation',
|
||||||
|
operations: {
|
||||||
|
convert: {
|
||||||
|
label: 'Convert Format',
|
||||||
|
help: 'Output format is inferred from the output file extension (e.g. .mp4, .webm).',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Video', type: 'file', accept: VIDEO_ACCEPT },
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
compress: {
|
||||||
|
label: 'Compress',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Video', type: 'file', accept: VIDEO_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'crf',
|
||||||
|
label: 'CRF (0-51, lower = higher quality)',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
max: 51,
|
||||||
|
default: 28,
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
trim: {
|
||||||
|
label: 'Trim',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Video', type: 'file', accept: VIDEO_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'startTime',
|
||||||
|
label: 'Start Time (seconds)',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
{ name: 'duration', label: 'Duration (seconds)', type: 'number', min: 0, default: 10 },
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
frames: {
|
||||||
|
label: 'Extract Frames',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Video', type: 'file', accept: VIDEO_ACCEPT },
|
||||||
|
{
|
||||||
|
name: 'fps',
|
||||||
|
label: 'Frames per Second',
|
||||||
|
type: 'number',
|
||||||
|
min: 0.1,
|
||||||
|
step: 0.1,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
{ name: 'outputDir', label: 'Output Folder', type: 'folder' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
gif: {
|
||||||
|
label: 'Convert to GIF',
|
||||||
|
fields: [
|
||||||
|
{ name: 'inputPath', label: 'Input Video', type: 'file', accept: VIDEO_ACCEPT },
|
||||||
|
{ name: 'fps', label: 'Frames per Second', type: 'number', min: 1, default: 10 },
|
||||||
|
{
|
||||||
|
name: 'width',
|
||||||
|
label: 'Width (px, height auto-scales)',
|
||||||
|
type: 'number',
|
||||||
|
min: 1,
|
||||||
|
default: 480,
|
||||||
|
},
|
||||||
|
{ name: 'outputPath', label: 'Output File', type: 'save' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const FOLDER_PICK_TYPE = 'media-operations-output-dir';
|
||||||
|
const BATCH_INPUT_FOLDER_PICK_TYPE = 'media-operations-batch-input-dir';
|
||||||
|
const BATCH_OUTPUT_FOLDER_PICK_TYPE = 'media-operations-batch-output-dir';
|
||||||
|
|
||||||
|
const BATCH_INPUT_FIELD_NAME = 'batchInputFolder';
|
||||||
|
const BATCH_OUTPUT_FIELD_NAME = 'batchOutputFolder';
|
||||||
|
const BATCH_SUBFOLDERS_FIELD_NAME = 'batchIncludeSubfolders';
|
||||||
|
|
||||||
|
let modalEl = null;
|
||||||
|
let modalManager = null;
|
||||||
|
let els = null;
|
||||||
|
let currentKind = null;
|
||||||
|
let currentMode = 'single';
|
||||||
|
let mergeFilePaths = [];
|
||||||
|
|
||||||
|
function fieldElId(name) {
|
||||||
|
return `media-field-${name}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildDialogDom() {
|
||||||
|
modalEl = document.createElement('div');
|
||||||
|
modalEl.id = 'media-operations-dialog';
|
||||||
|
modalEl.className = 'modal hidden';
|
||||||
|
modalEl.setAttribute('role', 'dialog');
|
||||||
|
modalEl.setAttribute('aria-modal', 'true');
|
||||||
|
modalEl.setAttribute('aria-labelledby', 'media-operations-title');
|
||||||
|
modalEl.innerHTML = `
|
||||||
|
<div class="modal-backdrop" data-close></div>
|
||||||
|
<div class="modal-content large">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 id="media-operations-title">Media Tools</h3>
|
||||||
|
<button class="modal-close" id="media-operations-close" aria-label="Close">×</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="media-operation-select">Operation:</label>
|
||||||
|
<select id="media-operation-select"></select>
|
||||||
|
</div>
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="media-mode-select">Mode:</label>
|
||||||
|
<select id="media-mode-select">
|
||||||
|
<option value="single">Single File</option>
|
||||||
|
<option value="batch">Batch Folder (apply to every matching file)</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<small id="media-operation-help" class="hidden"></small>
|
||||||
|
<div id="media-operation-fields"></div>
|
||||||
|
<div id="media-status-message" class="info-message hidden" aria-live="polite"></div>
|
||||||
|
<div id="media-progress" class="batch-progress hidden">
|
||||||
|
<div class="progress-bar">
|
||||||
|
<div class="progress-fill" id="media-progress-fill"></div>
|
||||||
|
</div>
|
||||||
|
<div class="progress-text">
|
||||||
|
<span id="media-progress-text">Processing...</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button id="media-operations-cancel" class="btn btn-secondary" data-close>Cancel</button>
|
||||||
|
<button id="media-operations-process" class="btn btn-primary">Process</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.body.appendChild(modalEl);
|
||||||
|
|
||||||
|
els = {
|
||||||
|
title: modalEl.querySelector('#media-operations-title'),
|
||||||
|
operationSelect: modalEl.querySelector('#media-operation-select'),
|
||||||
|
modeSelect: modalEl.querySelector('#media-mode-select'),
|
||||||
|
help: modalEl.querySelector('#media-operation-help'),
|
||||||
|
fieldsContainer: modalEl.querySelector('#media-operation-fields'),
|
||||||
|
status: modalEl.querySelector('#media-status-message'),
|
||||||
|
progress: modalEl.querySelector('#media-progress'),
|
||||||
|
progressFill: modalEl.querySelector('#media-progress-fill'),
|
||||||
|
progressText: modalEl.querySelector('#media-progress-text'),
|
||||||
|
processBtn: modalEl.querySelector('#media-operations-process'),
|
||||||
|
cancelBtn: modalEl.querySelector('#media-operations-cancel'),
|
||||||
|
};
|
||||||
|
|
||||||
|
els.operationSelect.addEventListener('change', () => {
|
||||||
|
currentMode = 'single';
|
||||||
|
updateModeOptions();
|
||||||
|
renderFields();
|
||||||
|
});
|
||||||
|
els.modeSelect.addEventListener('change', () => {
|
||||||
|
currentMode = els.modeSelect.value;
|
||||||
|
renderFields();
|
||||||
|
});
|
||||||
|
els.processBtn.addEventListener('click', handleProcess);
|
||||||
|
els.cancelBtn.addEventListener('click', hideDialog);
|
||||||
|
|
||||||
|
modalManager = new window.ModalManager(modalEl);
|
||||||
|
|
||||||
|
// Generic output-folder picker reply (shared with the batch converter's
|
||||||
|
// input/output folder pickers) — filter by our own `type` so we only react
|
||||||
|
// to requests this dialog made.
|
||||||
|
ipcRenderer.on('folder-selected', (event, { type, path: folderPath }) => {
|
||||||
|
if (!folderPath) return;
|
||||||
|
let targetFieldName = null;
|
||||||
|
if (type === FOLDER_PICK_TYPE) targetFieldName = 'outputDir';
|
||||||
|
else if (type === BATCH_INPUT_FOLDER_PICK_TYPE) targetFieldName = BATCH_INPUT_FIELD_NAME;
|
||||||
|
else if (type === BATCH_OUTPUT_FOLDER_PICK_TYPE) targetFieldName = BATCH_OUTPUT_FIELD_NAME;
|
||||||
|
if (!targetFieldName) return;
|
||||||
|
const input = document.getElementById(fieldElId(targetFieldName));
|
||||||
|
if (input) input.value = folderPath;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Batch operation progress/completion (main.js: runMediaBatchOperation()).
|
||||||
|
ipcRenderer.on('media-batch-progress', (event, { completed, failed, total, currentFile }) => {
|
||||||
|
if (!els.progress || els.progress.classList.contains('hidden')) return;
|
||||||
|
const pct = total > 0 ? Math.round((completed / total) * 100) : 0;
|
||||||
|
els.progressFill.style.width = `${pct}%`;
|
||||||
|
els.progressText.textContent = currentFile
|
||||||
|
? `Processing ${completed + 1}/${total}: ${currentFile}${failed ? ` (${failed} failed so far)` : ''}`
|
||||||
|
: `Processed ${completed}/${total}${failed ? ` (${failed} failed)` : ''}`;
|
||||||
|
});
|
||||||
|
ipcRenderer.on('media-batch-complete', (event, { success, completed, failed, total, error }) => {
|
||||||
|
hideProgress();
|
||||||
|
if (success) {
|
||||||
|
showStatus(
|
||||||
|
`Batch complete: ${completed}/${total} file(s) processed${failed ? ` (${failed} failed)` : ''}.`,
|
||||||
|
failed > 0 ? 'warning' : 'success'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
showStatus(`Error: ${error || 'Batch operation failed.'}`, 'warning');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function ensureDialog() {
|
||||||
|
if (!modalEl) {
|
||||||
|
buildDialogDom();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearStatus() {
|
||||||
|
if (!els.status) return;
|
||||||
|
els.status.textContent = '';
|
||||||
|
els.status.classList.remove('info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
function showStatus(message, type = 'info') {
|
||||||
|
if (!els.status) return;
|
||||||
|
els.status.textContent = message;
|
||||||
|
els.status.classList.remove('hidden', 'info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add(`${type}-message`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showProgress() {
|
||||||
|
els.progress.classList.remove('hidden');
|
||||||
|
els.progressText.textContent = 'Processing...';
|
||||||
|
els.progressFill.style.width = '50%';
|
||||||
|
els.processBtn.disabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideProgress() {
|
||||||
|
els.progress.classList.add('hidden');
|
||||||
|
els.progressFill.style.width = '0%';
|
||||||
|
els.processBtn.disabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createFolderInputGroup(field, { onBrowse }) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
label.textContent = `${field.label}:`;
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
|
||||||
|
const group = document.createElement('div');
|
||||||
|
group.className = 'folder-input-group';
|
||||||
|
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'text';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.placeholder = field.placeholder || 'Choose...';
|
||||||
|
input.readOnly = true;
|
||||||
|
group.appendChild(input);
|
||||||
|
|
||||||
|
const browseBtn = document.createElement('button');
|
||||||
|
browseBtn.type = 'button';
|
||||||
|
browseBtn.textContent = field.type === 'folder' ? 'Browse Folder' : 'Browse';
|
||||||
|
browseBtn.addEventListener('click', () => onBrowse(input));
|
||||||
|
group.appendChild(browseBtn);
|
||||||
|
|
||||||
|
wrapper.appendChild(group);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderFileField(field) {
|
||||||
|
return createFolderInputGroup(field, {
|
||||||
|
onBrowse: (input) => {
|
||||||
|
const fileInput = document.createElement('input');
|
||||||
|
fileInput.type = 'file';
|
||||||
|
fileInput.accept = field.accept || '*';
|
||||||
|
fileInput.onchange = (e) => {
|
||||||
|
const file = e.target.files[0];
|
||||||
|
if (file) input.value = getFilePath(file);
|
||||||
|
};
|
||||||
|
fileInput.click();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderSaveField(field) {
|
||||||
|
return createFolderInputGroup(field, {
|
||||||
|
onBrowse: (input) => {
|
||||||
|
const fileInput = document.createElement('input');
|
||||||
|
fileInput.type = 'file';
|
||||||
|
fileInput.nwsaveas = true;
|
||||||
|
fileInput.onchange = (e) => {
|
||||||
|
const file = e.target.files[0];
|
||||||
|
if (file) input.value = getFilePath(file);
|
||||||
|
};
|
||||||
|
fileInput.click();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderFolderField(field, pickType = FOLDER_PICK_TYPE) {
|
||||||
|
return createFolderInputGroup(field, {
|
||||||
|
onBrowse: () => {
|
||||||
|
ipcRenderer.send('select-folder', pickType);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderCheckboxField(field) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'checkbox';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.checked = field.default !== false;
|
||||||
|
input.style.marginRight = '0.5em';
|
||||||
|
|
||||||
|
label.appendChild(input);
|
||||||
|
label.appendChild(document.createTextNode(field.label));
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderNumberField(field) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
label.textContent = `${field.label}:`;
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'number';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
if (field.min !== undefined) input.min = field.min;
|
||||||
|
if (field.max !== undefined) input.max = field.max;
|
||||||
|
if (field.step !== undefined) input.step = field.step;
|
||||||
|
if (field.default !== undefined) input.value = field.default;
|
||||||
|
wrapper.appendChild(input);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderSelectField(field) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
label.textContent = `${field.label}:`;
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
|
||||||
|
const select = document.createElement('select');
|
||||||
|
select.id = fieldElId(field.name);
|
||||||
|
field.options.forEach((opt) => {
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = opt;
|
||||||
|
option.textContent = opt;
|
||||||
|
if (opt === field.default) option.selected = true;
|
||||||
|
select.appendChild(option);
|
||||||
|
});
|
||||||
|
wrapper.appendChild(select);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateMergeFilesList(listContainer) {
|
||||||
|
listContainer.innerHTML = '';
|
||||||
|
mergeFilePaths.forEach((filePath, index) => {
|
||||||
|
const fileEntry = document.createElement('div');
|
||||||
|
fileEntry.className = 'file-entry';
|
||||||
|
const name = document.createElement('span');
|
||||||
|
name.className = 'file-name';
|
||||||
|
name.textContent = filePath.split(/[\\/]/).pop();
|
||||||
|
const removeBtn = document.createElement('button');
|
||||||
|
removeBtn.className = 'remove-file';
|
||||||
|
removeBtn.type = 'button';
|
||||||
|
removeBtn.textContent = 'Remove';
|
||||||
|
removeBtn.addEventListener('click', () => {
|
||||||
|
mergeFilePaths.splice(index, 1);
|
||||||
|
updateMergeFilesList(listContainer);
|
||||||
|
});
|
||||||
|
fileEntry.appendChild(name);
|
||||||
|
fileEntry.appendChild(removeBtn);
|
||||||
|
listContainer.appendChild(fileEntry);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderFilesField(field) {
|
||||||
|
mergeFilePaths = [];
|
||||||
|
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.textContent = `${field.label}:`;
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
|
||||||
|
const listContainer = document.createElement('div');
|
||||||
|
listContainer.className = 'file-list';
|
||||||
|
listContainer.id = fieldElId(field.name);
|
||||||
|
wrapper.appendChild(listContainer);
|
||||||
|
|
||||||
|
const addBtn = document.createElement('button');
|
||||||
|
addBtn.type = 'button';
|
||||||
|
addBtn.textContent = '+ Add File';
|
||||||
|
addBtn.addEventListener('click', () => {
|
||||||
|
const fileInput = document.createElement('input');
|
||||||
|
fileInput.type = 'file';
|
||||||
|
fileInput.accept = field.accept || '*';
|
||||||
|
fileInput.multiple = true;
|
||||||
|
fileInput.onchange = (e) => {
|
||||||
|
Array.from(e.target.files).forEach((file) => {
|
||||||
|
const filePath = getFilePath(file);
|
||||||
|
if (!mergeFilePaths.includes(filePath)) {
|
||||||
|
mergeFilePaths.push(filePath);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
updateMergeFilesList(listContainer);
|
||||||
|
};
|
||||||
|
fileInput.click();
|
||||||
|
});
|
||||||
|
wrapper.appendChild(addBtn);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The field carrying the input-file picker for a batchable operation is always a
|
||||||
|
// 'file' field (single input) — 'files' (merge) operations are excluded from batch
|
||||||
|
// mode via `batchable: false` before this is ever consulted.
|
||||||
|
function getInputFileField(opConfig) {
|
||||||
|
return opConfig.fields.find((field) => field.type === 'file');
|
||||||
|
}
|
||||||
|
|
||||||
|
function isBatchable(opConfig) {
|
||||||
|
return opConfig.batchable !== false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep the Mode dropdown in sync with whether the currently selected operation
|
||||||
|
// supports batch mode (everything except audio "Merge").
|
||||||
|
function updateModeOptions() {
|
||||||
|
const kindConfig = MEDIA_KIND_CONFIG[currentKind];
|
||||||
|
const opConfig = kindConfig.operations[els.operationSelect.value];
|
||||||
|
const batchOption = els.modeSelect.querySelector('option[value="batch"]');
|
||||||
|
if (batchOption) {
|
||||||
|
batchOption.disabled = !isBatchable(opConfig);
|
||||||
|
}
|
||||||
|
if (!isBatchable(opConfig)) {
|
||||||
|
currentMode = 'single';
|
||||||
|
}
|
||||||
|
els.modeSelect.value = currentMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderSingleFields(opConfig) {
|
||||||
|
opConfig.fields.forEach((field) => {
|
||||||
|
let fieldEl;
|
||||||
|
switch (field.type) {
|
||||||
|
case 'file':
|
||||||
|
fieldEl = renderFileField(field);
|
||||||
|
break;
|
||||||
|
case 'save':
|
||||||
|
fieldEl = renderSaveField(field);
|
||||||
|
break;
|
||||||
|
case 'folder':
|
||||||
|
fieldEl = renderFolderField(field);
|
||||||
|
break;
|
||||||
|
case 'number':
|
||||||
|
fieldEl = renderNumberField(field);
|
||||||
|
break;
|
||||||
|
case 'select':
|
||||||
|
fieldEl = renderSelectField(field);
|
||||||
|
break;
|
||||||
|
case 'files':
|
||||||
|
fieldEl = renderFilesField(field);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
els.fieldsContainer.appendChild(fieldEl);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Batch mode swaps the single input/output file (or folder) fields for one
|
||||||
|
// "Input Folder" + "Include Subfolders" + "Output Folder" trio, while keeping every
|
||||||
|
// other parameter field (width/height/quality/angle/startTime/duration/crf/fps/
|
||||||
|
// format/fit/...) exactly as in single mode — those values apply to every matching
|
||||||
|
// file. The actual per-file output path/dir is computed by main.js's
|
||||||
|
// runMediaBatchOperation()/BATCH_OUTPUT_SPEC.
|
||||||
|
function renderBatchFields(opConfig) {
|
||||||
|
els.fieldsContainer.appendChild(
|
||||||
|
renderFolderField(
|
||||||
|
{ name: BATCH_INPUT_FIELD_NAME, label: 'Input Folder', type: 'folder' },
|
||||||
|
BATCH_INPUT_FOLDER_PICK_TYPE
|
||||||
|
)
|
||||||
|
);
|
||||||
|
els.fieldsContainer.appendChild(
|
||||||
|
renderCheckboxField({
|
||||||
|
name: BATCH_SUBFOLDERS_FIELD_NAME,
|
||||||
|
label: 'Include subfolders',
|
||||||
|
default: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
opConfig.fields.forEach((field) => {
|
||||||
|
if (field.type === 'number') {
|
||||||
|
els.fieldsContainer.appendChild(renderNumberField(field));
|
||||||
|
} else if (field.type === 'select') {
|
||||||
|
els.fieldsContainer.appendChild(renderSelectField(field));
|
||||||
|
}
|
||||||
|
// 'file' / 'save' / 'folder' single-file fields are intentionally skipped —
|
||||||
|
// replaced by the Input/Output Folder fields below/above.
|
||||||
|
});
|
||||||
|
|
||||||
|
els.fieldsContainer.appendChild(
|
||||||
|
renderFolderField(
|
||||||
|
{ name: BATCH_OUTPUT_FIELD_NAME, label: 'Output Folder', type: 'folder' },
|
||||||
|
BATCH_OUTPUT_FOLDER_PICK_TYPE
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderFields() {
|
||||||
|
const kindConfig = MEDIA_KIND_CONFIG[currentKind];
|
||||||
|
const opKey = els.operationSelect.value;
|
||||||
|
const opConfig = kindConfig.operations[opKey];
|
||||||
|
|
||||||
|
updateModeOptions();
|
||||||
|
els.fieldsContainer.innerHTML = '';
|
||||||
|
|
||||||
|
if (opConfig.help) {
|
||||||
|
els.help.textContent = opConfig.help;
|
||||||
|
els.help.classList.remove('hidden');
|
||||||
|
} else {
|
||||||
|
els.help.textContent = '';
|
||||||
|
els.help.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentMode === 'batch') {
|
||||||
|
renderBatchFields(opConfig);
|
||||||
|
} else {
|
||||||
|
renderSingleFields(opConfig);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function collectOperationData(opConfig) {
|
||||||
|
const data = {};
|
||||||
|
|
||||||
|
for (const field of opConfig.fields) {
|
||||||
|
if (field.type === 'files') {
|
||||||
|
data[field.name] = [...mergeFilePaths];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const input = document.getElementById(fieldElId(field.name));
|
||||||
|
if (!input) continue;
|
||||||
|
|
||||||
|
if (field.type === 'number') {
|
||||||
|
const raw = String(input.value).trim();
|
||||||
|
if (raw === '') {
|
||||||
|
if (field.optional) {
|
||||||
|
data[field.name] = null;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return { error: `${field.label} is required.` };
|
||||||
|
}
|
||||||
|
const num = Number(raw);
|
||||||
|
if (!Number.isFinite(num)) {
|
||||||
|
return { error: `${field.label} must be a valid number.` };
|
||||||
|
}
|
||||||
|
data[field.name] = num;
|
||||||
|
} else {
|
||||||
|
data[field.name] = input.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ('inputPath' in data && !data.inputPath) {
|
||||||
|
return { error: 'Select an input file.' };
|
||||||
|
}
|
||||||
|
if ('inputPaths' in data && (!data.inputPaths || data.inputPaths.length < 2)) {
|
||||||
|
return { error: 'Select at least 2 input files.' };
|
||||||
|
}
|
||||||
|
if ('outputPath' in data && !data.outputPath) {
|
||||||
|
return { error: 'Select an output file.' };
|
||||||
|
}
|
||||||
|
if ('outputDir' in data && !data.outputDir) {
|
||||||
|
return { error: 'Select an output folder.' };
|
||||||
|
}
|
||||||
|
if ('width' in data && 'height' in data && data.width === null && data.height === null) {
|
||||||
|
return { error: 'Provide at least one of Width or Height.' };
|
||||||
|
}
|
||||||
|
|
||||||
|
return { data };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleSingleProcess(kindConfig, opKey, opConfig) {
|
||||||
|
const { data, error } = collectOperationData(opConfig);
|
||||||
|
if (error) {
|
||||||
|
showStatus(error, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
showProgress();
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await ipcRenderer.invoke(kindConfig.channel, { operation: opKey, data });
|
||||||
|
hideProgress();
|
||||||
|
if (result && result.success) {
|
||||||
|
showStatus(
|
||||||
|
`Success: ${result.outputPath || result.outputDir || 'Operation completed.'}`,
|
||||||
|
'success'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
showStatus(`Error: ${(result && result.error) || 'Operation failed.'}`, 'warning');
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
hideProgress();
|
||||||
|
showStatus(`Error: ${err.message}`, 'warning');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Collects the shared parameter fields (number/select only — no file/folder/files
|
||||||
|
// fields) that apply identically to every file in a batch run.
|
||||||
|
function collectBatchParamData(opConfig) {
|
||||||
|
const data = {};
|
||||||
|
for (const field of opConfig.fields) {
|
||||||
|
if (field.type !== 'number' && field.type !== 'select') continue;
|
||||||
|
const input = document.getElementById(fieldElId(field.name));
|
||||||
|
if (!input) continue;
|
||||||
|
|
||||||
|
if (field.type === 'number') {
|
||||||
|
const raw = String(input.value).trim();
|
||||||
|
if (raw === '') {
|
||||||
|
if (field.optional) {
|
||||||
|
data[field.name] = null;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return { error: `${field.label} is required.` };
|
||||||
|
}
|
||||||
|
const num = Number(raw);
|
||||||
|
if (!Number.isFinite(num)) {
|
||||||
|
return { error: `${field.label} must be a valid number.` };
|
||||||
|
}
|
||||||
|
data[field.name] = num;
|
||||||
|
} else {
|
||||||
|
data[field.name] = input.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ('width' in data && 'height' in data && data.width === null && data.height === null) {
|
||||||
|
return { error: 'Provide at least one of Width or Height.' };
|
||||||
|
}
|
||||||
|
|
||||||
|
return { data };
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleBatchProcess(kindConfig, opKey, opConfig) {
|
||||||
|
const inputFolder = document.getElementById(fieldElId(BATCH_INPUT_FIELD_NAME))?.value;
|
||||||
|
const outputFolder = document.getElementById(fieldElId(BATCH_OUTPUT_FIELD_NAME))?.value;
|
||||||
|
const includeSubfolders =
|
||||||
|
document.getElementById(fieldElId(BATCH_SUBFOLDERS_FIELD_NAME))?.checked !== false;
|
||||||
|
|
||||||
|
if (!inputFolder) {
|
||||||
|
showStatus('Select an input folder.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!outputFolder) {
|
||||||
|
showStatus('Select an output folder.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data, error } = collectBatchParamData(opConfig);
|
||||||
|
if (error) {
|
||||||
|
showStatus(error, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const inputField = getInputFileField(opConfig);
|
||||||
|
const extensions = (inputField?.accept || '').split(',').filter(Boolean);
|
||||||
|
if (extensions.length === 0) {
|
||||||
|
showStatus('This operation does not support batch mode.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
showProgress();
|
||||||
|
els.progressText.textContent = 'Scanning folder...';
|
||||||
|
|
||||||
|
ipcRenderer.send(kindConfig.batchChannel, {
|
||||||
|
operation: opKey,
|
||||||
|
inputFolder,
|
||||||
|
outputFolder,
|
||||||
|
includeSubfolders,
|
||||||
|
extensions,
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleProcess() {
|
||||||
|
const kindConfig = MEDIA_KIND_CONFIG[currentKind];
|
||||||
|
const opKey = els.operationSelect.value;
|
||||||
|
const opConfig = kindConfig.operations[opKey];
|
||||||
|
|
||||||
|
if (currentMode === 'batch' && isBatchable(opConfig)) {
|
||||||
|
handleBatchProcess(kindConfig, opKey, opConfig);
|
||||||
|
} else {
|
||||||
|
await handleSingleProcess(kindConfig, opKey, opConfig);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideDialog() {
|
||||||
|
if (modalManager) modalManager.close();
|
||||||
|
clearStatus();
|
||||||
|
hideProgress();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showMediaOperationsDialog(kind) {
|
||||||
|
if (!MEDIA_KIND_CONFIG[kind]) {
|
||||||
|
throw new Error(`Unknown media kind: ${kind}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
ensureDialog();
|
||||||
|
currentKind = kind;
|
||||||
|
currentMode = 'single';
|
||||||
|
|
||||||
|
const kindConfig = MEDIA_KIND_CONFIG[kind];
|
||||||
|
els.title.textContent = kindConfig.title;
|
||||||
|
|
||||||
|
els.operationSelect.innerHTML = '';
|
||||||
|
Object.entries(kindConfig.operations).forEach(([key, op]) => {
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = key;
|
||||||
|
option.textContent = op.label;
|
||||||
|
els.operationSelect.appendChild(option);
|
||||||
|
});
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
hideProgress();
|
||||||
|
renderFields();
|
||||||
|
modalManager.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { showMediaOperationsDialog };
|
||||||
@@ -0,0 +1,715 @@
|
|||||||
|
/**
|
||||||
|
* PDF Batch Dialog
|
||||||
|
*
|
||||||
|
* Batch wrapper for the single-file PDF operations (Tasks 15-16 backend via
|
||||||
|
* PDFOperations.executeOperation): pick one operation (watermark, compress,
|
||||||
|
* rotate, split, ...) plus that operation's shared option fields — the same
|
||||||
|
* fields and option shapes the single-file PDF editor dialog in
|
||||||
|
* renderer.js/index.html already sends — and apply it to every .pdf in an
|
||||||
|
* input folder. Mirrors the batch-folder construction pattern of the Image/
|
||||||
|
* Audio/Video Tools dialog (src/renderer/media-operations-dialog.js, Task 12):
|
||||||
|
* a `.modal`-based dialog driven by ModalManager, folder pickers via the
|
||||||
|
* existing generic `select-folder` / `folder-selected` IPC channels filtered by
|
||||||
|
* a unique `type` per picker, and Process firing a fire-and-forget
|
||||||
|
* `batch-pdf-operation` whose progress/completion arrive via `batch-progress`
|
||||||
|
* / `pdf-batch-complete` events sent by the `batch-pdf-operation` handler in
|
||||||
|
* main.js (which delegates to src/main/PDFBatchOperations.js).
|
||||||
|
*
|
||||||
|
* The dialog is reached from the Tools > Batch PDF Conversion... menu item
|
||||||
|
* (`show-batch-converter` with type 'pdf'). Its top selector keeps that menu
|
||||||
|
* item's existing behavior as the default: "Convert Format" delegates to the
|
||||||
|
* pre-existing universal-converter batch flow via the `onConvertFormat`
|
||||||
|
* callback renderer.js passes in; "Bulk PDF Operation" reveals this dialog's
|
||||||
|
* per-file operation controls.
|
||||||
|
*
|
||||||
|
* Only per-file, non-interactive operations are offered (see
|
||||||
|
* PDF_BATCH_OUTPUT_SPEC in src/main/PDFBatchOperations.js for the exclusions —
|
||||||
|
* the renderer list and that spec intentionally agree).
|
||||||
|
*
|
||||||
|
* @module pdf-batch-dialog
|
||||||
|
*/
|
||||||
|
|
||||||
|
const { ipcRenderer } = require('electron');
|
||||||
|
|
||||||
|
// Field names are chosen to exactly match the `data` shape each backend
|
||||||
|
// operation destructures — see src/main/PDFOperations.js — mirroring the
|
||||||
|
// single-file PDF editor dialog's collection code in renderer.js. Defaults and
|
||||||
|
// option lists mirror the corresponding index.html sections.
|
||||||
|
const BATCH_OPERATIONS = {
|
||||||
|
watermark: {
|
||||||
|
label: 'Add Watermark',
|
||||||
|
fields: [
|
||||||
|
{ name: 'text', label: 'Watermark Text', type: 'text' },
|
||||||
|
{
|
||||||
|
name: 'pages',
|
||||||
|
label: 'Apply to',
|
||||||
|
type: 'select',
|
||||||
|
options: [
|
||||||
|
{ value: 'all', label: 'All Pages' },
|
||||||
|
{ value: 'custom', label: 'Custom Pages' },
|
||||||
|
],
|
||||||
|
default: 'all',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'customPages',
|
||||||
|
label: 'Custom Pages (e.g. 1-5, 7)',
|
||||||
|
type: 'text',
|
||||||
|
showIf: { field: 'pages', equals: 'custom' },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'position',
|
||||||
|
label: 'Position',
|
||||||
|
type: 'select',
|
||||||
|
options: [
|
||||||
|
'center',
|
||||||
|
'diagonal',
|
||||||
|
'top-left',
|
||||||
|
'top-center',
|
||||||
|
'top-right',
|
||||||
|
'bottom-left',
|
||||||
|
'bottom-center',
|
||||||
|
'bottom-right',
|
||||||
|
],
|
||||||
|
default: 'center',
|
||||||
|
},
|
||||||
|
{ name: 'fontSize', label: 'Font Size', type: 'number', min: 8, max: 144, default: 48 },
|
||||||
|
// 0-100 in the UI; divided by 100 before sending, like the single-file dialog.
|
||||||
|
{ name: 'opacity', label: 'Opacity (0-100)', type: 'number', min: 0, max: 100, default: 30 },
|
||||||
|
{ name: 'color', label: 'Color', type: 'color', default: '#000000' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
split: {
|
||||||
|
label: 'Split',
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'splitMode',
|
||||||
|
label: 'Split Mode',
|
||||||
|
type: 'select',
|
||||||
|
options: [
|
||||||
|
{ value: 'pages', label: 'By Page Range' },
|
||||||
|
{ value: 'interval', label: 'Every N Pages' },
|
||||||
|
{ value: 'size', label: 'By File Size' },
|
||||||
|
],
|
||||||
|
default: 'pages',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'pageRanges',
|
||||||
|
label: 'Page Ranges (e.g. 1-5, 6-10)',
|
||||||
|
type: 'text',
|
||||||
|
showIf: { field: 'splitMode', equals: 'pages' },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'interval',
|
||||||
|
label: 'Pages per Split File',
|
||||||
|
type: 'number',
|
||||||
|
min: 1,
|
||||||
|
default: 5,
|
||||||
|
showIf: { field: 'splitMode', equals: 'interval' },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
compress: { label: 'Compress', fields: [] },
|
||||||
|
rotate: {
|
||||||
|
label: 'Rotate',
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'angle',
|
||||||
|
label: 'Rotation Angle',
|
||||||
|
type: 'select',
|
||||||
|
options: [
|
||||||
|
{ value: '90', label: '90° Clockwise' },
|
||||||
|
{ value: '180', label: '180°' },
|
||||||
|
{ value: '270', label: '270° Clockwise (90° Counter-clockwise)' },
|
||||||
|
],
|
||||||
|
default: '90',
|
||||||
|
},
|
||||||
|
{ name: 'pages', label: 'Pages (e.g. 1-3, 5; empty = all)', type: 'text', optional: true },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
delete: {
|
||||||
|
label: 'Delete Pages',
|
||||||
|
fields: [{ name: 'pages', label: 'Pages to Delete (e.g. 1-3, 5)', type: 'text' }],
|
||||||
|
},
|
||||||
|
extractText: { label: 'Extract Text', fields: [] },
|
||||||
|
pageNumbers: {
|
||||||
|
label: 'Add Page Numbers',
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'position',
|
||||||
|
label: 'Position',
|
||||||
|
type: 'select',
|
||||||
|
options: [
|
||||||
|
'bottom-center',
|
||||||
|
'bottom-left',
|
||||||
|
'bottom-right',
|
||||||
|
'top-center',
|
||||||
|
'top-left',
|
||||||
|
'top-right',
|
||||||
|
],
|
||||||
|
default: 'bottom-center',
|
||||||
|
},
|
||||||
|
{ name: 'startNumber', label: 'Start Number', type: 'number', min: 1, default: 1 },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
crop: {
|
||||||
|
label: 'Crop Margins',
|
||||||
|
fields: [
|
||||||
|
{ name: 'margins.top', label: 'Top Margin', type: 'number', min: 0, default: 0, float: true },
|
||||||
|
{
|
||||||
|
name: 'margins.bottom',
|
||||||
|
label: 'Bottom Margin',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
default: 0,
|
||||||
|
float: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'margins.left',
|
||||||
|
label: 'Left Margin',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
default: 0,
|
||||||
|
float: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'margins.right',
|
||||||
|
label: 'Right Margin',
|
||||||
|
type: 'number',
|
||||||
|
min: 0,
|
||||||
|
default: 0,
|
||||||
|
float: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
extractImages: { label: 'Extract Images', fields: [] },
|
||||||
|
};
|
||||||
|
|
||||||
|
const INPUT_FOLDER_FIELD = { name: 'inputFolder', label: 'Input Folder' };
|
||||||
|
const OUTPUT_FOLDER_FIELD = { name: 'outputFolder', label: 'Output Folder' };
|
||||||
|
const SUBFOLDERS_FIELD = { name: 'includeSubfolders', label: 'Include subfolders' };
|
||||||
|
|
||||||
|
const INPUT_FOLDER_PICK_TYPE = 'pdf-batch-input-dir';
|
||||||
|
const OUTPUT_FOLDER_PICK_TYPE = 'pdf-batch-output-dir';
|
||||||
|
|
||||||
|
let modalEl = null;
|
||||||
|
let modalManager = null;
|
||||||
|
let els = null;
|
||||||
|
let onConvertFormatCallback = null;
|
||||||
|
// True between sending a batch-pdf-operation and its pdf-batch-complete; guards
|
||||||
|
// against firing a second overlapping run (the Process button is also disabled,
|
||||||
|
// but the batch-type switch re-labels it, so the flag is the real guard).
|
||||||
|
let runInFlight = false;
|
||||||
|
|
||||||
|
function fieldElId(name) {
|
||||||
|
return `pdf-batch-field-${name}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildDialogDom() {
|
||||||
|
modalEl = document.createElement('div');
|
||||||
|
modalEl.id = 'pdf-batch-dialog';
|
||||||
|
modalEl.className = 'modal hidden';
|
||||||
|
modalEl.setAttribute('role', 'dialog');
|
||||||
|
modalEl.setAttribute('aria-modal', 'true');
|
||||||
|
modalEl.setAttribute('aria-labelledby', 'pdf-batch-title');
|
||||||
|
modalEl.innerHTML = `
|
||||||
|
<div class="modal-backdrop" data-close></div>
|
||||||
|
<div class="modal-content large">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 id="pdf-batch-title">Batch PDF Tools</h3>
|
||||||
|
<button class="modal-close" id="pdf-batch-close" aria-label="Close">×</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="pdf-batch-type">Batch Type:</label>
|
||||||
|
<select id="pdf-batch-type">
|
||||||
|
<option value="convert">Convert Format (existing batch converter)</option>
|
||||||
|
<option value="operation">Bulk PDF Operation</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<small id="pdf-batch-convert-hint">
|
||||||
|
Format conversion (PDF to DOCX/HTML/...) uses the existing batch converter.
|
||||||
|
Choose "Bulk PDF Operation" to watermark, compress, or otherwise process many PDFs at once.
|
||||||
|
</small>
|
||||||
|
<div id="pdf-batch-operation-panel" class="hidden">
|
||||||
|
<div class="export-section">
|
||||||
|
<label for="pdf-batch-operation">Operation:</label>
|
||||||
|
<select id="pdf-batch-operation"></select>
|
||||||
|
</div>
|
||||||
|
<div id="pdf-batch-operation-fields"></div>
|
||||||
|
</div>
|
||||||
|
<div id="pdf-batch-status" class="info-message hidden" aria-live="polite"></div>
|
||||||
|
<div id="pdf-batch-progress" class="batch-progress hidden">
|
||||||
|
<div class="progress-bar">
|
||||||
|
<div class="progress-fill" id="pdf-batch-progress-fill"></div>
|
||||||
|
</div>
|
||||||
|
<div class="progress-text">
|
||||||
|
<span id="pdf-batch-progress-text">Processing...</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button id="pdf-batch-cancel" class="btn btn-secondary" data-close>Cancel</button>
|
||||||
|
<button id="pdf-batch-process" class="btn btn-primary">Open Batch Converter...</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.body.appendChild(modalEl);
|
||||||
|
|
||||||
|
els = {
|
||||||
|
typeSelect: modalEl.querySelector('#pdf-batch-type'),
|
||||||
|
convertHint: modalEl.querySelector('#pdf-batch-convert-hint'),
|
||||||
|
operationPanel: modalEl.querySelector('#pdf-batch-operation-panel'),
|
||||||
|
operationSelect: modalEl.querySelector('#pdf-batch-operation'),
|
||||||
|
fieldsContainer: modalEl.querySelector('#pdf-batch-operation-fields'),
|
||||||
|
status: modalEl.querySelector('#pdf-batch-status'),
|
||||||
|
progress: modalEl.querySelector('#pdf-batch-progress'),
|
||||||
|
progressFill: modalEl.querySelector('#pdf-batch-progress-fill'),
|
||||||
|
progressText: modalEl.querySelector('#pdf-batch-progress-text'),
|
||||||
|
processBtn: modalEl.querySelector('#pdf-batch-process'),
|
||||||
|
};
|
||||||
|
|
||||||
|
els.typeSelect.addEventListener('change', updateBatchTypeUI);
|
||||||
|
els.operationSelect.addEventListener('change', renderOperationFields);
|
||||||
|
els.processBtn.addEventListener('click', handleProcess);
|
||||||
|
modalEl.querySelector('#pdf-batch-cancel').addEventListener('click', hideDialog);
|
||||||
|
|
||||||
|
modalManager = new window.ModalManager(modalEl);
|
||||||
|
|
||||||
|
// Generic output-folder picker reply (shared with the batch converter's
|
||||||
|
// input/output folder pickers) — filter by our own `type` so we only react
|
||||||
|
// to requests this dialog made.
|
||||||
|
ipcRenderer.on('folder-selected', (event, { type, path: folderPath }) => {
|
||||||
|
if (!folderPath) return;
|
||||||
|
const fieldName =
|
||||||
|
type === INPUT_FOLDER_PICK_TYPE
|
||||||
|
? INPUT_FOLDER_FIELD.name
|
||||||
|
: type === OUTPUT_FOLDER_PICK_TYPE
|
||||||
|
? OUTPUT_FOLDER_FIELD.name
|
||||||
|
: null;
|
||||||
|
if (!fieldName) return;
|
||||||
|
const input = document.getElementById(fieldElId(fieldName));
|
||||||
|
if (input) input.value = folderPath;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Batch operation progress/completion (main.js: batch-pdf-operation handler,
|
||||||
|
// delegating to runPDFBatchOperation() in src/main/PDFBatchOperations.js).
|
||||||
|
ipcRenderer.on('batch-progress', (event, { completed, failed, total, currentFile }) => {
|
||||||
|
if (!els.progress || els.progress.classList.contains('hidden')) return;
|
||||||
|
const pct = total > 0 ? Math.round((completed / total) * 100) : 0;
|
||||||
|
els.progressFill.style.width = `${pct}%`;
|
||||||
|
els.progressText.textContent = currentFile
|
||||||
|
? `Processing ${completed + 1}/${total}: ${currentFile}${failed ? ` (${failed} failed so far)` : ''}`
|
||||||
|
: `Processed ${completed}/${total}${failed ? ` (${failed} failed)` : ''}`;
|
||||||
|
});
|
||||||
|
ipcRenderer.on('pdf-batch-complete', (event, { success, completed, failed, total, error }) => {
|
||||||
|
runInFlight = false;
|
||||||
|
hideProgress();
|
||||||
|
if (success) {
|
||||||
|
showStatus(
|
||||||
|
`Batch complete: ${completed}/${total} file(s) processed${failed ? ` (${failed} failed)` : ''}.`,
|
||||||
|
failed > 0 ? 'warning' : 'success'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
showStatus(`Error: ${error || 'Batch operation failed.'}`, 'warning');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function ensureDialog() {
|
||||||
|
if (!modalEl) {
|
||||||
|
buildDialogDom();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearStatus() {
|
||||||
|
els.status.textContent = '';
|
||||||
|
els.status.classList.remove('info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
function showStatus(message, type = 'info') {
|
||||||
|
els.status.textContent = message;
|
||||||
|
els.status.classList.remove('hidden', 'info-message', 'warning-message', 'success-message');
|
||||||
|
els.status.classList.add(`${type}-message`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showProgress() {
|
||||||
|
els.progress.classList.remove('hidden');
|
||||||
|
els.progressText.textContent = 'Scanning folder...';
|
||||||
|
els.progressFill.style.width = '0%';
|
||||||
|
els.processBtn.disabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideProgress() {
|
||||||
|
els.progress.classList.add('hidden');
|
||||||
|
els.progressFill.style.width = '0%';
|
||||||
|
els.processBtn.disabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function optionValue(option) {
|
||||||
|
return typeof option === 'string' ? option : option.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
function optionLabel(option) {
|
||||||
|
return typeof option === 'string' ? option : option.label;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createLabeledWrapper(field) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
wrapper.id = `${fieldElId(field.name)}-wrapper`;
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
label.textContent = `${field.label}:`;
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderTextField(field) {
|
||||||
|
const wrapper = createLabeledWrapper(field);
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'text';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.placeholder = field.placeholder || '';
|
||||||
|
wrapper.appendChild(input);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderNumberField(field) {
|
||||||
|
const wrapper = createLabeledWrapper(field);
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'number';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
if (field.min !== undefined) input.min = field.min;
|
||||||
|
if (field.max !== undefined) input.max = field.max;
|
||||||
|
if (field.default !== undefined) input.value = field.default;
|
||||||
|
wrapper.appendChild(input);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderSelectField(field) {
|
||||||
|
const wrapper = createLabeledWrapper(field);
|
||||||
|
const select = document.createElement('select');
|
||||||
|
select.id = fieldElId(field.name);
|
||||||
|
field.options.forEach((opt) => {
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = optionValue(opt);
|
||||||
|
option.textContent = optionLabel(opt);
|
||||||
|
if (optionValue(opt) === field.default) option.selected = true;
|
||||||
|
select.appendChild(option);
|
||||||
|
});
|
||||||
|
// Attached to the select itself (not via a bubbling container listener) so
|
||||||
|
// conditional fields update regardless of how the change event was fired.
|
||||||
|
select.addEventListener('change', updateConditionalFields);
|
||||||
|
wrapper.appendChild(select);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderColorField(field) {
|
||||||
|
const wrapper = createLabeledWrapper(field);
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'color';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.value = field.default || '#000000';
|
||||||
|
wrapper.appendChild(input);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createFolderPickerField(field, pickType) {
|
||||||
|
const wrapper = createLabeledWrapper(field);
|
||||||
|
const group = document.createElement('div');
|
||||||
|
group.className = 'folder-input-group';
|
||||||
|
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'text';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.placeholder = 'Choose...';
|
||||||
|
input.readOnly = true;
|
||||||
|
group.appendChild(input);
|
||||||
|
|
||||||
|
const browseBtn = document.createElement('button');
|
||||||
|
browseBtn.type = 'button';
|
||||||
|
browseBtn.textContent = 'Browse Folder';
|
||||||
|
browseBtn.addEventListener('click', () => {
|
||||||
|
ipcRenderer.send('select-folder', pickType);
|
||||||
|
});
|
||||||
|
group.appendChild(browseBtn);
|
||||||
|
|
||||||
|
wrapper.appendChild(group);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderCheckboxField(field) {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
wrapper.className = 'export-section';
|
||||||
|
wrapper.id = `${fieldElId(field.name)}-wrapper`;
|
||||||
|
|
||||||
|
const label = document.createElement('label');
|
||||||
|
label.setAttribute('for', fieldElId(field.name));
|
||||||
|
|
||||||
|
const input = document.createElement('input');
|
||||||
|
input.type = 'checkbox';
|
||||||
|
input.id = fieldElId(field.name);
|
||||||
|
input.checked = true;
|
||||||
|
input.style.marginRight = '0.5em';
|
||||||
|
|
||||||
|
label.appendChild(input);
|
||||||
|
label.appendChild(document.createTextNode(field.label));
|
||||||
|
wrapper.appendChild(label);
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
function fieldIsVisible(field, values) {
|
||||||
|
if (!field.showIf) return true;
|
||||||
|
return values[field.showIf.field] === field.showIf.equals;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggles the hidden class of conditionally-shown fields (watermark custom
|
||||||
|
// pages, split ranges/interval) based on the current select values.
|
||||||
|
function updateConditionalFields() {
|
||||||
|
const opConfig = BATCH_OPERATIONS[els.operationSelect.value];
|
||||||
|
if (!opConfig) return;
|
||||||
|
const values = {};
|
||||||
|
opConfig.fields.forEach((field) => {
|
||||||
|
const input = document.getElementById(fieldElId(field.name));
|
||||||
|
if (input) values[field.name] = input.value;
|
||||||
|
});
|
||||||
|
opConfig.fields.forEach((field) => {
|
||||||
|
if (!field.showIf) return;
|
||||||
|
const wrapper = document.getElementById(`${fieldElId(field.name)}-wrapper`);
|
||||||
|
if (wrapper) wrapper.classList.toggle('hidden', !fieldIsVisible(field, values));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderOperationFields() {
|
||||||
|
const opConfig = BATCH_OPERATIONS[els.operationSelect.value];
|
||||||
|
els.fieldsContainer.innerHTML = '';
|
||||||
|
|
||||||
|
els.fieldsContainer.appendChild(
|
||||||
|
createFolderPickerField(INPUT_FOLDER_FIELD, INPUT_FOLDER_PICK_TYPE)
|
||||||
|
);
|
||||||
|
els.fieldsContainer.appendChild(renderCheckboxField(SUBFOLDERS_FIELD));
|
||||||
|
|
||||||
|
opConfig.fields.forEach((field) => {
|
||||||
|
let fieldEl;
|
||||||
|
switch (field.type) {
|
||||||
|
case 'text':
|
||||||
|
fieldEl = renderTextField(field);
|
||||||
|
break;
|
||||||
|
case 'number':
|
||||||
|
fieldEl = renderNumberField(field);
|
||||||
|
break;
|
||||||
|
case 'select':
|
||||||
|
fieldEl = renderSelectField(field);
|
||||||
|
break;
|
||||||
|
case 'color':
|
||||||
|
fieldEl = renderColorField(field);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
els.fieldsContainer.appendChild(fieldEl);
|
||||||
|
});
|
||||||
|
|
||||||
|
els.fieldsContainer.appendChild(
|
||||||
|
createFolderPickerField(OUTPUT_FOLDER_FIELD, OUTPUT_FOLDER_PICK_TYPE)
|
||||||
|
);
|
||||||
|
updateConditionalFields();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateBatchTypeUI() {
|
||||||
|
const isConvert = els.typeSelect.value === 'convert';
|
||||||
|
els.convertHint.classList.toggle('hidden', !isConvert);
|
||||||
|
els.operationPanel.classList.toggle('hidden', isConvert);
|
||||||
|
els.processBtn.textContent = isConvert ? 'Open Batch Converter...' : 'Process';
|
||||||
|
// Progress state is left alone here: clearing it mid-run would re-enable the
|
||||||
|
// Process button while a batch is still in flight (runInFlight guards that).
|
||||||
|
clearStatus();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reads the shared option fields into the exact `data` shape the backend
|
||||||
|
// operation destructures, dropping conditionally-hidden fields and applying
|
||||||
|
// per-op conversions (opacity /100, margins grouping) exactly like the
|
||||||
|
// single-file PDF editor dialog does.
|
||||||
|
function collectOperationData(opKey) {
|
||||||
|
const opConfig = BATCH_OPERATIONS[opKey];
|
||||||
|
const raw = {};
|
||||||
|
for (const field of opConfig.fields) {
|
||||||
|
const input = document.getElementById(fieldElId(field.name));
|
||||||
|
if (!input) continue;
|
||||||
|
if (field.type === 'number') {
|
||||||
|
const num = field.float ? parseFloat(input.value) : parseInt(input.value, 10);
|
||||||
|
raw[field.name] = Number.isFinite(num) ? num : null;
|
||||||
|
} else {
|
||||||
|
raw[field.name] = input.value.trim();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const visible = (name) =>
|
||||||
|
fieldIsVisible(
|
||||||
|
opConfig.fields.find((f) => f.name === name),
|
||||||
|
raw
|
||||||
|
);
|
||||||
|
|
||||||
|
let data;
|
||||||
|
switch (opKey) {
|
||||||
|
case 'watermark':
|
||||||
|
data = {
|
||||||
|
text: raw.text,
|
||||||
|
fontSize: raw.fontSize,
|
||||||
|
opacity: raw.opacity !== null ? raw.opacity / 100 : null,
|
||||||
|
position: raw.position,
|
||||||
|
color: raw.color,
|
||||||
|
pages: raw.pages,
|
||||||
|
};
|
||||||
|
if (raw.pages === 'custom' && visible('customPages')) {
|
||||||
|
data.customPages = raw.customPages;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'split':
|
||||||
|
data = { splitMode: raw.splitMode };
|
||||||
|
if (raw.splitMode === 'pages' && visible('pageRanges')) data.pageRanges = raw.pageRanges;
|
||||||
|
if (raw.splitMode === 'interval' && visible('interval')) data.interval = raw.interval;
|
||||||
|
break;
|
||||||
|
case 'rotate':
|
||||||
|
data = { angle: parseInt(raw.angle, 10), pages: raw.pages };
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
data = { pages: raw.pages };
|
||||||
|
break;
|
||||||
|
case 'pageNumbers':
|
||||||
|
data = { position: raw.position, startNumber: raw.startNumber };
|
||||||
|
break;
|
||||||
|
case 'crop':
|
||||||
|
data = {
|
||||||
|
margins: {
|
||||||
|
top: raw['margins.top'],
|
||||||
|
bottom: raw['margins.bottom'],
|
||||||
|
left: raw['margins.left'],
|
||||||
|
right: raw['margins.right'],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
data = {};
|
||||||
|
}
|
||||||
|
return { data };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Per-operation required-field checks, mirroring the single-file dialog's
|
||||||
|
// validation messages.
|
||||||
|
function validateOperationData(opKey, data) {
|
||||||
|
switch (opKey) {
|
||||||
|
case 'watermark':
|
||||||
|
if (!data.text) return 'Enter watermark text.';
|
||||||
|
if (!data.fontSize) return 'Enter a font size.';
|
||||||
|
if (data.pages === 'custom' && !data.customPages) {
|
||||||
|
return 'Enter the custom pages to watermark.';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
case 'split':
|
||||||
|
if (data.splitMode === 'pages' && !data.pageRanges) {
|
||||||
|
return 'Enter page ranges (e.g. 1-5, 6-10).';
|
||||||
|
}
|
||||||
|
if (data.splitMode === 'interval' && !data.interval) {
|
||||||
|
return 'Enter the number of pages per split file.';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
case 'delete':
|
||||||
|
if (!data.pages) return 'Enter the pages to delete (e.g. 1-3, 5).';
|
||||||
|
return null;
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleConvertProcess() {
|
||||||
|
hideDialog();
|
||||||
|
if (typeof onConvertFormatCallback === 'function') {
|
||||||
|
onConvertFormatCallback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleBulkProcess() {
|
||||||
|
if (runInFlight) return;
|
||||||
|
|
||||||
|
const inputFolder = document.getElementById(fieldElId(INPUT_FOLDER_FIELD.name))?.value;
|
||||||
|
const outputFolder = document.getElementById(fieldElId(OUTPUT_FOLDER_FIELD.name))?.value;
|
||||||
|
const includeSubfolders =
|
||||||
|
document.getElementById(fieldElId(SUBFOLDERS_FIELD.name))?.checked !== false;
|
||||||
|
|
||||||
|
if (!inputFolder) {
|
||||||
|
showStatus('Select an input folder.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!outputFolder) {
|
||||||
|
showStatus('Select an output folder.', 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const opKey = els.operationSelect.value;
|
||||||
|
const { data } = collectOperationData(opKey);
|
||||||
|
const error = validateOperationData(opKey, data);
|
||||||
|
if (error) {
|
||||||
|
showStatus(error, 'warning');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearStatus();
|
||||||
|
showProgress();
|
||||||
|
runInFlight = true;
|
||||||
|
|
||||||
|
ipcRenderer.send('batch-pdf-operation', {
|
||||||
|
operation: opKey,
|
||||||
|
inputFolder,
|
||||||
|
outputFolder,
|
||||||
|
includeSubfolders,
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleProcess() {
|
||||||
|
if (els.typeSelect.value === 'convert') {
|
||||||
|
handleConvertProcess();
|
||||||
|
} else {
|
||||||
|
handleBulkProcess();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideDialog() {
|
||||||
|
if (modalManager) modalManager.close();
|
||||||
|
clearStatus();
|
||||||
|
hideProgress();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Opens the Batch PDF Tools dialog.
|
||||||
|
*
|
||||||
|
* @param {object} [options]
|
||||||
|
* @param {Function} [options.onConvertFormat] - Invoked when the user keeps the
|
||||||
|
* default "Convert Format" batch type; renderer.js passes the pre-existing
|
||||||
|
* universal-converter batch flow that the Tools > Batch PDF Conversion...
|
||||||
|
* menu item used to open directly.
|
||||||
|
*/
|
||||||
|
function showPdfBatchDialog(options = {}) {
|
||||||
|
ensureDialog();
|
||||||
|
onConvertFormatCallback = options.onConvertFormat || null;
|
||||||
|
|
||||||
|
els.operationSelect.innerHTML = '';
|
||||||
|
Object.entries(BATCH_OPERATIONS).forEach(([key, op]) => {
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = key;
|
||||||
|
option.textContent = op.label;
|
||||||
|
els.operationSelect.appendChild(option);
|
||||||
|
});
|
||||||
|
|
||||||
|
els.typeSelect.value = 'convert';
|
||||||
|
runInFlight = false;
|
||||||
|
clearStatus();
|
||||||
|
hideProgress();
|
||||||
|
updateBatchTypeUI();
|
||||||
|
renderOperationFields();
|
||||||
|
modalManager.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { showPdfBatchDialog, BATCH_OPERATIONS };
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
import { create } from 'zustand';
|
|
||||||
import { persist } from 'zustand/middleware';
|
|
||||||
|
|
||||||
export interface PaneSizes {
|
|
||||||
sidebar: number;
|
|
||||||
editor: number;
|
|
||||||
preview: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface AppState {
|
|
||||||
sidebarVisible: boolean;
|
|
||||||
previewVisible: boolean;
|
|
||||||
zenMode: boolean;
|
|
||||||
paneSizes: PaneSizes;
|
|
||||||
toggleSidebar: () => void;
|
|
||||||
togglePreview: () => void;
|
|
||||||
setZenMode: (value: boolean) => void;
|
|
||||||
setPaneSizes: (sizes: PaneSizes) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const useAppStore = create<AppState>()(
|
|
||||||
persist(
|
|
||||||
(set) => ({
|
|
||||||
sidebarVisible: true,
|
|
||||||
previewVisible: true,
|
|
||||||
zenMode: false,
|
|
||||||
paneSizes: { sidebar: 20, editor: 50, preview: 30 },
|
|
||||||
toggleSidebar: () => set((s) => ({ sidebarVisible: !s.sidebarVisible })),
|
|
||||||
togglePreview: () => set((s) => ({ previewVisible: !s.previewVisible })),
|
|
||||||
setZenMode: (value) => set({ zenMode: value }),
|
|
||||||
setPaneSizes: (sizes) => set({ paneSizes: sizes }),
|
|
||||||
}),
|
|
||||||
{ name: 'mc-app-store' }
|
|
||||||
)
|
|
||||||
);
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
import { create } from 'zustand';
|
|
||||||
import { immer } from 'zustand/middleware/immer';
|
|
||||||
import { enableMapSet } from 'immer';
|
|
||||||
|
|
||||||
enableMapSet();
|
|
||||||
|
|
||||||
export interface Buffer {
|
|
||||||
id: string;
|
|
||||||
path: string;
|
|
||||||
content: string;
|
|
||||||
dirty: boolean;
|
|
||||||
cursor?: { line: number; column: number };
|
|
||||||
}
|
|
||||||
|
|
||||||
interface EditorState {
|
|
||||||
buffers: Map<string, Buffer>;
|
|
||||||
activeId: string | null;
|
|
||||||
openBuffer: (id: string, path: string, content: string) => void;
|
|
||||||
updateContent: (id: string, content: string) => void;
|
|
||||||
markSaved: (id: string) => void;
|
|
||||||
setCursor: (id: string, line: number, column: number) => void;
|
|
||||||
closeBuffer: (id: string) => void;
|
|
||||||
setActive: (id: string) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const useEditorStore = create<EditorState>()(
|
|
||||||
immer((set) => ({
|
|
||||||
buffers: new Map(),
|
|
||||||
activeId: null,
|
|
||||||
openBuffer: (id, path, content) =>
|
|
||||||
set((s) => {
|
|
||||||
s.buffers.set(id, { id, path, content, dirty: false });
|
|
||||||
s.activeId = id;
|
|
||||||
}),
|
|
||||||
updateContent: (id, content) =>
|
|
||||||
set((s) => {
|
|
||||||
const buf = s.buffers.get(id);
|
|
||||||
if (buf) {
|
|
||||||
buf.content = content;
|
|
||||||
buf.dirty = true;
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
markSaved: (id) =>
|
|
||||||
set((s) => {
|
|
||||||
const buf = s.buffers.get(id);
|
|
||||||
if (buf) buf.dirty = false;
|
|
||||||
}),
|
|
||||||
setCursor: (id, line, column) =>
|
|
||||||
set((s) => {
|
|
||||||
const buf = s.buffers.get(id);
|
|
||||||
if (buf) buf.cursor = { line, column };
|
|
||||||
}),
|
|
||||||
closeBuffer: (id) =>
|
|
||||||
set((s) => {
|
|
||||||
s.buffers.delete(id);
|
|
||||||
if (s.activeId === id) s.activeId = null;
|
|
||||||
}),
|
|
||||||
setActive: (id) =>
|
|
||||||
set((s) => {
|
|
||||||
s.activeId = id;
|
|
||||||
}),
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
import { create } from 'zustand';
|
|
||||||
|
|
||||||
interface PreviewState {
|
|
||||||
source: string;
|
|
||||||
scrollRatio: number;
|
|
||||||
setSource: (s: string) => void;
|
|
||||||
setScrollRatio: (r: number) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
const DEBOUNCE_MS = 300;
|
|
||||||
let timer: ReturnType<typeof setTimeout> | null = null;
|
|
||||||
let pending: string = '';
|
|
||||||
|
|
||||||
export const usePreviewStore = create<PreviewState>((set) => ({
|
|
||||||
source: '',
|
|
||||||
scrollRatio: 0,
|
|
||||||
setSource: (s) => {
|
|
||||||
pending = s;
|
|
||||||
if (timer) clearTimeout(timer);
|
|
||||||
timer = setTimeout(() => {
|
|
||||||
set({ source: pending });
|
|
||||||
}, DEBOUNCE_MS);
|
|
||||||
},
|
|
||||||
setScrollRatio: (r) => set({ scrollRatio: r }),
|
|
||||||
}));
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
@layer base {
|
|
||||||
:root {
|
|
||||||
--background: 0 0% 100%;
|
|
||||||
--foreground: 0 0% 9%;
|
|
||||||
--card: 0 0% 100%;
|
|
||||||
--card-foreground: 0 0% 9%;
|
|
||||||
--popover: 0 0% 100%;
|
|
||||||
--popover-foreground: 0 0% 9%;
|
|
||||||
--primary: 11 79% 51%;
|
|
||||||
--primary-foreground: 0 0% 100%;
|
|
||||||
--secondary: 0 0% 96%;
|
|
||||||
--secondary-foreground: 0 0% 9%;
|
|
||||||
--muted: 0 0% 96%;
|
|
||||||
--muted-foreground: 0 0% 45%;
|
|
||||||
--accent: 0 0% 96%;
|
|
||||||
--accent-foreground: 0 0% 9%;
|
|
||||||
--destructive: 0 84% 60%;
|
|
||||||
--destructive-foreground: 0 0% 100%;
|
|
||||||
--border: 0 0% 90%;
|
|
||||||
--input: 0 0% 90%;
|
|
||||||
--ring: 11 79% 51%;
|
|
||||||
--radius: 0.5rem;
|
|
||||||
--shadow-sm: 0 1px 2px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-md: 0 4px 12px rgba(13, 11, 9, 0.08), 0 0 0 1px rgba(13, 11, 9, 0.04);
|
|
||||||
--shadow-lg: 0 12px 32px rgba(13, 11, 9, 0.12), 0 0 0 1px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-glow-brand: 0 0 24px rgba(229, 70, 31, 0.25);
|
|
||||||
--glass-bg-light: rgba(255, 255, 255, 0.72);
|
|
||||||
--glass-bg-dark: rgba(13, 11, 9, 0.72);
|
|
||||||
--glass-border-light: rgba(255, 255, 255, 0.4);
|
|
||||||
--glass-border-dark: rgba(255, 255, 255, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dark {
|
|
||||||
--background: 30 14% 4%;
|
|
||||||
--foreground: 0 0% 98%;
|
|
||||||
--card: 30 14% 6%;
|
|
||||||
--card-foreground: 0 0% 98%;
|
|
||||||
--popover: 30 14% 6%;
|
|
||||||
--popover-foreground: 0 0% 98%;
|
|
||||||
--primary: 11 79% 51%;
|
|
||||||
--primary-foreground: 0 0% 100%;
|
|
||||||
--secondary: 30 6% 15%;
|
|
||||||
--secondary-foreground: 0 0% 98%;
|
|
||||||
--muted: 30 6% 15%;
|
|
||||||
--muted-foreground: 0 0% 63%;
|
|
||||||
--accent: 30 6% 15%;
|
|
||||||
--accent-foreground: 0 0% 98%;
|
|
||||||
--destructive: 0 62% 30%;
|
|
||||||
--destructive-foreground: 0 0% 100%;
|
|
||||||
--border: 30 6% 15%;
|
|
||||||
--input: 30 6% 15%;
|
|
||||||
--ring: 11 79% 51%;
|
|
||||||
--shadow-sm: 0 1px 2px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-md: 0 4px 12px rgba(13, 11, 9, 0.08), 0 0 0 1px rgba(13, 11, 9, 0.04);
|
|
||||||
--shadow-lg: 0 12px 32px rgba(13, 11, 9, 0.12), 0 0 0 1px rgba(13, 11, 9, 0.06);
|
|
||||||
--shadow-glow-brand: 0 0 24px rgba(229, 70, 31, 0.25);
|
|
||||||
--glass-bg-light: rgba(255, 255, 255, 0.72);
|
|
||||||
--glass-bg-dark: rgba(13, 11, 9, 0.72);
|
|
||||||
--glass-border-light: rgba(255, 255, 255, 0.4);
|
|
||||||
--glass-border-dark: rgba(255, 255, 255, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
@apply border-border;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
@apply bg-background text-foreground;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Custom scrollbar */
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
width: 6px;
|
|
||||||
height: 6px;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-track {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb {
|
|
||||||
background: hsl(var(--muted-foreground) / 0.3);
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
|
||||||
background: hsl(var(--muted-foreground) / 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CodeMirror integration */
|
|
||||||
.cm-editor {
|
|
||||||
@apply h-full;
|
|
||||||
}
|
|
||||||
.cm-editor .cm-scroller {
|
|
||||||
@apply font-mono text-sm;
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
import '@testing-library/jest-dom/vitest';
|
|
||||||
|
|
||||||
// Mock window.electronAPI for tests
|
|
||||||
declare global {
|
|
||||||
interface Window {
|
|
||||||
electronAPI: any;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof window !== 'undefined' && !window.electronAPI) {
|
|
||||||
window.electronAPI = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mock matchMedia for next-themes (jsdom doesn't have it)
|
|
||||||
if (typeof window !== 'undefined') {
|
|
||||||
Object.defineProperty(window, 'matchMedia', {
|
|
||||||
writable: true,
|
|
||||||
value: (query: string) => ({
|
|
||||||
matches: false,
|
|
||||||
media: query,
|
|
||||||
onchange: null,
|
|
||||||
addListener: () => {},
|
|
||||||
removeListener: () => {},
|
|
||||||
addEventListener: () => {},
|
|
||||||
removeEventListener: () => {},
|
|
||||||
dispatchEvent: () => true,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mock react-resizable-panels for jsdom environment
|
|
||||||
if (typeof window !== 'undefined') {
|
|
||||||
Object.defineProperty(window, 'innerWidth', { writable: true, value: 1920 });
|
|
||||||
Object.defineProperty(window, 'innerHeight', { writable: true, value: 1080 });
|
|
||||||
}
|
|
||||||
Vendored
-90
@@ -1,90 +0,0 @@
|
|||||||
export interface ElectronAPI {
|
|
||||||
// App info
|
|
||||||
getAppVersion: () => Promise<string>;
|
|
||||||
|
|
||||||
// File operations
|
|
||||||
openFile: () => Promise<{ canceled: boolean; filePaths: string[] }>;
|
|
||||||
saveFile: (data: { path: string; content: string }) => Promise<void>;
|
|
||||||
readFile: (path: string) => Promise<string>;
|
|
||||||
setCurrentFile: (path: string | null) => void;
|
|
||||||
|
|
||||||
// Export
|
|
||||||
exportDocument: (format: string, options?: Record<string, any>) => Promise<void>;
|
|
||||||
|
|
||||||
// Theme
|
|
||||||
getTheme: () => void;
|
|
||||||
onThemeChanged: (callback: (theme: string) => void) => () => void;
|
|
||||||
|
|
||||||
// File events
|
|
||||||
onFileOpened: (callback: (data: { path: string; content: string }) => void) => () => void;
|
|
||||||
onFileNew: (callback: () => void) => () => void;
|
|
||||||
onFileSave: (callback: () => void) => () => void;
|
|
||||||
|
|
||||||
// Conversion status
|
|
||||||
onConversionStatus: (callback: (message: string) => void) => () => void;
|
|
||||||
onConversionComplete: (callback: (data: { format: string; outputPath: string }) => void) => () => void;
|
|
||||||
|
|
||||||
// Dialogs
|
|
||||||
showExportDialog: (format: string) => void;
|
|
||||||
showBatchDialog: () => void;
|
|
||||||
showUniversalConverterDialog: () => void;
|
|
||||||
showTableGenerator: () => void;
|
|
||||||
showPdfEditorDialog: () => void;
|
|
||||||
showHeaderFooterDialog: () => void;
|
|
||||||
showFieldPickerDialog: () => void;
|
|
||||||
|
|
||||||
// Settings
|
|
||||||
getSettings: (key: string) => Promise<any>;
|
|
||||||
setSettings: (key: string, value: any) => Promise<void>;
|
|
||||||
|
|
||||||
// Plugin settings
|
|
||||||
getPluginSetting: (key: string) => Promise<any>;
|
|
||||||
setPluginSetting: (key: string, value: any) => Promise<void>;
|
|
||||||
|
|
||||||
// Sidebar
|
|
||||||
toggleSidebar: () => void;
|
|
||||||
toggleBottomPanel: () => void;
|
|
||||||
|
|
||||||
// Print
|
|
||||||
doPrint: (options?: any) => void;
|
|
||||||
|
|
||||||
// PDF
|
|
||||||
openPdfViewer: (filePath: string) => void;
|
|
||||||
processPdfOperation: (data: any) => void;
|
|
||||||
|
|
||||||
// Images
|
|
||||||
selectFolder: () => Promise<string | null>;
|
|
||||||
savePastedImage: (data: { base64: string; ext: string }) => Promise<{ relativePath: string } | null>;
|
|
||||||
|
|
||||||
// Templates
|
|
||||||
loadTemplate: (file: string) => Promise<string>;
|
|
||||||
getSnippets: () => Promise<any[]>;
|
|
||||||
saveSnippet: (snippet: any) => Promise<void>;
|
|
||||||
deleteSnippet: (id: string) => Promise<void>;
|
|
||||||
|
|
||||||
// Git
|
|
||||||
gitStatus: () => Promise<any>;
|
|
||||||
gitDiff: (file: string) => Promise<any>;
|
|
||||||
gitStage: (files: string[]) => Promise<void>;
|
|
||||||
gitCommit: (message: string) => Promise<void>;
|
|
||||||
gitLog: () => Promise<any[]>;
|
|
||||||
|
|
||||||
// Directory
|
|
||||||
listDirectory: (dir: string) => Promise<any[] | null>;
|
|
||||||
openFilePath: (path: string) => void;
|
|
||||||
|
|
||||||
// Custom CSS
|
|
||||||
selectCustomCSS: () => Promise<string | null>;
|
|
||||||
loadCustomCSS: () => void;
|
|
||||||
clearCustomCSS: () => void;
|
|
||||||
|
|
||||||
// Generic invoke/on
|
|
||||||
invoke: (channel: string, data?: any) => Promise<any>;
|
|
||||||
on: (channel: string, callback: (...args: any[]) => void) => () => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface Window {
|
|
||||||
electronAPI: ElectronAPI;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
export type IpcResult<T> =
|
|
||||||
| { ok: true; data: T }
|
|
||||||
| { ok: false; error: { code: string; message: string } };
|
|
||||||
|
|
||||||
export interface FileEntry {
|
|
||||||
name: string;
|
|
||||||
path: string;
|
|
||||||
isDirectory: boolean;
|
|
||||||
size?: number;
|
|
||||||
modifiedAt?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface FileResult {
|
|
||||||
path: string;
|
|
||||||
content: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface PdfOptions {
|
|
||||||
inputPath: string;
|
|
||||||
outputPath: string;
|
|
||||||
format?: 'letter' | 'a4' | 'legal';
|
|
||||||
margins?: { top: number; right: number; bottom: number; left: number };
|
|
||||||
toc?: boolean;
|
|
||||||
embedFonts?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface DocxOptions {
|
|
||||||
inputPath: string;
|
|
||||||
outputPath: string;
|
|
||||||
template?: string;
|
|
||||||
referenceDoc?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface HtmlOptions {
|
|
||||||
inputPath: string;
|
|
||||||
outputPath: string;
|
|
||||||
standalone?: boolean;
|
|
||||||
highlightStyle?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ExportResult {
|
|
||||||
outputPath: string;
|
|
||||||
bytes: number;
|
|
||||||
durationMs: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface BatchItem {
|
|
||||||
inputPath: string;
|
|
||||||
outputPath: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface BatchOptions {
|
|
||||||
format: 'pdf' | 'docx' | 'html' | 'png';
|
|
||||||
concurrency?: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface BatchResult {
|
|
||||||
total: number;
|
|
||||||
succeeded: number;
|
|
||||||
failed: number;
|
|
||||||
results: Array<{ item: BatchItem; ok: boolean; error?: string }>;
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
const path = require('path');
|
|
||||||
|
|
||||||
function renderExplorerPanel(container, { listDirectory, onFileOpen, currentDir }) {
|
function renderExplorerPanel(container, { listDirectory, onFileOpen, currentDir }) {
|
||||||
container.innerHTML = `
|
container.innerHTML = `
|
||||||
<div class="explorer-panel">
|
<div class="explorer-panel">
|
||||||
@@ -15,19 +13,33 @@ function renderExplorerPanel(container, { listDirectory, onFileOpen, currentDir
|
|||||||
const dir = await listDirectory(null); // null means open folder dialog
|
const dir = await listDirectory(null); // null means open folder dialog
|
||||||
if (dir) {
|
if (dir) {
|
||||||
document.getElementById('explorer-path').value = dir.path;
|
document.getElementById('explorer-path').value = dir.path;
|
||||||
renderTree(document.getElementById('explorer-tree'), dir.entries, listDirectory, onFileOpen, dir.path);
|
renderTree(
|
||||||
|
document.getElementById('explorer-tree'),
|
||||||
|
dir.entries,
|
||||||
|
listDirectory,
|
||||||
|
onFileOpen,
|
||||||
|
dir.path
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (currentDir) {
|
if (currentDir) {
|
||||||
listDirectory(currentDir).then(dir => {
|
listDirectory(currentDir).then((dir) => {
|
||||||
if (dir) renderTree(document.getElementById('explorer-tree'), dir.entries, listDirectory, onFileOpen, currentDir);
|
if (dir)
|
||||||
|
renderTree(
|
||||||
|
document.getElementById('explorer-tree'),
|
||||||
|
dir.entries,
|
||||||
|
listDirectory,
|
||||||
|
onFileOpen,
|
||||||
|
currentDir
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderTree(container, entries, listDirectory, onFileOpen, basePath) {
|
function renderTree(container, entries, listDirectory, onFileOpen, _basePath) {
|
||||||
container.innerHTML = entries.map(entry => {
|
container.innerHTML = entries
|
||||||
|
.map((entry) => {
|
||||||
if (entry.isDirectory) {
|
if (entry.isDirectory) {
|
||||||
return `<div class="tree-item tree-folder collapsed" data-path="${entry.path}">
|
return `<div class="tree-item tree-folder collapsed" data-path="${entry.path}">
|
||||||
<span class="tree-icon">▶</span>
|
<span class="tree-icon">▶</span>
|
||||||
@@ -39,9 +51,10 @@ function renderTree(container, entries, listDirectory, onFileOpen, basePath) {
|
|||||||
<span class="tree-icon">${getFileIcon(entry.name)}</span>
|
<span class="tree-icon">${getFileIcon(entry.name)}</span>
|
||||||
<span class="tree-name">${entry.name}</span>
|
<span class="tree-name">${entry.name}</span>
|
||||||
</div>`;
|
</div>`;
|
||||||
}).join('');
|
})
|
||||||
|
.join('');
|
||||||
|
|
||||||
container.querySelectorAll('.tree-folder').forEach(el => {
|
container.querySelectorAll('.tree-folder').forEach((el) => {
|
||||||
el.querySelector('.tree-name').addEventListener('click', async () => {
|
el.querySelector('.tree-name').addEventListener('click', async () => {
|
||||||
const isCollapsed = el.classList.contains('collapsed');
|
const isCollapsed = el.classList.contains('collapsed');
|
||||||
if (isCollapsed) {
|
if (isCollapsed) {
|
||||||
@@ -52,18 +65,29 @@ function renderTree(container, entries, listDirectory, onFileOpen, basePath) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
el.classList.toggle('collapsed');
|
el.classList.toggle('collapsed');
|
||||||
el.querySelector('.tree-icon').textContent = el.classList.contains('collapsed') ? '\u25B6' : '\u25BC';
|
el.querySelector('.tree-icon').textContent = el.classList.contains('collapsed')
|
||||||
|
? '\u25B6'
|
||||||
|
: '\u25BC';
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
container.querySelectorAll('.tree-file').forEach(el => {
|
container.querySelectorAll('.tree-file').forEach((el) => {
|
||||||
el.addEventListener('click', () => onFileOpen(el.dataset.path));
|
el.addEventListener('click', () => onFileOpen(el.dataset.path));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getFileIcon(filename) {
|
function getFileIcon(filename) {
|
||||||
const ext = filename.split('.').pop().toLowerCase();
|
const ext = filename.split('.').pop().toLowerCase();
|
||||||
const icons = { md: '\u{1F4DD}', js: '\u{1F4DC}', json: '{}', html: '\u{1F310}', css: '\u{1F3A8}', py: '\u{1F40D}', pdf: '\u{1F4D5}', txt: '\u{1F4C4}' };
|
const icons = {
|
||||||
|
md: '\u{1F4DD}',
|
||||||
|
js: '\u{1F4DC}',
|
||||||
|
json: '{}',
|
||||||
|
html: '\u{1F310}',
|
||||||
|
css: '\u{1F3A8}',
|
||||||
|
py: '\u{1F40D}',
|
||||||
|
pdf: '\u{1F4D5}',
|
||||||
|
txt: '\u{1F4C4}',
|
||||||
|
};
|
||||||
return icons[ext] || '\u{1F4C4}';
|
return icons[ext] || '\u{1F4C4}';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user