mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-03 02:11:07 +05:30
Compare commits
66
Commits
v5.0.1
...
react-electron
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f63a678c88 | ||
|
|
5e76d77ece | ||
|
|
f43e34ca2b | ||
|
|
6da2ba7cc7 | ||
|
|
f1f8a16a79 | ||
|
|
772a791d9a | ||
|
|
ec3d53ea7e | ||
|
|
50c6369348 | ||
|
|
81d38160d8 | ||
|
|
28ef350f39 | ||
|
|
d29f19b1f5 | ||
|
|
b2ad8b8326 | ||
|
|
d2f3118bfe | ||
|
|
4cb38cd861 | ||
|
|
65dfdfb307 | ||
|
|
f1c3aaa0ef | ||
|
|
0c37a8ca2d | ||
|
|
992c6b72d6 | ||
|
|
001c9463e3 | ||
|
|
3602bc35a7 | ||
|
|
14b5a38a5a | ||
|
|
33a61e65ef | ||
|
|
857fd8a75a | ||
|
|
b8d26c8d78 | ||
|
|
bb4e874809 | ||
|
|
36422a9ab3 | ||
|
|
7eb90d467a | ||
|
|
809c266e54 | ||
|
|
2e3f4dda0f | ||
|
|
21a00a53a4 | ||
|
|
f2398e6e1a | ||
|
|
6b564a4569 | ||
|
|
2389d4f297 | ||
|
|
50f4f62575 | ||
|
|
9ef5317d71 | ||
|
|
cf6b6817b9 | ||
|
|
e25a5e1d75 | ||
|
|
c5d4b113bd | ||
|
|
1715e26e5f | ||
|
|
81484a8d33 | ||
|
|
6df1389cc8 | ||
|
|
aeadde5f40 | ||
|
|
74dde8d6d1 | ||
|
|
cd57f34c36 | ||
|
|
4da701deb5 | ||
|
|
41c68fcf82 | ||
|
|
9b899b5205 | ||
|
|
691b00a2b8 | ||
|
|
ade6c115b8 | ||
|
|
cc33e6c7a8 | ||
|
|
59fd9b8646 | ||
|
|
d87f175212 | ||
|
|
ef88b6343b | ||
|
|
e8c9f95d25 | ||
|
|
f85c1a8107 | ||
|
|
b1b9aa3727 | ||
|
|
77ad2fdb9d | ||
|
|
c62070304f | ||
|
|
9f4bfbdfee | ||
|
|
2e41b59da5 | ||
|
|
57c8f92f42 | ||
|
|
9da4b96f76 | ||
|
|
5b81988f30 | ||
|
|
a5da5d19bc | ||
|
|
74ff6afb19 | ||
|
|
5ef1610873 |
@@ -2,9 +2,9 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [master, react-electron]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master, react-electron]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
@@ -24,5 +24,8 @@ jobs:
|
|||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: npm test
|
run: npm test
|
||||||
|
|
||||||
|
- name: Run renderer tests
|
||||||
|
run: npm run test:renderer
|
||||||
|
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ jobs:
|
|||||||
run: npm test
|
run: npm test
|
||||||
|
|
||||||
- name: Build Linux packages
|
- name: Build Linux packages
|
||||||
run: npm run build:linux-ci -- --publish=never
|
run: npm run build:linux-ci -- --publish=always
|
||||||
|
|
||||||
- name: Upload Linux artifacts
|
- name: Upload Linux artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -77,13 +77,13 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CSC_LINK: code-signing-cert.pfx
|
CSC_LINK: code-signing-cert.pfx
|
||||||
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||||
run: npm run build:win-signed -- --publish=never
|
run: npm run build:win-signed -- --publish=always
|
||||||
|
|
||||||
- name: Build Windows packages (unsigned)
|
- name: Build Windows packages (unsigned)
|
||||||
if: ${{ env.CERT_AVAILABLE != 'true' }}
|
if: ${{ env.CERT_AVAILABLE != 'true' }}
|
||||||
env:
|
env:
|
||||||
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
||||||
run: npm run build:win-unsigned -- --publish=never
|
run: npm run build:win-unsigned -- --publish=always
|
||||||
|
|
||||||
- name: Upload Windows artifacts
|
- name: Upload Windows artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -117,7 +117,7 @@ jobs:
|
|||||||
- name: Build macOS packages (unsigned)
|
- name: Build macOS packages (unsigned)
|
||||||
env:
|
env:
|
||||||
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
||||||
run: npm run build:mac -- --publish=never
|
run: npm run build:mac -- --publish=always
|
||||||
|
|
||||||
- name: Upload macOS artifacts
|
- name: Upload macOS artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -161,3 +161,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
files: dist/*
|
files: dist/*
|
||||||
|
|
||||||
|
- name: Mirror artifacts to ConcreteInfo update feed
|
||||||
|
if: env.CONCRETEINFO_DEPLOY_HOOK != ''
|
||||||
|
env:
|
||||||
|
CONCRETEINFO_DEPLOY_HOOK: ${{ secrets.CONCRETEINFO_DEPLOY_HOOK }}
|
||||||
|
run: |
|
||||||
|
curl -fsSL -X POST \
|
||||||
|
-H "Authorization: Bearer ${{ secrets.CONCRETEINFO_DEPLOY_HOOK }}" \
|
||||||
|
-F "version=${GITHUB_REF_NAME#v}" \
|
||||||
|
-F "artifacts=@dist/latest-mac.yml" \
|
||||||
|
-F "artifacts=@dist/latest-linux.yml" \
|
||||||
|
-F "artifacts=@dist/latest-windows.yml" \
|
||||||
|
https://updates.concreteinfo.co.in/api/v1/ingest
|
||||||
|
|||||||
@@ -5,6 +5,15 @@ All notable changes to markdown-converter will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [5.1.0] - 2026-06-08
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Auto-update via electron-updater against GitHub Releases (default) or ConcreteInfo self-hosted feed.
|
||||||
|
- Light, skippable first-run wizard: theme, update channel, starter template.
|
||||||
|
- One-shot v4.4.1 → v5 settings migration with backup at `settings.v4.bak.json`.
|
||||||
|
- Local crash dump capture (cap 20, auto-prune) and a CrashReportModal.
|
||||||
|
- "Updates" section in Settings: channel picker, Check now, auto-check toggle.
|
||||||
|
|
||||||
## [5.0.0] - 2026-06-06
|
## [5.0.0] - 2026-06-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -41,3 +50,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- 9 dead IPC channels from `src/preload.js`: `toggle-command-palette`, `print-preview`, `print-preview-styled`, `open-ascii-generator`, `open-table-generator`, `show-ascii-generator`, `show-ascii-generator-window`, `show-table-generator`, `show-table-generator-window`
|
- 9 dead IPC channels from `src/preload.js`: `toggle-command-palette`, `print-preview`, `print-preview-styled`, `open-ascii-generator`, `open-table-generator`, `show-ascii-generator`, `show-ascii-generator-window`, `show-table-generator`, `show-table-generator-window`
|
||||||
|
|
||||||
[5.0.0]: https://github.com/amitwh/markdown-converter/releases/tag/v5.0.0
|
[5.0.0]: https://github.com/amitwh/markdown-converter/releases/tag/v5.0.0
|
||||||
|
|
||||||
|
## [5.1.0] - 2026-07-23 - react-electron parity
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **Monospace font embedding** — bundles JetBrains Mono + Fira Code TTFs and embeds the active font into PDF (xelatex fontspec), DOCX (post-pandoc zip patch with `fontTable.xml`), EPUB (`--epub-embed-font` + manifest), and HTML (woff2 base64 in CSS) exports. ASCII art and code blocks now render with the exact same font across machines.
|
||||||
|
- **Monospace settings** — `get-monospace-settings` / `set-monospace-settings` IPC, with `monospaceFont` (`jetbrains-mono` / `fira-code`) and `monospaceLigatures` (boolean).
|
||||||
|
- **Renderer body-class toggle** — `useMonospaceClasses` hook toggles `mono-jetbrains-mono` / `mono-fira-code` and `mono-ligatures-on` / `mono-ligatures-off` on `document.body`, driving `--font-mono-active` and `--font-mono-feature` CSS tokens.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **App renamed to Markdown Converter React** (`com.concreteinfo.markdownconverter.react`, npm name `markdown-converter-react`, deb `markdown-converter-react_*_amd64.deb`) so the dev build coexists with the installed `markdown-converter` deb without single-instance lock conflicts.
|
||||||
|
- Window title shows `Markdown Converter — React Dev` in dev mode.
|
||||||
|
- `download-tools.js` pins Fira Code to release `6.2` with SHA-256 digests verified before atomic rename; downloads refuse to start on digest mismatch.
|
||||||
|
|
||||||
|
### Security
|
||||||
|
- `PdfFontHeader` uses `fs.mkdtempSync` for an exclusive temp directory; the caller unlinks it after pandoc consumes the header (no racy `Date.now()+pid` filenames).
|
||||||
|
|||||||
@@ -0,0 +1,145 @@
|
|||||||
|
# CLAUDE.md — MarkdownConverter (react-electron)
|
||||||
|
|
||||||
|
> General code-quality, TypeScript, 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, plugin system, and auto-updater.
|
||||||
|
|
||||||
|
- **Version:** 5.0.1
|
||||||
|
- **License:** MIT
|
||||||
|
- **App ID:** `com.concreteinfo.markdownconverter`
|
||||||
|
|
||||||
|
## Branch Specifics
|
||||||
|
|
||||||
|
This is the **React rewrite branch** — the renderer has been rebuilt with React 19 + TypeScript + Tailwind CSS + shadcn/ui, replacing the vanilla JS renderer from master. The main process remains vanilla CommonJS JavaScript. A dual dev workflow runs Vite (renderer) and Electron (main) concurrently.
|
||||||
|
|
||||||
|
Key differences from master:
|
||||||
|
- Renderer: React 19 + TypeScript (TSX) instead of vanilla JS DOM manipulation
|
||||||
|
- Bundler: Vite for the renderer (`vite.renderer.config.ts`)
|
||||||
|
- UI: shadcn/ui (Radix primitives + Tailwind) instead of hand-rolled CSS
|
||||||
|
- State: Zustand 5 stores instead of global mutable state
|
||||||
|
- Security: `contextIsolation: true` + `nodeIntegration: false` (preload with channel whitelisting) instead of master's open renderer
|
||||||
|
- Build: two-stage (Vite build renderer, then electron-builder packages) instead of single electron-builder pass
|
||||||
|
- Testing: dual test runners — Vitest (renderer/React/TS) + Jest (main process/JS)
|
||||||
|
- Main process is now in `src/main/` (modular) instead of flat `src/main.js`
|
||||||
|
- Adds auto-updater via `electron-updater` with GitHub Releases + self-hosted feed support
|
||||||
|
- Adds React Hook Form + Zod for form validation, Lucide React icons, Motion for animations
|
||||||
|
- Legacy sidebar modules (`src/sidebar/*.js`) still exist alongside new React sidebar (`src/renderer/components/sidebar/`)
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### Main Process (`src/main/`)
|
||||||
|
Modular structure (improvement over master's monolith):
|
||||||
|
- `src/main/index.js` — IPC handlers, Pandoc invocation, export logic (~3,500 lines)
|
||||||
|
- `src/main/PDFOperations.js` — PDF manipulation via `pdf-lib`
|
||||||
|
- `src/main/GitOperations.js` — Git operations via `simple-git`
|
||||||
|
- `src/main/store.js` — Custom JSON settings store (NOT electron-store)
|
||||||
|
- `src/main/window/index.js` — BrowserWindow creation with three-mode loading (dev/prod/packaged)
|
||||||
|
- `src/main/menu/` — Application menu definitions
|
||||||
|
- `src/main/ipc/` — Crash handlers, updater handlers
|
||||||
|
- `src/main/updater/` — Auto-update service, feed config, migration runner
|
||||||
|
- `src/main/files/` — File operation modules
|
||||||
|
- `src/main/word-template/` — Word template export
|
||||||
|
|
||||||
|
### Preload (`src/preload.js`)
|
||||||
|
Properly isolated. Uses `contextBridge` with **channel whitelisting** (`ALLOWED_SEND_CHANNELS`, `ALLOWED_RECEIVE_CHANNELS` arrays). The renderer has no direct Node access.
|
||||||
|
|
||||||
|
### Renderer (`src/renderer/`)
|
||||||
|
React 19 + TypeScript application bundled by Vite:
|
||||||
|
- `src/renderer/App.tsx` — Root component: assembles AppShell, modals, command palette, toaster
|
||||||
|
- `src/renderer/components/layout/AppShell.tsx` — Three-panel resizable layout (sidebar | editor | preview)
|
||||||
|
- `src/renderer/stores/` — Zustand stores: `app-store`, `editor-store`, `file-store`, `preview-store`, `settings-store`, `command-store`
|
||||||
|
- `src/renderer/hooks/` — Custom hooks: `use-shortcut`, `use-file-shortcuts`, `use-menu-action`, `use-scroll-sync`, `use-zen-mode`, `use-export-source`
|
||||||
|
- `src/renderer/components/modals/` — 30+ modal dialogs as React components
|
||||||
|
- `src/renderer/components/editor/` — CodeMirror 6 editor React wrapper
|
||||||
|
- `src/renderer/components/preview/` — Markdown renderer with Mermaid lazy loading
|
||||||
|
- `src/renderer/components/sidebar/` — React sidebar panels (FileTree, GitStatus, Outline, Snippets, Templates)
|
||||||
|
- `src/renderer/components/ui/` — shadcn/ui primitives (button, dialog, sheet, select, tabs, etc.)
|
||||||
|
- `src/renderer/lib/` — Utilities: typed IPC wrapper (`ipc.ts`), export modules, validators
|
||||||
|
- `src/renderer/types/` — TypeScript declarations: `electron.d.ts` (window.electronAPI), `ipc.ts` (IPC types)
|
||||||
|
|
||||||
|
### Security Model
|
||||||
|
- **`contextIsolation: true` + `nodeIntegration: false`** (properly secured, unlike master)
|
||||||
|
- Preload with explicit channel whitelisting
|
||||||
|
- TypeScript declarations ensure type-safe IPC
|
||||||
|
- Pandoc invoked via `execFile` (not `exec`)
|
||||||
|
- Permission handler: only `clipboard-read`/`clipboard-write` allowed
|
||||||
|
- ESLint enforces `no-eval`, `no-implied-eval`, `no-new-func`
|
||||||
|
- CSP in `index.html` restricts script/style/img/font/connect sources
|
||||||
|
|
||||||
|
### Plugin System (`src/plugins/`)
|
||||||
|
Unchanged from master. Manifest-based discovery, built-in `writing-studio` plugin.
|
||||||
|
|
||||||
|
## System Dependencies
|
||||||
|
|
||||||
|
| Dependency | Required | Notes |
|
||||||
|
|---|---|---|
|
||||||
|
| **Node.js** | >= 20 | Electron 41 bundles Node 20.x; Vite 8 requires Node 18+ |
|
||||||
|
| **Pandoc** | Yes (for exports) | Downloaded to `bin/<platform>/pandoc` via `scripts/download-tools.js` (v3.9.0.2). Falls back to system PATH. |
|
||||||
|
| **FFmpeg** | Bundled | `ffmpeg-static` npm package; `asarUnpacked` |
|
||||||
|
| **MiKTeX / TeX Live** | Optional | LaTeX PDF export; MiKTeX PATH injected on Windows |
|
||||||
|
| **ImageMagick** | Optional | Linux image conversion; deb dependency |
|
||||||
|
| **LibreOffice** | Optional | Enhanced document conversion; deb dependency |
|
||||||
|
|
||||||
|
## Development Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run dev # Start dev mode: Vite dev server (port 5173) + Electron (concurrently)
|
||||||
|
npm run dev:renderer # Vite dev server only (port 5173)
|
||||||
|
npm run dev:electron # Electron only (waits for Vite on tcp:5173)
|
||||||
|
npm start # Launch Electron app (prod mode, requires built renderer)
|
||||||
|
npm run preview # Build renderer then launch Electron
|
||||||
|
npm test # Jest — main process tests (vanilla JS)
|
||||||
|
npm run test:renderer # Vitest — renderer tests (React/TS)
|
||||||
|
npm run lint # ESLint check
|
||||||
|
npm run lint:fix # ESLint auto-fix
|
||||||
|
npm run format # Prettier write
|
||||||
|
npm run format:check # Prettier check
|
||||||
|
npm run download-tools # Download Pandoc binaries
|
||||||
|
npm run generate-icons # Generate app icons
|
||||||
|
```
|
||||||
|
|
||||||
|
**Dev workflow:** `npm run dev` starts Vite (renderer HMR on `:5173`) and Electron concurrently. The main process loads from `http://localhost:5173` in dev mode.
|
||||||
|
|
||||||
|
## Build & Package
|
||||||
|
|
||||||
|
**Two-stage build process:**
|
||||||
|
1. `npm run build:renderer` — Vite builds renderer to `dist/renderer/`
|
||||||
|
2. `npm run build` — electron-builder packages main process + preload + built renderer
|
||||||
|
|
||||||
|
**Tool:** `electron-builder` (v26.0.12), config inline in `package.json`.
|
||||||
|
|
||||||
|
| Target | Platforms |
|
||||||
|
|---|---|
|
||||||
|
| `npm run build:win` | Windows: NSIS + portable + zip (x64) |
|
||||||
|
| `npm run build:mac` | macOS: dmg + zip (x64 + arm64) |
|
||||||
|
| `npm run build:linux` | Linux: deb + AppImage + snap |
|
||||||
|
|
||||||
|
**Packaged files:** `src/main/**`, `src/preload.js`, `src/plugins/**`, `package.json`. Renderer built output copied to resources as `renderer/`.
|
||||||
|
|
||||||
|
**Bundled with builds:** Pandoc binary per platform, FFmpeg (asarUnpacked).
|
||||||
|
|
||||||
|
**Output:** `dist/` directory.
|
||||||
|
|
||||||
|
**Auto-updater:** `electron-updater` with GitHub Releases (default) and optional ConcreteInfo self-hosted feed.
|
||||||
|
|
||||||
|
**CI:** GitHub Actions workflows in `.github/workflows/` (ci.yml, release.yml).
|
||||||
|
|
||||||
|
## Project Conventions / Gotchas
|
||||||
|
|
||||||
|
- **Dual-process architecture.** Main process is vanilla CommonJS JavaScript (`src/main/`). Renderer is React 19 + TypeScript + Tailwind (`src/renderer/`). They are separate build targets.
|
||||||
|
- **Vite for renderer only.** Main process is NOT bundled — Electron loads `src/main/index.js` directly. Do not add TypeScript to main process files.
|
||||||
|
- **Tailwind + shadcn/ui.** Use shadcn/ui components (`src/renderer/components/ui/`) for all UI primitives. Custom theme in `tailwind.config.js`. Path alias `@` maps to `src/renderer/`. Brand color: `#e5461f`.
|
||||||
|
- **Zustand for state.** All renderer state lives in `src/renderer/stores/`. Each store is a separate file. Use immer for immutable updates.
|
||||||
|
- **Typed IPC.** `src/renderer/types/electron.d.ts` declares `window.electronAPI`. `src/renderer/lib/ipc.ts` provides type-safe wrappers. When adding new IPC channels, update both the preload whitelist AND the TypeScript declarations.
|
||||||
|
- **Legacy + new sidebar.** `src/sidebar/*.js` (vanilla JS) and `src/renderer/components/sidebar/` (React TSX) both exist. New sidebar features go in the React version.
|
||||||
|
- **Pandoc is external.** Must be present for non-HTML/PDF exports. Download via `npm run download-tools` or install system-wide.
|
||||||
|
- **PDF export fallback chain:** xelatex -> pdflatex -> lualatex -> Electron built-in `printToPDF()`.
|
||||||
|
- **PDF rendering:** `pdfjs-dist` (viewer). **PDF manipulation:** `pdf-lib` in main process.
|
||||||
|
- **Editor:** CodeMirror 6, configured in `src/editor/codemirror-setup.js`, wrapped as React component in `src/renderer/components/editor/CodeMirrorEditor.tsx`.
|
||||||
|
- **Tests:** Jest (main process, `tests/**/*.test.js`, 15% threshold) + Vitest (renderer, `tests/**/*.{test,spec}.{ts,tsx}`, v8 coverage on `src/renderer/`).
|
||||||
|
- **ESLint flat config** with ECMAScript 2022. Prettier: 2-space, single quotes, semicolons, 100-char width.
|
||||||
|
- **No tsconfig.json at root** — TypeScript is renderer-only, handled by Vite. Do not add `tsconfig.json` for the main process.
|
||||||
|
- **File associations:** `.md`, `.markdown`, `.pdf` registered at install.
|
||||||
|
- **Single instance lock** via `app.requestSingleInstanceLock()`.
|
||||||
@@ -140,6 +140,21 @@ Open PDF files directly in MarkdownConverter:
|
|||||||
- Rotate pages left or right
|
- Rotate pages left or right
|
||||||
- Close PDF to return to editor
|
- Close PDF to return to editor
|
||||||
|
|
||||||
|
## Distribution & Updates
|
||||||
|
|
||||||
|
v5.x uses `electron-updater` against two feeds:
|
||||||
|
|
||||||
|
- **GitHub Releases** (default, public): the public release at `https://github.com/amitwh/markdown-converter/releases`. The CI workflow publishes `latest-{mac,linux,windows}.yml` on every tag.
|
||||||
|
- **ConcreteInfo self-hosted** (opt-in for enterprise deployments): `https://updates.concreteinfo.co.in/v5/`. CI mirrors artifacts on every release when `CONCRETEINFO_DEPLOY_HOOK` is set as a repository secret.
|
||||||
|
|
||||||
|
Users switch the feed in **Settings → Updates → Update channel**. Auto-check is enabled by default; disable it in the same panel.
|
||||||
|
|
||||||
|
### Manual mirror
|
||||||
|
|
||||||
|
```bash
|
||||||
|
CONCRETEINFO_DEPLOY_HOOK=... npm run publish:concreteinfo -- 5.1.0
|
||||||
|
```
|
||||||
|
|
||||||
## Open Source
|
## Open Source
|
||||||
|
|
||||||
MarkdownConverter is 100% open-source. All dependencies are permissively licensed:
|
MarkdownConverter is 100% open-source. All dependencies are permissively licensed:
|
||||||
|
|||||||
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.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,295 @@
|
|||||||
|
# Production polish — v5 shippable build
|
||||||
|
|
||||||
|
**Date:** 2026-06-07
|
||||||
|
**Branch:** `react-electron`
|
||||||
|
**Status:** Draft, pending implementation plan
|
||||||
|
**Author:** Claude (brainstormed with Amit Haridas)
|
||||||
|
|
||||||
|
## 1. Goals & non-goals
|
||||||
|
|
||||||
|
### Goals
|
||||||
|
|
||||||
|
v5 is reliably shippable to two distribution channels:
|
||||||
|
|
||||||
|
- **GitHub Releases** (public, free, existing workflow).
|
||||||
|
- **ConcreteInfo update server** at `https://updates.concreteinfo.co.in/v5/` (self-hosted, for ConcreteInfo's own users).
|
||||||
|
|
||||||
|
Concretely:
|
||||||
|
|
||||||
|
- A non-blocking update banner surfaces "v5.0.2 is available" with a user-confirmed restart-to-install flow. No silent background installs.
|
||||||
|
- A light first-run wizard (theme + update channel + starter template), all skippable.
|
||||||
|
- One-shot auto-migration from v4.4.1 settings, with a v4 backup file and a toast on success/failure.
|
||||||
|
- Local crash dump capture (no third-party). CrashReportModal lets the user open the dump folder and copy/delete dumps.
|
||||||
|
- GitHub Actions CI that builds + uploads artifacts on tag and runs the test suite on every PR.
|
||||||
|
|
||||||
|
### Non-goals (deferred to v5.1+)
|
||||||
|
|
||||||
|
- **Code signing.** macOS Gatekeeper and Windows SmartScreen will warn. Re-evaluated for v5.1.
|
||||||
|
- **Sentry or any third-party crash reporting.** Local dumps only.
|
||||||
|
- **Auto-install on quit.** Always user-confirmed.
|
||||||
|
- **Delta updates** (full downloads only in v5).
|
||||||
|
- **Plugin system, cloud/licensing, perf/a11y** — each is its own subsequent spec.
|
||||||
|
|
||||||
|
## 2. Architecture
|
||||||
|
|
||||||
|
```
|
||||||
|
GitHub Releases (public) ConcreteInfo (CI feed)
|
||||||
|
└── *.zip, *.dmg, *.exe, └── *.zip, *.dmg, *.exe,
|
||||||
|
*.deb, *.rpm, *.deb, *.rpm,
|
||||||
|
latest.yml, latest- latest.yml, latest-
|
||||||
|
mac.yml, latest- mac.yml, latest-
|
||||||
|
linux.yml, latest- linux.yml, latest-
|
||||||
|
windows.yml windows.yml
|
||||||
|
▲ ▲
|
||||||
|
│ │
|
||||||
|
└──────┬───────────────────────┘
|
||||||
|
│ electron-updater reads
|
||||||
|
│ the channel chosen in
|
||||||
|
│ Settings (default: GitHub)
|
||||||
|
▼
|
||||||
|
┌─────────────────────────────────────────────────────┐
|
||||||
|
│ Main process (src/main/updater/) │
|
||||||
|
│ - Updater service: wraps electron-updater │
|
||||||
|
│ - Channel resolver: returns feed URL from setting │
|
||||||
|
│ - State machine: idle → checking → available → │
|
||||||
|
│ downloading → ready → installing │
|
||||||
|
│ - Crash writer: catches process.on('uncaught…) │
|
||||||
|
│ - Migration runner: idempotent, runs on app start│
|
||||||
|
└─────────────────────────────────────────────────────┘
|
||||||
|
▲ ▲
|
||||||
|
│ IPC (renderer→main, │ IPC (renderer→main,
|
||||||
|
│ allowlisted SEND) │ allowlisted SEND)
|
||||||
|
│ updater:check, │ crash:read,
|
||||||
|
│ updater:install, │ crash:open-dir,
|
||||||
|
│ updater:get-state │ crash:delete
|
||||||
|
│ │
|
||||||
|
│ IPC (main→renderer, │
|
||||||
|
│ allowlisted RECEIVE) │
|
||||||
|
│ updater:status │
|
||||||
|
▼ ▼
|
||||||
|
┌─────────────────────────────────────────────────────┐
|
||||||
|
│ Renderer (preload bridge + React) │
|
||||||
|
│ - Update banner: "v5.0.2 available" │
|
||||||
|
│ - Settings: Update channel radio │
|
||||||
|
│ - First-run wizard: skip-links, all optional │
|
||||||
|
│ - Crash dialog: open dump dir, copy file │
|
||||||
|
│ - Migration: first-launch indicator in settings │
|
||||||
|
└─────────────────────────────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
### Key boundaries
|
||||||
|
|
||||||
|
- **`src/main/updater/`** is a single new directory. `updater-service.js` owns the `electron-updater` lifecycle, never the renderer.
|
||||||
|
- **Renderer talks to updater over IPC only.** No direct `autoUpdater` import in preload. Channels must be in `ALLOWED_SEND_CHANNELS` / `ALLOWED_RECEIVE_CHANNELS`.
|
||||||
|
- **Channel switching is a settings change.** No restart required; the next `checkForUpdates()` reads the new feed URL.
|
||||||
|
- **Migration is idempotent.** Stores a `migration.version` key; skips if already at v5.
|
||||||
|
- **Crash writer never blocks startup.** Initialized in main entry, but a write failure is non-fatal.
|
||||||
|
|
||||||
|
## 3. Component breakdown
|
||||||
|
|
||||||
|
| Unit | What it does | How it's used | Depends on |
|
||||||
|
|---|---|---|---|
|
||||||
|
| `main/updater/updater-service.js` | Owns `electron-updater`; exposes check/download/install; emits status events | Main process singleton; started after `app.whenReady()` | `electron-updater`, `electron` |
|
||||||
|
| `main/updater/feed-config.js` | Maps channel setting → feed URL; reads from `app.getPath('userData')/settings.json` | Called by updater-service on each check | settings store |
|
||||||
|
| `main/updater/crash-writer.js` | Hooks `process.on('uncaughtException', …)`; writes minidump + stack to `app.getPath('userData')/crashDumps/{timestamp}.json` | Initialized in main entry, before anything else | `electron`, `app.getPath` |
|
||||||
|
| `main/updater/migration-runner.js` | Reads v4 settings; transforms to v5 schema; writes backup; updates `migration.version` | Run from main entry on `app.whenReady()` | `fs`, settings store |
|
||||||
|
| `main/ipc/updater-handlers.js` | IPC handlers: `updater:check`, `updater:install`, `updater:get-state` | Registered in main entry | updater-service |
|
||||||
|
| `main/ipc/crash-handlers.js` | IPC handlers: `crash:read`, `crash:open-dir` | Registered in main entry | crash-writer |
|
||||||
|
| `preload.js` (extension) | Add `updater.check()`, `updater.install()`, `crash.read()`, `crash.openDir()` to `electronAPI`; add channels to allowlist | Preload runs at boot | existing preload |
|
||||||
|
| `renderer/lib/updater-store.ts` | Zustand store mirroring updater state; subscribes to `updater:status` events | Renderer; consumed by banner, settings, modals | `zustand`, IPC bridge |
|
||||||
|
| `renderer/components/UpdateBanner.tsx` | Non-blocking banner shown when `updater-store.status` is `available | downloading | ready` | Mounted in `App.tsx` next to header | updater-store, sonner |
|
||||||
|
| `renderer/components/FirstRunWizard.tsx` | 3-step modal with skip links; opens on first launch when `app-store.firstRun === true` | Mounted in `App.tsx` | app-store, settings-store, command-store |
|
||||||
|
| `renderer/components/modals/SettingsModal.tsx` (extend) | Add "Updates" section: channel radio, "Check now" button, auto-check toggle | Mounted via `useAppStore.modal` | updater-store, settings-store |
|
||||||
|
| `renderer/components/modals/CrashReportModal.tsx` | List local crash dumps; "Open dump folder", "Copy to clipboard", "Delete" actions | Mounted via `useAppStore.modal` | crash ipc, sonner |
|
||||||
|
| `renderer/lib/migrations/v4-to-v5.ts` | Pure function: `(v4Settings) => v5Settings` | Called from `migration-runner` | zod schemas |
|
||||||
|
|
||||||
|
### Data flow — "user clicks Check for updates"
|
||||||
|
|
||||||
|
1. Settings panel: `useSettingsStore.getState().setSetting('updateChannel', 'github' | 'concreteinfo')`.
|
||||||
|
2. `SettingsModal` calls `await ipc.updater.check()`.
|
||||||
|
3. Preload `safeCall` → `window.electronAPI.updater.check()` → `ipcRenderer.invoke('updater:check')`.
|
||||||
|
4. Main handler asks `updater-service` to `autoUpdater.checkForUpdates()` with the channel's feed URL.
|
||||||
|
5. `updater-service` emits `'updater:status', { state: 'available', version: '5.0.2' }`.
|
||||||
|
6. Preload forwards to `updater-store` via `window.electronAPI.on('updater:status', cb)`.
|
||||||
|
7. `updater-store` state flips to `available`; `UpdateBanner` renders.
|
||||||
|
8. User clicks "View release notes" → opens `https://github.com/.../releases/tag/v5.0.2` via `ipc.app.openExternal`.
|
||||||
|
9. User clicks "Restart to update" → calls `ipc.updater.install()`. `updater-service` calls `autoUpdater.quitAndInstall()`. App quits, relaunches into v5.0.2.
|
||||||
|
|
||||||
|
## 4. Error handling
|
||||||
|
|
||||||
|
### Updater
|
||||||
|
|
||||||
|
- **No network:** `autoUpdater.checkForUpdates()` rejects with `ENOTFOUND` / `ETIMEDOUT`. We catch, log to main log, emit `updater:status { state: 'error', code: 'NETWORK' }`. Banner shows "Couldn't check for updates. Try again." Toast fires inline at the wire point in `UpdateBanner` / `SettingsModal` on retry, matching the existing pattern (`toasts-inline-at-wire-points`).
|
||||||
|
- **Feed 404 / signature missing (N/A in v5 since unsigned):** Treat as configuration error. Log to main log with full URL. Banner shows "Update feed is misconfigured. Report this on GitHub." Crash-log-style entry is written.
|
||||||
|
- **Update available but download fails:** Banner flips to "Download failed. Try again." Clicking "Try again" re-invokes `autoUpdater.downloadUpdate()`. Three consecutive failures show a "Report issue" link in the banner.
|
||||||
|
- **Update installs but launch fails:** Worst case. We catch the post-`quitAndInstall` crash via `crash-writer` and write a marker file `app.getPath('userData')/update-failed.json` with the previous version. On next boot, the user is offered to revert manually by re-downloading from the GitHub release page (a "rolled back" banner instead of the wizard).
|
||||||
|
- **Concurrent checks:** Debounce 60s. A second `checkForUpdates()` within 60s is a no-op; returns the current state. The Check-Now button is disabled during a check.
|
||||||
|
|
||||||
|
### Migration
|
||||||
|
|
||||||
|
- **v4 settings file missing/corrupt:** Treat as "nothing to migrate." App starts with v5 defaults. Toast: "Welcome to v5 — using default settings."
|
||||||
|
- **Migration throws mid-transform:** Original v4 file is preserved as `settings.v4.bak.json` (already on disk). App starts with v5 defaults. Toast: "Couldn't migrate v4 settings — your old settings are preserved at {path}."
|
||||||
|
- **`migration.version === 5`:** Skip entirely. No-op.
|
||||||
|
|
||||||
|
### Crash writer
|
||||||
|
|
||||||
|
- **Dump write fails (disk full, permissions):** Print to stderr; do not crash the app. Recovery is "user's problem" — we never block app startup on the crash writer.
|
||||||
|
- **No dumps in dir:** CrashReportModal shows empty state: "No crashes recorded — nice work!"
|
||||||
|
|
||||||
|
### First-run wizard
|
||||||
|
|
||||||
|
- **Skip clicked at any step:** Sets `app-store.firstRun = false` and proceeds. All defaults already match the unselected choice, so this is non-destructive.
|
||||||
|
- **Wizard cannot reach settings (corrupt store):** Falls back to defaults silently. Wizard still closes.
|
||||||
|
|
||||||
|
## 5. Testing
|
||||||
|
|
||||||
|
### Unit (Vitest, renderer-side)
|
||||||
|
|
||||||
|
- `useUpdaterStore`: state transitions on each `updater:status` event; debounce on `check()`; reject on missing channel.
|
||||||
|
- `FirstRunWizard`: each step's CTA writes the right slice; "Skip" leaves defaults; "Skip at step 1" still closes the wizard and sets `firstRun = false`.
|
||||||
|
- `migrations/v4-to-v5`: golden-file tests — every v4 shape we ship transforms to expected v5 output. Idempotency: running twice yields identical v5 settings.
|
||||||
|
- `feed-config`: each channel setting resolves to the right feed URL; missing/unknown channel falls back to GitHub.
|
||||||
|
|
||||||
|
### Component (Vitest + RTL)
|
||||||
|
|
||||||
|
- `UpdateBanner`: hidden when state is `idle` or `error-network`; visible with the right copy in `available`/`downloading`/`ready`; Restart button calls `ipc.updater.install()`; "View release notes" opens the right URL via `ipc.app.openExternal`.
|
||||||
|
- `FirstRunWizard`: skip links work; theme picker updates the store; channel picker persists; template picker inserts into the new buffer.
|
||||||
|
- `CrashReportModal`: lists dumps from the IPC response; "Open folder" invokes `crash.openDir`; delete removes the file.
|
||||||
|
- `SettingsModal > Updates`: channel radio flips `settings-store.updateChannel`; "Check now" fires `ipc.updater.check`; auto-check toggle persists.
|
||||||
|
|
||||||
|
### Integration (Vitest, full app)
|
||||||
|
|
||||||
|
- **Migration end-to-end:** pre-seed a v4 settings file in `app.getPath('userData')/settings.json`, launch the app, verify v5 file is written, v4 backup exists, `migration.version === 5`, and the wizard opens on first run.
|
||||||
|
- **Update flow mock:** stub `electron-updater` to emit `available` → `downloading` → `ready`; verify the banner appears, Restart click triggers `quitAndInstall`, and the IPC sequence matches the allowlist.
|
||||||
|
|
||||||
|
### E2E (Playwright + Electron, runs the live app)
|
||||||
|
|
||||||
|
- Open the app, verify the FirstRun wizard renders. Skip. Verify the editor is visible.
|
||||||
|
- Open Settings, switch update channel from GitHub to ConcreteInfo, click Check now. Stub the feed response. Verify the banner appears with the right version.
|
||||||
|
- Click Restart. Verify the app calls `quitAndInstall` (assert on a mocked `autoUpdater.quitAndInstall`).
|
||||||
|
- Trigger an unhandled rejection in the renderer. Verify a dump is written to `crashDumps/`. Open the CrashReportModal, verify it appears in the list.
|
||||||
|
|
||||||
|
### Coverage targets
|
||||||
|
|
||||||
|
- Updater service: ≥ 90% (small surface, hot path).
|
||||||
|
- Migration runner: 100% of branches (idempotency, corrupt file, missing file, transform failure).
|
||||||
|
- FirstRunWizard: ≥ 80%.
|
||||||
|
- Component tests above any preset.
|
||||||
|
|
||||||
|
## 6. Distribution feed contracts
|
||||||
|
|
||||||
|
### GitHub Releases (default)
|
||||||
|
|
||||||
|
Feed URL pattern:
|
||||||
|
```
|
||||||
|
https://github.com/{owner}/{repo}/releases/download/v{version}/
|
||||||
|
```
|
||||||
|
|
||||||
|
For v5.0.2:
|
||||||
|
```
|
||||||
|
https://github.com/{owner}/{repo}/releases/download/v5.0.2/latest-mac.yml
|
||||||
|
https://github.com/{owner}/{repo}/releases/download/v5.0.2/latest-linux.yml
|
||||||
|
https://github.com/{owner}/{repo}/releases/download/v5.0.2/latest-windows.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
`electron-updater` reads these automatically given the GitHub owner/repo config. The release workflow already exists at `.github/workflows/release.yml` and builds `.dmg`, `.zip`, `.exe`, `.deb`, `.rpm`. We add `latest.yml` generation via `electron-builder --publish always` in the CI.
|
||||||
|
|
||||||
|
### ConcreteInfo feed
|
||||||
|
|
||||||
|
Feed URL:
|
||||||
|
```
|
||||||
|
https://updates.concreteinfo.co.in/v5/latest.yml
|
||||||
|
https://updates.concreteinfo.co.in/v5/latest-mac.yml
|
||||||
|
https://updates.concreteinfo.co.in/v5/latest-linux.yml
|
||||||
|
https://updates.concreteinfo.co.in/v5/latest-windows.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
CI mirrors the GitHub Release artifacts to this path on every release. ConcreteInfo infra is documented in `~/.claude-mmax/CLAUDE.md`; the coolify server is `localhost:8000`. The mirror is a static-file route — no auth, just version-prefixed.
|
||||||
|
|
||||||
|
## 7. First-run wizard contract
|
||||||
|
|
||||||
|
Three steps. Each step has "Skip" and "Back" links. Final step is "Done."
|
||||||
|
|
||||||
|
1. **Theme:** Light / Dark / System. Default: System. Persists to `settings-store.theme`.
|
||||||
|
2. **Update channel:** GitHub Releases / ConcreteInfo. Default: GitHub Releases. Persists to `settings-store.updateChannel`.
|
||||||
|
3. **Starter template:** Blank / README / Meeting notes / Blog post. Default: Blank. On "Done," creates an untitled buffer with the chosen template content.
|
||||||
|
|
||||||
|
`firstRun` lives in `app-store` (not persisted across app data resets) and is checked on every launch. Setting it to `false` either explicitly (skip/done) or implicitly (v4 migration succeeded) prevents re-showing.
|
||||||
|
|
||||||
|
## 8. Settings migration contract (v4.4.1 → v5.0.0)
|
||||||
|
|
||||||
|
`migration-runner` runs once on first v5 launch. It:
|
||||||
|
|
||||||
|
1. Reads `app.getPath('userData')/settings.json` if it exists.
|
||||||
|
2. Validates the v4 shape with a zod schema (`v4SettingsSchema`).
|
||||||
|
3. If valid: transforms via `migrations/v4-to-v5.ts` and writes the v5 settings to `settings.json`. Backs up v4 to `settings.v4.bak.json`. Sets `migration.version = 5` in the v5 file.
|
||||||
|
4. If missing or invalid: writes a fresh v5 settings file with defaults. `migration.version = 5`.
|
||||||
|
5. If transform throws: leaves v4 file in place as the "backup." App starts with defaults. Toast warns the user.
|
||||||
|
|
||||||
|
The transform handles:
|
||||||
|
|
||||||
|
- v4 `theme` ('light' | 'dark' | 'auto') → v5 `theme` ('light' | 'dark' | 'system').
|
||||||
|
- v4 `customCss` string → v5 `customCssPath` file path or `null`.
|
||||||
|
- v4 `recentFiles: string[]` → v5 `recentFiles` (unchanged shape).
|
||||||
|
- v4 `editorFontSize: number` → v5 `editorFontSize` (unchanged shape).
|
||||||
|
- v4 `keyBindings: object` → v5 `userBindings` (keymap).
|
||||||
|
- v4 `snippets: array` → v5 `snippets` (unchanged shape).
|
||||||
|
- v4 `pdfExportOptions` etc. → v5 schema for the new export pipeline.
|
||||||
|
|
||||||
|
Anything not in the v4 schema is dropped. Defaults are taken from the v5 zod schema.
|
||||||
|
|
||||||
|
## 9. IPC allowlist additions
|
||||||
|
|
||||||
|
`src/preload.js` adds these to `ALLOWED_SEND_CHANNELS`:
|
||||||
|
|
||||||
|
```js
|
||||||
|
'updater:check',
|
||||||
|
'updater:install',
|
||||||
|
'updater:get-state',
|
||||||
|
'crash:read',
|
||||||
|
'crash:open-dir',
|
||||||
|
'crash:delete',
|
||||||
|
```
|
||||||
|
|
||||||
|
`ALLOWED_RECEIVE_CHANNELS`:
|
||||||
|
|
||||||
|
```js
|
||||||
|
'updater:status',
|
||||||
|
```
|
||||||
|
|
||||||
|
The `electronAPI` object gets:
|
||||||
|
|
||||||
|
```js
|
||||||
|
updater: {
|
||||||
|
check: () => ipcRenderer.invoke('updater:check'),
|
||||||
|
install: () => ipcRenderer.invoke('updater:install'),
|
||||||
|
getState: () => ipcRenderer.invoke('updater:get-state'),
|
||||||
|
onStatus: (cb) => ipcRenderer.on('updater:status', (_, payload) => cb(payload)),
|
||||||
|
},
|
||||||
|
crash: {
|
||||||
|
read: () => ipcRenderer.invoke('crash:read'),
|
||||||
|
openDir: () => ipcRenderer.send('crash:open-dir'),
|
||||||
|
delete: (filename) => ipcRenderer.invoke('crash:delete', filename),
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
## 10. Risks & mitigations
|
||||||
|
|
||||||
|
| Risk | Mitigation |
|
||||||
|
|---|---|
|
||||||
|
| First-run wizard is annoying to long-time users | Skippable; only shows on first launch. `firstRun = false` is set permanently on first skip/done. |
|
||||||
|
| Auto-migration corrupts settings | Original v4 file is preserved as `settings.v4.bak.json`. Transform errors fall back to defaults and toast the user. |
|
||||||
|
| Crash writer fills disk | Cap at 20 dumps; oldest auto-pruned. |
|
||||||
|
| Update feed mirror drift between GitHub and CI | Mirror runs in CI on every release; manual `npm run publish:concreteinfo` available as fallback. |
|
||||||
|
| `electron-updater` is unsigned, so anyone can publish a "v5.0.2" to a mirror | We do not enable auto-install in v5 — every install is user-confirmed via the release-notes page. v5.1 adds signing. |
|
||||||
|
| First-run wizard blocks app start on a slow renderer | Wizard is non-blocking. App shell mounts and is interactive behind the modal. |
|
||||||
|
| Debounced `checkForUpdates()` may mask real errors | "Check now" button bypasses the debounce; debounce only applies to automatic checks. |
|
||||||
|
| CI release workflow is on a tag — broken tags must be re-tagged manually | Documented in CONTRIBUTING.md; pre-release tag re-runs the workflow. |
|
||||||
|
|
||||||
|
## 11. Out of scope (deferred)
|
||||||
|
|
||||||
|
- Code signing.
|
||||||
|
- Delta updates.
|
||||||
|
- Per-channel pre-release / beta tracks (only stable feeds in v5).
|
||||||
|
- Crash analytics / Sentry.
|
||||||
|
- Squirrel.Windows-specific quirks (we publish NSIS only).
|
||||||
@@ -0,0 +1,258 @@
|
|||||||
|
# Monospace Font Embedding + Naming Differentiation
|
||||||
|
|
||||||
|
**Date:** 2026-07-22
|
||||||
|
**Branch:** react-electron
|
||||||
|
**Goal:** Bring `react-electron` to feature parity with `master` by porting the v4.5.0 "embedded monospace font" feature, and differentiate the dev build identity from the installed `markdown-converter` deb so the two can coexist on the same machine.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
The `react-electron` branch is the active development branch — a major rewrite of the renderer in React 19 + TypeScript + Tailwind/shadcn while keeping the main process in CommonJS. As of commit `bb4e874` it is **ahead** of `master` in nearly every dimension (auto-updater, crash writer, migration runner, command palette, first-run wizard, updates settings, crash report modal, 30+ React modals, large-file mode, scoped CSS).
|
||||||
|
|
||||||
|
A repo-wide diff (`git diff --stat master..react-electron`) shows 301 files changed, +38,293/-26,786 lines. Master is **behind** react-electron.
|
||||||
|
|
||||||
|
The **only** feature present in `master` and absent in `react-electron` is the monospace-font-embedding feature added in master v4.5.0 (commits `3f8679c` through `b218c76`, 19 commits). It bundles JetBrains Mono + Fira Code TTFs and embeds them into PDF/DOCX/EPUB/HTML exports so ASCII art and code blocks render with the exact font the user sees in the preview.
|
||||||
|
|
||||||
|
A second concern: the user has `markdown-converter` installed as a `.deb`. Running `npm run dev` from this repo currently uses the same `appId` (`com.concreteinfo.markdownconverter`) and `productName` (`MarkdownConverter`), which triggers Electron's single-instance lock and confuses file-association routing. We rename this branch's identity to `Markdown Converter React` / `markdown-converter-react` to coexist.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
### In scope
|
||||||
|
|
||||||
|
1. Port the monospace font embedding feature from `master` v4.5.0 into the react-electron branch:
|
||||||
|
- All five `src/main/*.js` modules (`MonospaceFontConfig`, `PdfFontHeader`, `DocxFontEmbedder`, `EpubFontEmbedder`, `ExportCss`)
|
||||||
|
- Settings schema module (`src/main/settings/monospaceSettings.js`)
|
||||||
|
- Two new IPC handlers (`get-monospace-settings`, `set-monospace-settings`) plus preload allowlist and TypeScript declaration
|
||||||
|
- Renderer body-class toggle and CSS tokens (`--font-mono-active`, `--font-mono-feature`)
|
||||||
|
- Bundled font assets: `JetBrainsMono-{Regular,Bold}.ttf`, `FiraCode-{Regular,Bold}.ttf` plus LICENSE files
|
||||||
|
- `asarUnpack` directive for `assets/fonts/**`
|
||||||
|
- `download-tools.js` extension to fetch Fira Code
|
||||||
|
- Wire `buildMonospaceExportCss`, `buildPdfFontHeader`, `DocxFontEmbedder.embed`, `EpubFontEmbedder.embed` into `src/main/index.js` export pipelines (PDF, DOCX, EPUB, HTML paths)
|
||||||
|
- Print-preview font integration (`src/renderer/components/preview/PrintPreviewFrame.tsx` or equivalent)
|
||||||
|
- Tests: one test file per new module mirroring master's coverage plus an E2E smoke test
|
||||||
|
|
||||||
|
2. Rename branch identity:
|
||||||
|
- `package.json` `name` → `markdown-converter-react`
|
||||||
|
- `package.json` `build.productName` → `Markdown Converter React`
|
||||||
|
- `package.json` `build.appId` → `com.concreteinfo.markdownconverter.react`
|
||||||
|
- `package.json` `build.linux.executableName` → `markdown-converter-react`
|
||||||
|
- Window title prefix → `Markdown Converter — React Dev` in dev mode (use `process.env.VITE_DEV_SERVER_URL` as the gate)
|
||||||
|
- Settings file path remains `userData/settings.json` (no migration needed) — but add a new key `appVariant: "react"` so the renderer can show the correct title
|
||||||
|
|
||||||
|
### Out of scope
|
||||||
|
|
||||||
|
- React renderer rewrites (already ahead of master)
|
||||||
|
- Auto-updater, crash, migration (already ahead of master)
|
||||||
|
- Tauri / Web migration
|
||||||
|
- Pandoc version bump
|
||||||
|
- Documentation beyond this spec, the implementation plan, and the changelog entry
|
||||||
|
- Changes to v4-to-v5 settings migration (we leave the existing runner alone)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Design
|
||||||
|
|
||||||
|
### Module layout (new files)
|
||||||
|
|
||||||
|
```
|
||||||
|
src/main/
|
||||||
|
MonospaceFontConfig.js # path resolver — finds bundled TTF
|
||||||
|
PdfFontHeader.js # builds .tex fontspec header for xelatex/lualatex
|
||||||
|
DocxFontEmbedder.js # injects TTF into pandoc DOCX output (post-process)
|
||||||
|
EpubFontEmbedder.js # EPUB --epub-embed-font + manifest patch
|
||||||
|
ExportCss.js # builds CSS string with woff2 embedded as base64
|
||||||
|
settings/
|
||||||
|
monospaceSettings.js # schema, defaults, family map
|
||||||
|
ipc/
|
||||||
|
monospace-handlers.js # IPC handler registration
|
||||||
|
utils/
|
||||||
|
(existing) # no change
|
||||||
|
|
||||||
|
src/renderer/
|
||||||
|
hooks/
|
||||||
|
use-monospace-classes.ts # toggles body.mono-{jetbrains,fira}{,-ligatures} classes
|
||||||
|
components/preview/
|
||||||
|
PrintPreviewFrame.tsx # wire print preview to monospace settings via IPC
|
||||||
|
styles/globals.css # add --font-mono-active/--font-mono-feature declarations
|
||||||
|
types/electron.d.ts # extend ElectronAPI with monospace.{getSettings,saveSettings}
|
||||||
|
|
||||||
|
src/preload.js # add monospace channels to ALLOWED_SEND_CHANNELS + expose on window.electronAPI.monospace
|
||||||
|
|
||||||
|
assets/fonts/
|
||||||
|
JetBrainsMono-Regular.ttf # bundled, ~270 KB
|
||||||
|
JetBrainsMono-Bold.ttf # bundled, ~278 KB
|
||||||
|
JetBrainsMono-LICENSE.txt
|
||||||
|
FiraCode-Regular.ttf # bundled, ~300 KB
|
||||||
|
FiraCode-Bold.ttf # bundled, ~300 KB
|
||||||
|
FiraCode-LICENSE.txt
|
||||||
|
|
||||||
|
scripts/download-tools.js # extend to fetch Fira Code
|
||||||
|
|
||||||
|
tests/
|
||||||
|
unit/main/monospace/
|
||||||
|
MonospaceFontConfig.test.js
|
||||||
|
monospaceSettings.test.js
|
||||||
|
PdfFontHeader.test.js
|
||||||
|
DocxFontEmbedder.test.js
|
||||||
|
EpubFontEmbedder.test.js
|
||||||
|
ExportCss.test.js
|
||||||
|
monospace-handlers.test.js
|
||||||
|
smoke-e2e-monospace.js # e2e: convert ASCII-art Markdown → PDF/DOCX/EPUB/HTML, assert TTF references appear in output
|
||||||
|
```
|
||||||
|
|
||||||
|
### Key interfaces (TypeScript-style for clarity)
|
||||||
|
|
||||||
|
```ts
|
||||||
|
// src/main/settings/monospaceSettings.js
|
||||||
|
type MonoFont = 'jetbrains-mono' | 'fira-code';
|
||||||
|
const FAMILY_BY_KEY: Record<MonoFont, string> = {
|
||||||
|
'jetbrains-mono': 'JetBrains Mono',
|
||||||
|
'fira-code': 'Fira Code',
|
||||||
|
};
|
||||||
|
function getActiveMonoFont(settings): string;
|
||||||
|
function isLigaturesEnabled(settings): boolean;
|
||||||
|
function safeMonospaceSettings(input): { monospaceFont: MonoFont; monospaceLigatures: boolean };
|
||||||
|
|
||||||
|
// src/main/MonospaceFontConfig.js
|
||||||
|
function getMonoFontTtfPath(familyKey, weight = 400): string | null; // null if asset missing
|
||||||
|
function ligaturesEnabled(settings): boolean;
|
||||||
|
function getActiveFamily(settings): string;
|
||||||
|
|
||||||
|
// src/main/PdfFontHeader.js
|
||||||
|
function buildPdfFontHeader(settings, ttfPath, fontFamily): { headerPath: string; familyName: string };
|
||||||
|
|
||||||
|
// src/main/DocxFontEmbedder.js
|
||||||
|
async function embedDocxFont(inputDocxPath, outputDocxPath, ttfPath, fontFamily): Promise<void>;
|
||||||
|
async function buildDocxWithEmbeddedFont(pandocArgs, settings): Promise<{args, postProcess}>;
|
||||||
|
|
||||||
|
// src/main/EpubFontEmbedder.js
|
||||||
|
async function embedEpubFont(epubPath, ttfPath, fontFamily): Promise<void>;
|
||||||
|
function withEpubEmbedFontArgs(pandocArgs, ttfPath, fontFamily): string[];
|
||||||
|
|
||||||
|
// src/main/ExportCss.js
|
||||||
|
function buildExportCss(settings, { woff2Base64, family, ligatures }): string;
|
||||||
|
function buildFontFaceBlock(familyKey, woff2Base64): string;
|
||||||
|
|
||||||
|
// src/main/ipc/monospace-handlers.js
|
||||||
|
function register({ getMainWindow }): void;
|
||||||
|
// ipcMain.handle('get-monospace-settings', () => ({ monospaceFont, monospaceLigatures }))
|
||||||
|
// ipcMain.handle('set-monospace-settings', (_e, partial) => safeMonospaceSettings(partial) → persist + broadcast)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Renderer integration
|
||||||
|
|
||||||
|
- `use-monospace-classes.ts` hook runs once on mount, calls `electronAPI.monospace.getSettings()`, applies `document.body.classList` of:
|
||||||
|
- `mono-jetbrains-mono` | `mono-fira-code`
|
||||||
|
- `mono-ligatures-on` | `mono-ligatures-off`
|
||||||
|
- CSS in `globals.css`:
|
||||||
|
```css
|
||||||
|
:root {
|
||||||
|
--font-mono-active: 'JetBrains Mono', 'SF Mono', Monaco, 'Courier New', monospace;
|
||||||
|
--font-mono-feature: 'liga' 0, 'calt' 0;
|
||||||
|
}
|
||||||
|
body.mono-fira-code { --font-mono-active: 'Fira Code', 'JetBrains Mono', 'SF Mono', monospace; }
|
||||||
|
body.mono-ligatures-on { --font-mono-feature: 'liga' 1, 'calt' 1; }
|
||||||
|
```
|
||||||
|
- All existing `font-family: monospace` and `font-family: var(--font-mono)` usages continue to work; the new tokens sit above them.
|
||||||
|
|
||||||
|
### Wiring into export pipelines
|
||||||
|
|
||||||
|
In `src/main/index.js` `exportWithPandoc` (PDF branch):
|
||||||
|
- Read `monospaceFont` + `monospaceLigatures` from settings
|
||||||
|
- Resolve TTF path via `MonospaceFontConfig.getMonoFontTtfPath`
|
||||||
|
- If path exists: build font header via `PdfFontHeader.buildPdfFontHeader`, pass `--include-in-header=…`
|
||||||
|
- If path missing: log warning, fall back to existing `-V monofont=Consolas` behavior
|
||||||
|
|
||||||
|
In DOCX branch: invoke `DocxFontEmbedder.embedDocxFont` post-pandoc.
|
||||||
|
In EPUB branch: prepend `--epub-embed-font=…` to pandoc args; call `EpubFontEmbedder.embedEpubFont` to patch manifest.
|
||||||
|
In HTML branch: write CSS via `ExportCss.buildExportCss` (embed woff2 as base64) and reference in `<style>`.
|
||||||
|
|
||||||
|
### Naming differentiation
|
||||||
|
|
||||||
|
`package.json` changes:
|
||||||
|
```diff
|
||||||
|
- "name": "markdown-converter"
|
||||||
|
+ "name": "markdown-converter-react"
|
||||||
|
- "productName": "MarkdownConverter"
|
||||||
|
+ "productName": "Markdown Converter React"
|
||||||
|
- "appId": "com.concreteinfo.markdownconverter"
|
||||||
|
+ "appId": "com.concreteinfo.markdownconverter.react"
|
||||||
|
+ "linux": {
|
||||||
|
+ "executableName": "markdown-converter-react",
|
||||||
|
+ "synopsis": "Markdown editor (React build)",
|
||||||
|
+ "description": "Markdown editor and universal file converter — React build"
|
||||||
|
+ }
|
||||||
|
```
|
||||||
|
|
||||||
|
`src/main/window/index.js`:
|
||||||
|
```js
|
||||||
|
const isDev = !!process.env.VITE_DEV_SERVER_URL;
|
||||||
|
const titleSuffix = isDev ? ' — React Dev' : '';
|
||||||
|
mainWindow = new BrowserWindow({
|
||||||
|
title: `Markdown Converter${titleSuffix}`,
|
||||||
|
...
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
### Settings impact
|
||||||
|
|
||||||
|
Add two keys to `migration-transform.js` v5 schema with safe defaults:
|
||||||
|
- `monospaceFont: z.enum(['jetbrains-mono', 'fira-code']).default('jetbrains-mono')`
|
||||||
|
- `monospaceLigatures: z.boolean().default(false)`
|
||||||
|
- `appVariant: z.enum(['classic', 'react']).default('react')`
|
||||||
|
|
||||||
|
Existing user settings remain valid; the migration just fills in the new defaults.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Testing strategy (TDD)
|
||||||
|
|
||||||
|
For each new module: red-green-refactor.
|
||||||
|
|
||||||
|
1. `MonospaceFontConfig.test.js` — uses tmpdir + mocked `process.resourcesPath` to assert resolution from `assets/fonts/JetBrainsMono-Regular.ttf`. Covers missing-file fallback.
|
||||||
|
2. `monospaceSettings.test.js` — schema validation: rejects unknown fonts, coerces ligatures boolean, fills defaults.
|
||||||
|
3. `PdfFontHeader.test.js` — writes a temp `.tex` file, asserts `\setmonofont{JetBrainsMono-Regular.ttf}[...]` lines match.
|
||||||
|
4. `DocxFontEmbedder.test.js` — given a minimal DOCX zip, asserts `word/fonts/` contains the TTF and `word/_rels/fontTable.xml.rels` references it.
|
||||||
|
5. `EpubFontEmbedder.test.js` — asserts `META-INF/container.xml` and `content.opf` updated after `--epub-embed-font`.
|
||||||
|
6. `ExportCss.test.js` — base64 round-trip: `atob(css.match(/base64,([A-Za-z0-9+/=]+)/)[1])` returns the original woff2 bytes.
|
||||||
|
7. `monospace-handlers.test.js` — invokes the registered handlers against `ipcMain` mock; asserts settings persistence + broadcast.
|
||||||
|
8. `smoke-e2e-monospace.js` — runs `pandoc` end-to-end against a fixture markdown with ASCII art; greps output for font references.
|
||||||
|
|
||||||
|
Coverage threshold maintained: jest at 15%, vitest at v8 + renderer lines.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Risks
|
||||||
|
|
||||||
|
- **TTF download license** — Fira Code is OFL-1.1; JetBrains Mono is OFL-1.1. Both allow redistribution; LICENSE files ship alongside TTFs. No risk.
|
||||||
|
- **Pandoc version sensitivity** — `--epub-embed-font` requires pandoc ≥ 2.19. The download-tools script pins to 3.9.0.2; check `pandocVersion` and gracefully fall back if older.
|
||||||
|
- **asarUnpack size** — adding ~1.2 MB of TTFs to packaged builds. Acceptable; matches master.
|
||||||
|
- **Dev/prod appId split** — if a user installs both `markdown-converter` and `markdown-converter-react` debs, their settings files are separate (`userData/com.concreteinfo.markdownconverter.react/settings.json`). Documented in README.
|
||||||
|
- **Test environment** — the e2e smoke test requires pandoc available locally. We'll `test.skip` if `which pandoc` fails.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Definition of done
|
||||||
|
|
||||||
|
- [ ] All planned steps implemented, not just the first/easiest ones
|
||||||
|
- [ ] No forbidden markers (`TODO`, `FIXME`, `XXX`, `HACK`, `not implemented`, `placeholder`, `stub`, `coming soon`) in changed source
|
||||||
|
- [ ] New test suites pass; existing 638 tests still pass
|
||||||
|
- [ ] `npm run build:linux` produces a `.deb` artifact named `markdown-converter-react_*_amd64.deb`
|
||||||
|
- [ ] App launches in dev mode with title `Markdown Converter — React Dev`
|
||||||
|
- [ ] E2E smoke test confirms TTF references in PDF/DOCX/EPUB/HTML output
|
||||||
|
- [ ] CHANGELOG.md updated with a "5.1.0 — react-electron parity" entry
|
||||||
|
- [ ] No unrelated refactors; every changed line traces to the request
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Learning collaboration
|
||||||
|
|
||||||
|
Per the project's learning-mode preference, the user will be asked to contribute two 5-10 line decisions during implementation:
|
||||||
|
|
||||||
|
1. **Default monospace family** in `monospaceSettings.js` (`jetbrains-mono` vs `fira-code` vs `system-fallback`).
|
||||||
|
2. **Body-class gating strategy** in `use-monospace-classes.ts` (apply on every settings change vs debounce vs once-on-mount).
|
||||||
|
|
||||||
|
These choices shape the feature's behavior in ways that benefit from the user's domain knowledge.
|
||||||
+1
-1
@@ -85,7 +85,7 @@ module.exports = [
|
|||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
// Error prevention
|
// Error prevention
|
||||||
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_' }],
|
||||||
'no-undef': 'error',
|
'no-undef': 'error',
|
||||||
'no-console': 'off', // Allow console for Electron apps
|
'no-console': 'off', // Allow console for Electron apps
|
||||||
|
|
||||||
|
|||||||
+16
-3
@@ -10,10 +10,23 @@ module.exports = {
|
|||||||
// Root directory
|
// Root directory
|
||||||
rootDir: '.',
|
rootDir: '.',
|
||||||
|
|
||||||
// Test file patterns
|
// Test file patterns — scoped to ./tests/ only so dist/ artifacts like
|
||||||
|
// .snap packages don't get matched as test suites.
|
||||||
testMatch: [
|
testMatch: [
|
||||||
'**/tests/**/*.test.js',
|
'<rootDir>/tests/**/*.test.js',
|
||||||
'**/tests/**/*.spec.js'
|
'<rootDir>/tests/**/*.spec.js'
|
||||||
|
],
|
||||||
|
|
||||||
|
// Ignore build outputs so .snap packages and bundled .asar contents
|
||||||
|
// never enter jest's file discovery.
|
||||||
|
testPathIgnorePatterns: [
|
||||||
|
'/node_modules/',
|
||||||
|
'/dist/',
|
||||||
|
'/\\.git/'
|
||||||
|
],
|
||||||
|
modulePathIgnorePatterns: [
|
||||||
|
'/node_modules/',
|
||||||
|
'/dist/'
|
||||||
],
|
],
|
||||||
|
|
||||||
// Coverage configuration
|
// Coverage configuration
|
||||||
|
|||||||
Generated
+98
-6
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "markdown-converter",
|
"name": "markdown-converter",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "markdown-converter",
|
"name": "markdown-converter",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemirror/autocomplete": "^6.20.1",
|
"@codemirror/autocomplete": "^6.20.1",
|
||||||
@@ -46,6 +46,7 @@
|
|||||||
"docx4js": "^2.0.1",
|
"docx4js": "^2.0.1",
|
||||||
"dompurify": "^3.3.1",
|
"dompurify": "^3.3.1",
|
||||||
"electron-store": "^10.1.0",
|
"electron-store": "^10.1.0",
|
||||||
|
"electron-updater": "^6.8.9",
|
||||||
"ffmpeg-static": "^5.3.0",
|
"ffmpeg-static": "^5.3.0",
|
||||||
"figlet": "^1.11.0",
|
"figlet": "^1.11.0",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
@@ -6900,7 +6901,6 @@
|
|||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
||||||
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
||||||
"dev": true,
|
|
||||||
"license": "Python-2.0"
|
"license": "Python-2.0"
|
||||||
},
|
},
|
||||||
"node_modules/aria-hidden": {
|
"node_modules/aria-hidden": {
|
||||||
@@ -9744,6 +9744,82 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
|
"node_modules/electron-updater": {
|
||||||
|
"version": "6.8.9",
|
||||||
|
"resolved": "https://registry.npmjs.org/electron-updater/-/electron-updater-6.8.9.tgz",
|
||||||
|
"integrity": "sha512-ZhVxM9iGONUpZGI1FxdMRgJjUFXi7AYGVa5PwKlO1tV1/4zDxQmfKpXOHVztKrd6L9rLcFjERvi1Mf2vxyTkig==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"builder-util-runtime": "9.7.0",
|
||||||
|
"fs-extra": "^10.1.0",
|
||||||
|
"js-yaml": "^4.1.0",
|
||||||
|
"lazy-val": "^1.0.5",
|
||||||
|
"lodash.escaperegexp": "^4.1.2",
|
||||||
|
"lodash.isequal": "^4.5.0",
|
||||||
|
"semver": "~7.7.3",
|
||||||
|
"tiny-typed-emitter": "^2.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/electron-updater/node_modules/builder-util-runtime": {
|
||||||
|
"version": "9.7.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.7.0.tgz",
|
||||||
|
"integrity": "sha512-g/kR520giAFYkSXTzcmF3kqQq7wi8F6N6SzeDgZrqTBN+VHdmgWOyTdD1yD7AATDId/yXLvuP34CxW46/BwCdw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"sax": "^1.2.4"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=12.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/electron-updater/node_modules/fs-extra": {
|
||||||
|
"version": "10.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
|
||||||
|
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"graceful-fs": "^4.2.0",
|
||||||
|
"jsonfile": "^6.0.1",
|
||||||
|
"universalify": "^2.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=12"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/electron-updater/node_modules/jsonfile": {
|
||||||
|
"version": "6.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
|
||||||
|
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"universalify": "^2.0.0"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"graceful-fs": "^4.1.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/electron-updater/node_modules/semver": {
|
||||||
|
"version": "7.7.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
||||||
|
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
||||||
|
"license": "ISC",
|
||||||
|
"bin": {
|
||||||
|
"semver": "bin/semver.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/electron-updater/node_modules/universalify": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/electron-winstaller": {
|
"node_modules/electron-winstaller": {
|
||||||
"version": "5.4.0",
|
"version": "5.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.4.0.tgz",
|
||||||
@@ -11119,7 +11195,6 @@
|
|||||||
"version": "4.2.11",
|
"version": "4.2.11",
|
||||||
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
||||||
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
||||||
"dev": true,
|
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
"node_modules/hachure-fill": {
|
"node_modules/hachure-fill": {
|
||||||
@@ -13042,7 +13117,6 @@
|
|||||||
"version": "4.1.1",
|
"version": "4.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
|
||||||
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"argparse": "^2.0.1"
|
"argparse": "^2.0.1"
|
||||||
@@ -13308,7 +13382,6 @@
|
|||||||
"version": "1.0.5",
|
"version": "1.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz",
|
||||||
"integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==",
|
"integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/leven": {
|
"node_modules/leven": {
|
||||||
@@ -13685,6 +13758,19 @@
|
|||||||
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/lodash.escaperegexp": {
|
||||||
|
"version": "4.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz",
|
||||||
|
"integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/lodash.isequal": {
|
||||||
|
"version": "4.5.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
||||||
|
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
|
||||||
|
"deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/lodash.merge": {
|
"node_modules/lodash.merge": {
|
||||||
"version": "4.6.2",
|
"version": "4.6.2",
|
||||||
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
||||||
@@ -17100,6 +17186,12 @@
|
|||||||
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
|
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/tiny-typed-emitter": {
|
||||||
|
"version": "2.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz",
|
||||||
|
"integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/tinybench": {
|
"node_modules/tinybench": {
|
||||||
"version": "2.9.0",
|
"version": "2.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
||||||
|
|||||||
+27
-9
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "markdown-converter",
|
"name": "markdown-converter-react",
|
||||||
"version": "5.0.1",
|
"version": "5.0.1",
|
||||||
"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 (React build)",
|
||||||
"main": "src/main/index.js",
|
"main": "src/main/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "electron .",
|
"start": "electron .",
|
||||||
"dev:renderer": "vite --config vite.renderer.config.ts",
|
"dev:renderer": "vite --config vite.renderer.config.ts",
|
||||||
"dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron . -- --disable-gpu --disable-software-rasterizer --disable-dev-shm-usage",
|
"dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 ELECTRON_DISABLE_SANDBOX=1 electron . -- --no-sandbox --disable-gpu --disable-software-rasterizer --disable-dev-shm-usage",
|
||||||
"dev": "concurrently -k -n vite,electron -c blue,green \"npm:dev:renderer\" \"npm:dev:electron\"",
|
"dev": "concurrently -k -n vite,electron -c blue,green \"npm:dev:renderer\" \"npm:dev:electron\"",
|
||||||
"build:renderer": "vite build --config vite.renderer.config.ts",
|
"build:renderer": "vite build --config vite.renderer.config.ts",
|
||||||
"preview": "npm run build:renderer && electron .",
|
"preview": "npm run build:renderer && electron .",
|
||||||
@@ -33,7 +33,8 @@
|
|||||||
"dist:all": "electron-builder -mwl",
|
"dist:all": "electron-builder -mwl",
|
||||||
"download-tools": "node scripts/download-tools.js",
|
"download-tools": "node scripts/download-tools.js",
|
||||||
"generate-icons": "node scripts/generate-icons.js",
|
"generate-icons": "node scripts/generate-icons.js",
|
||||||
"build:icon-icns": "node scripts/build-icon-icns.js"
|
"build:icon-icns": "node scripts/build-icon-icns.js",
|
||||||
|
"publish:concreteinfo": "node scripts/publish-concreteinfo.js"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"markdown",
|
"markdown",
|
||||||
@@ -126,6 +127,7 @@
|
|||||||
"docx4js": "^2.0.1",
|
"docx4js": "^2.0.1",
|
||||||
"dompurify": "^3.3.1",
|
"dompurify": "^3.3.1",
|
||||||
"electron-store": "^10.1.0",
|
"electron-store": "^10.1.0",
|
||||||
|
"electron-updater": "^6.8.9",
|
||||||
"ffmpeg-static": "^5.3.0",
|
"ffmpeg-static": "^5.3.0",
|
||||||
"figlet": "^1.11.0",
|
"figlet": "^1.11.0",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
@@ -159,8 +161,8 @@
|
|||||||
"lodash": "^4.17.21"
|
"lodash": "^4.17.21"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"appId": "com.concreteinfo.markdownconverter",
|
"appId": "com.concreteinfo.markdownconverter.react",
|
||||||
"productName": "MarkdownConverter",
|
"productName": "Markdown Converter React",
|
||||||
"copyright": "Copyright (C) 2024-2025 ConcreteInfo",
|
"copyright": "Copyright (C) 2024-2025 ConcreteInfo",
|
||||||
"directories": {
|
"directories": {
|
||||||
"output": "dist"
|
"output": "dist"
|
||||||
@@ -170,10 +172,12 @@
|
|||||||
"src/main/**/*",
|
"src/main/**/*",
|
||||||
"src/preload.js",
|
"src/preload.js",
|
||||||
"src/plugins/**/*",
|
"src/plugins/**/*",
|
||||||
|
"assets/fonts/**",
|
||||||
"package.json"
|
"package.json"
|
||||||
],
|
],
|
||||||
"asarUnpack": [
|
"asarUnpack": [
|
||||||
"node_modules/ffmpeg-static/**"
|
"node_modules/ffmpeg-static/**",
|
||||||
|
"assets/fonts/**"
|
||||||
],
|
],
|
||||||
"extraResources": [
|
"extraResources": [
|
||||||
{
|
{
|
||||||
@@ -209,8 +213,20 @@
|
|||||||
"category": "public.app-category.productivity",
|
"category": "public.app-category.productivity",
|
||||||
"identity": null,
|
"identity": null,
|
||||||
"target": [
|
"target": [
|
||||||
{ "target": "dmg", "arch": ["x64", "arm64"] },
|
{
|
||||||
{ "target": "zip", "arch": ["x64", "arm64"] }
|
"target": "dmg",
|
||||||
|
"arch": [
|
||||||
|
"x64",
|
||||||
|
"arm64"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"target": "zip",
|
||||||
|
"arch": [
|
||||||
|
"x64",
|
||||||
|
"arm64"
|
||||||
|
]
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"icon": "assets/icon.icns",
|
"icon": "assets/icon.icns",
|
||||||
"darkModeSupport": true,
|
"darkModeSupport": true,
|
||||||
@@ -275,6 +291,8 @@
|
|||||||
],
|
],
|
||||||
"category": "Utility",
|
"category": "Utility",
|
||||||
"maintainer": "ConcreteInfo <amit.wh@gmail.com>",
|
"maintainer": "ConcreteInfo <amit.wh@gmail.com>",
|
||||||
|
"executableName": "markdown-converter-react",
|
||||||
|
"synopsis": "Markdown editor and converter (React build)",
|
||||||
"extraFiles": [
|
"extraFiles": [
|
||||||
{
|
{
|
||||||
"from": "bin/linux/pandoc",
|
"from": "bin/linux/pandoc",
|
||||||
|
|||||||
+718
@@ -0,0 +1,718 @@
|
|||||||
|
# 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,TypeScript`.
|
||||||
|
|
||||||
|
```
|
||||||
|
scripts/download-tools.js:
|
||||||
|
L28 function findFile
|
||||||
|
L46 method extract (PANDOC_CONFIG.linux)
|
||||||
|
L61 method extract (PANDOC_CONFIG.win32)
|
||||||
|
L77 method extract (PANDOC_CONFIG.darwin)
|
||||||
|
L90 function download
|
||||||
|
L97 function get (download)
|
||||||
|
L136 function downloadPandoc
|
||||||
|
|
||||||
|
scripts/generate-icons.js:
|
||||||
|
L17 function generateIcons
|
||||||
|
|
||||||
|
scripts/verify-open-export.mjs:
|
||||||
|
L60 function showSaveDialogSync (dialog)
|
||||||
|
|
||||||
|
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/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/GitOperations.js:
|
||||||
|
L3 function getGitInstance
|
||||||
|
L7 function getStatus
|
||||||
|
L31 function stage
|
||||||
|
L56 function commit
|
||||||
|
L66 function log
|
||||||
|
L84 function diff
|
||||||
|
|
||||||
|
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/main/files/binary.js:
|
||||||
|
L6 function register
|
||||||
|
|
||||||
|
src/main/files/git.js:
|
||||||
|
L6 function register
|
||||||
|
|
||||||
|
src/main/files/index.js:
|
||||||
|
L9 function register
|
||||||
|
|
||||||
|
src/main/index.js:
|
||||||
|
L28 function getPandocPath
|
||||||
|
L46 function getFFmpegPath
|
||||||
|
L65 function sanitizeErrorMessage
|
||||||
|
L74 function createRateLimiter
|
||||||
|
L76 function canProceed (createRateLimiter)
|
||||||
|
L86 function convertDataToMarkdown
|
||||||
|
L108 function runPandocCmd
|
||||||
|
L124 function parseCommand
|
||||||
|
L319 function checkPandocAvailability
|
||||||
|
L334 function showAboutDialog
|
||||||
|
L437 function showDependenciesDialog
|
||||||
|
L550 function openFile
|
||||||
|
L580 function openPdfFile
|
||||||
|
L599 function saveAsFile
|
||||||
|
L614 function exportFile
|
||||||
|
L624 function showExportOptionsDialog
|
||||||
|
L628 function showBatchConversionDialog
|
||||||
|
L633 function selectWordTemplate
|
||||||
|
L654 function showTemplateSettings
|
||||||
|
L847 function processDynamicFields
|
||||||
|
L868 function setDocxPageSize
|
||||||
|
L927 function addHeaderFooterToDocx
|
||||||
|
L1060 function exportWordWithTemplate
|
||||||
|
L1100 function exportPDFViaWordTemplate
|
||||||
|
L1180 function showUniversalConverterDialog
|
||||||
|
L1185 function showPDFEditorDialog
|
||||||
|
L1195 function checkConverterAvailable
|
||||||
|
L1336 function collectFiles
|
||||||
|
L1431 function convertWithLibreOffice
|
||||||
|
L1466 function convertWithImageMagick
|
||||||
|
L1475 function convertWithFFmpeg
|
||||||
|
L1483 function convertWithPandoc
|
||||||
|
L1490 function performExportWithOptions
|
||||||
|
L1741 function tryPdfFallback
|
||||||
|
L1818 function showExportSuccess
|
||||||
|
L1828 function exportWithPandoc
|
||||||
|
L1907 function exportToHTML
|
||||||
|
L2026 function exportToPDFElectron
|
||||||
|
L2174 function exportSpreadsheet
|
||||||
|
L2184 function importDocument
|
||||||
|
L2280 function setTheme
|
||||||
|
L2488 function extractTablesFromMarkdown
|
||||||
|
L2530 function performBatchConversion
|
||||||
|
L2552 function findMarkdownFiles (performBatchConversion)
|
||||||
|
L2579 function processNextFile (performBatchConversion)
|
||||||
|
L2855 function handleCLIConversion
|
||||||
|
L2883 function showConversionDialog
|
||||||
|
L2932 function performCLIConversion
|
||||||
|
L2974 function buildPandocCommand
|
||||||
|
L3152 method transform (anonymousObject0b93a19c6805)
|
||||||
|
L3273 function openFileFromPath
|
||||||
|
L3468 function loadSnippets
|
||||||
|
L3479 function saveSnippetsFile
|
||||||
|
|
||||||
|
src/main/ipc/crash-handlers.js:
|
||||||
|
L3 function register
|
||||||
|
|
||||||
|
src/main/ipc/updater-handlers.js:
|
||||||
|
L4 function register
|
||||||
|
|
||||||
|
src/main/menu/index.js:
|
||||||
|
L16 function buildMenu
|
||||||
|
L30 function register
|
||||||
|
|
||||||
|
src/main/menu/items.js:
|
||||||
|
L9 function buildRecentFilesMenu
|
||||||
|
L18 method click (buildRecentFilesMenu.anonymousObject59dd54ea0305)
|
||||||
|
L27 method click (anonymousObject59dd54ea0505)
|
||||||
|
L40 function fileItems
|
||||||
|
L143 method click (fileItems.anonymousObject59dd54ea1005)
|
||||||
|
L150 method click (fileItems.anonymousObject59dd54ea1105)
|
||||||
|
L157 method click (fileItems.anonymousObject59dd54ea1205)
|
||||||
|
L165 method click (fileItems.anonymousObject59dd54ea1305)
|
||||||
|
L172 method click (fileItems.anonymousObject59dd54ea1405)
|
||||||
|
L180 method click (fileItems.anonymousObject59dd54ea1505)
|
||||||
|
L187 method click (fileItems.anonymousObject59dd54ea1605)
|
||||||
|
L194 method click (fileItems.anonymousObject59dd54ea1705)
|
||||||
|
L201 method click (fileItems.anonymousObject59dd54ea1805)
|
||||||
|
L209 method click (fileItems.anonymousObject59dd54ea1a05)
|
||||||
|
L216 method click (fileItems.anonymousObject59dd54ea1b05)
|
||||||
|
L224 method click (fileItems.anonymousObject59dd54ea1d05)
|
||||||
|
L232 method click (fileItems.anonymousObject59dd54ea1f05)
|
||||||
|
L239 method click (fileItems.anonymousObject59dd54ea2005)
|
||||||
|
L246 method click (fileItems.anonymousObject59dd54ea2105)
|
||||||
|
L254 method click (fileItems.anonymousObject59dd54ea2305)
|
||||||
|
L261 method click (fileItems.anonymousObject59dd54ea2405)
|
||||||
|
L300 function editItems
|
||||||
|
L326 function viewItems
|
||||||
|
L372 method click (viewItems.anonymousObject59dd54ea2a05)
|
||||||
|
L379 method click (viewItems.anonymousObject59dd54ea2b05)
|
||||||
|
L386 method click (viewItems.anonymousObject59dd54ea2c05)
|
||||||
|
L393 method click (viewItems.anonymousObject59dd54ea2d05)
|
||||||
|
L400 method click (viewItems.anonymousObject59dd54ea2e05)
|
||||||
|
L407 method click (viewItems.anonymousObject59dd54ea2f05)
|
||||||
|
L414 method click (viewItems.anonymousObject59dd54ea3005)
|
||||||
|
L421 method click (viewItems.anonymousObject59dd54ea3105)
|
||||||
|
L428 method click (viewItems.anonymousObject59dd54ea3205)
|
||||||
|
L435 method click (viewItems.anonymousObject59dd54ea3305)
|
||||||
|
L443 method click (viewItems.anonymousObject59dd54ea3505)
|
||||||
|
L450 method click (viewItems.anonymousObject59dd54ea3605)
|
||||||
|
L457 method click (viewItems.anonymousObject59dd54ea3705)
|
||||||
|
L464 method click (viewItems.anonymousObject59dd54ea3805)
|
||||||
|
L471 method click (viewItems.anonymousObject59dd54ea3905)
|
||||||
|
L478 method click (viewItems.anonymousObject59dd54ea3a05)
|
||||||
|
L485 method click (viewItems.anonymousObject59dd54ea3b05)
|
||||||
|
L492 method click (viewItems.anonymousObject59dd54ea3c05)
|
||||||
|
L499 method click (viewItems.anonymousObject59dd54ea3d05)
|
||||||
|
L506 method click (viewItems.anonymousObject59dd54ea3e05)
|
||||||
|
L513 method click (viewItems.anonymousObject59dd54ea3f05)
|
||||||
|
L520 method click (viewItems.anonymousObject59dd54ea4005)
|
||||||
|
L527 method click (viewItems.anonymousObject59dd54ea4105)
|
||||||
|
L534 method click (viewItems.anonymousObject59dd54ea4205)
|
||||||
|
L541 method click (viewItems.anonymousObject59dd54ea4305)
|
||||||
|
L602 function batchItems
|
||||||
|
L631 function convertItems
|
||||||
|
L644 function pdfEditorItems
|
||||||
|
L712 method click (pdfEditorItems.anonymousObject59dd54ea4905)
|
||||||
|
L719 method click (pdfEditorItems.anonymousObject59dd54ea4a05)
|
||||||
|
L726 method click (pdfEditorItems.anonymousObject59dd54ea4b05)
|
||||||
|
L744 function toolsItems
|
||||||
|
L757 function helpItems
|
||||||
|
|
||||||
|
src/main/store.js:
|
||||||
|
L11 method get (store)
|
||||||
|
L20 method set (store)
|
||||||
|
|
||||||
|
src/main/updater/crash-writer.js:
|
||||||
|
L5 class CrashWriter
|
||||||
|
L6 method constructor (CrashWriter)
|
||||||
|
L12 method handleUncaught (CrashWriter)
|
||||||
|
L28 method _prune (CrashWriter)
|
||||||
|
L40 method list (CrashWriter)
|
||||||
|
L54 method delete (CrashWriter)
|
||||||
|
L59 method path (CrashWriter)
|
||||||
|
|
||||||
|
src/main/updater/feed-config.js:
|
||||||
|
L1 function feedConfigFor
|
||||||
|
|
||||||
|
src/main/updater/migration-runner.js:
|
||||||
|
L4 class MigrationRunner
|
||||||
|
L5 method constructor (MigrationRunner)
|
||||||
|
L12 method run (MigrationRunner)
|
||||||
|
L36 method _writeDefaults (MigrationRunner)
|
||||||
|
|
||||||
|
src/main/updater/migration-transform.js:
|
||||||
|
L49 function isAlreadyV5
|
||||||
|
L56 function normalizeAlreadyV5
|
||||||
|
L95 function migrateV4ToV5
|
||||||
|
|
||||||
|
src/main/updater/updater-service.js:
|
||||||
|
L4 class UpdaterService
|
||||||
|
L5 method constructor (UpdaterService)
|
||||||
|
L13 method _wire (UpdaterService)
|
||||||
|
L27 method _emit (UpdaterService)
|
||||||
|
L32 method check (UpdaterService)
|
||||||
|
L38 method install (UpdaterService)
|
||||||
|
|
||||||
|
src/main/utils/paths.js:
|
||||||
|
L7 function getAllowedDirectories
|
||||||
|
L23 function validatePath
|
||||||
|
L58 function resolveWritablePath
|
||||||
|
L88 function isPathAccessible
|
||||||
|
|
||||||
|
src/main/window/index.js:
|
||||||
|
L10 function createMainWindow
|
||||||
|
|
||||||
|
src/main/window/state.js:
|
||||||
|
L10 function load
|
||||||
|
L18 function save
|
||||||
|
|
||||||
|
src/main/word-template/index.js:
|
||||||
|
L11 class WordTemplateExporter
|
||||||
|
L12 method constructor (WordTemplateExporter)
|
||||||
|
L21 method convert (WordTemplateExporter)
|
||||||
|
L58 method setPageSize (WordTemplateExporter)
|
||||||
|
L111 method insertContentAfterPage (WordTemplateExporter)
|
||||||
|
L140 method markdownToWordXml (WordTemplateExporter)
|
||||||
|
L251 method createHeadingXml (WordTemplateExporter)
|
||||||
|
L266 method createParagraphXml (WordTemplateExporter)
|
||||||
|
L280 method createQuoteXml (WordTemplateExporter)
|
||||||
|
L294 method createListItemXml (WordTemplateExporter)
|
||||||
|
L315 method createCodeBlockXml (WordTemplateExporter)
|
||||||
|
L352 method createHorizontalRuleXml (WordTemplateExporter)
|
||||||
|
L366 method createTableXml (WordTemplateExporter)
|
||||||
|
L502 method isAsciiArt (WordTemplateExporter)
|
||||||
|
L606 method createAsciiArtXml (WordTemplateExporter)
|
||||||
|
L715 method parseInlineFormatting (WordTemplateExporter)
|
||||||
|
L776 method createRunXml (WordTemplateExporter)
|
||||||
|
L797 method escapeXml (WordTemplateExporter)
|
||||||
|
|
||||||
|
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 (anonymousObjectd036aefd0105)
|
||||||
|
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:
|
||||||
|
L275 method send (anonymousObject04f5e4370105)
|
||||||
|
L289 method invoke (anonymousObject04f5e4370105)
|
||||||
|
L308 method on (anonymousObject04f5e4370105)
|
||||||
|
L310 function subscription (anonymousObject04f5e4370105.on)
|
||||||
|
L328 method once (anonymousObject04f5e4370105)
|
||||||
|
L340 method removeAllListeners (anonymousObject04f5e4370105)
|
||||||
|
L488 function subscription
|
||||||
|
|
||||||
|
src/renderer/hooks/use-export-source.ts:
|
||||||
|
L4 interface ExportSource
|
||||||
|
L14 function useExportSource
|
||||||
|
|
||||||
|
src/renderer/hooks/use-file-shortcuts.ts:
|
||||||
|
L15 function useFileShortcuts
|
||||||
|
|
||||||
|
src/renderer/hooks/use-menu-action.ts:
|
||||||
|
L6 alias Transform
|
||||||
|
L17 function useMenuAction
|
||||||
|
|
||||||
|
src/renderer/hooks/use-restore-last-folder.ts:
|
||||||
|
L9 function useRestoreLastFolder
|
||||||
|
|
||||||
|
src/renderer/hooks/use-scroll-sync.ts:
|
||||||
|
L3 interface Options
|
||||||
|
L8 function useScrollSync
|
||||||
|
|
||||||
|
src/renderer/hooks/use-shortcut.ts:
|
||||||
|
L20 function useShortcut
|
||||||
|
L44 interface ComboSpec
|
||||||
|
L53 function parseCombo
|
||||||
|
L71 function matchCombo
|
||||||
|
|
||||||
|
src/renderer/hooks/use-welcome-trigger.ts:
|
||||||
|
L9 function useWelcomeTrigger
|
||||||
|
|
||||||
|
src/renderer/hooks/use-zen-mode.ts:
|
||||||
|
L8 function useZenMode
|
||||||
|
|
||||||
|
src/renderer/hooks/useAutoUpdateCheck.ts:
|
||||||
|
L5 function useAutoUpdateCheck
|
||||||
|
|
||||||
|
src/renderer/lib/ascii-table.ts:
|
||||||
|
L5 function toAsciiTable
|
||||||
|
L36 function applyAsciiTransform
|
||||||
|
|
||||||
|
src/renderer/lib/commands/register-menu-commands.ts:
|
||||||
|
L24 alias HeadingItem
|
||||||
|
L26 alias OpenModal
|
||||||
|
L28 function confirmCloseFlow
|
||||||
|
L45 function registerMenuCommands
|
||||||
|
L411 function useRegisterMenuCommands
|
||||||
|
L421 function useBridgeNativeMenu
|
||||||
|
|
||||||
|
src/renderer/lib/docx-export.ts:
|
||||||
|
L4 interface DocxOptions
|
||||||
|
L10 function generateDocx
|
||||||
|
|
||||||
|
src/renderer/lib/editor-commands.ts:
|
||||||
|
L18 function setActiveView
|
||||||
|
L22 function getActiveView
|
||||||
|
L27 function wrap
|
||||||
|
L57 function setLineHeading
|
||||||
|
L76 function toggleLinePrefix
|
||||||
|
L103 function toggleBold
|
||||||
|
L107 function toggleItalic
|
||||||
|
L111 function toggleCode
|
||||||
|
L115 function toggleCodeBlock
|
||||||
|
L143 function toggleUnorderedList
|
||||||
|
L147 function toggleOrderedList
|
||||||
|
L151 function insertLink
|
||||||
|
L167 function setHeadingLevel
|
||||||
|
L171 function scrollToLine
|
||||||
|
L185 function undo
|
||||||
|
L192 function redo
|
||||||
|
L199 function selectCurrentLine
|
||||||
|
L210 function insertSnippet
|
||||||
|
|
||||||
|
src/renderer/lib/figlet.ts:
|
||||||
|
L13 alias FigletFont
|
||||||
|
L15 function figletText
|
||||||
|
|
||||||
|
src/renderer/lib/headings.ts:
|
||||||
|
L1 interface HeadingItem
|
||||||
|
L13 function extractHeadings
|
||||||
|
|
||||||
|
src/renderer/lib/html-export.ts:
|
||||||
|
L11 interface HtmlExportOptions
|
||||||
|
L101 function generateHtml
|
||||||
|
L125 function escapeHtml
|
||||||
|
|
||||||
|
src/renderer/lib/ipc.ts:
|
||||||
|
L14 alias ChannelMissing
|
||||||
|
L16 function wrap
|
||||||
|
|
||||||
|
src/renderer/lib/markdown.ts:
|
||||||
|
L11 function renderMarkdown
|
||||||
|
|
||||||
|
src/renderer/lib/migrations/v4-to-v5.ts:
|
||||||
|
L16 function isAlreadyV5
|
||||||
|
L22 function normalizeAlreadyV5
|
||||||
|
L37 function migrateV4ToV5
|
||||||
|
|
||||||
|
src/renderer/lib/pdf-export.ts:
|
||||||
|
L13 interface PdfExportOptions
|
||||||
|
L28 function generatePdf
|
||||||
|
|
||||||
|
src/renderer/lib/updater-store.ts:
|
||||||
|
L4 alias State
|
||||||
|
L6 interface UpdaterState
|
||||||
|
|
||||||
|
src/renderer/lib/utils.ts:
|
||||||
|
L1 alias ClassValue
|
||||||
|
L4 function cn
|
||||||
|
|
||||||
|
src/renderer/lib/validators.ts:
|
||||||
|
L30 alias Settings
|
||||||
|
L38 alias ExportPdfOptions
|
||||||
|
L44 alias ExportDocxOptions
|
||||||
|
L51 alias ExportHtmlOptions
|
||||||
|
L58 alias ExportBatchOptions
|
||||||
|
|
||||||
|
src/renderer/lib/writing-analytics.ts:
|
||||||
|
L115 function countSyllables
|
||||||
|
L122 function extractWords
|
||||||
|
L126 function getReadabilityLabel
|
||||||
|
L134 interface WritingMetrics
|
||||||
|
L151 function analyzeText
|
||||||
|
|
||||||
|
src/renderer/stores/app-store.ts:
|
||||||
|
L4 interface PaneSizes
|
||||||
|
L10 interface ConfirmProps
|
||||||
|
L20 alias ModalState
|
||||||
|
L42 alias ModalKind
|
||||||
|
L44 interface AppState
|
||||||
|
L57 method openModal (AppState)
|
||||||
|
|
||||||
|
src/renderer/stores/command-store.ts:
|
||||||
|
L4 alias CommandId
|
||||||
|
L6 alias CommandHandler
|
||||||
|
L13 alias UserBindings
|
||||||
|
L15 interface CommandState
|
||||||
|
|
||||||
|
src/renderer/stores/editor-store.ts:
|
||||||
|
L7 interface Buffer
|
||||||
|
L15 interface EditorState
|
||||||
|
|
||||||
|
src/renderer/stores/file-store.ts:
|
||||||
|
L12 interface FileNode
|
||||||
|
L21 interface OpenTab
|
||||||
|
L28 interface FileState
|
||||||
|
L50 function entryToNode
|
||||||
|
L60 function updateNode
|
||||||
|
|
||||||
|
src/renderer/stores/preview-store.ts:
|
||||||
|
L3 interface PreviewState
|
||||||
|
|
||||||
|
src/renderer/stores/settings-store.ts:
|
||||||
|
L3 alias Settings
|
||||||
|
L5 alias Omit
|
||||||
|
L5 alias SettingsLeaf
|
||||||
|
L7 interface SettingsState
|
||||||
|
L8 method setSetting (SettingsState)
|
||||||
|
|
||||||
|
src/renderer/test/setup.ts:
|
||||||
|
L7 interface Window
|
||||||
|
L119 class ResizeObserver
|
||||||
|
L120 method observe (ResizeObserver)
|
||||||
|
L121 method unobserve (ResizeObserver)
|
||||||
|
L122 method disconnect (ResizeObserver)
|
||||||
|
L141 class DOMMatrix
|
||||||
|
|
||||||
|
src/renderer/types/electron.d.ts:
|
||||||
|
L1 interface ElectronAPI
|
||||||
|
L134 interface Window
|
||||||
|
|
||||||
|
src/renderer/types/ipc.ts:
|
||||||
|
L1 alias IpcResult
|
||||||
|
L5 interface FileEntry
|
||||||
|
L13 interface FileResult
|
||||||
|
L18 interface PdfOptions
|
||||||
|
L27 interface DocxOptions
|
||||||
|
L34 interface HtmlOptions
|
||||||
|
L41 interface ExportResult
|
||||||
|
L47 interface BatchItem
|
||||||
|
L52 interface BatchOptions
|
||||||
|
L57 interface BatchResult
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
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 (anonymousObject7c2818c30105)
|
||||||
|
L52 method render (anonymousObject7c2818c30205)
|
||||||
|
L62 method render (anonymousObject7c2818c30305)
|
||||||
|
L68 method render (anonymousObject7c2818c30405)
|
||||||
|
L80 method render (anonymousObject7c2818c30505)
|
||||||
|
L88 method render (anonymousObject7c2818c30605)
|
||||||
|
L96 method render (anonymousObject7c2818c30705)
|
||||||
|
L120 method render (anonymousObject7c2818c30905)
|
||||||
|
L130 method render (anonymousObject7c2818c30a05)
|
||||||
|
|
||||||
|
tests/unit/hooks/use-menu-action.test.ts:
|
||||||
|
L6 alias Cleanup
|
||||||
|
L27 function fireMenu
|
||||||
|
|
||||||
|
tests/unit/main/updater/crash-writer.test.js:
|
||||||
|
L6 function tmpDir
|
||||||
|
|
||||||
|
tests/unit/main/updater/migration-runner.test.js:
|
||||||
|
L6 function tmpDir
|
||||||
|
L47 method transform (anonymousObject196c14410c05)
|
||||||
|
L63 method transform (anonymousObject196c14410d05)
|
||||||
|
|
||||||
|
tests/unit/stores/file-store.test.ts:
|
||||||
|
L26 function fakeFileEntry
|
||||||
|
|
||||||
|
tests/utils.test.js:
|
||||||
|
L9 function parseCommand
|
||||||
|
L78 function hexToRgb
|
||||||
|
L121 function getExtension
|
||||||
|
L133 function replaceExtension
|
||||||
|
```
|
||||||
@@ -169,7 +169,47 @@ async function downloadPandoc() {
|
|||||||
console.log(`[download-tools] pandoc ready: ${destFile}`);
|
console.log(`[download-tools] pandoc ready: ${destFile}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadPandoc().catch((err) => {
|
async function downloadFiraCode() {
|
||||||
|
const targetDir = path.resolve(__dirname, '..', 'assets', 'fonts');
|
||||||
|
fs.mkdirSync(targetDir, { recursive: true });
|
||||||
|
// Pinned to an immutable release tag with explicit SHA-256 digests so the
|
||||||
|
// build fails loudly on any upstream tampering or accidental change.
|
||||||
|
// Update the version + digests together when bumping Fira Code.
|
||||||
|
const FIRA_CODE_VERSION = '6.2';
|
||||||
|
const baseUrl = `https://github.com/tonsky/FiraCode/releases/download/${FIRA_CODE_VERSION}`;
|
||||||
|
const files = [
|
||||||
|
{ url: `${baseUrl}/FiraCode-Regular.ttf`, out: 'FiraCode-Regular.ttf', sha256: '3c79d234a9161c790410ebb2a80de7efb7c15f581062c130e0fa78503ccdd0da' },
|
||||||
|
{ url: `${baseUrl}/FiraCode-Bold.ttf`, out: 'FiraCode-Bold.ttf', sha256: '975f26779fac1029c2cbdac1e9fac7e9ddeec05e064675e4aac63bffa121742f' },
|
||||||
|
{ url: `${baseUrl}/FiraCode-LICENSE.txt`, out: 'FiraCode-LICENSE.txt', sha256: null },
|
||||||
|
];
|
||||||
|
for (const f of files) {
|
||||||
|
const dest = path.join(targetDir, f.out);
|
||||||
|
if (fs.existsSync(dest)) {
|
||||||
|
console.log(`[download-tools] Fira Code asset already present at ${dest} — skipping.`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!f.sha256 || !/^[a-f0-9]{64}$/i.test(f.sha256)) {
|
||||||
|
throw new Error(
|
||||||
|
`[download-tools] Refusing to download ${f.url}: SHA-256 digest not pinned. ` +
|
||||||
|
'Update scripts/download-tools.js with the digest from the official Fira Code release before building.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const tmp = `${dest}.tmp`;
|
||||||
|
console.log(`[download-tools] Downloading ${f.url}...`);
|
||||||
|
await download(f.url, tmp);
|
||||||
|
const actual = require('crypto').createHash('sha256').update(fs.readFileSync(tmp)).digest('hex');
|
||||||
|
if (actual !== f.sha256) {
|
||||||
|
fs.unlinkSync(tmp);
|
||||||
|
throw new Error(
|
||||||
|
`[download-tools] SHA-256 mismatch for ${f.url}: expected ${f.sha256}, got ${actual}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
fs.renameSync(tmp, dest);
|
||||||
|
}
|
||||||
|
console.log('[download-tools] Fira Code ready');
|
||||||
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const version = process.argv[2] || require('../package.json').version;
|
||||||
|
const hook = process.env.CONCRETEINFO_DEPLOY_HOOK;
|
||||||
|
if (!hook) {
|
||||||
|
console.error('CONCRETEINFO_DEPLOY_HOOK not set');
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const candidates = [
|
||||||
|
'latest-mac.yml',
|
||||||
|
'latest-linux.yml',
|
||||||
|
'latest-windows.yml',
|
||||||
|
`MarkdownConverter-${version}.dmg`,
|
||||||
|
`markdown-converter_${version}_amd64.deb`,
|
||||||
|
`MarkdownConverter-Setup-${version}.exe`,
|
||||||
|
];
|
||||||
|
|
||||||
|
const dist = path.resolve(__dirname, '..', 'dist');
|
||||||
|
for (const f of candidates) {
|
||||||
|
if (!fs.existsSync(path.join(dist, f))) {
|
||||||
|
console.error(`missing ${f} — run electron-builder first`);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const form = new FormData();
|
||||||
|
form.append('version', version);
|
||||||
|
for (const f of candidates) {
|
||||||
|
if (fs.existsSync(path.join(dist, f))) {
|
||||||
|
form.append('artifacts', fs.createReadStream(path.join(dist, f)), f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch('https://updates.concreteinfo.co.in/api/v1/ingest', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { Authorization: `Bearer ${hook}` },
|
||||||
|
body: form,
|
||||||
|
})
|
||||||
|
.then((r) => {
|
||||||
|
console.log('ingest status', r.status);
|
||||||
|
process.exit(r.ok ? 0 : 1);
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
console.error('ingest failed:', e);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
import { _electron as electron } from 'playwright-core';
|
||||||
|
import * as fs from 'node:fs';
|
||||||
|
import * as path from 'node:path';
|
||||||
|
|
||||||
|
const APP_DIR = '/home/amith/apps/markdown-converter';
|
||||||
|
const electronBin = path.join(APP_DIR, 'node_modules/electron/dist/electron');
|
||||||
|
|
||||||
|
const testMd = '/tmp/verify-test.md';
|
||||||
|
const outputDocx = '/tmp/verify-output.docx';
|
||||||
|
const outputHtml = '/tmp/verify-output.html';
|
||||||
|
|
||||||
|
// Cleanup previous outputs
|
||||||
|
if (fs.existsSync(testMd)) fs.unlinkSync(testMd);
|
||||||
|
if (fs.existsSync(outputDocx)) fs.unlinkSync(outputDocx);
|
||||||
|
if (fs.existsSync(outputHtml)) fs.unlinkSync(outputHtml);
|
||||||
|
|
||||||
|
// Write test Markdown file
|
||||||
|
fs.writeFileSync(
|
||||||
|
testMd,
|
||||||
|
'# Test Document\n\nThis is a verification test for opening and exporting.\n\n- Point A\n- Point B\n'
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log('Launching Electron...');
|
||||||
|
const app = await electron.launch({
|
||||||
|
executablePath: electronBin,
|
||||||
|
args: [
|
||||||
|
'--no-sandbox',
|
||||||
|
'--disable-gpu',
|
||||||
|
'--disable-software-rasterizer',
|
||||||
|
'--disable-dev-shm-usage',
|
||||||
|
'.',
|
||||||
|
],
|
||||||
|
env: {
|
||||||
|
...process.env,
|
||||||
|
DISPLAY: ':0',
|
||||||
|
ELECTRON_DISABLE_SANDBOX: '1',
|
||||||
|
VITE_DEV_SERVER_URL: 'http://localhost:5173',
|
||||||
|
},
|
||||||
|
cwd: APP_DIR,
|
||||||
|
});
|
||||||
|
|
||||||
|
app.process().stdout.on('data', (data) => console.log('[MAIN-OUT]', data.toString().trim()));
|
||||||
|
app.process().stderr.on('data', (data) => console.log('[MAIN-ERR]', data.toString().trim()));
|
||||||
|
|
||||||
|
const win = await app.firstWindow();
|
||||||
|
await win.waitForLoadState('domcontentloaded');
|
||||||
|
await win.waitForSelector('.cm-editor, [role="toolbar"]', { timeout: 10000 });
|
||||||
|
console.log('App loaded.');
|
||||||
|
|
||||||
|
// Dismiss welcome wizard if present
|
||||||
|
const wizardCount = await win.locator('[data-testid="first-run-wizard"]').count();
|
||||||
|
if (wizardCount > 0) {
|
||||||
|
console.log('Dismissing first run wizard...');
|
||||||
|
await win.click('[data-testid="first-run-wizard"] >> text=Skip');
|
||||||
|
await new Promise((r) => setTimeout(r, 300));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stub dialog.showSaveDialogSync in main process to automatically return output paths
|
||||||
|
await app.evaluate(({ dialog }, { outputDocx, outputHtml }) => {
|
||||||
|
dialog.showSaveDialogSync = (window, options) => {
|
||||||
|
const filters = options?.filters || [];
|
||||||
|
if (filters.some(f => f.extensions.includes('docx'))) {
|
||||||
|
return outputDocx;
|
||||||
|
}
|
||||||
|
return outputHtml;
|
||||||
|
};
|
||||||
|
}, { outputDocx, outputHtml });
|
||||||
|
|
||||||
|
// Simulate opening the test Md file by sending IPC from main
|
||||||
|
console.log('Opening test markdown file...');
|
||||||
|
const fileContent = fs.readFileSync(testMd, 'utf-8');
|
||||||
|
await app.evaluate(({ BrowserWindow }, { filePath, content }) => {
|
||||||
|
const wins = BrowserWindow.getAllWindows();
|
||||||
|
const main = wins.find((w) => !w.isDestroyed());
|
||||||
|
if (!main) throw new Error('No main window');
|
||||||
|
main.webContents.send('file-opened', { path: filePath, content });
|
||||||
|
}, { filePath: testMd, content: fileContent });
|
||||||
|
|
||||||
|
// Wait for editor to display the content
|
||||||
|
await win.waitForFunction(
|
||||||
|
(content) => {
|
||||||
|
const editor = document.querySelector('.cm-content');
|
||||||
|
return editor && editor.textContent.includes('Test Document');
|
||||||
|
},
|
||||||
|
fileContent,
|
||||||
|
{ timeout: 5000 }
|
||||||
|
);
|
||||||
|
console.log('File successfully opened in editor.');
|
||||||
|
|
||||||
|
// Let's wait a moment for currentFile synchronization to trigger in the main process
|
||||||
|
await new Promise((r) => setTimeout(r, 500));
|
||||||
|
|
||||||
|
|
||||||
|
// Trigger DOCX Export (calls performExportWithOptions under the hood)
|
||||||
|
console.log('Exporting to DOCX...');
|
||||||
|
await win.evaluate(() => {
|
||||||
|
window.electronAPI.export.withOptions('docx', {});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Wait for file to be written to disk
|
||||||
|
let docxExported = false;
|
||||||
|
for (let i = 0; i < 20; i++) {
|
||||||
|
if (fs.existsSync(outputDocx) && fs.statSync(outputDocx).size > 0) {
|
||||||
|
docxExported = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
await new Promise((r) => setTimeout(r, 250));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (docxExported) {
|
||||||
|
console.log('✅ DOCX exported successfully.');
|
||||||
|
} else {
|
||||||
|
console.error('❌ DOCX export failed (file not created or empty).');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait 2.5 seconds to bypass the conversion rate limiter (2000ms debounce)
|
||||||
|
console.log('Waiting for rate limiter...');
|
||||||
|
await new Promise((r) => setTimeout(r, 2500));
|
||||||
|
|
||||||
|
// Trigger HTML Export
|
||||||
|
console.log('Exporting to HTML...');
|
||||||
|
await win.evaluate(() => {
|
||||||
|
window.electronAPI.export.withOptions('html', {});
|
||||||
|
});
|
||||||
|
|
||||||
|
let htmlExported = false;
|
||||||
|
for (let i = 0; i < 20; i++) {
|
||||||
|
if (fs.existsSync(outputHtml) && fs.statSync(outputHtml).size > 0) {
|
||||||
|
htmlExported = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
await new Promise((r) => setTimeout(r, 250));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (htmlExported) {
|
||||||
|
console.log('✅ HTML exported successfully.');
|
||||||
|
} else {
|
||||||
|
console.error('❌ HTML export failed (file not created or empty).');
|
||||||
|
}
|
||||||
|
|
||||||
|
await app.close();
|
||||||
|
console.log('Verification completed.');
|
||||||
|
|
||||||
|
if (docxExported && htmlExported) {
|
||||||
|
process.exit(0);
|
||||||
|
} else {
|
||||||
|
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,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const JSZip = require('jszip');
|
||||||
|
|
||||||
|
const FONT_TABLE_PATH = 'word/fontTable.xml';
|
||||||
|
const FONT_TABLE_RELS_PATH = 'word/_rels/fontTable.xml.rels';
|
||||||
|
|
||||||
|
function fontTableXml(family) {
|
||||||
|
return `<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:fonts xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:font w:name="${family}">
|
||||||
|
<w:panose1 w:val="020F0502020204030204"/>
|
||||||
|
<w:charset w:val="00"/>
|
||||||
|
<w:family w:val="modern"/>
|
||||||
|
<w:pitch w:val="fixed"/>
|
||||||
|
<w:embedRegular r:id="rId1"/>
|
||||||
|
</w:font>
|
||||||
|
</w:fonts>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function fontTableRels(fontFilename) {
|
||||||
|
return `<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
|
||||||
|
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/font" Target="${fontFilename}"/>
|
||||||
|
</Relationships>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function embedDocxFont(inputDocxPath, outputDocxPath, ttfPath, fontFamily) {
|
||||||
|
if (!ttfPath || !fs.existsSync(ttfPath)) {
|
||||||
|
throw new Error(`DocxFontEmbedder: TTF not found at ${ttfPath}`);
|
||||||
|
}
|
||||||
|
const inputBytes = fs.readFileSync(inputDocxPath);
|
||||||
|
const zip = await JSZip.loadAsync(inputBytes);
|
||||||
|
const safeFamily = String(fontFamily).replace(/[^A-Za-z0-9]/g, '');
|
||||||
|
const fontFilename = `${safeFamily}.ttf`;
|
||||||
|
const fontBytes = fs.readFileSync(ttfPath);
|
||||||
|
zip.file(`word/fonts/${fontFilename}`, fontBytes);
|
||||||
|
zip.file(FONT_TABLE_PATH, fontTableXml(safeFamily));
|
||||||
|
zip.file(FONT_TABLE_RELS_PATH, fontTableRels(fontFilename));
|
||||||
|
const out = await zip.generateAsync({ type: 'nodebuffer' });
|
||||||
|
fs.writeFileSync(outputDocxPath, out);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { embedDocxFont };
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const JSZip = require('jszip');
|
||||||
|
|
||||||
|
function withEpubEmbedFontArgs(pandocArgs, ttfPath, _fontFamily) {
|
||||||
|
return [`--epub-embed-font=${ttfPath}`, ...pandocArgs];
|
||||||
|
}
|
||||||
|
|
||||||
|
async function embedEpubFont(epubPath, ttfPath, _fontFamily) {
|
||||||
|
if (!ttfPath || !fs.existsSync(ttfPath)) {
|
||||||
|
throw new Error(`EpubFontEmbedder: TTF not found at ${ttfPath}`);
|
||||||
|
}
|
||||||
|
const bytes = fs.readFileSync(epubPath);
|
||||||
|
const zip = await JSZip.loadAsync(bytes);
|
||||||
|
const ttfBytes = fs.readFileSync(ttfPath);
|
||||||
|
const fontName = path.basename(ttfPath);
|
||||||
|
zip.file(`OEBPS/${fontName}`, ttfBytes);
|
||||||
|
const opfPath = 'OEBPS/content.opf';
|
||||||
|
const opfFile = zip.file(opfPath);
|
||||||
|
if (!opfFile) {
|
||||||
|
fs.writeFileSync(epubPath, await zip.generateAsync({ type: 'nodebuffer' }));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let opf = await opfFile.async('string');
|
||||||
|
const manifestEntry = `<item id="font-${path.basename(fontName, '.ttf')}" href="${fontName}" media-type="application/x-font-ttf"/>`;
|
||||||
|
if (!opf.includes('manifest')) {
|
||||||
|
opf = opf.replace('</package>', `<manifest>${manifestEntry}</manifest></package>`);
|
||||||
|
} else if (!opf.includes(fontName)) {
|
||||||
|
opf = opf.replace('</manifest>', `${manifestEntry}</manifest>`);
|
||||||
|
}
|
||||||
|
zip.file(opfPath, opf);
|
||||||
|
fs.writeFileSync(epubPath, await zip.generateAsync({ type: 'nodebuffer' }));
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { withEpubEmbedFontArgs, embedEpubFont };
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const { FAMILY_BY_KEY } = require('./settings/monospaceSettings');
|
||||||
|
|
||||||
|
function buildFontFaceBlock(family, woff2Bytes) {
|
||||||
|
const safeFamily = family.replace(/'/g, "\\'");
|
||||||
|
const b64 = Buffer.from(woff2Bytes).toString('base64');
|
||||||
|
return `@font-face {
|
||||||
|
font-family: '${safeFamily}';
|
||||||
|
src: url(data:font/woff2;base64,${b64}) format('woff2');
|
||||||
|
font-weight: 100 900;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildExportCss(settings, { woff2 } = {}) {
|
||||||
|
const family = (settings && FAMILY_BY_KEY[settings.monospaceFont]) || 'JetBrains Mono';
|
||||||
|
const ligatures = !!(settings && settings.monospaceLigatures === true);
|
||||||
|
const face = buildFontFaceBlock(family, woff2 || Buffer.alloc(0));
|
||||||
|
const feature = ligatures ? `code, pre, kbd, samp { font-feature-settings: 'liga' 1, 'calt' 1; }` : '';
|
||||||
|
return [face, feature].filter(Boolean).join('\n\n');
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { buildExportCss, buildFontFaceBlock };
|
||||||
@@ -7,9 +7,24 @@ function getGitInstance(dir) {
|
|||||||
async function getStatus(dir) {
|
async function getStatus(dir) {
|
||||||
try {
|
try {
|
||||||
const git = getGitInstance(dir);
|
const git = getGitInstance(dir);
|
||||||
return await git.status();
|
const result = await git.status();
|
||||||
} catch (err) {
|
const files = [];
|
||||||
return { error: 'Not a git repository' };
|
for (const [filePath, status] of Object.entries(result.files || {})) {
|
||||||
|
files.push({
|
||||||
|
filePath,
|
||||||
|
status:
|
||||||
|
status.working_dir === 'M'
|
||||||
|
? 'modified'
|
||||||
|
: status.working_dir === 'A' || status.index === 'A'
|
||||||
|
? 'added'
|
||||||
|
: status.working_dir === 'D' || status.index === 'D'
|
||||||
|
? 'deleted'
|
||||||
|
: 'untracked',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return { files };
|
||||||
|
} catch (_err) {
|
||||||
|
return { files: [], error: 'Not a git repository' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -17,16 +32,32 @@ async function stage(dir, files) {
|
|||||||
try {
|
try {
|
||||||
const git = getGitInstance(dir);
|
const git = getGitInstance(dir);
|
||||||
await git.add(files);
|
await git.add(files);
|
||||||
return await git.status();
|
const result = await git.status();
|
||||||
|
const staged = [];
|
||||||
|
for (const [filePath, status] of Object.entries(result.files || {})) {
|
||||||
|
staged.push({
|
||||||
|
filePath,
|
||||||
|
status:
|
||||||
|
status.index === 'A'
|
||||||
|
? 'added'
|
||||||
|
: status.index === 'M'
|
||||||
|
? 'modified'
|
||||||
|
: status.index === 'D'
|
||||||
|
? 'deleted'
|
||||||
|
: 'untracked',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return { files: staged };
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return { error: err.message };
|
return { files: [], error: err.message };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function commit(dir, message) {
|
async function commit(dir, message) {
|
||||||
try {
|
try {
|
||||||
const git = getGitInstance(dir);
|
const git = getGitInstance(dir);
|
||||||
return await git.commit(message);
|
const result = await git.commit(message);
|
||||||
|
return { summary: result?.summary || 'Committed' };
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return { error: err.message };
|
return { error: err.message };
|
||||||
}
|
}
|
||||||
@@ -35,10 +66,29 @@ async function commit(dir, message) {
|
|||||||
async function log(dir, maxCount = 20) {
|
async function log(dir, maxCount = 20) {
|
||||||
try {
|
try {
|
||||||
const git = getGitInstance(dir);
|
const git = getGitInstance(dir);
|
||||||
return await git.log({ maxCount });
|
const result = await git.log({ maxCount });
|
||||||
|
return {
|
||||||
|
latest: result?.latest || null,
|
||||||
|
all: (result?.all || []).map((entry) => ({
|
||||||
|
hash: entry.hash,
|
||||||
|
message: entry.message,
|
||||||
|
author: entry.author_name,
|
||||||
|
date: entry.date,
|
||||||
|
})),
|
||||||
|
};
|
||||||
|
} catch (err) {
|
||||||
|
return { all: [], error: err.message };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function diff(dir, filePath) {
|
||||||
|
try {
|
||||||
|
const git = getGitInstance(dir);
|
||||||
|
const args = filePath ? ['--', filePath] : [];
|
||||||
|
return await git.diff(args);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return { error: err.message };
|
return { error: err.message };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { getStatus, stage, commit, log };
|
module.exports = { getStatus, stage, commit, log, diff };
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
'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 };
|
||||||
+58
-39
@@ -4,11 +4,11 @@ const { PDFDocument, rgb, degrees, StandardFonts } = require('pdf-lib');
|
|||||||
|
|
||||||
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 +27,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 +44,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 +65,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);
|
||||||
}
|
}
|
||||||
@@ -108,7 +110,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 +131,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 +162,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 +172,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 +187,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 +198,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 +211,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 +219,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);
|
||||||
@@ -246,7 +250,9 @@ 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;
|
let x,
|
||||||
|
y,
|
||||||
|
rotation = 0;
|
||||||
|
|
||||||
switch (data.position) {
|
switch (data.position) {
|
||||||
case 'center':
|
case 'center':
|
||||||
@@ -294,7 +300,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 +309,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 };
|
||||||
@@ -325,8 +331,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 +342,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 };
|
||||||
@@ -375,8 +382,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,7 +393,8 @@ 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 };
|
||||||
@@ -395,17 +403,28 @@ async function pdfSetPermissions(data) {
|
|||||||
|
|
||||||
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);
|
||||||
|
default:
|
||||||
|
return Promise.resolve({ success: false, error: `Unknown operation: ${operation}` });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -429,5 +448,5 @@ module.exports = {
|
|||||||
pdfDecrypt,
|
pdfDecrypt,
|
||||||
pdfSetPermissions,
|
pdfSetPermissions,
|
||||||
executeOperation,
|
executeOperation,
|
||||||
getPageCount
|
getPageCount,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build a xelatex/lualatex fontspec header referencing the bundled TTF.
|
||||||
|
*
|
||||||
|
* Uses an exclusive temp directory (mkdtempSync) to avoid the racy
|
||||||
|
* Date.now()+pid filename pattern. Returns the directory along with the
|
||||||
|
* header path; callers MUST `unlinkSync(headerPath)` and `rmdirSync(dir)`
|
||||||
|
* after pandoc consumes the file.
|
||||||
|
*/
|
||||||
|
function buildPdfFontHeader(settings, ttfPath, fontFamily) {
|
||||||
|
if (!ttfPath || !fs.existsSync(ttfPath)) {
|
||||||
|
throw new Error(`PdfFontHeader: TTF not found at ${ttfPath}`);
|
||||||
|
}
|
||||||
|
const ligatures = !!(settings && settings.monospaceLigatures === true);
|
||||||
|
const fontDir = path.dirname(ttfPath);
|
||||||
|
const basename = path.basename(ttfPath);
|
||||||
|
const boldName = basename.replace('Regular', 'Bold').replace('Medium', 'Bold');
|
||||||
|
const lines = [
|
||||||
|
`\\setmonofont[Path = ${fontDir}/,`,
|
||||||
|
` Extension = .ttf,`,
|
||||||
|
` UprightFont = ${basename},`,
|
||||||
|
` BoldFont = ${boldName},`,
|
||||||
|
ligatures ? ' Ligatures=TeX,' : '',
|
||||||
|
` Scale = 0.9]`,
|
||||||
|
`{${fontFamily}}`,
|
||||||
|
].filter(Boolean);
|
||||||
|
const dir = fs.mkdtempSync(path.join(os.tmpdir(), 'mono-pdf-'));
|
||||||
|
const headerPath = path.join(dir, 'monospace.tex');
|
||||||
|
fs.writeFileSync(headerPath, lines.join('\n'), 'utf-8');
|
||||||
|
return { headerPath, dir, familyName: fontFamily };
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { buildPdfFontHeader };
|
||||||
@@ -8,6 +8,11 @@ function register() {
|
|||||||
await fs.writeFile(filePath, Buffer.from(buffer));
|
await fs.writeFile(filePath, Buffer.from(buffer));
|
||||||
return { ok: true };
|
return { ok: true };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('read-buffer', async (_event, { path: filePath }) => {
|
||||||
|
const data = await fs.readFile(filePath);
|
||||||
|
return { ok: true, data };
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { register };
|
module.exports = { register };
|
||||||
+27
-9
@@ -4,25 +4,43 @@ const { ipcMain } = require('electron');
|
|||||||
const GitOperations = require('../GitOperations');
|
const GitOperations = require('../GitOperations');
|
||||||
|
|
||||||
function register(currentFileRef) {
|
function register(currentFileRef) {
|
||||||
ipcMain.handle('git-status', async () => {
|
ipcMain.handle('git-status', async (_event, rootPath) => {
|
||||||
const dir = currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd();
|
const dir =
|
||||||
return GitOperations.getStatus(dir);
|
rootPath ||
|
||||||
|
(currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd());
|
||||||
|
const result = GitOperations.getStatus(dir);
|
||||||
|
return Array.isArray(result?.files) ? result.files : [];
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.handle('git-stage', async (_event, { files }) => {
|
ipcMain.handle('git-stage', async (_event, { rootPath, files }) => {
|
||||||
const dir = currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd();
|
const dir =
|
||||||
|
rootPath ||
|
||||||
|
(currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd());
|
||||||
return GitOperations.stage(dir, files);
|
return GitOperations.stage(dir, files);
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.handle('git-commit', async (_event, { message }) => {
|
ipcMain.handle('git-commit', async (_event, { rootPath, message }) => {
|
||||||
const dir = currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd();
|
const dir =
|
||||||
|
rootPath ||
|
||||||
|
(currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd());
|
||||||
return GitOperations.commit(dir, message);
|
return GitOperations.commit(dir, message);
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.handle('git-log', async () => {
|
ipcMain.handle('git-log', async (_event, rootPath) => {
|
||||||
const dir = currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd();
|
const dir =
|
||||||
|
rootPath ||
|
||||||
|
(currentFileRef.current ? require('path').dirname(currentFileRef.current) : process.cwd());
|
||||||
return GitOperations.log(dir);
|
return GitOperations.log(dir);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('git-diff', async (_event, filePath) => {
|
||||||
|
const dir = filePath
|
||||||
|
? require('path').dirname(filePath)
|
||||||
|
: currentFileRef.current
|
||||||
|
? require('path').dirname(currentFileRef.current)
|
||||||
|
: process.cwd();
|
||||||
|
return GitOperations.diff(dir, filePath);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { register };
|
module.exports = { register };
|
||||||
+19
-2
@@ -1,12 +1,19 @@
|
|||||||
// src/main/files/index.js
|
// src/main/files/index.js
|
||||||
// File ops facade — registers all file-related IPC handlers
|
// File ops facade — registers all file-related IPC handlers
|
||||||
const { ipcMain, dialog, shell } = require('electron');
|
const { ipcMain, dialog } = require('electron');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const { register: registerGit } = require('./git');
|
const { register: registerGit } = require('./git');
|
||||||
const { register: registerBinary } = require('./binary');
|
const { register: registerBinary } = require('./binary');
|
||||||
|
const { searchInFiles } = require('./search-in-files');
|
||||||
|
|
||||||
function register({ validatePath, resolveWritablePath, isPathAccessible, currentFileRef, mainWindow }) {
|
function register({
|
||||||
|
validatePath,
|
||||||
|
resolveWritablePath,
|
||||||
|
isPathAccessible,
|
||||||
|
currentFileRef,
|
||||||
|
mainWindow,
|
||||||
|
}) {
|
||||||
// pick-folder
|
// pick-folder
|
||||||
ipcMain.handle('pick-folder', async () => {
|
ipcMain.handle('pick-folder', async () => {
|
||||||
const result = await dialog.showOpenDialog(mainWindow, {
|
const result = await dialog.showOpenDialog(mainWindow, {
|
||||||
@@ -125,6 +132,16 @@ function register({ validatePath, resolveWritablePath, isPathAccessible, current
|
|||||||
return { source: sourceValidation.resolved, destination: destinationValidation.resolved };
|
return { source: sourceValidation.resolved, destination: destinationValidation.resolved };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// search-in-files
|
||||||
|
ipcMain.handle('search-in-files', async (_event, payload) => {
|
||||||
|
const validation = validatePath(payload?.rootPath);
|
||||||
|
if (!validation.valid || !isPathAccessible(validation.resolved)) {
|
||||||
|
console.error('[SECURITY] Invalid search rootPath:', validation.error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
return searchInFiles({ ...(payload || {}), rootPath: validation.resolved });
|
||||||
|
});
|
||||||
|
|
||||||
// open-file-path
|
// open-file-path
|
||||||
ipcMain.on('open-file-path', (event, filePath) => {
|
ipcMain.on('open-file-path', (event, filePath) => {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List a directory's entries (excluding dotfiles), sorted directories-first
|
||||||
|
* then alphabetically. Returns a flat array of FileEntry-shaped objects,
|
||||||
|
* matching the renderer type declaration in `src/renderer/lib/ipc.ts`.
|
||||||
|
*
|
||||||
|
* Skips entries that cannot be stat'd (permission errors, broken symlinks)
|
||||||
|
* instead of throwing — keeps the UI responsive on partially-readable dirs.
|
||||||
|
*/
|
||||||
|
function listDirectoryEntries(dirPath) {
|
||||||
|
const dirents = fs.readdirSync(dirPath, { withFileTypes: true });
|
||||||
|
const entries = [];
|
||||||
|
for (const d of dirents) {
|
||||||
|
if (d.name.startsWith('.')) continue;
|
||||||
|
const full = path.join(dirPath, d.name);
|
||||||
|
let size = 0;
|
||||||
|
let modified = 0;
|
||||||
|
try {
|
||||||
|
const s = fs.statSync(full);
|
||||||
|
size = d.isDirectory() ? 0 : s.size;
|
||||||
|
modified = s.mtimeMs;
|
||||||
|
} catch (_err) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
entries.push({
|
||||||
|
name: d.name,
|
||||||
|
isDirectory: d.isDirectory(),
|
||||||
|
size,
|
||||||
|
modifiedAt: modified,
|
||||||
|
path: full,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
entries.sort((a, b) => {
|
||||||
|
if (a.isDirectory && !b.isDirectory) return -1;
|
||||||
|
if (!a.isDirectory && b.isDirectory) return 1;
|
||||||
|
return a.name.localeCompare(b.name);
|
||||||
|
});
|
||||||
|
return entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { listDirectoryEntries };
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const MAX_RESULTS = 1000;
|
||||||
|
const MAX_FILE_BYTES = 2 * 1024 * 1024;
|
||||||
|
const MAX_FILES = 10000;
|
||||||
|
const MAX_QUERY_LENGTH = 1024;
|
||||||
|
const MAX_REGEX_LENGTH = 200;
|
||||||
|
const SKIP_DIRS = new Set(['node_modules', '.git', 'dist', '.next', '.cache']);
|
||||||
|
|
||||||
|
// Reject regexes with classic ReDoS shapes. This is a defense-in-depth
|
||||||
|
// denylist, not a proof of safety — the hard caps on length, files, and
|
||||||
|
// results are the primary defense.
|
||||||
|
const UNSAFE_REGEX = new RegExp(
|
||||||
|
// nested quantifiers: (a+)+, [a-z]*+
|
||||||
|
'\\([^)]*[+*][^)]*\\)[+*?]' +
|
||||||
|
'|' +
|
||||||
|
// class with quantifier: [a-z]+
|
||||||
|
'\\[[^\\]]*\\][+*]' +
|
||||||
|
'|' +
|
||||||
|
// dot-quantifier followed by dot-quantifier
|
||||||
|
'\\.[+*]\\s*\\.[+*]' +
|
||||||
|
'|' +
|
||||||
|
// lookahead / lookbehind
|
||||||
|
'\\(\\?[=!]' +
|
||||||
|
'|' +
|
||||||
|
// backrefs
|
||||||
|
'\\\\[1-9]' +
|
||||||
|
'|' +
|
||||||
|
// alternation with quantifier
|
||||||
|
'\\([^)]*\\|[^)]*\\)[+*]'
|
||||||
|
);
|
||||||
|
|
||||||
|
function listFiles(rootPath) {
|
||||||
|
const out = [];
|
||||||
|
const stack = [rootPath];
|
||||||
|
const visited = new Set();
|
||||||
|
while (stack.length && out.length < MAX_FILES) {
|
||||||
|
const dir = stack.pop();
|
||||||
|
// Resolve symlinks and verify we haven't escaped the root.
|
||||||
|
let real;
|
||||||
|
try {
|
||||||
|
real = fs.realpathSync(dir);
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (visited.has(real)) continue;
|
||||||
|
visited.add(real);
|
||||||
|
const rootReal = fs.realpathSync(rootPath);
|
||||||
|
if (!real.startsWith(rootReal + path.sep) && real !== rootReal) continue;
|
||||||
|
|
||||||
|
let entries;
|
||||||
|
try {
|
||||||
|
entries = fs.readdirSync(real, { withFileTypes: true });
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
for (const e of entries) {
|
||||||
|
if (e.name.startsWith('.')) continue;
|
||||||
|
const full = path.join(real, e.name);
|
||||||
|
// Follow symlinks but verify containment again.
|
||||||
|
try {
|
||||||
|
const s = fs.lstatSync(full);
|
||||||
|
if (s.isSymbolicLink()) {
|
||||||
|
const linkTarget = fs.realpathSync(full);
|
||||||
|
if (!linkTarget.startsWith(rootReal + path.sep) && linkTarget !== rootReal) continue;
|
||||||
|
}
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const s = fs.statSync(full);
|
||||||
|
if (s.isDirectory()) {
|
||||||
|
if (SKIP_DIRS.has(e.name)) continue;
|
||||||
|
stack.push(full);
|
||||||
|
} else if (s.isFile()) {
|
||||||
|
out.push(full);
|
||||||
|
if (out.length >= MAX_FILES) break;
|
||||||
|
}
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeMatcher(query, isRegex, caseSensitive) {
|
||||||
|
if (isRegex) {
|
||||||
|
if (query.length > MAX_REGEX_LENGTH) return null;
|
||||||
|
if (UNSAFE_REGEX.test(query)) return null;
|
||||||
|
try {
|
||||||
|
const re = new RegExp(query, caseSensitive ? '' : 'i');
|
||||||
|
return (line) => re.test(line);
|
||||||
|
} catch (_err) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const needle = caseSensitive ? query : query.toLowerCase();
|
||||||
|
return (line) => (caseSensitive ? line : line.toLowerCase()).includes(needle);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recursively search `rootPath` for files containing `query`.
|
||||||
|
* Returns up to MAX_RESULTS matches of the form
|
||||||
|
* { filePath, line, content }.
|
||||||
|
*
|
||||||
|
* Hardened against:
|
||||||
|
* - Path traversal via symlinks (verified after realpathSync)
|
||||||
|
* - ReDoS via nested-quantifier regex (rejected at match time)
|
||||||
|
* - Resource exhaustion via MAX_FILES + MAX_FILE_BYTES + MAX_RESULTS
|
||||||
|
* - Empty / oversized queries via MAX_QUERY_LENGTH
|
||||||
|
*/
|
||||||
|
function searchInFiles({ rootPath, query, isRegex = false, caseSensitive = false }) {
|
||||||
|
if (!rootPath || !query) return [];
|
||||||
|
if (typeof query !== 'string' || query.length > MAX_QUERY_LENGTH) return [];
|
||||||
|
const matcher = makeMatcher(query, isRegex, caseSensitive);
|
||||||
|
if (!matcher) return [];
|
||||||
|
|
||||||
|
const results = [];
|
||||||
|
for (const filePath of listFiles(rootPath)) {
|
||||||
|
if (results.length >= MAX_RESULTS) break;
|
||||||
|
let stat;
|
||||||
|
try {
|
||||||
|
stat = fs.statSync(filePath);
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!stat.isFile() || stat.size > MAX_FILE_BYTES) continue;
|
||||||
|
|
||||||
|
let content;
|
||||||
|
try {
|
||||||
|
content = fs.readFileSync(filePath, 'utf-8');
|
||||||
|
} catch (_) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const lines = content.split(/\r?\n/);
|
||||||
|
for (let i = 0; i < lines.length; i++) {
|
||||||
|
if (matcher(lines[i])) {
|
||||||
|
results.push({ filePath, line: i + 1, content: lines[i] });
|
||||||
|
if (results.length >= MAX_RESULTS) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { searchInFiles };
|
||||||
+559
-324
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,24 @@
|
|||||||
|
const { ipcMain, shell } = require('electron');
|
||||||
|
|
||||||
|
function register({ crash, getMainWindow: _getMainWindow }) {
|
||||||
|
ipcMain.handle('crash:read', () => {
|
||||||
|
return crash.list();
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.on('crash:open-dir', () => {
|
||||||
|
shell.openPath(crash.path());
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('crash:delete', (_event, filename) => {
|
||||||
|
if (
|
||||||
|
typeof filename === 'string' &&
|
||||||
|
/^\d+(-\d+)?-(uncaughtException|unhandledRejection)\.json$/.test(filename)
|
||||||
|
) {
|
||||||
|
crash.delete(filename);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { register };
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const { ipcMain } = require('electron');
|
||||||
|
const store = require('../store');
|
||||||
|
const { safeMonospaceSettings, DEFAULT_SETTINGS } = require('../settings/monospaceSettings');
|
||||||
|
|
||||||
|
function readCurrent() {
|
||||||
|
return {
|
||||||
|
monospaceFont: store.get('monospaceFont', DEFAULT_SETTINGS.monospaceFont),
|
||||||
|
monospaceLigatures: store.get('monospaceLigatures', DEFAULT_SETTINGS.monospaceLigatures),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function register() {
|
||||||
|
ipcMain.handle('get-monospace-settings', () => readCurrent());
|
||||||
|
|
||||||
|
ipcMain.handle('set-monospace-settings', (_event, partial) => {
|
||||||
|
const safe = safeMonospaceSettings(partial || {});
|
||||||
|
if (Object.prototype.hasOwnProperty.call(partial || {}, 'monospaceFont')) {
|
||||||
|
store.set('monospaceFont', safe.monospaceFont);
|
||||||
|
}
|
||||||
|
if (Object.prototype.hasOwnProperty.call(partial || {}, 'monospaceLigatures')) {
|
||||||
|
store.set('monospaceLigatures', safe.monospaceLigatures);
|
||||||
|
}
|
||||||
|
return readCurrent();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { register, readCurrent };
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
const { ipcMain } = require('electron');
|
||||||
|
const { feedConfigFor } = require('../updater/feed-config');
|
||||||
|
|
||||||
|
function register({ updater, getMainWindow, getChannel }) {
|
||||||
|
ipcMain.handle('updater:check', async () => {
|
||||||
|
const channel = getChannel();
|
||||||
|
updater.autoUpdater.setFeedURL(feedConfigFor(channel));
|
||||||
|
await updater.check();
|
||||||
|
return { state: updater.state };
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('updater:install', () => {
|
||||||
|
updater.install();
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('updater:get-state', () => {
|
||||||
|
return { state: updater.state };
|
||||||
|
});
|
||||||
|
|
||||||
|
// Forward status events to renderer
|
||||||
|
updater.on('status', (payload) => {
|
||||||
|
const win = getMainWindow();
|
||||||
|
if (win && !win.isDestroyed()) {
|
||||||
|
win.webContents.send('updater:status', payload);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { register };
|
||||||
@@ -10,7 +10,7 @@ const {
|
|||||||
convertItems,
|
convertItems,
|
||||||
pdfEditorItems,
|
pdfEditorItems,
|
||||||
toolsItems,
|
toolsItems,
|
||||||
helpItems
|
helpItems,
|
||||||
} = require('./items');
|
} = require('./items');
|
||||||
|
|
||||||
function buildMenu(mainWindow) {
|
function buildMenu(mainWindow) {
|
||||||
@@ -22,7 +22,7 @@ function buildMenu(mainWindow) {
|
|||||||
{ label: '&Convert', submenu: convertItems(mainWindow) },
|
{ label: '&Convert', submenu: convertItems(mainWindow) },
|
||||||
{ label: 'PDF Editor', submenu: pdfEditorItems(mainWindow) },
|
{ label: 'PDF Editor', submenu: pdfEditorItems(mainWindow) },
|
||||||
{ label: '&Tools', submenu: toolsItems(mainWindow) },
|
{ label: '&Tools', submenu: toolsItems(mainWindow) },
|
||||||
{ label: '&Help', submenu: helpItems(mainWindow) }
|
{ label: '&Help', submenu: helpItems(mainWindow) },
|
||||||
];
|
];
|
||||||
return Menu.buildFromTemplate(template);
|
return Menu.buildFromTemplate(template);
|
||||||
}
|
}
|
||||||
|
|||||||
+411
-134
@@ -1,7 +1,7 @@
|
|||||||
// src/main/menu/items.js
|
// src/main/menu/items.js
|
||||||
// Individual menu items — pure functions that take (mainWindow) and return menu item arrays
|
// Individual menu items — pure functions that take (mainWindow) and return menu item arrays
|
||||||
|
|
||||||
const { app, dialog, shell } = require('electron');
|
const { app, shell } = require('electron');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
|
||||||
@@ -11,14 +11,14 @@ function buildRecentFilesMenu(mainWindow) {
|
|||||||
const recentFilesPath = path.join(app.getPath('userData'), 'recent-files.json');
|
const recentFilesPath = path.join(app.getPath('userData'), 'recent-files.json');
|
||||||
if (!fs.existsSync(recentFilesPath)) return [{ label: 'No Recent Files', enabled: false }];
|
if (!fs.existsSync(recentFilesPath)) return [{ label: 'No Recent Files', enabled: false }];
|
||||||
const recentFiles = JSON.parse(fs.readFileSync(recentFilesPath, 'utf-8'));
|
const recentFiles = JSON.parse(fs.readFileSync(recentFilesPath, 'utf-8'));
|
||||||
const existing = recentFiles.filter(file => fs.existsSync(file));
|
const existing = recentFiles.filter((file) => fs.existsSync(file));
|
||||||
if (existing.length === 0) return [{ label: 'No Recent Files', enabled: false }];
|
if (existing.length === 0) return [{ label: 'No Recent Files', enabled: false }];
|
||||||
const items = existing.map(file => ({
|
const items = existing.map((file) => ({
|
||||||
label: path.basename(file),
|
label: path.basename(file),
|
||||||
click: () => {
|
click: () => {
|
||||||
const { openFileFromPath } = require('../index');
|
const { openFileFromPath } = require('../index');
|
||||||
openFileFromPath(file);
|
openFileFromPath(file);
|
||||||
}
|
},
|
||||||
}));
|
}));
|
||||||
items.push(
|
items.push(
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
@@ -28,11 +28,11 @@ function buildRecentFilesMenu(mainWindow) {
|
|||||||
if (mainWindow) {
|
if (mainWindow) {
|
||||||
mainWindow.webContents.send('clear-recent-files');
|
mainWindow.webContents.send('clear-recent-files');
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
return items;
|
return items;
|
||||||
} catch (e) {
|
} catch (_e) {
|
||||||
return [{ label: 'No Recent Files', enabled: false }];
|
return [{ label: 'No Recent Files', enabled: false }];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -42,7 +42,7 @@ function fileItems(mainWindow) {
|
|||||||
{
|
{
|
||||||
label: 'New',
|
label: 'New',
|
||||||
accelerator: 'CmdOrCtrl+N',
|
accelerator: 'CmdOrCtrl+N',
|
||||||
click: () => mainWindow.webContents.send('file-new')
|
click: () => mainWindow.webContents.send('file-new'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Open',
|
label: 'Open',
|
||||||
@@ -50,7 +50,7 @@ function fileItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { openFile } = require('../index');
|
const { openFile } = require('../index');
|
||||||
openFile();
|
openFile();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Open PDF',
|
label: 'Open PDF',
|
||||||
@@ -58,12 +58,12 @@ function fileItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { openPdfFile } = require('../index');
|
const { openPdfFile } = require('../index');
|
||||||
openPdfFile();
|
openPdfFile();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Save',
|
label: 'Save',
|
||||||
accelerator: 'CmdOrCtrl+S',
|
accelerator: 'CmdOrCtrl+S',
|
||||||
click: () => mainWindow.webContents.send('file-save')
|
click: () => mainWindow.webContents.send('file-save'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Save As',
|
label: 'Save As',
|
||||||
@@ -71,30 +71,60 @@ function fileItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { saveAsFile } = require('../index');
|
const { saveAsFile } = require('../index');
|
||||||
saveAsFile();
|
saveAsFile();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
// NOTE: Print Preview submenu removed — handled by React <PrintPreview> overlay
|
// NOTE: Print Preview submenu removed — handled by React <PrintPreview> overlay
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Recent Files',
|
label: 'Recent Files',
|
||||||
submenu: buildRecentFilesMenu(mainWindow)
|
submenu: buildRecentFilesMenu(mainWindow),
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'New from Template',
|
label: 'New from Template',
|
||||||
submenu: [
|
submenu: [
|
||||||
{ label: 'Blog Post', click: () => mainWindow.webContents.send('load-template-menu', 'blog-post.md') },
|
{
|
||||||
{ label: 'Meeting Notes', click: () => mainWindow.webContents.send('load-template-menu', 'meeting-notes.md') },
|
label: 'Blog Post',
|
||||||
{ label: 'Technical Spec', click: () => mainWindow.webContents.send('load-template-menu', 'technical-spec.md') },
|
click: () => mainWindow.webContents.send('load-template-menu', 'blog-post.md'),
|
||||||
{ label: 'Changelog', click: () => mainWindow.webContents.send('load-template-menu', 'changelog.md') },
|
},
|
||||||
{ label: 'README', click: () => mainWindow.webContents.send('load-template-menu', 'readme.md') },
|
{
|
||||||
{ label: 'Project Plan', click: () => mainWindow.webContents.send('load-template-menu', 'project-plan.md') },
|
label: 'Meeting Notes',
|
||||||
{ label: 'API Documentation', click: () => mainWindow.webContents.send('load-template-menu', 'api-docs.md') },
|
click: () => mainWindow.webContents.send('load-template-menu', 'meeting-notes.md'),
|
||||||
{ label: 'Tutorial', click: () => mainWindow.webContents.send('load-template-menu', 'tutorial.md') },
|
},
|
||||||
{ label: 'Release Notes', click: () => mainWindow.webContents.send('load-template-menu', 'release-notes.md') },
|
{
|
||||||
{ label: 'Comparison', click: () => mainWindow.webContents.send('load-template-menu', 'comparison.md') }
|
label: 'Technical Spec',
|
||||||
]
|
click: () => mainWindow.webContents.send('load-template-menu', 'technical-spec.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Changelog',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'changelog.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'README',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'readme.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Project Plan',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'project-plan.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'API Documentation',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'api-docs.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tutorial',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'tutorial.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Release Notes',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'release-notes.md'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Comparison',
|
||||||
|
click: () => mainWindow.webContents.send('load-template-menu', 'comparison.md'),
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -103,58 +133,137 @@ function fileItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { importDocument } = require('../index');
|
const { importDocument } = require('../index');
|
||||||
importDocument();
|
importDocument();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Export',
|
label: 'Export',
|
||||||
submenu: [
|
submenu: [
|
||||||
{
|
{
|
||||||
label: 'HTML', click: () => {
|
label: 'HTML',
|
||||||
|
click: () => {
|
||||||
const { exportFile } = require('../index');
|
const { exportFile } = require('../index');
|
||||||
exportFile('html');
|
exportFile('html');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'PDF', click: () => {
|
label: 'PDF',
|
||||||
|
click: () => {
|
||||||
const { exportFile } = require('../index');
|
const { exportFile } = require('../index');
|
||||||
exportFile('pdf');
|
exportFile('pdf');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'PDF (Enhanced)', click: () => {
|
label: 'PDF (Enhanced)',
|
||||||
|
click: () => {
|
||||||
const { exportPDFViaWordTemplate } = require('../index');
|
const { exportPDFViaWordTemplate } = require('../index');
|
||||||
exportPDFViaWordTemplate();
|
exportPDFViaWordTemplate();
|
||||||
}, accelerator: 'Ctrl+Shift+P'
|
},
|
||||||
|
accelerator: 'Ctrl+Shift+P',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'DOCX', click: () => {
|
label: 'DOCX',
|
||||||
|
click: () => {
|
||||||
const { exportFile } = require('../index');
|
const { exportFile } = require('../index');
|
||||||
exportFile('docx');
|
exportFile('docx');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'DOCX (Enhanced)', click: () => {
|
label: 'DOCX (Enhanced)',
|
||||||
|
click: () => {
|
||||||
const { exportWordWithTemplate } = require('../index');
|
const { exportWordWithTemplate } = require('../index');
|
||||||
exportWordWithTemplate();
|
exportWordWithTemplate();
|
||||||
}, accelerator: 'Ctrl+Shift+W'
|
|
||||||
},
|
},
|
||||||
{ label: 'LaTeX', click: () => { const { exportFile } = require('../index'); exportFile('latex'); } },
|
accelerator: 'Ctrl+Shift+W',
|
||||||
{ label: 'RTF', click: () => { const { exportFile } = require('../index'); exportFile('rtf'); } },
|
},
|
||||||
{ label: 'ODT', click: () => { const { exportFile } = require('../index'); exportFile('odt'); } },
|
{
|
||||||
{ label: 'EPUB', click: () => { const { exportFile } = require('../index'); exportFile('epub'); } },
|
label: 'LaTeX',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('latex');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'RTF',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('rtf');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'ODT',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('odt');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'EPUB',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('epub');
|
||||||
|
},
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'PowerPoint (PPTX)', click: () => { const { exportFile } = require('../index'); exportFile('pptx'); } },
|
{
|
||||||
{ label: 'OpenDocument Presentation (ODP)', click: () => { const { exportFile } = require('../index'); exportFile('odp'); } },
|
label: 'PowerPoint (PPTX)',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('pptx');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'OpenDocument Presentation (ODP)',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('odp');
|
||||||
|
},
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'CSV (Tables)', click: () => { const { exportSpreadsheet } = require('../index'); exportSpreadsheet('csv'); } },
|
{
|
||||||
|
label: 'CSV (Tables)',
|
||||||
|
click: () => {
|
||||||
|
const { exportSpreadsheet } = require('../index');
|
||||||
|
exportSpreadsheet('csv');
|
||||||
|
},
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'JSON (.json)', click: () => { const { exportFile } = require('../index'); exportFile('json'); } },
|
{
|
||||||
{ label: 'YAML (.yaml)', click: () => { const { exportFile } = require('../index'); exportFile('yaml'); } },
|
label: 'JSON (.json)',
|
||||||
{ label: 'XML (.xml)', click: () => { const { exportFile } = require('../index'); exportFile('xml'); } },
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('json');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'YAML (.yaml)',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('yaml');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'XML (.xml)',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('xml');
|
||||||
|
},
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'Confluence Wiki (.txt)', click: () => { const { exportFile } = require('../index'); exportFile('confluence'); } },
|
{
|
||||||
{ label: 'MOBI E-book (.mobi)', click: () => { const { exportFile } = require('../index'); exportFile('mobi'); } }
|
label: 'Confluence Wiki (.txt)',
|
||||||
]
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('confluence');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'MOBI E-book (.mobi)',
|
||||||
|
click: () => {
|
||||||
|
const { exportFile } = require('../index');
|
||||||
|
exportFile('mobi');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -162,14 +271,14 @@ function fileItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { selectWordTemplate } = require('../index');
|
const { selectWordTemplate } = require('../index');
|
||||||
selectWordTemplate();
|
selectWordTemplate();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Template Settings...',
|
label: 'Template Settings...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showTemplateSettings } = require('../index');
|
const { showTemplateSettings } = require('../index');
|
||||||
showTemplateSettings();
|
showTemplateSettings();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Header & Footer Settings...',
|
label: 'Header & Footer Settings...',
|
||||||
@@ -177,14 +286,14 @@ function fileItems(mainWindow) {
|
|||||||
if (mainWindow) {
|
if (mainWindow) {
|
||||||
mainWindow.webContents.send('open-header-footer-dialog');
|
mainWindow.webContents.send('open-header-footer-dialog');
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Quit',
|
label: 'Quit',
|
||||||
accelerator: process.platform === 'darwin' ? 'Cmd+Q' : 'Ctrl+Q',
|
accelerator: process.platform === 'darwin' ? 'Cmd+Q' : 'Ctrl+Q',
|
||||||
click: () => app.quit()
|
click: () => app.quit(),
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -193,12 +302,12 @@ function editItems(mainWindow) {
|
|||||||
{
|
{
|
||||||
label: 'Undo',
|
label: 'Undo',
|
||||||
accelerator: 'CmdOrCtrl+Z',
|
accelerator: 'CmdOrCtrl+Z',
|
||||||
click: () => mainWindow.webContents.send('undo')
|
click: () => mainWindow.webContents.send('undo'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Redo',
|
label: 'Redo',
|
||||||
accelerator: 'CmdOrCtrl+Shift+Z',
|
accelerator: 'CmdOrCtrl+Shift+Z',
|
||||||
click: () => mainWindow.webContents.send('redo')
|
click: () => mainWindow.webContents.send('redo'),
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'Cut', accelerator: 'CmdOrCtrl+X', role: 'cut' },
|
{ label: 'Cut', accelerator: 'CmdOrCtrl+X', role: 'cut' },
|
||||||
@@ -209,8 +318,8 @@ function editItems(mainWindow) {
|
|||||||
{
|
{
|
||||||
label: 'Find & Replace',
|
label: 'Find & Replace',
|
||||||
accelerator: 'CmdOrCtrl+F',
|
accelerator: 'CmdOrCtrl+F',
|
||||||
click: () => mainWindow.webContents.send('toggle-find')
|
click: () => mainWindow.webContents.send('toggle-find'),
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -219,54 +328,222 @@ function viewItems(mainWindow) {
|
|||||||
{
|
{
|
||||||
label: 'Toggle Preview',
|
label: 'Toggle Preview',
|
||||||
accelerator: 'CmdOrCtrl+Shift+V',
|
accelerator: 'CmdOrCtrl+Shift+V',
|
||||||
click: () => mainWindow.webContents.send('toggle-preview')
|
click: () => mainWindow.webContents.send('toggle-preview'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Writing Analytics',
|
||||||
|
accelerator: 'CmdOrCtrl+Shift+A',
|
||||||
|
click: () => mainWindow.webContents.send('show-analytics-dialog'),
|
||||||
},
|
},
|
||||||
// NOTE: Command Palette removed — handled by useCommandStore
|
// NOTE: Command Palette removed — handled by useCommandStore
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Sidebar',
|
label: 'Sidebar',
|
||||||
submenu: [
|
submenu: [
|
||||||
{ label: 'File Explorer', click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'explorer') },
|
{
|
||||||
|
label: 'Files',
|
||||||
|
click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'explorer'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Outline',
|
||||||
|
click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'outline'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Snippets',
|
||||||
|
click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'snippets'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Templates',
|
||||||
|
click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'templates'),
|
||||||
|
},
|
||||||
{ label: 'Git', click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'git') },
|
{ label: 'Git', click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'git') },
|
||||||
{ label: 'Snippets', click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'snippets') },
|
],
|
||||||
{ label: 'Templates', click: () => mainWindow.webContents.send('toggle-sidebar-panel', 'templates') }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Bottom Panel (REPL)',
|
label: 'Bottom Panel (REPL)',
|
||||||
click: () => mainWindow.webContents.send('toggle-bottom-panel')
|
click: () => mainWindow.webContents.send('toggle-bottom-panel'),
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Theme',
|
label: 'Theme',
|
||||||
submenu: [
|
submenu: [
|
||||||
{ label: 'Atom One Light (Default)', click: () => { const { setTheme } = require('../index'); setTheme('atomonelight'); } },
|
{
|
||||||
{ label: 'GitHub Light', click: () => { const { setTheme } = require('../index'); setTheme('github'); } },
|
label: 'Atom One Light (Default)',
|
||||||
{ label: 'Light', click: () => { const { setTheme } = require('../index'); setTheme('light'); } },
|
click: () => {
|
||||||
{ label: 'Solarized Light', click: () => { const { setTheme } = require('../index'); setTheme('solarized'); } },
|
const { setTheme } = require('../index');
|
||||||
{ label: 'Gruvbox Light', click: () => { const { setTheme } = require('../index'); setTheme('gruvbox-light'); } },
|
setTheme('atomonelight');
|
||||||
{ label: 'Ayu Light', click: () => { const { setTheme } = require('../index'); setTheme('ayu-light'); } },
|
},
|
||||||
{ label: 'Sepia', click: () => { const { setTheme } = require('../index'); setTheme('sepia'); } },
|
},
|
||||||
{ label: 'Paper', click: () => { const { setTheme } = require('../index'); setTheme('paper'); } },
|
{
|
||||||
{ label: 'Rose Pine Dawn', click: () => { const { setTheme } = require('../index'); setTheme('rosepine-dawn'); } },
|
label: 'GitHub Light',
|
||||||
{ label: 'Concrete Light', click: () => { const { setTheme } = require('../index'); setTheme('concrete-light'); } },
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('github');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Light',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('light');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Solarized Light',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('solarized');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Gruvbox Light',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('gruvbox-light');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Ayu Light',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('ayu-light');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Sepia',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('sepia');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Paper',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('paper');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Rose Pine Dawn',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('rosepine-dawn');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Concrete Light',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('concrete-light');
|
||||||
|
},
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'Dark', click: () => { const { setTheme } = require('../index'); setTheme('dark'); } },
|
{
|
||||||
{ label: 'One Dark', click: () => { const { setTheme } = require('../index'); setTheme('onedark'); } },
|
label: 'Dark',
|
||||||
{ label: 'Dracula', click: () => { const { setTheme } = require('../index'); setTheme('dracula'); } },
|
click: () => {
|
||||||
{ label: 'Nord', click: () => { const { setTheme } = require('../index'); setTheme('nord'); } },
|
const { setTheme } = require('../index');
|
||||||
{ label: 'Monokai', click: () => { const { setTheme } = require('../index'); setTheme('monokai'); } },
|
setTheme('dark');
|
||||||
{ label: 'Material', click: () => { const { setTheme } = require('../index'); setTheme('material'); } },
|
},
|
||||||
{ label: 'Gruvbox Dark', click: () => { const { setTheme } = require('../index'); setTheme('gruvbox-dark'); } },
|
},
|
||||||
{ label: 'Tokyo Night', click: () => { const { setTheme } = require('../index'); setTheme('tokyonight'); } },
|
{
|
||||||
{ label: 'Palenight', click: () => { const { setTheme } = require('../index'); setTheme('palenight'); } },
|
label: 'One Dark',
|
||||||
{ label: 'Ayu Dark', click: () => { const { setTheme } = require('../index'); setTheme('ayu-dark'); } },
|
click: () => {
|
||||||
{ label: 'Ayu Mirage', click: () => { const { setTheme } = require('../index'); setTheme('ayu-mirage'); } },
|
const { setTheme } = require('../index');
|
||||||
{ label: 'Oceanic Next', click: () => { const { setTheme } = require('../index'); setTheme('oceanic-next'); } },
|
setTheme('onedark');
|
||||||
{ label: 'Cobalt2', click: () => { const { setTheme } = require('../index'); setTheme('cobalt2'); } },
|
},
|
||||||
{ label: 'Concrete Dark', click: () => { const { setTheme } = require('../index'); setTheme('concrete-dark'); } },
|
},
|
||||||
{ label: 'Concrete Warm', click: () => { const { setTheme } = require('../index'); setTheme('concrete-warm'); } }
|
{
|
||||||
]
|
label: 'Dracula',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('dracula');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Nord',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('nord');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Monokai',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('monokai');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Material',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('material');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Gruvbox Dark',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('gruvbox-dark');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tokyo Night',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('tokyonight');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Palenight',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('palenight');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Ayu Dark',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('ayu-dark');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Ayu Mirage',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('ayu-mirage');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Oceanic Next',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('oceanic-next');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Cobalt2',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('cobalt2');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Concrete Dark',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('concrete-dark');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Concrete Warm',
|
||||||
|
click: () => {
|
||||||
|
const { setTheme } = require('../index');
|
||||||
|
setTheme('concrete-warm');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -275,19 +552,19 @@ function viewItems(mainWindow) {
|
|||||||
{
|
{
|
||||||
label: 'Increase Font Size',
|
label: 'Increase Font Size',
|
||||||
accelerator: 'CmdOrCtrl+Shift+Plus',
|
accelerator: 'CmdOrCtrl+Shift+Plus',
|
||||||
click: () => mainWindow.webContents.send('adjust-font-size', 'increase')
|
click: () => mainWindow.webContents.send('adjust-font-size', 'increase'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Decrease Font Size',
|
label: 'Decrease Font Size',
|
||||||
accelerator: 'CmdOrCtrl+Shift+-',
|
accelerator: 'CmdOrCtrl+Shift+-',
|
||||||
click: () => mainWindow.webContents.send('adjust-font-size', 'decrease')
|
click: () => mainWindow.webContents.send('adjust-font-size', 'decrease'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Reset Font Size',
|
label: 'Reset Font Size',
|
||||||
accelerator: 'CmdOrCtrl+Shift+0',
|
accelerator: 'CmdOrCtrl+Shift+0',
|
||||||
click: () => mainWindow.webContents.send('adjust-font-size', 'reset')
|
click: () => mainWindow.webContents.send('adjust-font-size', 'reset'),
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -296,7 +573,7 @@ function viewItems(mainWindow) {
|
|||||||
checked: true,
|
checked: true,
|
||||||
click: (menuItem) => {
|
click: (menuItem) => {
|
||||||
mainWindow.webContents.session.setSpellCheckerEnabled(menuItem.checked);
|
mainWindow.webContents.session.setSpellCheckerEnabled(menuItem.checked);
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -304,13 +581,13 @@ function viewItems(mainWindow) {
|
|||||||
submenu: [
|
submenu: [
|
||||||
{
|
{
|
||||||
label: 'Load Custom Preview CSS...',
|
label: 'Load Custom Preview CSS...',
|
||||||
click: () => mainWindow.webContents.send('load-custom-css')
|
click: () => mainWindow.webContents.send('load-custom-css'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Clear Custom Preview CSS',
|
label: 'Clear Custom Preview CSS',
|
||||||
click: () => mainWindow.webContents.send('clear-custom-css')
|
click: () => mainWindow.webContents.send('clear-custom-css'),
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'Reload', accelerator: 'CmdOrCtrl+R', role: 'reload' },
|
{ label: 'Reload', accelerator: 'CmdOrCtrl+R', role: 'reload' },
|
||||||
@@ -318,7 +595,7 @@ function viewItems(mainWindow) {
|
|||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: 'Zoom In', accelerator: 'CmdOrCtrl+Plus', role: 'zoomIn' },
|
{ label: 'Zoom In', accelerator: 'CmdOrCtrl+Plus', role: 'zoomIn' },
|
||||||
{ label: 'Zoom Out', accelerator: 'CmdOrCtrl+-', role: 'zoomOut' },
|
{ label: 'Zoom Out', accelerator: 'CmdOrCtrl+-', role: 'zoomOut' },
|
||||||
{ label: 'Reset Zoom', accelerator: 'CmdOrCtrl+0', role: 'resetZoom' }
|
{ label: 'Reset Zoom', accelerator: 'CmdOrCtrl+0', role: 'resetZoom' },
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -329,29 +606,29 @@ function batchItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showBatchConversionDialog } = require('../index');
|
const { showBatchConversionDialog } = require('../index');
|
||||||
showBatchConversionDialog();
|
showBatchConversionDialog();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Batch Image Conversion...',
|
label: 'Batch Image Conversion...',
|
||||||
click: () => mainWindow.webContents.send('show-batch-converter', 'image')
|
click: () => mainWindow.webContents.send('show-batch-converter', 'image'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Batch Audio Conversion...',
|
label: 'Batch Audio Conversion...',
|
||||||
click: () => mainWindow.webContents.send('show-batch-converter', 'audio')
|
click: () => mainWindow.webContents.send('show-batch-converter', 'audio'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Batch Video Conversion...',
|
label: 'Batch Video Conversion...',
|
||||||
click: () => mainWindow.webContents.send('show-batch-converter', 'video')
|
click: () => mainWindow.webContents.send('show-batch-converter', 'video'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Batch PDF Conversion...',
|
label: 'Batch PDF Conversion...',
|
||||||
click: () => mainWindow.webContents.send('show-batch-converter', 'pdf')
|
click: () => mainWindow.webContents.send('show-batch-converter', 'pdf'),
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
function convertItems(mainWindow) {
|
function convertItems(_mainWindow) {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: 'Universal File Converter...',
|
label: 'Universal File Converter...',
|
||||||
@@ -359,12 +636,12 @@ function convertItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showUniversalConverterDialog } = require('../index');
|
const { showUniversalConverterDialog } = require('../index');
|
||||||
showUniversalConverterDialog();
|
showUniversalConverterDialog();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
function pdfEditorItems(mainWindow) {
|
function pdfEditorItems(_mainWindow) {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: 'Open PDF File...',
|
label: 'Open PDF File...',
|
||||||
@@ -372,7 +649,7 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { openPdfFile } = require('../index');
|
const { openPdfFile } = require('../index');
|
||||||
openPdfFile();
|
openPdfFile();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -380,21 +657,21 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('merge');
|
showPDFEditorDialog('merge');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Split PDF...',
|
label: 'Split PDF...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('split');
|
showPDFEditorDialog('split');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Compress PDF...',
|
label: 'Compress PDF...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('compress');
|
showPDFEditorDialog('compress');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -402,21 +679,21 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('rotate');
|
showPDFEditorDialog('rotate');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Delete Pages...',
|
label: 'Delete Pages...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('delete');
|
showPDFEditorDialog('delete');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Reorder Pages...',
|
label: 'Reorder Pages...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('reorder');
|
showPDFEditorDialog('reorder');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -424,7 +701,7 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('watermark');
|
showPDFEditorDialog('watermark');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -435,23 +712,23 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('encrypt');
|
showPDFEditorDialog('encrypt');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Remove Password...',
|
label: 'Remove Password...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('decrypt');
|
showPDFEditorDialog('decrypt');
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Set Permissions...',
|
label: 'Set Permissions...',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showPDFEditorDialog } = require('../index');
|
const { showPDFEditorDialog } = require('../index');
|
||||||
showPDFEditorDialog('permissions');
|
showPDFEditorDialog('permissions');
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -459,8 +736,8 @@ function pdfEditorItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showAboutDialog } = require('../index');
|
const { showAboutDialog } = require('../index');
|
||||||
showAboutDialog();
|
showAboutDialog();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -472,19 +749,19 @@ function toolsItems(mainWindow) {
|
|||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Document Compare',
|
label: 'Document Compare',
|
||||||
click: () => mainWindow.webContents.send('show-document-compare')
|
click: () => mainWindow.webContents.send('show-document-compare'),
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
function helpItems(mainWindow) {
|
function helpItems(_mainWindow) {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: 'About MarkdownConverter',
|
label: 'About MarkdownConverter',
|
||||||
click: () => {
|
click: () => {
|
||||||
const { showAboutDialog } = require('../index');
|
const { showAboutDialog } = require('../index');
|
||||||
showAboutDialog();
|
showAboutDialog();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
@@ -492,21 +769,21 @@ function helpItems(mainWindow) {
|
|||||||
click: () => {
|
click: () => {
|
||||||
const { showDependenciesDialog } = require('../index');
|
const { showDependenciesDialog } = require('../index');
|
||||||
showDependenciesDialog();
|
showDependenciesDialog();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{
|
{
|
||||||
label: 'Documentation',
|
label: 'Documentation',
|
||||||
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter')
|
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Report Issue',
|
label: 'Report Issue',
|
||||||
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter/issues')
|
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter/issues'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Check for Updates',
|
label: 'Check for Updates',
|
||||||
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter/releases')
|
click: () => shell.openExternal('https://github.com/amitwh/markdown-converter/releases'),
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -518,5 +795,5 @@ module.exports = {
|
|||||||
convertItems,
|
convertItems,
|
||||||
pdfEditorItems,
|
pdfEditorItems,
|
||||||
toolsItems,
|
toolsItems,
|
||||||
helpItems
|
helpItems,
|
||||||
};
|
};
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const FAMILY_BY_KEY = {
|
||||||
|
'jetbrains-mono': 'JetBrains Mono',
|
||||||
|
'fira-code': 'Fira Code',
|
||||||
|
};
|
||||||
|
|
||||||
|
const ALLOWED_FONTS = Object.keys(FAMILY_BY_KEY);
|
||||||
|
|
||||||
|
const DEFAULT_SETTINGS = Object.freeze({
|
||||||
|
monospaceFont: 'jetbrains-mono',
|
||||||
|
monospaceLigatures: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
function getActiveMonoFont(settings) {
|
||||||
|
const key = settings && settings.monospaceFont;
|
||||||
|
if (typeof key === 'string' && Object.prototype.hasOwnProperty.call(FAMILY_BY_KEY, key)) {
|
||||||
|
return FAMILY_BY_KEY[key];
|
||||||
|
}
|
||||||
|
return FAMILY_BY_KEY[DEFAULT_SETTINGS.monospaceFont];
|
||||||
|
}
|
||||||
|
|
||||||
|
function isLigaturesEnabled(settings) {
|
||||||
|
return !!(settings && settings.monospaceLigatures === true);
|
||||||
|
}
|
||||||
|
|
||||||
|
function safeMonospaceSettings(input) {
|
||||||
|
const safe = { ...DEFAULT_SETTINGS };
|
||||||
|
if (input && typeof input === 'object') {
|
||||||
|
if (ALLOWED_FONTS.includes(input.monospaceFont)) {
|
||||||
|
safe.monospaceFont = input.monospaceFont;
|
||||||
|
}
|
||||||
|
if (typeof input.monospaceLigatures === 'boolean') {
|
||||||
|
safe.monospaceLigatures = input.monospaceLigatures;
|
||||||
|
} else if (input.monospaceLigatures === 1 || input.monospaceLigatures === 'true') {
|
||||||
|
safe.monospaceLigatures = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return safe;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
FAMILY_BY_KEY,
|
||||||
|
ALLOWED_FONTS,
|
||||||
|
DEFAULT_SETTINGS,
|
||||||
|
getActiveMonoFont,
|
||||||
|
isLigaturesEnabled,
|
||||||
|
safeMonospaceSettings,
|
||||||
|
};
|
||||||
+1
-1
@@ -25,7 +25,7 @@ const store = {
|
|||||||
} catch {}
|
} catch {}
|
||||||
settings[key] = value;
|
settings[key] = value;
|
||||||
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
|
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = store;
|
module.exports = store;
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const MAX_DUMPS = 20;
|
||||||
|
|
||||||
|
class CrashWriter {
|
||||||
|
constructor(dir) {
|
||||||
|
this.dir = dir;
|
||||||
|
this._counter = 0;
|
||||||
|
fs.mkdirSync(dir, { recursive: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
handleUncaught(err, kind) {
|
||||||
|
try {
|
||||||
|
const filename = `${Date.now()}-${++this._counter}-${kind}.json`;
|
||||||
|
const payload = {
|
||||||
|
kind,
|
||||||
|
message: err && err.message,
|
||||||
|
stack: err && err.stack,
|
||||||
|
timestamp: new Date().toISOString(),
|
||||||
|
};
|
||||||
|
fs.writeFileSync(path.join(this.dir, filename), JSON.stringify(payload, null, 2));
|
||||||
|
this._prune();
|
||||||
|
} catch (writeErr) {
|
||||||
|
console.error('[crash-writer] dump write failed:', writeErr.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_prune() {
|
||||||
|
const files = fs.readdirSync(this.dir).sort();
|
||||||
|
while (files.length > MAX_DUMPS) {
|
||||||
|
const oldest = files.shift();
|
||||||
|
try {
|
||||||
|
fs.unlinkSync(path.join(this.dir, oldest));
|
||||||
|
} catch (_unlinkErr) {
|
||||||
|
/* ignore */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
list() {
|
||||||
|
if (!fs.existsSync(this.dir)) return [];
|
||||||
|
return fs
|
||||||
|
.readdirSync(this.dir)
|
||||||
|
.filter((f) => f.endsWith('.json'))
|
||||||
|
.sort()
|
||||||
|
.reverse()
|
||||||
|
.map((filename) => {
|
||||||
|
const full = path.join(this.dir, filename);
|
||||||
|
const data = JSON.parse(fs.readFileSync(full, 'utf-8'));
|
||||||
|
return { filename, ...data };
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(filename) {
|
||||||
|
const full = path.join(this.dir, filename);
|
||||||
|
if (fs.existsSync(full)) fs.unlinkSync(full);
|
||||||
|
}
|
||||||
|
|
||||||
|
path() {
|
||||||
|
return this.dir;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { CrashWriter };
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
function feedConfigFor(channel) {
|
||||||
|
if (channel === 'github') {
|
||||||
|
return { provider: 'github', owner: 'amitwh', repo: 'markdown-converter' };
|
||||||
|
}
|
||||||
|
return { provider: 'generic', url: 'https://updates.concreteinfo.co.in/v5' };
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { feedConfigFor };
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
class MigrationRunner {
|
||||||
|
constructor({ dir, transform }) {
|
||||||
|
this.dir = dir;
|
||||||
|
this.transform = transform;
|
||||||
|
this.file = path.join(dir, 'settings.json');
|
||||||
|
this.backup = path.join(dir, 'settings.v4.bak.json');
|
||||||
|
}
|
||||||
|
|
||||||
|
run() {
|
||||||
|
if (!fs.existsSync(this.file)) {
|
||||||
|
this._writeDefaults();
|
||||||
|
return 'fresh';
|
||||||
|
}
|
||||||
|
const raw = JSON.parse(fs.readFileSync(this.file, 'utf-8'));
|
||||||
|
if (raw && raw['migration.version'] === 5) {
|
||||||
|
return 'skipped';
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const v5 = this.transform(raw);
|
||||||
|
fs.copyFileSync(this.file, this.backup);
|
||||||
|
fs.writeFileSync(this.file, JSON.stringify({ ...v5, 'migration.version': 5 }, null, 2));
|
||||||
|
return 'migrated';
|
||||||
|
} catch (err) {
|
||||||
|
console.error('[migration-runner] transform failed:', err.message);
|
||||||
|
// Back up the original and write v5 marker so future launches skip migration.
|
||||||
|
// Without this, every launch would fail again and the user stays on defaults.
|
||||||
|
fs.copyFileSync(this.file, this.backup);
|
||||||
|
fs.writeFileSync(this.file, JSON.stringify({ ...raw, 'migration.version': 5 }, null, 2));
|
||||||
|
return 'failed';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_writeDefaults() {
|
||||||
|
const v5 = this.transform({});
|
||||||
|
fs.writeFileSync(this.file, JSON.stringify({ ...v5, 'migration.version': 5 }, null, 2));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { MigrationRunner };
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
// Mirror of src/renderer/lib/migrations/v4-to-v5.ts, plain JS, for main-process use.
|
||||||
|
// Kept in sync manually; if the renderer transform changes, update this too.
|
||||||
|
const { z } = require('zod');
|
||||||
|
|
||||||
|
const v4SettingsSchema = z
|
||||||
|
.object({
|
||||||
|
theme: z.enum(['light', 'dark', 'auto']).default('auto'),
|
||||||
|
customCss: z.string().optional().nullable(),
|
||||||
|
recentFiles: z.array(z.string()).default([]),
|
||||||
|
editorFontSize: z.number().min(10).max(28).default(14),
|
||||||
|
keyBindings: z.record(z.string(), z.string()).optional(),
|
||||||
|
snippets: z.array(z.unknown()).default([]),
|
||||||
|
})
|
||||||
|
.passthrough();
|
||||||
|
|
||||||
|
const v5SettingsSchema = z
|
||||||
|
.object({
|
||||||
|
fontSize: z.number().default(14),
|
||||||
|
tabSize: z.number().default(4),
|
||||||
|
lineNumbers: z.boolean().default(true),
|
||||||
|
wordWrap: z.boolean().default(true),
|
||||||
|
minimap: z.boolean().default(true),
|
||||||
|
theme: z.enum(['light', 'dark', 'system']).default('system'),
|
||||||
|
accentColor: z.string().default('brand'),
|
||||||
|
fontFamily: z.string().default('system'),
|
||||||
|
pdfFormat: z.string().default('a4'),
|
||||||
|
pdfMargins: z.string().default('normal'),
|
||||||
|
pdfEmbedFonts: z.boolean().default(true),
|
||||||
|
docxTemplate: z.string().default('standard'),
|
||||||
|
docxCustomTemplatePath: z.string().nullable().default(null),
|
||||||
|
replOpen: z.boolean().default(false),
|
||||||
|
breadcrumbSymbols: z.boolean().default(true),
|
||||||
|
htmlHighlightStyle: z.string().default('github'),
|
||||||
|
renderTablesAsAscii: z.boolean().default(false),
|
||||||
|
welcomeDismissed: z.boolean().default(false),
|
||||||
|
editorFontSize: z.number().default(14),
|
||||||
|
customCssPath: z.string().nullable().default(null),
|
||||||
|
userBindings: z.record(z.string(), z.string()).default({}),
|
||||||
|
updateChannel: z.enum(['github', 'concreteinfo']).default('github'),
|
||||||
|
autoCheckUpdates: z.boolean().default(true),
|
||||||
|
firstRun: z.boolean().default(true),
|
||||||
|
monospaceFont: z.enum(['jetbrains-mono', 'fira-code']).default('jetbrains-mono'),
|
||||||
|
monospaceLigatures: z.boolean().default(false),
|
||||||
|
appVariant: z.enum(['classic', 'react']).default('react'),
|
||||||
|
'migration.version': z.literal(5).optional(),
|
||||||
|
})
|
||||||
|
.passthrough();
|
||||||
|
|
||||||
|
const v5OnlyFields = ['updateChannel', 'autoCheckUpdates', 'firstRun'];
|
||||||
|
const v5ThemeValues = ['light', 'dark', 'system'];
|
||||||
|
|
||||||
|
function isAlreadyV5(data) {
|
||||||
|
if (!data || typeof data !== 'object') return false;
|
||||||
|
if (data['migration.version'] === 5) return true;
|
||||||
|
// Check for v5-only fields — a v4 file would never have these
|
||||||
|
return v5OnlyFields.some((f) => f in data);
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeAlreadyV5(data) {
|
||||||
|
// Some earlier v5 builds wrote a legacy theme value (e.g. "ayu-light")
|
||||||
|
// under the v5 marker. Trusting the marker blindly broke the renderer's
|
||||||
|
// zod schema on every launch. Always normalize theme against the v5 enum
|
||||||
|
// before returning, so persisted files are always valid v5.
|
||||||
|
const out = { ...data };
|
||||||
|
if (typeof out.theme !== 'string' || !v5ThemeValues.includes(out.theme)) {
|
||||||
|
out.theme = 'system';
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
const v5SettingsShape = {
|
||||||
|
fontSize: 14,
|
||||||
|
tabSize: 4,
|
||||||
|
lineNumbers: true,
|
||||||
|
wordWrap: true,
|
||||||
|
minimap: true,
|
||||||
|
theme: 'system',
|
||||||
|
accentColor: 'brand',
|
||||||
|
fontFamily: 'system',
|
||||||
|
pdfFormat: 'a4',
|
||||||
|
pdfMargins: 'normal',
|
||||||
|
pdfEmbedFonts: true,
|
||||||
|
docxTemplate: 'standard',
|
||||||
|
docxCustomTemplatePath: null,
|
||||||
|
replOpen: false,
|
||||||
|
breadcrumbSymbols: true,
|
||||||
|
htmlHighlightStyle: 'github',
|
||||||
|
renderTablesAsAscii: false,
|
||||||
|
welcomeDismissed: false,
|
||||||
|
editorFontSize: 14,
|
||||||
|
customCssPath: null,
|
||||||
|
userBindings: {},
|
||||||
|
updateChannel: 'github',
|
||||||
|
autoCheckUpdates: true,
|
||||||
|
firstRun: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
function migrateV4ToV5(v4) {
|
||||||
|
// If data already looks like v5 (has migration.version=5 or v5-only fields),
|
||||||
|
// normalize and validate against the v5 schema. This handles the case where
|
||||||
|
// a buggy v5 run wrote v5 fields without the marker, AND the case where a
|
||||||
|
// v5 file has a legacy theme value (e.g. "ayu-light") that would otherwise
|
||||||
|
// be rejected by the renderer.
|
||||||
|
if (isAlreadyV5(v4)) {
|
||||||
|
return v5SettingsSchema.parse(normalizeAlreadyV5(v4));
|
||||||
|
}
|
||||||
|
const parsed = v4SettingsSchema.parse(v4 || {});
|
||||||
|
return {
|
||||||
|
...v5SettingsShape,
|
||||||
|
...parsed,
|
||||||
|
theme: parsed.theme === 'auto' ? 'system' : parsed.theme,
|
||||||
|
customCssPath: parsed.customCss ?? null,
|
||||||
|
recentFiles: parsed.recentFiles,
|
||||||
|
editorFontSize: parsed.editorFontSize,
|
||||||
|
userBindings: parsed.keyBindings ?? v5SettingsShape.userBindings,
|
||||||
|
snippets: parsed.snippets,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { migrateV4ToV5, v5SettingsShape };
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
const { EventEmitter } = require('events');
|
||||||
|
const DEBOUNCE_MS = 60_000;
|
||||||
|
|
||||||
|
class UpdaterService extends EventEmitter {
|
||||||
|
constructor(autoUpdater) {
|
||||||
|
super();
|
||||||
|
this.autoUpdater = autoUpdater;
|
||||||
|
this.state = 'idle';
|
||||||
|
this.lastCheckAt = 0;
|
||||||
|
this._wire();
|
||||||
|
}
|
||||||
|
|
||||||
|
_wire() {
|
||||||
|
const au = this.autoUpdater;
|
||||||
|
au.on('checking-for-update', () => this._emit({ state: 'checking' }));
|
||||||
|
au.on('update-available', (info) => this._emit({ state: 'available', version: info.version }));
|
||||||
|
au.on('download-progress', (p) => this._emit({ state: 'downloading', percent: p.percent }));
|
||||||
|
au.on('update-downloaded', (info) => this._emit({ state: 'ready', version: info.version }));
|
||||||
|
au.on('update-not-available', () => this._emit({ state: 'idle' }));
|
||||||
|
au.on('error', (err) => {
|
||||||
|
const code =
|
||||||
|
err && /ENOTFOUND|ETIMEDOUT|ECONNREFUSED/.test(err.message) ? 'NETWORK' : 'UNKNOWN';
|
||||||
|
this._emit({ state: 'error', code });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
_emit(payload) {
|
||||||
|
this.state = payload.state;
|
||||||
|
this.emit('status', payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
async check() {
|
||||||
|
if (Date.now() - this.lastCheckAt < DEBOUNCE_MS) return;
|
||||||
|
this.lastCheckAt = Date.now();
|
||||||
|
await this.autoUpdater.checkForUpdates();
|
||||||
|
}
|
||||||
|
|
||||||
|
install() {
|
||||||
|
this.autoUpdater.quitAndInstall();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { UpdaterService };
|
||||||
+10
-6
@@ -10,7 +10,7 @@ function getAllowedDirectories() {
|
|||||||
app.getPath('desktop'),
|
app.getPath('desktop'),
|
||||||
app.getPath('downloads'),
|
app.getPath('downloads'),
|
||||||
app.getPath('home'),
|
app.getPath('home'),
|
||||||
process.cwd() // Current working directory
|
process.cwd(), // Current working directory
|
||||||
].filter(Boolean); // Remove any undefined paths
|
].filter(Boolean); // Remove any undefined paths
|
||||||
return dirs;
|
return dirs;
|
||||||
}
|
}
|
||||||
@@ -29,7 +29,7 @@ function validatePath(filePath) {
|
|||||||
let resolved;
|
let resolved;
|
||||||
try {
|
try {
|
||||||
resolved = path.resolve(filePath);
|
resolved = path.resolve(filePath);
|
||||||
} catch (err) {
|
} catch (_err) {
|
||||||
return { valid: false, resolved: '', error: 'Invalid path format' };
|
return { valid: false, resolved: '', error: 'Invalid path format' };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,7 +63,7 @@ function resolveWritablePath(filePath) {
|
|||||||
let resolved;
|
let resolved;
|
||||||
try {
|
try {
|
||||||
resolved = path.normalize(path.resolve(filePath));
|
resolved = path.normalize(path.resolve(filePath));
|
||||||
} catch (err) {
|
} catch (_err2) {
|
||||||
return { valid: false, resolved: '', error: 'Invalid path format' };
|
return { valid: false, resolved: '', error: 'Invalid path format' };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,9 +88,13 @@ function resolveWritablePath(filePath) {
|
|||||||
function isPathAccessible(resolvedPath) {
|
function isPathAccessible(resolvedPath) {
|
||||||
// Block access to sensitive system directories
|
// Block access to sensitive system directories
|
||||||
const blockedPaths = [
|
const blockedPaths = [
|
||||||
'/etc/passwd', '/etc/shadow', '/root',
|
'/etc/passwd',
|
||||||
'C:\\Windows\\System32', 'C:\\Windows\\System',
|
'/etc/shadow',
|
||||||
'/System', '/private/etc'
|
'/root',
|
||||||
|
'C:\\Windows\\System32',
|
||||||
|
'C:\\Windows\\System',
|
||||||
|
'/System',
|
||||||
|
'/private/etc',
|
||||||
];
|
];
|
||||||
|
|
||||||
const normalizedPath = resolvedPath.toLowerCase();
|
const normalizedPath = resolvedPath.toLowerCase();
|
||||||
|
|||||||
+25
-11
@@ -9,18 +9,27 @@ const menu = require('../menu');
|
|||||||
|
|
||||||
function createMainWindow() {
|
function createMainWindow() {
|
||||||
const bounds = state.load();
|
const bounds = state.load();
|
||||||
|
const isDev = !!process.env.VITE_DEV_SERVER_URL;
|
||||||
const win = new BrowserWindow({
|
const win = new BrowserWindow({
|
||||||
width: bounds.width,
|
width: bounds.width,
|
||||||
height: bounds.height,
|
height: bounds.height,
|
||||||
x: bounds.x,
|
x: bounds.x,
|
||||||
y: bounds.y,
|
y: bounds.y,
|
||||||
show: true,
|
show: true,
|
||||||
|
title: `Markdown Converter${isDev ? ' — React Dev' : ''}`,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true,
|
// The preload script exposes `window.electronAPI` — the only IPC
|
||||||
contextIsolation: false,
|
// bridge the renderer uses. Without this, every renderer call returns
|
||||||
spellcheck: true
|
// CHANNEL_MISSING and file/folder/save all silently no-op.
|
||||||
|
preload: path.join(__dirname, '../../preload.js'),
|
||||||
|
// contextIsolation MUST be true for the preload's contextBridge
|
||||||
|
// exposeInMainWorld call to succeed. Without it, the preload throws
|
||||||
|
// on load and the renderer never gets the IPC bridge.
|
||||||
|
contextIsolation: true,
|
||||||
|
nodeIntegration: false,
|
||||||
|
spellcheck: true,
|
||||||
},
|
},
|
||||||
icon: path.join(__dirname, '../../../assets/icon.png')
|
icon: path.join(__dirname, '../../../assets/icon.png'),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Dev (Vite): load the running dev server so .tsx is transformed on the fly.
|
// Dev (Vite): load the running dev server so .tsx is transformed on the fly.
|
||||||
@@ -47,7 +56,7 @@ function createMainWindow() {
|
|||||||
console.error(
|
console.error(
|
||||||
'[WINDOW] Renderer not found at',
|
'[WINDOW] Renderer not found at',
|
||||||
rendererIndex,
|
rendererIndex,
|
||||||
'— did you run `npm run build:renderer` before packaging?',
|
'— did you run `npm run build:renderer` before packaging?'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -77,18 +86,23 @@ function createMainWindow() {
|
|||||||
// Add spell check suggestions
|
// Add spell check suggestions
|
||||||
if (params.misspelledWord) {
|
if (params.misspelledWord) {
|
||||||
for (const suggestion of params.dictionarySuggestions) {
|
for (const suggestion of params.dictionarySuggestions) {
|
||||||
ctxMenu.append(new MenuItem({
|
ctxMenu.append(
|
||||||
|
new MenuItem({
|
||||||
label: suggestion,
|
label: suggestion,
|
||||||
click: () => win.webContents.replaceMisspelling(suggestion)
|
click: () => win.webContents.replaceMisspelling(suggestion),
|
||||||
}));
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
if (params.dictionarySuggestions.length > 0) {
|
if (params.dictionarySuggestions.length > 0) {
|
||||||
ctxMenu.append(new MenuItem({ type: 'separator' }));
|
ctxMenu.append(new MenuItem({ type: 'separator' }));
|
||||||
}
|
}
|
||||||
ctxMenu.append(new MenuItem({
|
ctxMenu.append(
|
||||||
|
new MenuItem({
|
||||||
label: 'Add to Dictionary',
|
label: 'Add to Dictionary',
|
||||||
click: () => win.webContents.session.addWordToSpellCheckerDictionary(params.misspelledWord)
|
click: () =>
|
||||||
}));
|
win.webContents.session.addWordToSpellCheckerDictionary(params.misspelledWord),
|
||||||
|
})
|
||||||
|
);
|
||||||
ctxMenu.append(new MenuItem({ type: 'separator' }));
|
ctxMenu.append(new MenuItem({ type: 'separator' }));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const PizZip = require('pizzip');
|
const PizZip = require('pizzip');
|
||||||
const Docx = require('docx4js').default;
|
|
||||||
|
|
||||||
class WordTemplateExporter {
|
class WordTemplateExporter {
|
||||||
constructor(templatePath, startPage = 3, pageSettings = null) {
|
constructor(templatePath, startPage = 3, pageSettings = null) {
|
||||||
@@ -66,7 +65,7 @@ class WordTemplateExporter {
|
|||||||
b5: { width: 9979, height: 14170 },
|
b5: { width: 9979, height: 14170 },
|
||||||
letter: { width: 12240, height: 15840 },
|
letter: { width: 12240, height: 15840 },
|
||||||
legal: { width: 12240, height: 20160 },
|
legal: { width: 12240, height: 20160 },
|
||||||
tabloid: { width: 15840, height: 24480 }
|
tabloid: { width: 15840, height: 24480 },
|
||||||
};
|
};
|
||||||
|
|
||||||
let width, height;
|
let width, height;
|
||||||
@@ -373,7 +372,10 @@ class WordTemplateExporter {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// Split by | and trim
|
// Split by | and trim
|
||||||
const cells = line.split('|').filter(cell => cell.trim()).map(cell => cell.trim());
|
const cells = line
|
||||||
|
.split('|')
|
||||||
|
.filter((cell) => cell.trim())
|
||||||
|
.map((cell) => cell.trim());
|
||||||
if (cells.length > 0) {
|
if (cells.length > 0) {
|
||||||
rows.push(cells);
|
rows.push(cells);
|
||||||
}
|
}
|
||||||
@@ -382,7 +384,7 @@ class WordTemplateExporter {
|
|||||||
if (rows.length === 0) return '';
|
if (rows.length === 0) return '';
|
||||||
|
|
||||||
// Calculate number of columns
|
// Calculate number of columns
|
||||||
const numCols = Math.max(...rows.map(row => row.length));
|
const numCols = Math.max(...rows.map((row) => row.length));
|
||||||
|
|
||||||
// Calculate column width in twips (1440 twips = 1 inch)
|
// Calculate column width in twips (1440 twips = 1 inch)
|
||||||
// Assume standard page width of 9360 twips (6.5 inches usable)
|
// Assume standard page width of 9360 twips (6.5 inches usable)
|
||||||
@@ -429,7 +431,7 @@ class WordTemplateExporter {
|
|||||||
rowCells.push('');
|
rowCells.push('');
|
||||||
}
|
}
|
||||||
|
|
||||||
rowCells.forEach((cellText, colIndex) => {
|
rowCells.forEach((cellText, _colIndex) => {
|
||||||
tableXml += '<w:tc>';
|
tableXml += '<w:tc>';
|
||||||
tableXml += '<w:tcPr>';
|
tableXml += '<w:tcPr>';
|
||||||
|
|
||||||
@@ -444,7 +446,8 @@ class WordTemplateExporter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Cell borders
|
// Cell borders
|
||||||
tableXml += '<w:tcBorders>' +
|
tableXml +=
|
||||||
|
'<w:tcBorders>' +
|
||||||
'<w:top w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
'<w:top w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
||||||
'<w:left w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
'<w:left w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
||||||
'<w:bottom w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
'<w:bottom w:val="single" w:sz="8" w:space="0" w:color="F58220"/>' +
|
||||||
@@ -452,7 +455,8 @@ class WordTemplateExporter {
|
|||||||
'</w:tcBorders>';
|
'</w:tcBorders>';
|
||||||
|
|
||||||
// Cell margins for proper padding
|
// Cell margins for proper padding
|
||||||
tableXml += '<w:tcMar>' +
|
tableXml +=
|
||||||
|
'<w:tcMar>' +
|
||||||
'<w:top w:w="80" w:type="dxa"/>' +
|
'<w:top w:w="80" w:type="dxa"/>' +
|
||||||
'<w:left w:w="120" w:type="dxa"/>' +
|
'<w:left w:w="120" w:type="dxa"/>' +
|
||||||
'<w:bottom w:w="80" w:type="dxa"/>' +
|
'<w:bottom w:w="80" w:type="dxa"/>' +
|
||||||
@@ -499,7 +503,7 @@ class WordTemplateExporter {
|
|||||||
// Don't treat markdown tables as ASCII art
|
// Don't treat markdown tables as ASCII art
|
||||||
if (line.trim().startsWith('|') && line.trim().endsWith('|')) {
|
if (line.trim().startsWith('|') && line.trim().endsWith('|')) {
|
||||||
// Check if it's a proper markdown table (has multiple cells)
|
// Check if it's a proper markdown table (has multiple cells)
|
||||||
const cells = line.split('|').filter(c => c.trim());
|
const cells = line.split('|').filter((c) => c.trim());
|
||||||
if (cells.length >= 2) {
|
if (cells.length >= 2) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -507,17 +511,72 @@ class WordTemplateExporter {
|
|||||||
|
|
||||||
// Common ASCII art characters (Unicode box drawing and symbols)
|
// Common ASCII art characters (Unicode box drawing and symbols)
|
||||||
const asciiArtChars = [
|
const asciiArtChars = [
|
||||||
'─', '│', '┌', '┐', '└', '┘', '├', '┤', '┬', '┴', '┼', // Box drawing
|
'─',
|
||||||
'═', '║', '╔', '╗', '╚', '╝', '╠', '╣', '╦', '╩', '╬', // Double box
|
'│',
|
||||||
'╭', '╮', '╯', '╰', // Rounded corners
|
'┌',
|
||||||
'▲', '▼', '◄', '►', '♦', '●', '○', '■', '□', '◆', '◇', // Shapes
|
'┐',
|
||||||
'↓', '→', '←', '↑', '↔', '↕', '⇒', '⇐', '⇓', '⇑', // Arrows
|
'└',
|
||||||
'┃', '━', '┏', '┓', '┗', '┛', '┣', '┫', '┳', '┻', '╋', // Heavy box
|
'┘',
|
||||||
'░', '▒', '▓', '█', // Shading
|
'├',
|
||||||
|
'┤',
|
||||||
|
'┬',
|
||||||
|
'┴',
|
||||||
|
'┼', // Box drawing
|
||||||
|
'═',
|
||||||
|
'║',
|
||||||
|
'╔',
|
||||||
|
'╗',
|
||||||
|
'╚',
|
||||||
|
'╝',
|
||||||
|
'╠',
|
||||||
|
'╣',
|
||||||
|
'╦',
|
||||||
|
'╩',
|
||||||
|
'╬', // Double box
|
||||||
|
'╭',
|
||||||
|
'╮',
|
||||||
|
'╯',
|
||||||
|
'╰', // Rounded corners
|
||||||
|
'▲',
|
||||||
|
'▼',
|
||||||
|
'◄',
|
||||||
|
'►',
|
||||||
|
'♦',
|
||||||
|
'●',
|
||||||
|
'○',
|
||||||
|
'■',
|
||||||
|
'□',
|
||||||
|
'◆',
|
||||||
|
'◇', // Shapes
|
||||||
|
'↓',
|
||||||
|
'→',
|
||||||
|
'←',
|
||||||
|
'↑',
|
||||||
|
'↔',
|
||||||
|
'↕',
|
||||||
|
'⇒',
|
||||||
|
'⇐',
|
||||||
|
'⇓',
|
||||||
|
'⇑', // Arrows
|
||||||
|
'┃',
|
||||||
|
'━',
|
||||||
|
'┏',
|
||||||
|
'┓',
|
||||||
|
'┗',
|
||||||
|
'┛',
|
||||||
|
'┣',
|
||||||
|
'┫',
|
||||||
|
'┳',
|
||||||
|
'┻',
|
||||||
|
'╋', // Heavy box
|
||||||
|
'░',
|
||||||
|
'▒',
|
||||||
|
'▓',
|
||||||
|
'█', // Shading
|
||||||
];
|
];
|
||||||
|
|
||||||
// Check for box drawing characters
|
// Check for box drawing characters
|
||||||
if (asciiArtChars.some(char => line.includes(char))) {
|
if (asciiArtChars.some((char) => line.includes(char))) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -537,7 +596,7 @@ class WordTemplateExporter {
|
|||||||
/^\s*\*[-=\*]+\*/, // *----*
|
/^\s*\*[-=\*]+\*/, // *----*
|
||||||
];
|
];
|
||||||
|
|
||||||
return asciiPatterns.some(pattern => pattern.test(line));
|
return asciiPatterns.some((pattern) => pattern.test(line));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -564,7 +623,7 @@ class WordTemplateExporter {
|
|||||||
|
|
||||||
// Check if line contains arrow characters and color them red
|
// Check if line contains arrow characters and color them red
|
||||||
const arrowChars = ['↓', '→', '←', '↑', '▼', '►', '◄', '▲'];
|
const arrowChars = ['↓', '→', '←', '↑', '▼', '►', '◄', '▲'];
|
||||||
const hasArrow = arrowChars.some(arrow => line.includes(arrow));
|
const hasArrow = arrowChars.some((arrow) => line.includes(arrow));
|
||||||
|
|
||||||
if (hasArrow) {
|
if (hasArrow) {
|
||||||
// Split line into parts and color arrows red
|
// Split line into parts and color arrows red
|
||||||
@@ -655,14 +714,14 @@ class WordTemplateExporter {
|
|||||||
*/
|
*/
|
||||||
parseInlineFormatting(text) {
|
parseInlineFormatting(text) {
|
||||||
let xml = '';
|
let xml = '';
|
||||||
const pos = 0;
|
const _pos = 0;
|
||||||
|
|
||||||
// Patterns for inline formatting
|
// Patterns for inline formatting
|
||||||
const patterns = [
|
const patterns = [
|
||||||
{ regex: /\*\*\*(.+?)\*\*\*/g, bold: true, italic: true },
|
{ regex: /\*\*\*(.+?)\*\*\*/g, bold: true, italic: true },
|
||||||
{ regex: /\*\*(.+?)\*\*/g, bold: true },
|
{ regex: /\*\*(.+?)\*\*/g, bold: true },
|
||||||
{ regex: /\*(.+?)\*/g, italic: true },
|
{ regex: /\*(.+?)\*/g, italic: true },
|
||||||
{ regex: /`(.+?)`/g, code: true }
|
{ regex: /`(.+?)`/g, code: true },
|
||||||
];
|
];
|
||||||
|
|
||||||
// Simple approach: process text sequentially
|
// Simple approach: process text sequentially
|
||||||
@@ -693,7 +752,12 @@ class WordTemplateExporter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Add formatted text
|
// Add formatted text
|
||||||
xml += this.createRunXml(match[1], matchedPattern.bold, matchedPattern.italic, matchedPattern.code);
|
xml += this.createRunXml(
|
||||||
|
match[1],
|
||||||
|
matchedPattern.bold,
|
||||||
|
matchedPattern.italic,
|
||||||
|
matchedPattern.code
|
||||||
|
);
|
||||||
|
|
||||||
remaining = remaining.substring(earliestPos + match[0].length);
|
remaining = remaining.substring(earliestPos + match[0].length);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -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,14 +17,14 @@ 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);
|
||||||
@@ -34,59 +34,89 @@ class WritingStudioPlugin extends PluginAPI {
|
|||||||
_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',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,17 +15,34 @@
|
|||||||
{ "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"] }
|
||||||
},
|
},
|
||||||
"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 [_action, 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;
|
||||||
|
|||||||
@@ -12,10 +12,11 @@ class PluginContext {
|
|||||||
* @param {object} deps.exportHooks - { preHooks: [], postHooks: [] }
|
* @param {object} deps.exportHooks - { preHooks: [], postHooks: [] }
|
||||||
*/
|
*/
|
||||||
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 } =
|
||||||
|
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 +29,45 @@ 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);
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,7 @@ 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,
|
||||||
});
|
});
|
||||||
|
|
||||||
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.
|
||||||
}
|
}
|
||||||
|
|||||||
+100
-17
@@ -98,12 +98,17 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'list-directory',
|
'list-directory',
|
||||||
'read-file',
|
'read-file',
|
||||||
'write-file',
|
'write-file',
|
||||||
|
'write-buffer',
|
||||||
|
'read-buffer',
|
||||||
'delete-file',
|
'delete-file',
|
||||||
'ensure-directory',
|
'ensure-directory',
|
||||||
'path-exists',
|
'path-exists',
|
||||||
'is-directory',
|
'is-directory',
|
||||||
'copy-path',
|
'copy-path',
|
||||||
'move-path',
|
'move-path',
|
||||||
|
'pick-folder',
|
||||||
|
'pick-file',
|
||||||
|
'search-in-files',
|
||||||
|
|
||||||
// Git
|
// Git
|
||||||
'git-status',
|
'git-status',
|
||||||
@@ -129,12 +134,32 @@ const ALLOWED_SEND_CHANNELS = [
|
|||||||
'menu-open',
|
'menu-open',
|
||||||
'export',
|
'export',
|
||||||
|
|
||||||
|
// App lifecycle
|
||||||
|
'app:quit',
|
||||||
|
'app:open-external',
|
||||||
|
'app:show-save-dialog',
|
||||||
|
'get-app-version',
|
||||||
|
|
||||||
|
// Updater
|
||||||
|
'updater:check',
|
||||||
|
'updater:install',
|
||||||
|
'updater:get-state',
|
||||||
|
|
||||||
|
// Crash reporter
|
||||||
|
'crash:read',
|
||||||
|
'crash:open-dir',
|
||||||
|
'crash:delete',
|
||||||
|
|
||||||
|
// Monospace font settings
|
||||||
|
'get-monospace-settings',
|
||||||
|
'set-monospace-settings',
|
||||||
|
|
||||||
// Git diff
|
// Git diff
|
||||||
'git-diff',
|
'git-diff',
|
||||||
|
|
||||||
// Plugin settings
|
// Plugin settings
|
||||||
'plugin-settings:get',
|
'plugin-settings:get',
|
||||||
'plugin-settings:set'
|
'plugin-settings:set',
|
||||||
];
|
];
|
||||||
|
|
||||||
const ALLOWED_RECEIVE_CHANNELS = [
|
const ALLOWED_RECEIVE_CHANNELS = [
|
||||||
@@ -217,15 +242,25 @@ const ALLOWED_RECEIVE_CHANNELS = [
|
|||||||
// Batch converter
|
// Batch converter
|
||||||
'show-batch-converter',
|
'show-batch-converter',
|
||||||
|
|
||||||
|
// Document compare
|
||||||
|
'show-document-compare',
|
||||||
|
|
||||||
// v4 menu-triggered events
|
// v4 menu-triggered events
|
||||||
'load-template-menu',
|
'load-template-menu',
|
||||||
'toggle-sidebar-panel',
|
'toggle-sidebar-panel',
|
||||||
'toggle-bottom-panel',
|
'toggle-bottom-panel',
|
||||||
|
'print-preview',
|
||||||
|
'print-preview-styled',
|
||||||
|
'clear-recent-files',
|
||||||
|
|
||||||
|
// Updater
|
||||||
|
'updater:status',
|
||||||
|
'show-analytics-dialog',
|
||||||
|
|
||||||
// File dialog / directory listing
|
// File dialog / directory listing
|
||||||
'list-directory',
|
'list-directory',
|
||||||
'pick-folder',
|
'pick-folder',
|
||||||
'pick-file'
|
'pick-file',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -327,6 +362,8 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
rendererReady: () => ipcRenderer.send('renderer-ready'),
|
rendererReady: () => ipcRenderer.send('renderer-ready'),
|
||||||
read: (filePath) => ipcRenderer.invoke('read-file', filePath),
|
read: (filePath) => ipcRenderer.invoke('read-file', filePath),
|
||||||
write: (filePath, content) => ipcRenderer.invoke('write-file', { path: filePath, content }),
|
write: (filePath, content) => ipcRenderer.invoke('write-file', { path: filePath, content }),
|
||||||
|
readBuffer: (filePath) => ipcRenderer.invoke('read-buffer', { path: filePath }),
|
||||||
|
writeBuffer: (filePath, buffer) => ipcRenderer.invoke('write-buffer', { path: filePath, buffer }),
|
||||||
delete: (filePath) => ipcRenderer.invoke('delete-file', filePath),
|
delete: (filePath) => ipcRenderer.invoke('delete-file', filePath),
|
||||||
ensureDir: (dirPath) => ipcRenderer.invoke('ensure-directory', dirPath),
|
ensureDir: (dirPath) => ipcRenderer.invoke('ensure-directory', dirPath),
|
||||||
exists: (filePath) => ipcRenderer.invoke('path-exists', filePath),
|
exists: (filePath) => ipcRenderer.invoke('path-exists', filePath),
|
||||||
@@ -335,23 +372,25 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
move: (source, destination) => ipcRenderer.invoke('move-path', { source, destination }),
|
move: (source, destination) => ipcRenderer.invoke('move-path', { source, destination }),
|
||||||
list: (dirPath) => ipcRenderer.invoke('list-directory', dirPath),
|
list: (dirPath) => ipcRenderer.invoke('list-directory', dirPath),
|
||||||
pickFolder: () => ipcRenderer.invoke('pick-folder'),
|
pickFolder: () => ipcRenderer.invoke('pick-folder'),
|
||||||
pickFile: () => ipcRenderer.invoke('pick-file')
|
pickFile: () => ipcRenderer.invoke('pick-file'),
|
||||||
|
search: (args) => ipcRenderer.invoke('search-in-files', args),
|
||||||
},
|
},
|
||||||
|
|
||||||
// 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),
|
||||||
|
show: (payload) => ipcRenderer.send('do-print', payload),
|
||||||
},
|
},
|
||||||
|
|
||||||
// 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
|
||||||
@@ -359,7 +398,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
|
||||||
@@ -368,8 +407,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
|
||||||
@@ -377,22 +422,23 @@ 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)
|
setCustomStartPage: (pageNumber) => ipcRenderer.send('set-custom-start-page', pageNumber),
|
||||||
},
|
},
|
||||||
|
|
||||||
// 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 Converter Operations
|
||||||
@@ -401,7 +447,7 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
batchConvert: (data) => ipcRenderer.send('image-batch-convert', data),
|
batchConvert: (data) => ipcRenderer.send('image-batch-convert', data),
|
||||||
resize: (data) => ipcRenderer.send('image-resize', data),
|
resize: (data) => ipcRenderer.send('image-resize', data),
|
||||||
compress: (data) => ipcRenderer.send('image-compress', data),
|
compress: (data) => ipcRenderer.send('image-compress', data),
|
||||||
rotate: (data) => ipcRenderer.send('image-rotate', data)
|
rotate: (data) => ipcRenderer.send('image-rotate', data),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Audio Converter Operations
|
// Audio Converter Operations
|
||||||
@@ -410,7 +456,7 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
batchConvert: (data) => ipcRenderer.send('audio-batch-convert', data),
|
batchConvert: (data) => ipcRenderer.send('audio-batch-convert', data),
|
||||||
extract: (data) => ipcRenderer.send('audio-extract', data),
|
extract: (data) => ipcRenderer.send('audio-extract', data),
|
||||||
trim: (data) => ipcRenderer.send('audio-trim', data),
|
trim: (data) => ipcRenderer.send('audio-trim', data),
|
||||||
merge: (data) => ipcRenderer.send('audio-merge', data)
|
merge: (data) => ipcRenderer.send('audio-merge', data),
|
||||||
},
|
},
|
||||||
|
|
||||||
// Video Converter Operations
|
// Video Converter Operations
|
||||||
@@ -420,10 +466,47 @@ contextBridge.exposeInMainWorld('electronAPI', {
|
|||||||
compress: (data) => ipcRenderer.send('video-compress', data),
|
compress: (data) => ipcRenderer.send('video-compress', data),
|
||||||
trim: (data) => ipcRenderer.send('video-trim', data),
|
trim: (data) => ipcRenderer.send('video-trim', data),
|
||||||
extractFrames: (data) => ipcRenderer.send('video-frames', data),
|
extractFrames: (data) => ipcRenderer.send('video-frames', data),
|
||||||
toGif: (data) => ipcRenderer.send('video-gif', data)
|
toGif: (data) => ipcRenderer.send('video-gif', data),
|
||||||
},
|
},
|
||||||
|
|
||||||
getAppVersion: () => ipcRenderer.invoke('get-app-version')
|
getAppVersion: () => ipcRenderer.invoke('get-app-version'),
|
||||||
|
|
||||||
|
// Git Operations
|
||||||
|
git: {
|
||||||
|
status: (rootPath) => ipcRenderer.invoke('git-status', rootPath),
|
||||||
|
stage: (args) => ipcRenderer.invoke('git-stage', args),
|
||||||
|
commit: (args) => ipcRenderer.invoke('git-commit', args),
|
||||||
|
log: (rootPath) => ipcRenderer.invoke('git-log', rootPath),
|
||||||
|
diff: (filePath) => ipcRenderer.invoke('git-diff', filePath),
|
||||||
|
},
|
||||||
|
|
||||||
|
app: {
|
||||||
|
quit: () => ipcRenderer.send('app:quit'),
|
||||||
|
openExternal: (url) => ipcRenderer.send('app:open-external', url),
|
||||||
|
showSaveDialog: (args) => ipcRenderer.invoke('app:show-save-dialog', args),
|
||||||
|
},
|
||||||
|
|
||||||
|
updater: {
|
||||||
|
check: () => ipcRenderer.invoke('updater:check'),
|
||||||
|
install: () => ipcRenderer.invoke('updater:install'),
|
||||||
|
getState: () => ipcRenderer.invoke('updater:get-state'),
|
||||||
|
onStatus: (cb) => {
|
||||||
|
const subscription = (_event, payload) => cb(payload);
|
||||||
|
ipcRenderer.on('updater:status', subscription);
|
||||||
|
return () => ipcRenderer.removeListener('updater:status', subscription);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
crash: {
|
||||||
|
read: () => ipcRenderer.invoke('crash:read'),
|
||||||
|
openDir: () => ipcRenderer.send('crash:open-dir'),
|
||||||
|
delete: (filename) => ipcRenderer.invoke('crash:delete', filename),
|
||||||
|
},
|
||||||
|
|
||||||
|
monospace: {
|
||||||
|
getSettings: () => ipcRenderer.invoke('get-monospace-settings'),
|
||||||
|
saveSettings: (partial) => ipcRenderer.invoke('set-monospace-settings', partial),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Log successful preload initialization
|
// Log successful preload initialization
|
||||||
|
|||||||
+76
-1
@@ -1,26 +1,101 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import { AppShell } from './components/layout/AppShell';
|
import { AppShell } from './components/layout/AppShell';
|
||||||
import { ModalLayer } from './components/modals/ModalLayer';
|
import { ModalLayer } from './components/modals/ModalLayer';
|
||||||
|
import { CommandPalette } from './components/modals/CommandPalette';
|
||||||
import { Toaster } from './components/ui/sonner';
|
import { Toaster } from './components/ui/sonner';
|
||||||
import { ReplPanel } from './components/tools/ReplPanel';
|
import { ReplPanel } from './components/tools/ReplPanel';
|
||||||
import { PrintPreview } from './components/tools/PrintPreview';
|
import { PrintPreview } from './components/tools/PrintPreview';
|
||||||
|
import { UpdateBanner } from './components/UpdateBanner';
|
||||||
|
import { FirstRunWizard } from './components/FirstRunWizard';
|
||||||
import { useWelcomeTrigger } from './hooks/use-welcome-trigger';
|
import { useWelcomeTrigger } from './hooks/use-welcome-trigger';
|
||||||
|
import { useAutoUpdateCheck } from './hooks/useAutoUpdateCheck';
|
||||||
|
import { useMonospaceClasses } from './hooks/use-monospace-classes';
|
||||||
|
|
||||||
|
import { useSettingsStore } from './stores/settings-store';
|
||||||
|
import { ipc } from './lib/ipc';
|
||||||
|
import { toast } from './lib/toast';
|
||||||
|
|
||||||
|
function scopeCSS(cssText: string, scopeSelector: string) {
|
||||||
|
if (!cssText) return '';
|
||||||
|
return cssText.replace(/([^\r\n,{}]+)(,(?=[^}]*{)|(?=[^{]*{))/g, (match, selector, separator) => {
|
||||||
|
const trimmed = selector.trim();
|
||||||
|
if (
|
||||||
|
!trimmed ||
|
||||||
|
trimmed.startsWith('@') ||
|
||||||
|
trimmed.startsWith(':root') ||
|
||||||
|
trimmed.startsWith('from') ||
|
||||||
|
trimmed.startsWith('to') ||
|
||||||
|
/^\d+%$/.test(trimmed)
|
||||||
|
) {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
return scopeSelector + ' ' + trimmed + (separator || '');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
useWelcomeTrigger();
|
useWelcomeTrigger();
|
||||||
|
useAutoUpdateCheck();
|
||||||
|
useMonospaceClasses();
|
||||||
const [printOpen, setPrintOpen] = useState(false);
|
const [printOpen, setPrintOpen] = useState(false);
|
||||||
|
const customCssPath = useSettingsStore((s) => s.customCssPath);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let active = true;
|
||||||
|
const styleId = 'custom-preview-style';
|
||||||
|
|
||||||
|
async function applyCSS() {
|
||||||
|
if (!customCssPath) {
|
||||||
|
const styleTag = document.getElementById(styleId);
|
||||||
|
if (styleTag) styleTag.remove();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const r = await ipc.file.read(customCssPath);
|
||||||
|
if (!active) return;
|
||||||
|
if (r.ok && r.data) {
|
||||||
|
let styleTag = document.getElementById(styleId);
|
||||||
|
if (!styleTag) {
|
||||||
|
styleTag = document.createElement('style');
|
||||||
|
styleTag.id = styleId;
|
||||||
|
document.head.appendChild(styleTag);
|
||||||
|
}
|
||||||
|
styleTag.textContent = scopeCSS(r.data, '.preview-content');
|
||||||
|
} else {
|
||||||
|
toast.error('Failed to load custom CSS file');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void applyCSS();
|
||||||
|
return () => {
|
||||||
|
active = false;
|
||||||
|
};
|
||||||
|
}, [customCssPath]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
window.electronAPI?.file?.rendererReady?.();
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const handler = () => setPrintOpen(true);
|
const handler = () => setPrintOpen(true);
|
||||||
window.addEventListener('mc:print', handler);
|
window.addEventListener('mc:print', handler);
|
||||||
return () => window.removeEventListener('mc:print', handler);
|
window.addEventListener('mc:print-preview', handler);
|
||||||
|
window.addEventListener('mc:print-preview-styled', handler);
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener('mc:print', handler);
|
||||||
|
window.removeEventListener('mc:print-preview', handler);
|
||||||
|
window.removeEventListener('mc:print-preview-styled', handler);
|
||||||
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<AppShell />
|
<AppShell />
|
||||||
<ModalLayer />
|
<ModalLayer />
|
||||||
|
<CommandPalette />
|
||||||
<Toaster />
|
<Toaster />
|
||||||
|
<UpdateBanner />
|
||||||
|
<FirstRunWizard />
|
||||||
<ReplPanel />
|
<ReplPanel />
|
||||||
{printOpen && <PrintPreview onClose={() => setPrintOpen(false)} />}
|
{printOpen && <PrintPreview onClose={() => setPrintOpen(false)} />}
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -0,0 +1,121 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
|
|
||||||
|
const TEMPLATES = {
|
||||||
|
blank: '',
|
||||||
|
readme: '# Project\n\nDescription.\n\n## Usage\n\n```\nnpm install\n```\n',
|
||||||
|
meeting:
|
||||||
|
'# Meeting Notes — YYYY-MM-DD\n\n## Attendees\n\n- \n## Agenda\n\n1. \n\n## Action items\n\n- [ ] \n',
|
||||||
|
blog: '# Title\n\n*Subtitle*\n\nLorem ipsum.\n\n---\n\n## Section 1\n',
|
||||||
|
};
|
||||||
|
|
||||||
|
export function FirstRunWizard() {
|
||||||
|
const firstRun = useAppStore((s) => s.firstRun);
|
||||||
|
const setFirstRun = useAppStore((s) => s.setFirstRun);
|
||||||
|
const theme = useSettingsStore((s) => s.theme);
|
||||||
|
const setSetting = useSettingsStore((s) => s.setSetting);
|
||||||
|
const updateChannel = useSettingsStore((s) => s.updateChannel);
|
||||||
|
const [step, setStep] = useState(0);
|
||||||
|
const [template, setTemplate] = useState<keyof typeof TEMPLATES>('blank');
|
||||||
|
|
||||||
|
if (!firstRun) return null;
|
||||||
|
|
||||||
|
const close = () => setFirstRun(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="first-run-wizard"
|
||||||
|
role="dialog"
|
||||||
|
aria-modal="true"
|
||||||
|
className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center"
|
||||||
|
>
|
||||||
|
<div className="bg-white dark:bg-neutral-900 rounded-lg p-6 w-[28rem] shadow-xl">
|
||||||
|
{step === 0 && (
|
||||||
|
<div>
|
||||||
|
<h2 className="text-lg font-semibold mb-2">Pick a theme</h2>
|
||||||
|
<div className="flex gap-2 mb-4">
|
||||||
|
{(['light', 'dark', 'system'] as const).map((t) => (
|
||||||
|
<label key={t} className="flex items-center gap-1">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="theme"
|
||||||
|
checked={theme === t}
|
||||||
|
onChange={() => setSetting('theme', t)}
|
||||||
|
/>
|
||||||
|
{t}
|
||||||
|
</label>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{step === 1 && (
|
||||||
|
<div>
|
||||||
|
<h2 className="text-lg font-semibold mb-2">Update channel</h2>
|
||||||
|
<div className="flex flex-col gap-2 mb-4">
|
||||||
|
<label className="flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="channel"
|
||||||
|
checked={updateChannel === 'github'}
|
||||||
|
onChange={() => setSetting('updateChannel', 'github')}
|
||||||
|
/>
|
||||||
|
GitHub Releases (public)
|
||||||
|
</label>
|
||||||
|
<label className="flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="channel"
|
||||||
|
checked={updateChannel === 'concreteinfo'}
|
||||||
|
onChange={() => setSetting('updateChannel', 'concreteinfo')}
|
||||||
|
/>
|
||||||
|
ConcreteInfo self-hosted
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{step === 2 && (
|
||||||
|
<div>
|
||||||
|
<h2 className="text-lg font-semibold mb-2">Starter template</h2>
|
||||||
|
<select
|
||||||
|
value={template}
|
||||||
|
onChange={(e) => setTemplate(e.target.value as any)}
|
||||||
|
className="border rounded px-2 py-1 w-full mb-4"
|
||||||
|
>
|
||||||
|
<option value="blank">Blank</option>
|
||||||
|
<option value="readme">README</option>
|
||||||
|
<option value="meeting">Meeting notes</option>
|
||||||
|
<option value="blog">Blog post</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex justify-between items-center mt-4">
|
||||||
|
<button onClick={close} className="text-sm text-neutral-500">
|
||||||
|
Skip
|
||||||
|
</button>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
{step > 0 && <button onClick={() => setStep(step - 1)}>Back</button>}
|
||||||
|
{step < 2 ? (
|
||||||
|
<button
|
||||||
|
onClick={() => setStep(step + 1)}
|
||||||
|
className="px-3 py-1 rounded bg-brand text-white"
|
||||||
|
>
|
||||||
|
Next
|
||||||
|
</button>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
onClick={() => {
|
||||||
|
useAppStore.getState().newBuffer(TEMPLATES[template]);
|
||||||
|
close();
|
||||||
|
}}
|
||||||
|
className="px-3 py-1 rounded bg-brand text-white"
|
||||||
|
>
|
||||||
|
Done
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
import { useUpdaterStore } from '@/lib/updater-store';
|
||||||
|
import { ipc } from '@/lib/ipc';
|
||||||
|
import { toast } from 'sonner';
|
||||||
|
|
||||||
|
export function UpdateBanner() {
|
||||||
|
const { state, version, percent, install, check } = useUpdaterStore();
|
||||||
|
|
||||||
|
if (state === 'idle' || state === 'checking') return null;
|
||||||
|
|
||||||
|
if (state === 'error') {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="update-banner"
|
||||||
|
role="status"
|
||||||
|
className="bg-amber-50 border-b border-amber-200 px-4 py-2 text-sm"
|
||||||
|
>
|
||||||
|
Couldn't check for updates.{' '}
|
||||||
|
<button
|
||||||
|
onClick={async () => {
|
||||||
|
try {
|
||||||
|
await check();
|
||||||
|
} catch (e: any) {
|
||||||
|
toast.error(e.message);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
className="underline"
|
||||||
|
>
|
||||||
|
Try again
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state === 'available') {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="update-banner"
|
||||||
|
className="bg-blue-50 border-b border-blue-200 px-4 py-2 text-sm"
|
||||||
|
>
|
||||||
|
A new version (v{version}) is available.{' '}
|
||||||
|
<button onClick={() => useUpdaterStore.getState().check()} className="underline">
|
||||||
|
Download now
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state === 'downloading') {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="update-banner"
|
||||||
|
className="bg-blue-50 border-b border-blue-200 px-4 py-2 text-sm"
|
||||||
|
>
|
||||||
|
Downloading update… {Math.round(percent)}%
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state === 'ready') {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="update-banner"
|
||||||
|
className="bg-green-50 border-b border-green-200 px-4 py-2 text-sm flex items-center gap-3"
|
||||||
|
>
|
||||||
|
<span>v{version} is ready.</span>
|
||||||
|
<button
|
||||||
|
onClick={() =>
|
||||||
|
ipc.app.openExternal(
|
||||||
|
`https://github.com/amitwh/markdown-converter/releases/tag/v${version}`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
className="underline"
|
||||||
|
>
|
||||||
|
View release notes
|
||||||
|
</button>
|
||||||
|
<button onClick={install} className="px-3 py-1 rounded bg-brand text-white">
|
||||||
|
Restart to update
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
@@ -1,6 +1,12 @@
|
|||||||
import { useEffect, useRef } from 'react';
|
import { useEffect, useRef, useState, useCallback } from 'react';
|
||||||
import { EditorState, Compartment } from '@codemirror/state';
|
import { EditorState, Compartment } from '@codemirror/state';
|
||||||
import { EditorView, keymap, lineNumbers, highlightActiveLine, drawSelection } from '@codemirror/view';
|
import {
|
||||||
|
EditorView,
|
||||||
|
keymap,
|
||||||
|
lineNumbers,
|
||||||
|
highlightActiveLine,
|
||||||
|
drawSelection,
|
||||||
|
} from '@codemirror/view';
|
||||||
import { defaultKeymap, history, historyKeymap, indentWithTab } from '@codemirror/commands';
|
import { defaultKeymap, history, historyKeymap, indentWithTab } from '@codemirror/commands';
|
||||||
import { markdown, markdownLanguage } from '@codemirror/lang-markdown';
|
import { markdown, markdownLanguage } from '@codemirror/lang-markdown';
|
||||||
import { searchKeymap, highlightSelectionMatches } from '@codemirror/search';
|
import { searchKeymap, highlightSelectionMatches } from '@codemirror/search';
|
||||||
@@ -10,7 +16,10 @@ import { useTheme } from 'next-themes';
|
|||||||
import { lightTheme, lightHighlight } from './themes/light';
|
import { lightTheme, lightHighlight } from './themes/light';
|
||||||
import { useEditorStore } from '@/stores/editor-store';
|
import { useEditorStore } from '@/stores/editor-store';
|
||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
|
import { setActiveView, insertSnippet } from '@/lib/editor-commands';
|
||||||
import { Minimap } from './Minimap';
|
import { Minimap } from './Minimap';
|
||||||
|
import { toast } from '@/lib/toast';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
bufferId: string;
|
bufferId: string;
|
||||||
@@ -19,6 +28,63 @@ interface Props {
|
|||||||
onCursorChange?: (line: number, column: number) => void;
|
onCursorChange?: (line: number, column: number) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const IMAGE_TYPES = new Set([
|
||||||
|
'image/png',
|
||||||
|
'image/jpeg',
|
||||||
|
'image/gif',
|
||||||
|
'image/webp',
|
||||||
|
'image/svg+xml',
|
||||||
|
'image/bmp',
|
||||||
|
'image/avif',
|
||||||
|
]);
|
||||||
|
|
||||||
|
function guessExt(mimeType: string): string {
|
||||||
|
const map: Record<string, string> = {
|
||||||
|
'image/png': 'png',
|
||||||
|
'image/jpeg': 'jpg',
|
||||||
|
'image/gif': 'gif',
|
||||||
|
'image/webp': 'webp',
|
||||||
|
'image/svg+xml': 'svg',
|
||||||
|
'image/bmp': 'bmp',
|
||||||
|
'image/avif': 'avif',
|
||||||
|
};
|
||||||
|
return map[mimeType] ?? 'png';
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleImageFile(file: File): Promise<void> {
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = async () => {
|
||||||
|
const base64 = (reader.result as string).split(',')[1];
|
||||||
|
if (!base64) return;
|
||||||
|
const ext = guessExt(file.type);
|
||||||
|
const result = await window.electronAPI.invoke('save-pasted-image', { base64, ext });
|
||||||
|
if (result) {
|
||||||
|
insertSnippet(``);
|
||||||
|
toast.success('Image pasted');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
reader.readAsDataURL(file);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createPasteHandler() {
|
||||||
|
return EditorView.domEventHandlers({
|
||||||
|
paste(event: ClipboardEvent, _view: EditorView) {
|
||||||
|
const items = event.clipboardData?.items;
|
||||||
|
if (!items) return false;
|
||||||
|
for (let i = 0; i < items.length; i++) {
|
||||||
|
const item = items[i];
|
||||||
|
if (IMAGE_TYPES.has(item.type)) {
|
||||||
|
event.preventDefault();
|
||||||
|
const file = item.getAsFile();
|
||||||
|
if (file) handleImageFile(file);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorChange }: Props) {
|
export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorChange }: Props) {
|
||||||
const ref = useRef<HTMLDivElement>(null);
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
const viewRef = useRef<EditorView | null>(null);
|
const viewRef = useRef<EditorView | null>(null);
|
||||||
@@ -27,6 +93,12 @@ export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorC
|
|||||||
const updateContent = useEditorStore((s) => s.updateContent);
|
const updateContent = useEditorStore((s) => s.updateContent);
|
||||||
const setCursor = useEditorStore((s) => s.setCursor);
|
const setCursor = useEditorStore((s) => s.setCursor);
|
||||||
const minimap = useSettingsStore((s) => s.minimap);
|
const minimap = useSettingsStore((s) => s.minimap);
|
||||||
|
const editorFontSize = useSettingsStore((s) => s.editorFontSize);
|
||||||
|
const buffer = useEditorStore((s) => s.buffers.get(bufferId));
|
||||||
|
const content = buffer?.content ?? initialContent;
|
||||||
|
const [scrollRatio, setScrollRatio] = useState(0);
|
||||||
|
const [visibleRatio, setVisibleRatio] = useState(1);
|
||||||
|
const [isDragOver, setIsDragOver] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!ref.current) return;
|
if (!ref.current) return;
|
||||||
@@ -40,8 +112,16 @@ export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorC
|
|||||||
drawSelection(),
|
drawSelection(),
|
||||||
markdown({ base: markdownLanguage, codeLanguages: [] }),
|
markdown({ base: markdownLanguage, codeLanguages: [] }),
|
||||||
autocompletion(),
|
autocompletion(),
|
||||||
keymap.of([...defaultKeymap, ...historyKeymap, ...searchKeymap, ...completionKeymap, indentWithTab]),
|
keymap.of([
|
||||||
themeCompartment.current.of(resolvedTheme === 'dark' ? [oneDark] : [lightTheme, lightHighlight]),
|
...defaultKeymap,
|
||||||
|
...historyKeymap,
|
||||||
|
...searchKeymap,
|
||||||
|
...completionKeymap,
|
||||||
|
indentWithTab,
|
||||||
|
]),
|
||||||
|
themeCompartment.current.of(
|
||||||
|
resolvedTheme === 'dark' ? [oneDark] : [lightTheme, lightHighlight]
|
||||||
|
),
|
||||||
EditorView.lineWrapping,
|
EditorView.lineWrapping,
|
||||||
EditorView.updateListener.of((v) => {
|
EditorView.updateListener.of((v) => {
|
||||||
if (v.docChanged) {
|
if (v.docChanged) {
|
||||||
@@ -58,11 +138,28 @@ export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorC
|
|||||||
onCursorChange?.(lineNo, col);
|
onCursorChange?.(lineNo, col);
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
EditorView.theme({
|
||||||
|
'&': { fontSize: `${editorFontSize}px` },
|
||||||
|
}),
|
||||||
|
EditorView.domEventHandlers({
|
||||||
|
scroll(_event, view) {
|
||||||
|
const el = view.scrollDOM;
|
||||||
|
const denom = el.scrollHeight - el.clientHeight;
|
||||||
|
setScrollRatio(denom > 0 ? el.scrollTop / denom : 0);
|
||||||
|
setVisibleRatio(
|
||||||
|
el.clientHeight > 0 ? Math.min(1, el.clientHeight / el.scrollHeight) : 1
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
createPasteHandler(),
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
const view = new EditorView({ state, parent: ref.current });
|
const view = new EditorView({ state, parent: ref.current });
|
||||||
viewRef.current = view;
|
viewRef.current = view;
|
||||||
|
setActiveView(view);
|
||||||
return () => {
|
return () => {
|
||||||
|
setActiveView(null);
|
||||||
view.destroy();
|
view.destroy();
|
||||||
viewRef.current = null;
|
viewRef.current = null;
|
||||||
};
|
};
|
||||||
@@ -79,10 +176,43 @@ export function CodeMirrorEditor({ bufferId, initialContent, onChange, onCursorC
|
|||||||
});
|
});
|
||||||
}, [resolvedTheme]);
|
}, [resolvedTheme]);
|
||||||
|
|
||||||
|
const handleDragOver = useCallback((e: React.DragEvent) => {
|
||||||
|
if (e.dataTransfer.types.includes('Files')) {
|
||||||
|
e.preventDefault();
|
||||||
|
setIsDragOver(true);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleDragLeave = useCallback((e: React.DragEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setIsDragOver(false);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleDrop = useCallback(async (e: React.DragEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setIsDragOver(false);
|
||||||
|
const files = Array.from(e.dataTransfer.files);
|
||||||
|
const imageFiles = files.filter((f) => IMAGE_TYPES.has(f.type));
|
||||||
|
for (const file of imageFiles) {
|
||||||
|
await handleImageFile(file);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative h-full overflow-hidden">
|
<div className="relative h-full overflow-hidden">
|
||||||
<div ref={ref} className="h-full overflow-hidden" />
|
<div
|
||||||
{minimap && <Minimap content={initialContent} />}
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
'h-full overflow-hidden transition-colors duration-150',
|
||||||
|
isDragOver && 'ring-2 ring-primary bg-primary/5'
|
||||||
|
)}
|
||||||
|
onDragOver={handleDragOver}
|
||||||
|
onDragLeave={handleDragLeave}
|
||||||
|
onDrop={handleDrop}
|
||||||
|
/>
|
||||||
|
{minimap && (
|
||||||
|
<Minimap content={content} scrollRatio={scrollRatio} visibleRatio={visibleRatio} />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,15 +1,43 @@
|
|||||||
import { useEffect } from 'react';
|
import { useEffect, useRef } from 'react';
|
||||||
import { CodeMirrorEditor } from './CodeMirrorEditor';
|
import { CodeMirrorEditor } from './CodeMirrorEditor';
|
||||||
|
import { FindReplaceBar } from './FindReplaceBar';
|
||||||
import { useEditorStore } from '@/stores/editor-store';
|
import { useEditorStore } from '@/stores/editor-store';
|
||||||
import { usePreviewStore } from '@/stores/preview-store';
|
import { usePreviewStore } from '@/stores/preview-store';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { toast } from '@/lib/toast';
|
||||||
|
|
||||||
export function EditorPane() {
|
export function EditorPane() {
|
||||||
const { buffers, activeId } = useEditorStore();
|
const { buffers, activeId } = useEditorStore();
|
||||||
const buf = activeId ? buffers.get(activeId) : null;
|
const buf = activeId ? buffers.get(activeId) : null;
|
||||||
const setPreviewSource = usePreviewStore((s) => s.setSource);
|
const setPreviewSource = usePreviewStore((s) => s.setSource);
|
||||||
|
const lastActiveId = useRef<string | null>(null);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (buf) setPreviewSource(buf.content);
|
if (!buf) return;
|
||||||
|
const isNewFile = lastActiveId.current !== buf.id;
|
||||||
|
lastActiveId.current = buf.id;
|
||||||
|
|
||||||
|
const isLarge = buf.content.length > 1024 * 1024;
|
||||||
|
|
||||||
|
if (isLarge) {
|
||||||
|
if (!usePreviewStore.getState().largeFileMode) {
|
||||||
|
usePreviewStore.setState({ largeFileMode: true });
|
||||||
|
useAppStore.setState({ previewVisible: false });
|
||||||
|
toast.warning(
|
||||||
|
'Large content detected (>1MB). Large File Mode enabled to maintain peak responsiveness. Live preview auto-render is disabled.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only render on initial load / tab switch, not on edits
|
||||||
|
if (isNewFile) {
|
||||||
|
usePreviewStore.getState().forceRender(buf.content);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (usePreviewStore.getState().largeFileMode) {
|
||||||
|
usePreviewStore.setState({ largeFileMode: false });
|
||||||
|
}
|
||||||
|
setPreviewSource(buf.content);
|
||||||
|
}
|
||||||
}, [buf?.id, buf?.content, buf, setPreviewSource]);
|
}, [buf?.id, buf?.content, buf, setPreviewSource]);
|
||||||
|
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
@@ -21,12 +49,11 @@ export function EditorPane() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="h-full">
|
<div className="flex h-full flex-col">
|
||||||
<CodeMirrorEditor
|
<FindReplaceBar />
|
||||||
key={buf.id}
|
<div className="flex-1 overflow-hidden">
|
||||||
bufferId={buf.id}
|
<CodeMirrorEditor key={buf.id} bufferId={buf.id} initialContent={buf.content} />
|
||||||
initialContent={buf.content}
|
</div>
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,268 @@
|
|||||||
|
import { useEffect, useRef, useCallback, useState } from 'react';
|
||||||
|
import {
|
||||||
|
findNext,
|
||||||
|
findPrevious,
|
||||||
|
replaceNext,
|
||||||
|
replaceAll,
|
||||||
|
closeSearchPanel,
|
||||||
|
getSearchQuery,
|
||||||
|
setSearchQuery,
|
||||||
|
} from '@codemirror/search';
|
||||||
|
import type { EditorView } from '@codemirror/view';
|
||||||
|
import { getActiveView } from '@/lib/editor-commands';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
|
import { X, ChevronDown, ChevronUp, Replace, ReplaceAll, CaseSensitive, Regex } from 'lucide-react';
|
||||||
|
|
||||||
|
export function FindReplaceBar() {
|
||||||
|
const findBarOpen = useAppStore((s) => s.findBarOpen);
|
||||||
|
const toggleFindBar = useAppStore((s) => s.toggleFindBar);
|
||||||
|
const searchRef = useRef<HTMLInputElement>(null);
|
||||||
|
const replaceRef = useRef<HTMLInputElement>(null);
|
||||||
|
const [caseSensitive, setCaseSensitive] = useState(false);
|
||||||
|
const [useRegex, setUseRegex] = useState(false);
|
||||||
|
const [matchInfo, setMatchInfo] = useState<{ current: number; total: number } | null>(null);
|
||||||
|
|
||||||
|
const updateMatchCount = useCallback(() => {
|
||||||
|
const view = getActiveView();
|
||||||
|
if (!view) {
|
||||||
|
setMatchInfo(null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const query = getSearchQuery(view.state);
|
||||||
|
if (!query || !query.search) {
|
||||||
|
setMatchInfo(null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const docText = view.state.doc.toString();
|
||||||
|
const searchStr = query.regexp
|
||||||
|
? query.search
|
||||||
|
: query.search.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
|
const flags = `g${query.caseSensitive ? '' : 'i'}`;
|
||||||
|
const regex = new RegExp(searchStr, flags);
|
||||||
|
const matches = docText.match(regex);
|
||||||
|
if (!matches) {
|
||||||
|
setMatchInfo({ current: 0, total: 0 });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const selectionHead = view.state.selection.main.head;
|
||||||
|
let currentMatch = 0;
|
||||||
|
const matchPositions: number[] = [];
|
||||||
|
let match;
|
||||||
|
while ((match = regex.exec(docText)) !== null) {
|
||||||
|
matchPositions.push(match.index);
|
||||||
|
if (match.index <= selectionHead && selectionHead <= match.index + match[0].length) {
|
||||||
|
currentMatch = matchPositions.length;
|
||||||
|
}
|
||||||
|
if (matchPositions.length > 10000) break;
|
||||||
|
}
|
||||||
|
setMatchInfo({ current: currentMatch || 1, total: matchPositions.length });
|
||||||
|
} catch {
|
||||||
|
setMatchInfo(null);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const executeCommand = useCallback(
|
||||||
|
(fn: (view: EditorView) => boolean | void) => {
|
||||||
|
const view = getActiveView();
|
||||||
|
if (!view) return false;
|
||||||
|
const result = fn(view);
|
||||||
|
updateMatchCount();
|
||||||
|
view.focus();
|
||||||
|
return result;
|
||||||
|
},
|
||||||
|
[updateMatchCount]
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleFindNext = useCallback(() => {
|
||||||
|
executeCommand(findNext);
|
||||||
|
}, [executeCommand]);
|
||||||
|
|
||||||
|
const handleFindPrev = useCallback(() => {
|
||||||
|
executeCommand(findPrevious);
|
||||||
|
}, [executeCommand]);
|
||||||
|
|
||||||
|
const handleReplace = useCallback(() => {
|
||||||
|
executeCommand(replaceNext);
|
||||||
|
}, [executeCommand]);
|
||||||
|
|
||||||
|
const handleReplaceAll = useCallback(() => {
|
||||||
|
executeCommand(replaceAll);
|
||||||
|
}, [executeCommand]);
|
||||||
|
|
||||||
|
const handleClose = useCallback(() => {
|
||||||
|
const view = getActiveView();
|
||||||
|
if (view) closeSearchPanel(view);
|
||||||
|
toggleFindBar();
|
||||||
|
view?.focus();
|
||||||
|
}, [toggleFindBar]);
|
||||||
|
|
||||||
|
const handleSearchChange = useCallback(
|
||||||
|
(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const value = e.target.value;
|
||||||
|
const view = getActiveView();
|
||||||
|
if (!view) return;
|
||||||
|
setSearchQuery(view, {
|
||||||
|
search: value,
|
||||||
|
caseSensitive,
|
||||||
|
regexp: useRegex,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
[caseSensitive, useRegex]
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleReplaceChange = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const view = getActiveView();
|
||||||
|
if (!view) return;
|
||||||
|
const query = getSearchQuery(view.state);
|
||||||
|
if (query) {
|
||||||
|
setSearchQuery(view, {
|
||||||
|
search: query.search,
|
||||||
|
caseSensitive: query.caseSensitive ?? false,
|
||||||
|
regexp: query.regexp ?? false,
|
||||||
|
replace: e.target.value,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (findBarOpen) {
|
||||||
|
setTimeout(() => searchRef.current?.focus(), 50);
|
||||||
|
}
|
||||||
|
}, [findBarOpen]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handler = () => {
|
||||||
|
if (!useAppStore.getState().findBarOpen) {
|
||||||
|
useAppStore.getState().toggleFindBar();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
window.addEventListener('mc:find-toggle', handler);
|
||||||
|
return () => window.removeEventListener('mc:find-toggle', handler);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
if (!findBarOpen) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-1.5 border-b border-border bg-background px-2 py-1">
|
||||||
|
<Input
|
||||||
|
ref={searchRef}
|
||||||
|
placeholder="Find..."
|
||||||
|
className="h-7 w-48 text-xs"
|
||||||
|
onChange={handleSearchChange}
|
||||||
|
onKeyDown={(e) => {
|
||||||
|
if (e.key === 'Enter') {
|
||||||
|
e.shiftKey ? handleFindPrev() : handleFindNext();
|
||||||
|
}
|
||||||
|
if (e.key === 'Escape') handleClose();
|
||||||
|
if (e.key === 'Tab' && !e.shiftKey) {
|
||||||
|
e.preventDefault();
|
||||||
|
replaceRef.current?.focus();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
data-testid="find-input"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className={cn(
|
||||||
|
'rounded p-0.5 hover:bg-accent',
|
||||||
|
caseSensitive && 'bg-accent text-accent-foreground'
|
||||||
|
)}
|
||||||
|
onClick={() => {
|
||||||
|
setCaseSensitive((v) => {
|
||||||
|
const next = !v;
|
||||||
|
const view = getActiveView();
|
||||||
|
if (view) {
|
||||||
|
const query = getSearchQuery(view.state);
|
||||||
|
if (query) {
|
||||||
|
setSearchQuery(view, {
|
||||||
|
search: query.search,
|
||||||
|
caseSensitive: next,
|
||||||
|
regexp: useRegex,
|
||||||
|
replace: query.replace,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
aria-label="Case sensitive"
|
||||||
|
data-testid="find-case-sensitive"
|
||||||
|
>
|
||||||
|
<CaseSensitive className="h-3.5 w-3.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className={cn(
|
||||||
|
'rounded p-0.5 hover:bg-accent',
|
||||||
|
useRegex && 'bg-accent text-accent-foreground'
|
||||||
|
)}
|
||||||
|
onClick={() => {
|
||||||
|
setUseRegex((v) => {
|
||||||
|
const next = !v;
|
||||||
|
const view = getActiveView();
|
||||||
|
if (view) {
|
||||||
|
const query = getSearchQuery(view.state);
|
||||||
|
if (query) {
|
||||||
|
setSearchQuery(view, {
|
||||||
|
search: query.search,
|
||||||
|
caseSensitive,
|
||||||
|
regexp: next,
|
||||||
|
replace: query.replace,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
aria-label="Use regex"
|
||||||
|
data-testid="find-regex"
|
||||||
|
>
|
||||||
|
<Regex className="h-3.5 w-3.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{matchInfo && matchInfo.total > 0 && (
|
||||||
|
<span className="min-w-[4rem] text-center text-[10px] text-muted-foreground">
|
||||||
|
{matchInfo.current}/{matchInfo.total}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Input
|
||||||
|
ref={replaceRef}
|
||||||
|
placeholder="Replace..."
|
||||||
|
className="h-7 w-48 text-xs"
|
||||||
|
onChange={handleReplaceChange}
|
||||||
|
onKeyDown={(e) => {
|
||||||
|
if (e.key === 'Enter') handleReplace();
|
||||||
|
if (e.key === 'Escape') handleClose();
|
||||||
|
if (e.key === 'Tab' && e.shiftKey) {
|
||||||
|
e.preventDefault();
|
||||||
|
searchRef.current?.focus();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
data-testid="replace-input"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Button size="sm" variant="ghost" onClick={handleFindPrev} aria-label="Find previous">
|
||||||
|
<ChevronUp className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" variant="ghost" onClick={handleFindNext} aria-label="Find next">
|
||||||
|
<ChevronDown className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" variant="ghost" onClick={handleReplace} aria-label="Replace">
|
||||||
|
<Replace className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" variant="ghost" onClick={handleReplaceAll} aria-label="Replace all">
|
||||||
|
<ReplaceAll className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" variant="ghost" onClick={handleClose} aria-label="Close">
|
||||||
|
<X className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,7 +10,10 @@ import { useAppStore } from '@/stores/app-store';
|
|||||||
import { ResizablePanelGroup, ResizablePanel, ResizableHandle } from '@/components/ui/resizable';
|
import { ResizablePanelGroup, ResizablePanel, ResizableHandle } from '@/components/ui/resizable';
|
||||||
import { useFileShortcuts } from '@/hooks/use-file-shortcuts';
|
import { useFileShortcuts } from '@/hooks/use-file-shortcuts';
|
||||||
import { useRestoreLastFolder } from '@/hooks/use-restore-last-folder';
|
import { useRestoreLastFolder } from '@/hooks/use-restore-last-folder';
|
||||||
import { useRegisterMenuCommands, useBridgeNativeMenu } from '@/lib/commands/register-menu-commands';
|
import {
|
||||||
|
useRegisterMenuCommands,
|
||||||
|
useBridgeNativeMenu,
|
||||||
|
} from '@/lib/commands/register-menu-commands';
|
||||||
import { useZenMode } from '@/hooks/use-zen-mode';
|
import { useZenMode } from '@/hooks/use-zen-mode';
|
||||||
|
|
||||||
export function AppShell() {
|
export function AppShell() {
|
||||||
@@ -27,7 +30,9 @@ export function AppShell() {
|
|||||||
<main className="h-screen w-screen overflow-hidden bg-background">
|
<main className="h-screen w-screen overflow-hidden bg-background">
|
||||||
<ResizablePanelGroup
|
<ResizablePanelGroup
|
||||||
direction="horizontal"
|
direction="horizontal"
|
||||||
onLayoutChange={(sizes) => setPaneSizes({ sidebar: 0, editor: sizes[0], preview: sizes[1] })}
|
onLayoutChange={(sizes) =>
|
||||||
|
setPaneSizes({ sidebar: 0, editor: sizes[0], preview: sizes[1] })
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<ResizablePanel defaultSize={previewVisible ? 50 : 100} minSize={20}>
|
<ResizablePanel defaultSize={previewVisible ? 50 : 100} minSize={20}>
|
||||||
<section className="h-full bg-background">
|
<section className="h-full bg-background">
|
||||||
@@ -58,7 +63,9 @@ export function AppShell() {
|
|||||||
<main className="flex-1 overflow-hidden">
|
<main className="flex-1 overflow-hidden">
|
||||||
<ResizablePanelGroup
|
<ResizablePanelGroup
|
||||||
direction="horizontal"
|
direction="horizontal"
|
||||||
onLayoutChange={(sizes) => setPaneSizes({ sidebar: sizes[0], editor: sizes[1], preview: sizes[2] })}
|
onLayoutChange={(sizes) =>
|
||||||
|
setPaneSizes({ sidebar: sizes[0], editor: sizes[1], preview: sizes[2] })
|
||||||
|
}
|
||||||
>
|
>
|
||||||
{sidebarVisible && (
|
{sidebarVisible && (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -1,22 +1,15 @@
|
|||||||
import { useFileStore } from '@/stores/file-store';
|
import { useFileStore } from '@/stores/file-store';
|
||||||
import { useEditorStore } from '@/stores/editor-store';
|
import { useEditorStore } from '@/stores/editor-store';
|
||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
|
import { useCommandStore } from '@/stores/command-store';
|
||||||
function extractHeadings(content: string): { level: number; text: string }[] {
|
import { extractHeadings } from '@/lib/headings';
|
||||||
const lines = content.split('\n');
|
|
||||||
const headings: { level: number; text: string }[] = [];
|
|
||||||
for (const line of lines) {
|
|
||||||
const m = line.match(/^(#{1,6})\s+(.+)$/);
|
|
||||||
if (m) headings.push({ level: m[1].length, text: m[2].trim() });
|
|
||||||
}
|
|
||||||
return headings;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function Breadcrumb() {
|
export function Breadcrumb() {
|
||||||
const activeTabId = useFileStore((s) => s.activeTabId);
|
const activeTabId = useFileStore((s) => s.activeTabId);
|
||||||
const openTabs = useFileStore((s) => s.openTabs);
|
const openTabs = useFileStore((s) => s.openTabs);
|
||||||
const buffer = useEditorStore((s) => (activeTabId ? s.buffers.get(activeTabId) : undefined));
|
const buffer = useEditorStore((s) => (activeTabId ? s.buffers.get(activeTabId) : undefined));
|
||||||
const showSymbols = useSettingsStore((s) => s.breadcrumbSymbols);
|
const showSymbols = useSettingsStore((s) => s.breadcrumbSymbols);
|
||||||
|
const dispatch = useCommandStore((s) => s.dispatch);
|
||||||
|
|
||||||
const tab = activeTabId ? openTabs.find((t) => t.id === activeTabId) : null;
|
const tab = activeTabId ? openTabs.find((t) => t.id === activeTabId) : null;
|
||||||
const headings = showSymbols && buffer ? extractHeadings(buffer.content).slice(0, 3) : [];
|
const headings = showSymbols && buffer ? extractHeadings(buffer.content).slice(0, 3) : [];
|
||||||
@@ -26,12 +19,18 @@ export function Breadcrumb() {
|
|||||||
aria-label="File path"
|
aria-label="File path"
|
||||||
className="flex h-7 items-center gap-1 border-b border-border bg-card/10 px-3 text-xs text-muted-foreground"
|
className="flex h-7 items-center gap-1 border-b border-border bg-card/10 px-3 text-xs text-muted-foreground"
|
||||||
>
|
>
|
||||||
<span>{tab ? tab.title : 'No file selected'}</span>
|
<span className="truncate">{tab ? tab.title : 'No file selected'}</span>
|
||||||
{headings.map((h, i) => (
|
{headings.map((h, i) => (
|
||||||
<span key={i} className="flex items-center gap-1">
|
<button
|
||||||
|
key={i}
|
||||||
|
onClick={() => dispatch('editor.gotoHeading', h.line)}
|
||||||
|
className="flex items-center gap-1 hover:text-foreground"
|
||||||
|
>
|
||||||
<span aria-hidden="true">›</span>
|
<span aria-hidden="true">›</span>
|
||||||
<span className="truncate">{'#'.repeat(h.level)} {h.text}</span>
|
<span className="truncate">
|
||||||
|
{'#'.repeat(h.level)} {h.text}
|
||||||
</span>
|
</span>
|
||||||
|
</button>
|
||||||
))}
|
))}
|
||||||
</nav>
|
</nav>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ export function StatusBar() {
|
|||||||
<span>UTF-8</span>
|
<span>UTF-8</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<span>Ln {cursor.line}, Col {cursor.column}</span>
|
<span>
|
||||||
|
Ln {cursor.line}, Col {cursor.column}
|
||||||
|
</span>
|
||||||
<span>Markdown</span>
|
<span>Markdown</span>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -7,11 +7,7 @@ import {
|
|||||||
closestCenter,
|
closestCenter,
|
||||||
type DragEndEvent,
|
type DragEndEvent,
|
||||||
} from '@dnd-kit/core';
|
} from '@dnd-kit/core';
|
||||||
import {
|
import { SortableContext, horizontalListSortingStrategy, useSortable } from '@dnd-kit/sortable';
|
||||||
SortableContext,
|
|
||||||
horizontalListSortingStrategy,
|
|
||||||
useSortable,
|
|
||||||
} from '@dnd-kit/sortable';
|
|
||||||
import { CSS } from '@dnd-kit/utilities';
|
import { CSS } from '@dnd-kit/utilities';
|
||||||
import { useFileStore, type OpenTab } from '@/stores/file-store';
|
import { useFileStore, type OpenTab } from '@/stores/file-store';
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
|
|||||||
@@ -1,4 +1,16 @@
|
|||||||
import { Bold, Italic, List, ListOrdered, Code, Link as LinkIcon, PanelLeft, PanelRight, Save, FolderOpen, FileText } from 'lucide-react';
|
import {
|
||||||
|
Bold,
|
||||||
|
Italic,
|
||||||
|
List,
|
||||||
|
ListOrdered,
|
||||||
|
Code,
|
||||||
|
Link as LinkIcon,
|
||||||
|
PanelLeft,
|
||||||
|
PanelRight,
|
||||||
|
Save,
|
||||||
|
FolderOpen,
|
||||||
|
FileText,
|
||||||
|
} from 'lucide-react';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { useCommandStore } from '@/stores/command-store';
|
import { useCommandStore } from '@/stores/command-store';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
@@ -66,12 +78,60 @@ export function Toolbar() {
|
|||||||
|
|
||||||
<div className="mx-1 h-5 w-px bg-border" aria-hidden="true" />
|
<div className="mx-1 h-5 w-px bg-border" aria-hidden="true" />
|
||||||
|
|
||||||
<Button variant="ghost" size="icon" aria-label="Bold" disabled><Bold className="h-4 w-4" /></Button>
|
<Button
|
||||||
<Button variant="ghost" size="icon" aria-label="Italic" disabled><Italic className="h-4 w-4" /></Button>
|
variant="ghost"
|
||||||
<Button variant="ghost" size="icon" aria-label="Unordered list" disabled><List className="h-4 w-4" /></Button>
|
size="icon"
|
||||||
<Button variant="ghost" size="icon" aria-label="Ordered list" disabled><ListOrdered className="h-4 w-4" /></Button>
|
aria-label="Bold"
|
||||||
<Button variant="ghost" size="icon" aria-label="Code" disabled><Code className="h-4 w-4" /></Button>
|
data-testid="toolbar-bold"
|
||||||
<Button variant="ghost" size="icon" aria-label="Link" disabled><LinkIcon className="h-4 w-4" /></Button>
|
onClick={() => dispatch('editor.bold')}
|
||||||
|
>
|
||||||
|
<Bold className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Italic"
|
||||||
|
data-testid="toolbar-italic"
|
||||||
|
onClick={() => dispatch('editor.italic')}
|
||||||
|
>
|
||||||
|
<Italic className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Unordered list"
|
||||||
|
data-testid="toolbar-list-unordered"
|
||||||
|
onClick={() => dispatch('editor.list.unordered')}
|
||||||
|
>
|
||||||
|
<List className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Ordered list"
|
||||||
|
data-testid="toolbar-list-ordered"
|
||||||
|
onClick={() => dispatch('editor.list.ordered')}
|
||||||
|
>
|
||||||
|
<ListOrdered className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Inline code"
|
||||||
|
data-testid="toolbar-code"
|
||||||
|
onClick={() => dispatch('editor.code')}
|
||||||
|
>
|
||||||
|
<Code className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
aria-label="Insert link"
|
||||||
|
data-testid="toolbar-link"
|
||||||
|
onClick={() => dispatch('editor.link')}
|
||||||
|
>
|
||||||
|
<LinkIcon className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { ipc } from '@/lib/ipc';
|
import { ipc } from '@/lib/ipc';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
|||||||
@@ -18,7 +18,10 @@ export function AboutSettings() {
|
|||||||
<a
|
<a
|
||||||
href="https://github.com/amitwh/markdown-converter"
|
href="https://github.com/amitwh/markdown-converter"
|
||||||
className="text-brand hover:underline"
|
className="text-brand hover:underline"
|
||||||
onClick={(e) => { e.preventDefault(); ipc.app.openExternal('https://github.com/amitwh/markdown-converter'); }}
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
ipc.app.openExternal('https://github.com/amitwh/markdown-converter');
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
GitHub repository
|
GitHub repository
|
||||||
</a>
|
</a>
|
||||||
@@ -27,7 +30,10 @@ export function AboutSettings() {
|
|||||||
<a
|
<a
|
||||||
href="https://concreteinfo.co.in"
|
href="https://concreteinfo.co.in"
|
||||||
className="text-brand hover:underline"
|
className="text-brand hover:underline"
|
||||||
onClick={(e) => { e.preventDefault(); ipc.app.openExternal('https://concreteinfo.co.in'); }}
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
ipc.app.openExternal('https://concreteinfo.co.in');
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
ConcreteInfo
|
ConcreteInfo
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -1,8 +1,21 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
import { Textarea } from '@/components/ui/textarea';
|
import { Textarea } from '@/components/ui/textarea';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { toast } from '@/lib/toast';
|
import { toast } from '@/lib/toast';
|
||||||
@@ -17,9 +30,15 @@ export function AsciiGeneratorDialog() {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let cancelled = false;
|
let cancelled = false;
|
||||||
figletText(text || ' ', font)
|
figletText(text || ' ', font)
|
||||||
.then((result) => { if (!cancelled) setOutput(result); })
|
.then((result) => {
|
||||||
.catch(() => { if (!cancelled) setOutput('(render error)'); });
|
if (!cancelled) setOutput(result);
|
||||||
return () => { cancelled = true; };
|
})
|
||||||
|
.catch(() => {
|
||||||
|
if (!cancelled) setOutput('(render error)');
|
||||||
|
});
|
||||||
|
return () => {
|
||||||
|
cancelled = true;
|
||||||
|
};
|
||||||
}, [text, font]);
|
}, [text, font]);
|
||||||
|
|
||||||
const handleCopy = async () => {
|
const handleCopy = async () => {
|
||||||
@@ -52,23 +71,32 @@ export function AsciiGeneratorDialog() {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="ascii-font">Font</Label>
|
<Label htmlFor="ascii-font">Font</Label>
|
||||||
<Select value={font} onValueChange={(v) => setFont(v as FigletFont)}>
|
<Select value={font} onValueChange={(v) => setFont(v as FigletFont)}>
|
||||||
<SelectTrigger id="ascii-font" aria-label="Font"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="ascii-font" aria-label="Font">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{FIGLET_FONTS.map((f) => (
|
{FIGLET_FONTS.map((f) => (
|
||||||
<SelectItem key={f} value={f}>{f}</SelectItem>
|
<SelectItem key={f} value={f}>
|
||||||
|
{f}
|
||||||
|
</SelectItem>
|
||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Label>Output</Label>
|
<Label>Output</Label>
|
||||||
<pre className="overflow-auto rounded border border-border bg-card/30 p-3 text-xs" data-testid="ascii-output">
|
<pre
|
||||||
|
className="overflow-auto rounded border border-border bg-card/30 p-3 text-xs"
|
||||||
|
data-testid="ascii-output"
|
||||||
|
>
|
||||||
{output}
|
{output}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<Button variant="ghost" onClick={closeModal}>Close</Button>
|
<Button variant="ghost" onClick={closeModal}>
|
||||||
|
Close
|
||||||
|
</Button>
|
||||||
<Button onClick={handleCopy}>Copy</Button>
|
<Button onClick={handleCopy}>Copy</Button>
|
||||||
</DialogFooter>
|
</DialogFooter>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
|
|||||||
@@ -0,0 +1,294 @@
|
|||||||
|
import { useState, useEffect, useCallback } from 'react';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { Switch } from '@/components/ui/switch';
|
||||||
|
import { Label } from '@/components/ui/label';
|
||||||
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { ExportDialogFooter } from './ExportDialogFooter';
|
||||||
|
import { toast } from '@/lib/toast';
|
||||||
|
|
||||||
|
type ToolKey = 'imagemagick' | 'ffmpeg';
|
||||||
|
|
||||||
|
interface FormatOption {
|
||||||
|
value: string;
|
||||||
|
label: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const converterFormats: Record<ToolKey, { input: FormatOption[]; output: FormatOption[] }> = {
|
||||||
|
imagemagick: {
|
||||||
|
input: [
|
||||||
|
{ value: 'png', label: 'PNG' },
|
||||||
|
{ value: 'jpg', label: 'JPEG' },
|
||||||
|
{ value: 'webp', label: 'WebP' },
|
||||||
|
{ value: 'gif', label: 'GIF' },
|
||||||
|
{ value: 'bmp', label: 'BMP' },
|
||||||
|
{ value: 'tiff', label: 'TIFF' },
|
||||||
|
{ value: 'svg', label: 'SVG' },
|
||||||
|
{ value: 'ico', label: 'ICO' },
|
||||||
|
],
|
||||||
|
output: [
|
||||||
|
{ value: 'png', label: 'PNG' },
|
||||||
|
{ value: 'jpg', label: 'JPEG' },
|
||||||
|
{ value: 'webp', label: 'WebP' },
|
||||||
|
{ value: 'gif', label: 'GIF' },
|
||||||
|
{ value: 'pdf', label: 'PDF' },
|
||||||
|
{ value: 'bmp', label: 'BMP' },
|
||||||
|
{ value: 'ico', label: 'ICO' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
ffmpeg: {
|
||||||
|
input: [
|
||||||
|
{ value: 'mp4', label: 'MP4' },
|
||||||
|
{ value: 'mp3', label: 'MP3' },
|
||||||
|
{ value: 'wav', label: 'WAV' },
|
||||||
|
{ value: 'avi', label: 'AVI' },
|
||||||
|
{ value: 'mkv', label: 'MKV' },
|
||||||
|
{ value: 'flac', label: 'FLAC' },
|
||||||
|
{ value: 'ogg', label: 'OGG' },
|
||||||
|
{ value: 'mov', label: 'MOV' },
|
||||||
|
],
|
||||||
|
output: [
|
||||||
|
{ value: 'mp4', label: 'MP4' },
|
||||||
|
{ value: 'mp3', label: 'MP3' },
|
||||||
|
{ value: 'wav', label: 'WAV' },
|
||||||
|
{ value: 'avi', label: 'AVI' },
|
||||||
|
{ value: 'mkv', label: 'MKV' },
|
||||||
|
{ value: 'flac', label: 'FLAC' },
|
||||||
|
{ value: 'ogg', label: 'OGG' },
|
||||||
|
{ value: 'gif', label: 'GIF' },
|
||||||
|
{ value: 'webm', label: 'WebM' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const toolLabels: Record<ToolKey, string> = {
|
||||||
|
imagemagick: 'ImageMagick',
|
||||||
|
ffmpeg: 'FFmpeg',
|
||||||
|
};
|
||||||
|
|
||||||
|
export function BatchMediaConverterDialog() {
|
||||||
|
const closeModal = useAppStore((s) => s.closeModal);
|
||||||
|
const [tool, setTool] = useState<ToolKey>('imagemagick');
|
||||||
|
const [fromFormat, setFromFormat] = useState('');
|
||||||
|
const [toFormat, setToFormat] = useState('');
|
||||||
|
const [inputFolder, setInputFolder] = useState('');
|
||||||
|
const [outputFolder, setOutputFolder] = useState('');
|
||||||
|
const [includeSubfolders, setIncludeSubfolders] = useState(false);
|
||||||
|
const [converting, setConverting] = useState(false);
|
||||||
|
const [progress, setProgress] = useState(0);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const inputFormats = converterFormats[tool].input;
|
||||||
|
const outputFormats = converterFormats[tool].output;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setFromFormat('');
|
||||||
|
setToFormat('');
|
||||||
|
}, [tool]);
|
||||||
|
|
||||||
|
const handleBrowseInputFolder = useCallback(async () => {
|
||||||
|
const result = await window.electronAPI?.file?.pickFolder?.();
|
||||||
|
if (typeof result === 'string') {
|
||||||
|
setInputFolder(result);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleBrowseOutputFolder = useCallback(async () => {
|
||||||
|
const result = await window.electronAPI?.file?.pickFolder?.();
|
||||||
|
if (typeof result === 'string') {
|
||||||
|
setOutputFolder(result);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (typeof window === 'undefined') return;
|
||||||
|
const handlers: Array<() => void> = [];
|
||||||
|
|
||||||
|
const batchProgressHandler = (_event: unknown, data: { current?: number; total?: number }) => {
|
||||||
|
if (typeof data?.current === 'number' && typeof data?.total === 'number') {
|
||||||
|
setProgress(Math.round((data.current / data.total) * 100));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const completeHandler = (_event: unknown, data: { outputPath?: string; error?: string }) => {
|
||||||
|
setConverting(false);
|
||||||
|
setProgress(100);
|
||||||
|
if (data?.error) {
|
||||||
|
setError(data.error);
|
||||||
|
toast.error(`Batch conversion failed: ${data.error}`);
|
||||||
|
} else {
|
||||||
|
toast.success('Batch conversion complete');
|
||||||
|
closeModal();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const unsubBatch =
|
||||||
|
window.electronAPI?.on?.('batch-progress', batchProgressHandler) ?? (() => {});
|
||||||
|
const unsubComplete =
|
||||||
|
window.electronAPI?.on?.('conversion-complete', completeHandler) ?? (() => {});
|
||||||
|
handlers.push(unsubBatch, unsubComplete);
|
||||||
|
|
||||||
|
return () => handlers.forEach((h) => h());
|
||||||
|
}, [closeModal]);
|
||||||
|
|
||||||
|
const handleConvert = async () => {
|
||||||
|
if (!fromFormat || !toFormat) {
|
||||||
|
setError('Select both source and target formats');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!inputFolder || !outputFolder) {
|
||||||
|
setError('Select both input and output folders');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setConverting(true);
|
||||||
|
setProgress(0);
|
||||||
|
setError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
await window.electronAPI?.converter?.convertBatch?.({
|
||||||
|
tool,
|
||||||
|
fromFormat,
|
||||||
|
toFormat,
|
||||||
|
inputFolder,
|
||||||
|
outputFolder,
|
||||||
|
includeSubfolders,
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
setError(msg);
|
||||||
|
toast.error(`Batch conversion failed: ${msg}`);
|
||||||
|
setConverting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
|
<DialogContent className="max-w-lg">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Batch Media Converter</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Convert multiple media files between formats using ImageMagick or FFmpeg
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="space-y-3 text-sm">
|
||||||
|
<Tabs value={tool} onValueChange={(v) => setTool(v as ToolKey)}>
|
||||||
|
<TabsList>
|
||||||
|
<TabsTrigger value="imagemagick">ImageMagick</TabsTrigger>
|
||||||
|
<TabsTrigger value="ffmpeg">FFmpeg</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
<TabsContent value={tool} className="mt-3 space-y-3">
|
||||||
|
<div className="grid grid-cols-2 gap-3">
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="batch-from">From</Label>
|
||||||
|
<Select value={fromFormat} onValueChange={setFromFormat}>
|
||||||
|
<SelectTrigger id="batch-from" aria-label="Source format">
|
||||||
|
<SelectValue placeholder="Source format" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{inputFormats.map((f) => (
|
||||||
|
<SelectItem key={f.value} value={f.value}>
|
||||||
|
{f.label}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="batch-to">To</Label>
|
||||||
|
<Select value={toFormat} onValueChange={setToFormat}>
|
||||||
|
<SelectTrigger id="batch-to" aria-label="Target format">
|
||||||
|
<SelectValue placeholder="Target format" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{outputFormats.map((f) => (
|
||||||
|
<SelectItem key={f.value} value={f.value}>
|
||||||
|
{f.label}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Input
|
||||||
|
value={inputFolder}
|
||||||
|
onChange={(e) => setInputFolder(e.target.value)}
|
||||||
|
placeholder="Input folder"
|
||||||
|
className="flex-1"
|
||||||
|
aria-label="Input folder"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" onClick={handleBrowseInputFolder}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Input
|
||||||
|
value={outputFolder}
|
||||||
|
onChange={(e) => setOutputFolder(e.target.value)}
|
||||||
|
placeholder="Output folder"
|
||||||
|
className="flex-1"
|
||||||
|
aria-label="Output folder"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" onClick={handleBrowseOutputFolder}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch
|
||||||
|
checked={includeSubfolders}
|
||||||
|
onCheckedChange={setIncludeSubfolders}
|
||||||
|
id="batch-subfolders"
|
||||||
|
/>
|
||||||
|
<Label htmlFor="batch-subfolders">Include subdirectories</Label>
|
||||||
|
</div>
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
{converting && (
|
||||||
|
<div className="space-y-1">
|
||||||
|
<div className="h-2 w-full overflow-hidden rounded-full bg-secondary">
|
||||||
|
<div
|
||||||
|
className="h-full rounded-full bg-primary transition-all duration-300"
|
||||||
|
style={{ width: `${Math.max(2, progress)}%` }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-muted-foreground text-right">{progress}%</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
|
{error}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleConvert}
|
||||||
|
submitting={converting}
|
||||||
|
submitLabel="Convert"
|
||||||
|
/>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
import { useState, useEffect, useRef, useMemo, useCallback } from 'react';
|
||||||
|
import { useCommandStore } from '@/stores/command-store';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
|
|
||||||
|
interface CommandItem {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
shortcut: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const MAX_RESULTS = 8;
|
||||||
|
|
||||||
|
export function CommandPalette() {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [query, setQuery] = useState('');
|
||||||
|
const [selectedIndex, setSelectedIndex] = useState(0);
|
||||||
|
const inputRef = useRef<HTMLInputElement>(null);
|
||||||
|
const listRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
const commands = useMemo<CommandItem[]>(() => {
|
||||||
|
const handlers = useCommandStore.getState().handlers;
|
||||||
|
return Object.keys(handlers).map((id) => ({
|
||||||
|
id,
|
||||||
|
label: id
|
||||||
|
.split('.')
|
||||||
|
.map((part) => part.charAt(0).toUpperCase() + part.slice(1))
|
||||||
|
.join(' → '),
|
||||||
|
shortcut: null,
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const filtered = useMemo(() => {
|
||||||
|
if (!query.trim()) return commands.slice(0, MAX_RESULTS);
|
||||||
|
const lower = query.toLowerCase();
|
||||||
|
const scored = commands
|
||||||
|
.map((cmd) => {
|
||||||
|
const labelLower = cmd.label.toLowerCase();
|
||||||
|
const idLower = cmd.id.toLowerCase();
|
||||||
|
const labelIdx = labelLower.indexOf(lower);
|
||||||
|
const idIdx = idLower.indexOf(lower);
|
||||||
|
let score = 100;
|
||||||
|
if (labelIdx === 0) score = 10;
|
||||||
|
else if (labelIdx >= 0) score = 20;
|
||||||
|
else if (idIdx === 0) score = 15;
|
||||||
|
else if (idIdx >= 0) score = 25;
|
||||||
|
else score = 100;
|
||||||
|
return { cmd, score };
|
||||||
|
})
|
||||||
|
.filter((item) => item.score < 100)
|
||||||
|
.sort((a, b) => a.score - b.score)
|
||||||
|
.map((item) => item.cmd);
|
||||||
|
return scored.slice(0, MAX_RESULTS);
|
||||||
|
}, [commands, query]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
setSelectedIndex(0);
|
||||||
|
setQuery('');
|
||||||
|
requestAnimationFrame(() => inputRef.current?.focus());
|
||||||
|
}
|
||||||
|
}, [open]);
|
||||||
|
|
||||||
|
const execute = useCallback((id: string) => {
|
||||||
|
useCommandStore.getState().dispatch(id);
|
||||||
|
setOpen(false);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback(
|
||||||
|
(e: React.KeyboardEvent) => {
|
||||||
|
if (e.key === 'ArrowDown') {
|
||||||
|
e.preventDefault();
|
||||||
|
setSelectedIndex((i) => Math.min(i + 1, filtered.length - 1));
|
||||||
|
} else if (e.key === 'ArrowUp') {
|
||||||
|
e.preventDefault();
|
||||||
|
setSelectedIndex((i) => Math.max(i - 1, 0));
|
||||||
|
} else if (e.key === 'Enter') {
|
||||||
|
e.preventDefault();
|
||||||
|
const cmd = filtered[selectedIndex];
|
||||||
|
if (cmd) execute(cmd.id);
|
||||||
|
} else if (e.key === 'Escape') {
|
||||||
|
e.preventDefault();
|
||||||
|
setOpen(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[filtered, selectedIndex, execute]
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handle = (e: KeyboardEvent) => {
|
||||||
|
if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.key.toLowerCase() === 'p') {
|
||||||
|
e.preventDefault();
|
||||||
|
setOpen((o) => !o);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
window.addEventListener('keydown', handle);
|
||||||
|
return () => window.removeEventListener('keydown', handle);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const el = listRef.current?.children[selectedIndex] as HTMLElement | undefined;
|
||||||
|
el?.scrollIntoView({ block: 'nearest' });
|
||||||
|
}, [selectedIndex]);
|
||||||
|
|
||||||
|
if (!open) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="fixed inset-0 z-[100] flex items-start justify-center pt-[15vh]">
|
||||||
|
<div className="fixed inset-0 bg-black/50 backdrop-blur-sm" onClick={() => setOpen(false)} />
|
||||||
|
<div className="relative z-10 w-full max-w-lg rounded-lg border bg-background shadow-2xl">
|
||||||
|
<div className="border-b px-3">
|
||||||
|
<input
|
||||||
|
ref={inputRef}
|
||||||
|
value={query}
|
||||||
|
onChange={(e) => setQuery(e.target.value)}
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
placeholder="Type a command..."
|
||||||
|
className="h-12 w-full bg-transparent text-sm outline-none placeholder:text-muted-foreground"
|
||||||
|
aria-label="Search commands"
|
||||||
|
role="combobox"
|
||||||
|
aria-expanded="true"
|
||||||
|
aria-activedescendant={
|
||||||
|
filtered[selectedIndex] ? `cmd-${filtered[selectedIndex].id}` : undefined
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div ref={listRef} className="max-h-64 overflow-y-auto p-1" role="listbox">
|
||||||
|
{filtered.length === 0 && (
|
||||||
|
<div className="px-3 py-6 text-center text-sm text-muted-foreground">
|
||||||
|
No matching commands
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{filtered.map((cmd, idx) => (
|
||||||
|
<button
|
||||||
|
key={cmd.id}
|
||||||
|
id={`cmd-${cmd.id}`}
|
||||||
|
role="option"
|
||||||
|
aria-selected={idx === selectedIndex}
|
||||||
|
className={cn(
|
||||||
|
'flex w-full items-center justify-between rounded-md px-3 py-2 text-sm',
|
||||||
|
idx === selectedIndex ? 'bg-accent text-accent-foreground' : 'hover:bg-accent/50'
|
||||||
|
)}
|
||||||
|
onClick={() => execute(cmd.id)}
|
||||||
|
onMouseEnter={() => setSelectedIndex(idx)}
|
||||||
|
>
|
||||||
|
<span>{cmd.label}</span>
|
||||||
|
{cmd.shortcut && (
|
||||||
|
<kbd className="ml-4 rounded bg-muted px-1.5 py-0.5 text-[10px] font-mono text-muted-foreground">
|
||||||
|
{cmd.shortcut}
|
||||||
|
</kbd>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,10 +1,25 @@
|
|||||||
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { useAppStore, type ConfirmProps } from '@/stores/app-store';
|
import { useAppStore, type ConfirmProps } from '@/stores/app-store';
|
||||||
|
|
||||||
export function ConfirmDialog(props: ConfirmProps) {
|
export function ConfirmDialog(props: ConfirmProps) {
|
||||||
const closeModal = useAppStore((s) => s.closeModal);
|
const closeModal = useAppStore((s) => s.closeModal);
|
||||||
const { title, body, confirmLabel = 'Confirm', cancelLabel = 'Cancel', destructive, onConfirm, onCancel } = props;
|
const {
|
||||||
|
title,
|
||||||
|
body,
|
||||||
|
confirmLabel = 'Confirm',
|
||||||
|
cancelLabel = 'Cancel',
|
||||||
|
destructive,
|
||||||
|
onConfirm,
|
||||||
|
onCancel,
|
||||||
|
} = props;
|
||||||
|
|
||||||
const handleConfirm = async () => {
|
const handleConfirm = async () => {
|
||||||
await onConfirm();
|
await onConfirm();
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
import { useEffect, useState } from 'react';
|
||||||
|
import { ipc } from '@/lib/ipc';
|
||||||
|
|
||||||
|
interface Dump {
|
||||||
|
filename: string;
|
||||||
|
kind: string;
|
||||||
|
message?: string;
|
||||||
|
timestamp: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CrashReportModal({ onClose }: { onClose: () => void }) {
|
||||||
|
const [dumps, setDumps] = useState<Dump[]>([]);
|
||||||
|
|
||||||
|
const refresh = async () => {
|
||||||
|
const result = await ipc.crash.read();
|
||||||
|
if (!result.ok) {
|
||||||
|
setDumps([]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setDumps(Array.isArray(result.data) ? (result.data as Dump[]) : []);
|
||||||
|
};
|
||||||
|
useEffect(() => {
|
||||||
|
refresh();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
role="dialog"
|
||||||
|
aria-modal="true"
|
||||||
|
data-testid="crash-report-modal"
|
||||||
|
className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center"
|
||||||
|
>
|
||||||
|
<div className="bg-white dark:bg-neutral-900 rounded-lg p-6 w-[36rem] max-h-[80vh] overflow-y-auto shadow-xl">
|
||||||
|
<header className="flex items-center justify-between mb-4">
|
||||||
|
<h2 className="text-lg font-semibold">Crash reports</h2>
|
||||||
|
<button onClick={onClose} aria-label="Close">
|
||||||
|
×
|
||||||
|
</button>
|
||||||
|
</header>
|
||||||
|
<button
|
||||||
|
onClick={() => ipc.crash.openDir()}
|
||||||
|
className="mb-4 px-3 py-1 text-sm border rounded"
|
||||||
|
>
|
||||||
|
Open dump folder
|
||||||
|
</button>
|
||||||
|
{dumps.length === 0 ? (
|
||||||
|
<p data-testid="empty-state" className="text-neutral-500">
|
||||||
|
No crashes recorded — nice work!
|
||||||
|
</p>
|
||||||
|
) : (
|
||||||
|
<ul className="space-y-2">
|
||||||
|
{dumps.map((d) => (
|
||||||
|
<li
|
||||||
|
key={d.filename}
|
||||||
|
className="border rounded p-2 text-sm flex justify-between items-start gap-2"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<div className="font-mono text-xs text-neutral-500">{d.timestamp}</div>
|
||||||
|
<div>{d.message ?? '(no message)'}</div>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
onClick={async () => {
|
||||||
|
await ipc.crash.delete(d.filename);
|
||||||
|
refresh();
|
||||||
|
}}
|
||||||
|
className="text-red-600 text-xs"
|
||||||
|
>
|
||||||
|
Delete
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,7 +1,13 @@
|
|||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Slider } from '@/components/ui/slider';
|
import { Slider } from '@/components/ui/slider';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
import { Switch } from '@/components/ui/switch';
|
import { Switch } from '@/components/ui/switch';
|
||||||
|
|
||||||
export function EditorSettings() {
|
export function EditorSettings() {
|
||||||
@@ -11,12 +17,24 @@ export function EditorSettings() {
|
|||||||
<div className="space-y-5 text-sm">
|
<div className="space-y-5 text-sm">
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="editor-font-size">Font size: {fontSize}px</Label>
|
<Label htmlFor="editor-font-size">Font size: {fontSize}px</Label>
|
||||||
<Slider id="editor-font-size" min={10} max={24} step={1} value={[fontSize]} onValueChange={([v]) => setSetting('fontSize', v)} />
|
<Slider
|
||||||
|
id="editor-font-size"
|
||||||
|
min={10}
|
||||||
|
max={24}
|
||||||
|
step={1}
|
||||||
|
value={[fontSize]}
|
||||||
|
onValueChange={([v]) => setSetting('fontSize', v)}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="editor-tab-size">Tab size</Label>
|
<Label htmlFor="editor-tab-size">Tab size</Label>
|
||||||
<Select value={String(tabSize)} onValueChange={(v) => setSetting('tabSize', Number(v) as 2 | 4 | 8)}>
|
<Select
|
||||||
<SelectTrigger id="editor-tab-size" aria-label="Tab size"><SelectValue /></SelectTrigger>
|
value={String(tabSize)}
|
||||||
|
onValueChange={(v) => setSetting('tabSize', Number(v) as 2 | 4 | 8)}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="editor-tab-size" aria-label="Tab size">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="2">2 spaces</SelectItem>
|
<SelectItem value="2">2 spaces</SelectItem>
|
||||||
<SelectItem value="4">4 spaces</SelectItem>
|
<SelectItem value="4">4 spaces</SelectItem>
|
||||||
@@ -26,15 +44,27 @@ export function EditorSettings() {
|
|||||||
</div>
|
</div>
|
||||||
<label className="flex items-center justify-between">
|
<label className="flex items-center justify-between">
|
||||||
<span>Line numbers</span>
|
<span>Line numbers</span>
|
||||||
<Switch checked={lineNumbers} onCheckedChange={(c) => setSetting('lineNumbers', c)} aria-label="Line numbers" />
|
<Switch
|
||||||
|
checked={lineNumbers}
|
||||||
|
onCheckedChange={(c) => setSetting('lineNumbers', c)}
|
||||||
|
aria-label="Line numbers"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label className="flex items-center justify-between">
|
<label className="flex items-center justify-between">
|
||||||
<span>Word wrap</span>
|
<span>Word wrap</span>
|
||||||
<Switch checked={wordWrap} onCheckedChange={(c) => setSetting('wordWrap', c)} aria-label="Word wrap" />
|
<Switch
|
||||||
|
checked={wordWrap}
|
||||||
|
onCheckedChange={(c) => setSetting('wordWrap', c)}
|
||||||
|
aria-label="Word wrap"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label className="flex items-center justify-between">
|
<label className="flex items-center justify-between">
|
||||||
<span>Minimap</span>
|
<span>Minimap</span>
|
||||||
<Switch checked={minimap} onCheckedChange={(c) => setSetting('minimap', c)} aria-label="Minimap" />
|
<Switch
|
||||||
|
checked={minimap}
|
||||||
|
onCheckedChange={(c) => setSetting('minimap', c)}
|
||||||
|
aria-label="Minimap"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,7 +1,19 @@
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { ipc } from '@/lib/ipc';
|
import { ipc } from '@/lib/ipc';
|
||||||
import { toast } from '@/lib/toast';
|
import { toast } from '@/lib/toast';
|
||||||
@@ -46,7 +58,9 @@ export function ExportBatchDialog({ sourcePaths }: { sourcePaths: string[] }) {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="batch-format">Format</Label>
|
<Label htmlFor="batch-format">Format</Label>
|
||||||
<Select value={format} onValueChange={(v) => setFormat(v as any)}>
|
<Select value={format} onValueChange={(v) => setFormat(v as any)}>
|
||||||
<SelectTrigger id="batch-format" aria-label="Format"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="batch-format" aria-label="Format">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="pdf">PDF</SelectItem>
|
<SelectItem value="pdf">PDF</SelectItem>
|
||||||
<SelectItem value="docx">DOCX</SelectItem>
|
<SelectItem value="docx">DOCX</SelectItem>
|
||||||
@@ -58,24 +72,40 @@ export function ExportBatchDialog({ sourcePaths }: { sourcePaths: string[] }) {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="batch-concurrency">Concurrency</Label>
|
<Label htmlFor="batch-concurrency">Concurrency</Label>
|
||||||
<Select value={String(concurrency)} onValueChange={(v) => setConcurrency(Number(v))}>
|
<Select value={String(concurrency)} onValueChange={(v) => setConcurrency(Number(v))}>
|
||||||
<SelectTrigger id="batch-concurrency" aria-label="Concurrency"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="batch-concurrency" aria-label="Concurrency">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{[1, 2, 4, 8, 16].map((n) => (
|
{[1, 2, 4, 8, 16].map((n) => (
|
||||||
<SelectItem key={n} value={String(n)}>{n}</SelectItem>
|
<SelectItem key={n} value={String(n)}>
|
||||||
|
{n}
|
||||||
|
</SelectItem>
|
||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
<div className="max-h-40 overflow-auto rounded border border-border bg-card/20 p-2 text-xs">
|
<div className="max-h-40 overflow-auto rounded border border-border bg-card/20 p-2 text-xs">
|
||||||
{sourcePaths.map((p) => <div key={p} className="truncate">{p}</div>)}
|
{sourcePaths.map((p) => (
|
||||||
|
<div key={p} className="truncate">
|
||||||
|
{p}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
{error && (
|
{error && (
|
||||||
<div role="alert" className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
{error}
|
{error}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<ExportDialogFooter onCancel={closeModal} onSubmit={handleSubmit} submitting={submitting} submitLabel="Export" />
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
submitting={submitting}
|
||||||
|
submitLabel="Export"
|
||||||
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -9,7 +9,13 @@ interface Props {
|
|||||||
submitDisabled?: boolean;
|
submitDisabled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ExportDialogFooter({ onCancel, onSubmit, submitting, submitLabel, submitDisabled }: Props) {
|
export function ExportDialogFooter({
|
||||||
|
onCancel,
|
||||||
|
onSubmit,
|
||||||
|
submitting,
|
||||||
|
submitLabel,
|
||||||
|
submitDisabled,
|
||||||
|
}: Props) {
|
||||||
return (
|
return (
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<Button variant="ghost" onClick={onCancel} disabled={submitting}>
|
<Button variant="ghost" onClick={onCancel} disabled={submitting}>
|
||||||
|
|||||||
@@ -1,11 +1,26 @@
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Checkbox } from '@/components/ui/checkbox';
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Switch } from '@/components/ui/switch';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
import { useExportSource } from '@/hooks/use-export-source';
|
import { useExportSource } from '@/hooks/use-export-source';
|
||||||
|
import { generateDocx } from '@/lib/docx-export';
|
||||||
import { ipc } from '@/lib/ipc';
|
import { ipc } from '@/lib/ipc';
|
||||||
import { toast } from '@/lib/toast';
|
import { toast } from '@/lib/toast';
|
||||||
import { ExportDialogFooter } from './ExportDialogFooter';
|
import { ExportDialogFooter } from './ExportDialogFooter';
|
||||||
@@ -16,32 +31,62 @@ export function ExportDocxDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
const source = useExportSource();
|
const source = useExportSource();
|
||||||
const [template, setTemplate] = useState<'standard' | 'minimal' | 'modern'>(docxTemplate);
|
const [template, setTemplate] = useState<'standard' | 'minimal' | 'modern'>(docxTemplate);
|
||||||
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
||||||
|
const [referenceDoc, setReferenceDoc] = useState('');
|
||||||
|
const [toc, setToc] = useState(false);
|
||||||
|
const [tocDepth, setTocDepth] = useState(3);
|
||||||
|
const [numberSections, setNumberSections] = useState(false);
|
||||||
|
const [bibliography, setBibliography] = useState('');
|
||||||
const [submitting, setSubmitting] = useState(false);
|
const [submitting, setSubmitting] = useState(false);
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
if (!source) { setError('No file open.'); return; }
|
if (!source) {
|
||||||
|
setError('No file open.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
setSubmitting(true);
|
setSubmitting(true);
|
||||||
setError(null);
|
setError(null);
|
||||||
const result = await ipc.export.docx({
|
try {
|
||||||
inputPath: source.path,
|
const blob = await generateDocx({ source: source.source, title: source.title });
|
||||||
outputPath: source.path.replace(/\.md$/, '.docx'),
|
const saveResult = await ipc.app.showSaveDialog?.({
|
||||||
template,
|
title: 'Save as Word document',
|
||||||
renderTablesAsAscii: ascii,
|
defaultPath: source.path.replace(/\.md$/, '.docx'),
|
||||||
} as any);
|
});
|
||||||
if (!result.ok) {
|
if (!saveResult?.ok || !saveResult.data) {
|
||||||
toast.error(`Export failed: ${result.error.message}`);
|
|
||||||
setError(result.error.message);
|
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
} else {
|
return;
|
||||||
toast.success(`Exported ${source.title} to ${result.data?.outputPath ?? 'file'}`);
|
}
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
referenceDoc: referenceDoc || undefined,
|
||||||
|
toc,
|
||||||
|
tocDepth,
|
||||||
|
numberSections,
|
||||||
|
bibliography: bibliography || undefined,
|
||||||
|
};
|
||||||
|
|
||||||
|
await window.electronAPI?.export?.withOptions?.('docx', options);
|
||||||
|
|
||||||
|
const buffer = new Uint8Array(await blob.arrayBuffer());
|
||||||
|
const writeResult = await ipc.file.writeBuffer({ path: saveResult.data, buffer });
|
||||||
|
if (!writeResult.ok) {
|
||||||
|
setError(writeResult.error.message);
|
||||||
|
setSubmitting(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
toast.success(`Exported ${source.title} to ${saveResult.data}`);
|
||||||
closeModal();
|
closeModal();
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
toast.error(`Export failed: ${msg}`);
|
||||||
|
setError(msg);
|
||||||
|
setSubmitting(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
<DialogContent>
|
<DialogContent className="max-h-[85vh] overflow-y-auto">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Export to DOCX</DialogTitle>
|
<DialogTitle>Export to DOCX</DialogTitle>
|
||||||
<DialogDescription>{sourcePath}</DialogDescription>
|
<DialogDescription>{sourcePath}</DialogDescription>
|
||||||
@@ -50,7 +95,9 @@ export function ExportDocxDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="docx-template">Template</Label>
|
<Label htmlFor="docx-template">Template</Label>
|
||||||
<Select value={template} onValueChange={(v) => setTemplate(v as any)}>
|
<Select value={template} onValueChange={(v) => setTemplate(v as any)}>
|
||||||
<SelectTrigger id="docx-template" aria-label="Template"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="docx-template" aria-label="Template">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="standard">Standard</SelectItem>
|
<SelectItem value="standard">Standard</SelectItem>
|
||||||
<SelectItem value="minimal">Minimal</SelectItem>
|
<SelectItem value="minimal">Minimal</SelectItem>
|
||||||
@@ -58,20 +105,80 @@ export function ExportDocxDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
<p className="mt-1 text-xs text-muted-foreground">
|
<p className="mt-1 text-xs text-muted-foreground">
|
||||||
Bundled with the app. Standard is the default; Modern adds a colored cover page.
|
The renderer-side export produces the same document for all three template choices;
|
||||||
|
the option is preserved for future stylesheets.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={ascii} onCheckedChange={(c) => setAscii(!!c)} aria-label="ASCII tables" />
|
<Checkbox
|
||||||
|
checked={ascii}
|
||||||
|
onCheckedChange={(c) => setAscii(!!c)}
|
||||||
|
aria-label="ASCII tables"
|
||||||
|
/>
|
||||||
Render tables as ASCII
|
Render tables as ASCII
|
||||||
</label>
|
</label>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="docx-reference">Reference doc / template</Label>
|
||||||
|
<Input
|
||||||
|
id="docx-reference"
|
||||||
|
value={referenceDoc}
|
||||||
|
onChange={(e) => setReferenceDoc(e.target.value)}
|
||||||
|
placeholder="/path/to/reference.docx"
|
||||||
|
aria-label="Reference document path"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch checked={toc} onCheckedChange={setToc} id="docx-toc" />
|
||||||
|
<Label htmlFor="docx-toc">Table of Contents</Label>
|
||||||
|
</div>
|
||||||
|
{toc && (
|
||||||
|
<div className="pl-9">
|
||||||
|
<Label htmlFor="docx-toc-depth">TOC Depth</Label>
|
||||||
|
<Input
|
||||||
|
id="docx-toc-depth"
|
||||||
|
type="number"
|
||||||
|
min={1}
|
||||||
|
max={6}
|
||||||
|
value={tocDepth}
|
||||||
|
onChange={(e) => setTocDepth(Math.min(6, Math.max(1, Number(e.target.value))))}
|
||||||
|
className="w-20"
|
||||||
|
aria-label="TOC depth"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch
|
||||||
|
checked={numberSections}
|
||||||
|
onCheckedChange={setNumberSections}
|
||||||
|
id="docx-number-sections"
|
||||||
|
/>
|
||||||
|
<Label htmlFor="docx-number-sections">Number sections</Label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="docx-bibliography">Bibliography file</Label>
|
||||||
|
<Input
|
||||||
|
id="docx-bibliography"
|
||||||
|
value={bibliography}
|
||||||
|
onChange={(e) => setBibliography(e.target.value)}
|
||||||
|
placeholder="/path/to/references.bib"
|
||||||
|
aria-label="Bibliography file path"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
{error && (
|
{error && (
|
||||||
<div role="alert" className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
{error}
|
{error}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<ExportDialogFooter onCancel={closeModal} onSubmit={handleSubmit} submitting={submitting} submitLabel="Export" />
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
submitting={submitting}
|
||||||
|
submitLabel="Export"
|
||||||
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,11 +1,26 @@
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Checkbox } from '@/components/ui/checkbox';
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Switch } from '@/components/ui/switch';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
import { useExportSource } from '@/hooks/use-export-source';
|
import { useExportSource } from '@/hooks/use-export-source';
|
||||||
|
import { generateHtml } from '@/lib/html-export';
|
||||||
import { ipc } from '@/lib/ipc';
|
import { ipc } from '@/lib/ipc';
|
||||||
import { toast } from '@/lib/toast';
|
import { toast } from '@/lib/toast';
|
||||||
import { ExportDialogFooter } from './ExportDialogFooter';
|
import { ExportDialogFooter } from './ExportDialogFooter';
|
||||||
@@ -17,46 +32,89 @@ export function ExportHtmlDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
const [standalone, setStandalone] = useState(true);
|
const [standalone, setStandalone] = useState(true);
|
||||||
const [highlight, setHighlight] = useState(htmlHighlightStyle);
|
const [highlight, setHighlight] = useState(htmlHighlightStyle);
|
||||||
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
||||||
|
const [selfContained, setSelfContained] = useState(false);
|
||||||
|
const [toc, setToc] = useState(false);
|
||||||
|
const [tocDepth, setTocDepth] = useState(3);
|
||||||
|
const [numberSections, setNumberSections] = useState(false);
|
||||||
|
const [cssPath, setCssPath] = useState('');
|
||||||
const [submitting, setSubmitting] = useState(false);
|
const [submitting, setSubmitting] = useState(false);
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
if (!source) { setError('No file open.'); return; }
|
if (!source) {
|
||||||
|
setError('No file open.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
setSubmitting(true);
|
setSubmitting(true);
|
||||||
setError(null);
|
setError(null);
|
||||||
const result = await ipc.export.html({
|
try {
|
||||||
inputPath: source.path,
|
const html = generateHtml({
|
||||||
outputPath: source.path.replace(/\.md$/, '.html'),
|
source: source.source,
|
||||||
|
title: source.title,
|
||||||
standalone,
|
standalone,
|
||||||
highlightStyle: highlight,
|
highlightStyle: highlight,
|
||||||
renderTablesAsAscii: ascii,
|
renderTablesAsAscii: ascii,
|
||||||
} as any);
|
});
|
||||||
if (!result.ok) {
|
|
||||||
toast.error(`Export failed: ${result.error.message}`);
|
const options = {
|
||||||
setError(result.error.message);
|
standalone,
|
||||||
|
highlightStyle: highlight,
|
||||||
|
selfContained,
|
||||||
|
toc,
|
||||||
|
tocDepth,
|
||||||
|
numberSections,
|
||||||
|
css: cssPath || undefined,
|
||||||
|
};
|
||||||
|
|
||||||
|
await window.electronAPI?.export?.withOptions?.('html', options);
|
||||||
|
|
||||||
|
const saveResult = await ipc.app.showSaveDialog?.({
|
||||||
|
title: 'Save as HTML',
|
||||||
|
defaultPath: source.path.replace(/\.md$/, '.html'),
|
||||||
|
});
|
||||||
|
if (!saveResult?.ok || !saveResult.data) {
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
} else {
|
return;
|
||||||
toast.success(`Exported ${source.title} to ${result.data?.outputPath ?? 'file'}`);
|
}
|
||||||
|
const buffer = new TextEncoder().encode(html);
|
||||||
|
const writeResult = await ipc.file.writeBuffer({ path: saveResult.data, buffer });
|
||||||
|
if (!writeResult.ok) {
|
||||||
|
setError(writeResult.error.message);
|
||||||
|
setSubmitting(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
toast.success(`Exported ${source.title} to ${saveResult.data}`);
|
||||||
closeModal();
|
closeModal();
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
toast.error(`Export failed: ${msg}`);
|
||||||
|
setError(msg);
|
||||||
|
setSubmitting(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
<DialogContent>
|
<DialogContent className="max-h-[85vh] overflow-y-auto">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Export to HTML</DialogTitle>
|
<DialogTitle>Export to HTML</DialogTitle>
|
||||||
<DialogDescription>{sourcePath}</DialogDescription>
|
<DialogDescription>{sourcePath}</DialogDescription>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<div className="space-y-3 text-sm">
|
<div className="space-y-3 text-sm">
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={standalone} onCheckedChange={(c) => setStandalone(!!c)} aria-label="Standalone" />
|
<Checkbox
|
||||||
|
checked={standalone}
|
||||||
|
onCheckedChange={(c) => setStandalone(!!c)}
|
||||||
|
aria-label="Standalone"
|
||||||
|
/>
|
||||||
Standalone document (with inline CSS)
|
Standalone document (with inline CSS)
|
||||||
</label>
|
</label>
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="html-highlight">Syntax highlight style</Label>
|
<Label htmlFor="html-highlight">Syntax highlight style</Label>
|
||||||
<Select value={highlight} onValueChange={(v) => setHighlight(v as any)}>
|
<Select value={highlight} onValueChange={(v) => setHighlight(v as any)}>
|
||||||
<SelectTrigger id="html-highlight" aria-label="Highlight style"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="html-highlight" aria-label="Highlight style">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="github">GitHub</SelectItem>
|
<SelectItem value="github">GitHub</SelectItem>
|
||||||
<SelectItem value="monokai">Monokai</SelectItem>
|
<SelectItem value="monokai">Monokai</SelectItem>
|
||||||
@@ -65,17 +123,74 @@ export function ExportHtmlDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch
|
||||||
|
checked={selfContained}
|
||||||
|
onCheckedChange={setSelfContained}
|
||||||
|
id="html-self-contained"
|
||||||
|
/>
|
||||||
|
<Label htmlFor="html-self-contained">Self-contained (embed all CSS inline)</Label>
|
||||||
|
</div>
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={ascii} onCheckedChange={(c) => setAscii(!!c)} aria-label="ASCII tables" />
|
<Checkbox
|
||||||
|
checked={ascii}
|
||||||
|
onCheckedChange={(c) => setAscii(!!c)}
|
||||||
|
aria-label="ASCII tables"
|
||||||
|
/>
|
||||||
Render tables as ASCII
|
Render tables as ASCII
|
||||||
</label>
|
</label>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch checked={toc} onCheckedChange={setToc} id="html-toc" />
|
||||||
|
<Label htmlFor="html-toc">Table of Contents</Label>
|
||||||
|
</div>
|
||||||
|
{toc && (
|
||||||
|
<div className="pl-9">
|
||||||
|
<Label htmlFor="html-toc-depth">TOC Depth</Label>
|
||||||
|
<Input
|
||||||
|
id="html-toc-depth"
|
||||||
|
type="number"
|
||||||
|
min={1}
|
||||||
|
max={6}
|
||||||
|
value={tocDepth}
|
||||||
|
onChange={(e) => setTocDepth(Math.min(6, Math.max(1, Number(e.target.value))))}
|
||||||
|
className="w-20"
|
||||||
|
aria-label="TOC depth"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch
|
||||||
|
checked={numberSections}
|
||||||
|
onCheckedChange={setNumberSections}
|
||||||
|
id="html-number-sections"
|
||||||
|
/>
|
||||||
|
<Label htmlFor="html-number-sections">Number sections</Label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="html-css">Custom CSS file</Label>
|
||||||
|
<Input
|
||||||
|
id="html-css"
|
||||||
|
value={cssPath}
|
||||||
|
onChange={(e) => setCssPath(e.target.value)}
|
||||||
|
placeholder="/path/to/custom.css"
|
||||||
|
aria-label="Custom CSS file path"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
{error && (
|
{error && (
|
||||||
<div role="alert" className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
{error}
|
{error}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<ExportDialogFooter onCancel={closeModal} onSubmit={handleSubmit} submitting={submitting} submitLabel="Export" />
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
submitting={submitting}
|
||||||
|
submitLabel="Export"
|
||||||
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,14 +1,29 @@
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Checkbox } from '@/components/ui/checkbox';
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Switch } from '@/components/ui/switch';
|
||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
import { useExportSource } from '@/hooks/use-export-source';
|
import { useExportSource } from '@/hooks/use-export-source';
|
||||||
import { ipc } from '@/lib/ipc';
|
|
||||||
import { toast } from '@/lib/toast';
|
import { toast } from '@/lib/toast';
|
||||||
import { ExportDialogFooter } from './ExportDialogFooter';
|
import { ExportDialogFooter } from './ExportDialogFooter';
|
||||||
|
import { ipc } from '@/lib/ipc';
|
||||||
|
import { generateHtml } from '@/lib/html-export';
|
||||||
|
|
||||||
const MARGIN_MAP = {
|
const MARGIN_MAP = {
|
||||||
normal: { top: 25, right: 25, bottom: 25, left: 25 },
|
normal: { top: 25, right: 25, bottom: 25, left: 25 },
|
||||||
@@ -18,14 +33,23 @@ const MARGIN_MAP = {
|
|||||||
|
|
||||||
export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
||||||
const closeModal = useAppStore((s) => s.closeModal);
|
const closeModal = useAppStore((s) => s.closeModal);
|
||||||
const { fontSize, pdfFormat, pdfMargins, pdfEmbedFonts, renderTablesAsAscii } = useSettingsStore();
|
const { fontSize, pdfFormat, pdfMargins, pdfEmbedFonts, renderTablesAsAscii } =
|
||||||
|
useSettingsStore();
|
||||||
const [format, setFormat] = useState<'letter' | 'a4' | 'legal'>(pdfFormat);
|
const [format, setFormat] = useState<'letter' | 'a4' | 'legal'>(pdfFormat);
|
||||||
const [margins, setMargins] = useState<'normal' | 'narrow' | 'wide'>(pdfMargins);
|
const [margins, setMargins] = useState<'normal' | 'narrow' | 'wide'>(pdfMargins);
|
||||||
const [embed, setEmbed] = useState(pdfEmbedFonts);
|
const [embed, setEmbed] = useState(pdfEmbedFonts);
|
||||||
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
const [ascii, setAscii] = useState(renderTablesAsAscii);
|
||||||
|
const [engine, setEngine] = useState<'pdflatex' | 'xelatex' | 'lualatex'>('pdflatex');
|
||||||
|
const [toc, setToc] = useState(false);
|
||||||
|
const [tocDepth, setTocDepth] = useState(3);
|
||||||
|
const [numberSections, setNumberSections] = useState(false);
|
||||||
|
const [pageGeometry, setPageGeometry] = useState<'margin' | 'crop' | 'bleed'>('margin');
|
||||||
|
const [bibliography, setBibliography] = useState('');
|
||||||
|
const [mainFont, setMainFont] = useState('');
|
||||||
|
const [cjkFont, setCjkFont] = useState('');
|
||||||
|
const [highlightStyle, setHighlightStyle] = useState('tango');
|
||||||
const [submitting, setSubmitting] = useState(false);
|
const [submitting, setSubmitting] = useState(false);
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
const source = useExportSource();
|
const source = useExportSource();
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
@@ -35,28 +59,61 @@ export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
}
|
}
|
||||||
setSubmitting(true);
|
setSubmitting(true);
|
||||||
setError(null);
|
setError(null);
|
||||||
const result = await ipc.export.pdf({
|
try {
|
||||||
inputPath: source.path,
|
const html = generateHtml({
|
||||||
outputPath: source.path.replace(/\.md$/, '.pdf'),
|
source: source.source,
|
||||||
format,
|
title: source.title,
|
||||||
margins: MARGIN_MAP[margins],
|
standalone: true,
|
||||||
embedFonts: embed,
|
highlightStyle: 'github',
|
||||||
renderTablesAsAscii: ascii,
|
renderTablesAsAscii: ascii,
|
||||||
fontSize,
|
});
|
||||||
} as any);
|
const fmt =
|
||||||
|
format === 'a4'
|
||||||
|
? { width: '210mm', height: '297mm' }
|
||||||
|
: format === 'legal'
|
||||||
|
? { width: '8.5in', height: '14in' }
|
||||||
|
: { width: '8.5in', height: '11in' };
|
||||||
|
const m = MARGIN_MAP[margins];
|
||||||
|
const pageCss = `@page { size: ${fmt.width} ${fmt.height}; margin: ${m.top}mm ${m.right}mm ${m.bottom}mm ${m.left}mm; }`;
|
||||||
|
const finalHtml = html.replace('</style>', `${pageCss}</style>`);
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
html: finalHtml,
|
||||||
|
withStyles: embed,
|
||||||
|
engine,
|
||||||
|
toc,
|
||||||
|
tocDepth,
|
||||||
|
numberSections,
|
||||||
|
pageGeometry,
|
||||||
|
bibliography: bibliography || undefined,
|
||||||
|
mainFont: mainFont || undefined,
|
||||||
|
cjkFont: cjkFont || undefined,
|
||||||
|
highlightStyle,
|
||||||
|
};
|
||||||
|
|
||||||
|
const result = await (window.electronAPI?.export?.withOptions?.('pdf', options) ??
|
||||||
|
ipc.print.show({ html: finalHtml, withStyles: embed }));
|
||||||
|
|
||||||
if (!result.ok) {
|
if (!result.ok) {
|
||||||
toast.error(`Export failed: ${result.error?.message ?? 'Export failed'}`);
|
const msg = result.error?.message ?? 'PDF export failed';
|
||||||
setError(result.error?.message ?? 'Export failed');
|
toast.error(`Export failed: ${msg}`);
|
||||||
|
setError(msg);
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
} else {
|
return;
|
||||||
toast.success(`Exported ${source.title} to ${result.data?.outputPath ?? 'file'}`);
|
}
|
||||||
|
toast.success(`Sent ${source.title} to printer`);
|
||||||
closeModal();
|
closeModal();
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
toast.error(`Export failed: ${msg}`);
|
||||||
|
setError(msg);
|
||||||
|
setSubmitting(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
<DialogContent>
|
<DialogContent className="max-w-lg max-h-[85vh] overflow-y-auto">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Export to PDF</DialogTitle>
|
<DialogTitle>Export to PDF</DialogTitle>
|
||||||
<DialogDescription>{sourcePath}</DialogDescription>
|
<DialogDescription>{sourcePath}</DialogDescription>
|
||||||
@@ -65,7 +122,9 @@ export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="pdf-format">Format</Label>
|
<Label htmlFor="pdf-format">Format</Label>
|
||||||
<Select value={format} onValueChange={(v) => setFormat(v as typeof format)}>
|
<Select value={format} onValueChange={(v) => setFormat(v as typeof format)}>
|
||||||
<SelectTrigger id="pdf-format" aria-label="Format"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="pdf-format" aria-label="Format">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="letter">Letter</SelectItem>
|
<SelectItem value="letter">Letter</SelectItem>
|
||||||
<SelectItem value="a4">A4</SelectItem>
|
<SelectItem value="a4">A4</SelectItem>
|
||||||
@@ -76,7 +135,9 @@ export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="pdf-margins">Margins</Label>
|
<Label htmlFor="pdf-margins">Margins</Label>
|
||||||
<Select value={margins} onValueChange={(v) => setMargins(v as typeof margins)}>
|
<Select value={margins} onValueChange={(v) => setMargins(v as typeof margins)}>
|
||||||
<SelectTrigger id="pdf-margins" aria-label="Margins"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="pdf-margins" aria-label="Margins">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="narrow">Narrow</SelectItem>
|
<SelectItem value="narrow">Narrow</SelectItem>
|
||||||
<SelectItem value="normal">Normal</SelectItem>
|
<SelectItem value="normal">Normal</SelectItem>
|
||||||
@@ -85,20 +146,136 @@ export function ExportPdfDialog({ sourcePath }: { sourcePath: string }) {
|
|||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={embed} onCheckedChange={(c) => setEmbed(!!c)} aria-label="Embed fonts" />
|
<Checkbox
|
||||||
|
checked={embed}
|
||||||
|
onCheckedChange={(c) => setEmbed(!!c)}
|
||||||
|
aria-label="Embed fonts"
|
||||||
|
/>
|
||||||
Embed fonts
|
Embed fonts
|
||||||
</label>
|
</label>
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={ascii} onCheckedChange={(c) => setAscii(!!c)} aria-label="ASCII tables" />
|
<Checkbox
|
||||||
|
checked={ascii}
|
||||||
|
onCheckedChange={(c) => setAscii(!!c)}
|
||||||
|
aria-label="ASCII tables"
|
||||||
|
/>
|
||||||
Render tables as ASCII
|
Render tables as ASCII
|
||||||
</label>
|
</label>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-engine">PDF Engine</Label>
|
||||||
|
<Select value={engine} onValueChange={(v) => setEngine(v as typeof engine)}>
|
||||||
|
<SelectTrigger id="pdf-engine" aria-label="PDF Engine">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="pdflatex">pdflatex</SelectItem>
|
||||||
|
<SelectItem value="xelatex">xelatex</SelectItem>
|
||||||
|
<SelectItem value="lualatex">lualatex</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch checked={toc} onCheckedChange={setToc} id="pdf-toc" />
|
||||||
|
<Label htmlFor="pdf-toc">Table of Contents</Label>
|
||||||
|
</div>
|
||||||
|
{toc && (
|
||||||
|
<div className="pl-9">
|
||||||
|
<Label htmlFor="pdf-toc-depth">TOC Depth</Label>
|
||||||
|
<Input
|
||||||
|
id="pdf-toc-depth"
|
||||||
|
type="number"
|
||||||
|
min={1}
|
||||||
|
max={6}
|
||||||
|
value={tocDepth}
|
||||||
|
onChange={(e) => setTocDepth(Math.min(6, Math.max(1, Number(e.target.value))))}
|
||||||
|
className="w-20"
|
||||||
|
aria-label="TOC depth"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Switch
|
||||||
|
checked={numberSections}
|
||||||
|
onCheckedChange={setNumberSections}
|
||||||
|
id="pdf-number-sections"
|
||||||
|
/>
|
||||||
|
<Label htmlFor="pdf-number-sections">Number sections</Label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-page-geometry">Page Geometry</Label>
|
||||||
|
<Select
|
||||||
|
value={pageGeometry}
|
||||||
|
onValueChange={(v) => setPageGeometry(v as typeof pageGeometry)}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="pdf-page-geometry" aria-label="Page geometry">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="margin">Margin</SelectItem>
|
||||||
|
<SelectItem value="crop">Crop</SelectItem>
|
||||||
|
<SelectItem value="bleed">Bleed</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-bibliography">Bibliography file</Label>
|
||||||
|
<Input
|
||||||
|
id="pdf-bibliography"
|
||||||
|
value={bibliography}
|
||||||
|
onChange={(e) => setBibliography(e.target.value)}
|
||||||
|
placeholder="/path/to/references.bib"
|
||||||
|
aria-label="Bibliography file path"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-main-font">Main font</Label>
|
||||||
|
<Input
|
||||||
|
id="pdf-main-font"
|
||||||
|
value={mainFont}
|
||||||
|
onChange={(e) => setMainFont(e.target.value)}
|
||||||
|
placeholder="e.g. Latin Modern"
|
||||||
|
aria-label="Main font"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-cjk-font">CJK font</Label>
|
||||||
|
<Input
|
||||||
|
id="pdf-cjk-font"
|
||||||
|
value={cjkFont}
|
||||||
|
onChange={(e) => setCjkFont(e.target.value)}
|
||||||
|
placeholder="e.g. Noto Sans CJK SC"
|
||||||
|
aria-label="CJK font"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="pdf-highlight">Highlight style</Label>
|
||||||
|
<Select value={highlightStyle} onValueChange={setHighlightStyle}>
|
||||||
|
<SelectTrigger id="pdf-highlight" aria-label="Highlight style">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="tango">Tango</SelectItem>
|
||||||
|
<SelectItem value="pygments">Pygments</SelectItem>
|
||||||
|
<SelectItem value="kateks">Kate (Kateks)</SelectItem>
|
||||||
|
<SelectItem value="monochrome">Monochrome</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
{error && (
|
{error && (
|
||||||
<div role="alert" className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
{error}
|
{error}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<ExportDialogFooter onCancel={closeModal} onSubmit={handleSubmit} submitting={submitting} submitLabel="Export" />
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
submitting={submitting}
|
||||||
|
submitLabel="Export"
|
||||||
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -0,0 +1,275 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
|
import { Label } from '@/components/ui/label';
|
||||||
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Switch } from '@/components/ui/switch';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { useExportSource } from '@/hooks/use-export-source';
|
||||||
|
import { ipc } from '@/lib/ipc';
|
||||||
|
import { toast } from '@/lib/toast';
|
||||||
|
import { ExportDialogFooter } from './ExportDialogFooter';
|
||||||
|
|
||||||
|
export function ExportRevealjsDialog({ sourcePath }: { sourcePath: string }) {
|
||||||
|
const closeModal = useAppStore((s) => s.closeModal);
|
||||||
|
const source = useExportSource();
|
||||||
|
|
||||||
|
const [revealTheme, setRevealTheme] = useState('black');
|
||||||
|
const [revealTransition, setRevealTransition] = useState('slide');
|
||||||
|
const [revealTransitionSpeed, setRevealTransitionSpeed] = useState('default');
|
||||||
|
const [revealSlideNumber, setRevealSlideNumber] = useState(false);
|
||||||
|
const [revealControls, setRevealControls] = useState(true);
|
||||||
|
const [revealProgress, setRevealProgress] = useState(true);
|
||||||
|
const [revealHistory, setRevealHistory] = useState(true);
|
||||||
|
const [revealCenter, setRevealCenter] = useState(true);
|
||||||
|
|
||||||
|
const [template, setTemplate] = useState('default');
|
||||||
|
const [title, setTitle] = useState(source?.title || '');
|
||||||
|
const [author, setAuthor] = useState('');
|
||||||
|
const [date, setDate] = useState('');
|
||||||
|
const [bibliography, setBibliography] = useState('');
|
||||||
|
const [csl, setCsl] = useState('');
|
||||||
|
|
||||||
|
const [submitting, setSubmitting] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const handleBrowseFile = async (setter: (v: string) => void) => {
|
||||||
|
const result = await ipc.file.pickFile();
|
||||||
|
if (result.ok && result.data) {
|
||||||
|
setter(result.data);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSubmit = async () => {
|
||||||
|
if (!source) {
|
||||||
|
setError('No file open.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setSubmitting(true);
|
||||||
|
setError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const options = {
|
||||||
|
revealTheme,
|
||||||
|
revealTransition,
|
||||||
|
revealTransitionSpeed,
|
||||||
|
revealSlideNumber,
|
||||||
|
revealControls,
|
||||||
|
revealProgress,
|
||||||
|
revealHistory,
|
||||||
|
revealCenter,
|
||||||
|
template: template || undefined,
|
||||||
|
metadata: {
|
||||||
|
title: title || undefined,
|
||||||
|
author: author || undefined,
|
||||||
|
date: date || undefined,
|
||||||
|
},
|
||||||
|
bibliography: bibliography || undefined,
|
||||||
|
csl: csl || undefined,
|
||||||
|
};
|
||||||
|
|
||||||
|
await window.electronAPI?.export?.withOptions?.('revealjs', options);
|
||||||
|
toast.success('Slide export process completed');
|
||||||
|
closeModal();
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
toast.error(`Export failed: ${msg}`);
|
||||||
|
setError(msg);
|
||||||
|
setSubmitting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
|
<DialogContent className="max-h-[85vh] max-w-lg overflow-y-auto">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Export Reveal.js Slides</DialogTitle>
|
||||||
|
<DialogDescription>{sourcePath}</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<div className="space-y-4 text-sm">
|
||||||
|
{/* Theme & Transitions */}
|
||||||
|
<div className="grid grid-cols-2 gap-3">
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-theme">Theme</Label>
|
||||||
|
<Select value={revealTheme} onValueChange={setRevealTheme}>
|
||||||
|
<SelectTrigger id="reveal-theme">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{['black', 'white', 'league', 'beige', 'sky', 'night', 'serif', 'simple', 'solarized', 'blood', 'moon'].map((t) => (
|
||||||
|
<SelectItem key={t} value={t}>
|
||||||
|
{t.charAt(0).toUpperCase() + t.slice(1)}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-transition">Transition</Label>
|
||||||
|
<Select value={revealTransition} onValueChange={setRevealTransition}>
|
||||||
|
<SelectTrigger id="reveal-transition">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{['slide', 'none', 'fade', 'convex', 'concave', 'zoom'].map((t) => (
|
||||||
|
<SelectItem key={t} value={t}>
|
||||||
|
{t.charAt(0).toUpperCase() + t.slice(1)}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-speed">Transition Speed</Label>
|
||||||
|
<Select value={revealTransitionSpeed} onValueChange={setRevealTransitionSpeed}>
|
||||||
|
<SelectTrigger id="reveal-speed">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{['default', 'fast', 'slow'].map((s) => (
|
||||||
|
<SelectItem key={s} value={s}>
|
||||||
|
{s.charAt(0).toUpperCase() + s.slice(1)}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Toggle Switches */}
|
||||||
|
<div className="grid grid-cols-2 gap-x-4 gap-y-2 py-2">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Switch checked={revealSlideNumber} onCheckedChange={setRevealSlideNumber} id="reveal-slide-number" />
|
||||||
|
<Label htmlFor="reveal-slide-number">Slide Numbers</Label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Switch checked={revealControls} onCheckedChange={setRevealControls} id="reveal-controls" />
|
||||||
|
<Label htmlFor="reveal-controls">Controls</Label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Switch checked={revealProgress} onCheckedChange={setRevealProgress} id="reveal-progress" />
|
||||||
|
<Label htmlFor="reveal-progress">Progress Bar</Label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Switch checked={revealHistory} onCheckedChange={setRevealHistory} id="reveal-history" />
|
||||||
|
<Label htmlFor="reveal-history">Slide History</Label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2 col-span-2">
|
||||||
|
<Switch checked={revealCenter} onCheckedChange={setRevealCenter} id="reveal-center" />
|
||||||
|
<Label htmlFor="reveal-center">Center Content Vertically</Label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Template & Metadata */}
|
||||||
|
<div className="border-t pt-3 space-y-3">
|
||||||
|
<Label className="font-semibold text-xs text-muted-foreground uppercase tracking-wider block">Metadata & Template</Label>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-template">Template File</Label>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Input
|
||||||
|
id="reveal-template"
|
||||||
|
value={template}
|
||||||
|
onChange={(e) => setTemplate(e.target.value)}
|
||||||
|
placeholder="default"
|
||||||
|
className="flex-1"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" size="sm" onClick={() => handleBrowseFile(setTemplate)}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-3 gap-2">
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-title">Title</Label>
|
||||||
|
<Input id="reveal-title" value={title} onChange={(e) => setTitle(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-author">Author</Label>
|
||||||
|
<Input id="reveal-author" value={author} onChange={(e) => setAuthor(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-date">Date</Label>
|
||||||
|
<Input id="reveal-date" value={date} onChange={(e) => setDate(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Bibliography & CSL */}
|
||||||
|
<div className="border-t pt-3 space-y-3">
|
||||||
|
<Label className="font-semibold text-xs text-muted-foreground uppercase tracking-wider block">Bibliography (Pandoc)</Label>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-bibliography">Bibliography (.bib, .json)</Label>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Input
|
||||||
|
id="reveal-bibliography"
|
||||||
|
value={bibliography}
|
||||||
|
onChange={(e) => setBibliography(e.target.value)}
|
||||||
|
placeholder="/path/to/citations.bib"
|
||||||
|
className="flex-1"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" size="sm" onClick={() => handleBrowseFile(setBibliography)}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="reveal-csl">CSL Style</Label>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Input
|
||||||
|
id="reveal-csl"
|
||||||
|
value={csl}
|
||||||
|
onChange={(e) => setCsl(e.target.value)}
|
||||||
|
placeholder="/path/to/style.csl"
|
||||||
|
className="flex-1"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" size="sm" onClick={() => handleBrowseFile(setCsl)}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
|
{error}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ExportDialogFooter
|
||||||
|
onCancel={closeModal}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
submitting={submitting}
|
||||||
|
submitLabel="Export"
|
||||||
|
/>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,17 +1,33 @@
|
|||||||
import { useSettingsStore } from '@/stores/settings-store';
|
import { useSettingsStore } from '@/stores/settings-store';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
import { Switch } from '@/components/ui/switch';
|
import { Switch } from '@/components/ui/switch';
|
||||||
|
|
||||||
export function ExportSettings() {
|
export function ExportSettings() {
|
||||||
const { pdfFormat, pdfMargins, pdfEmbedFonts, docxTemplate, htmlHighlightStyle, renderTablesAsAscii, setSetting } = useSettingsStore();
|
const {
|
||||||
|
pdfFormat,
|
||||||
|
pdfMargins,
|
||||||
|
pdfEmbedFonts,
|
||||||
|
docxTemplate,
|
||||||
|
htmlHighlightStyle,
|
||||||
|
renderTablesAsAscii,
|
||||||
|
setSetting,
|
||||||
|
} = useSettingsStore();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-5 text-sm">
|
<div className="space-y-5 text-sm">
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="export-pdf-format">Default PDF format</Label>
|
<Label htmlFor="export-pdf-format">Default PDF format</Label>
|
||||||
<Select value={pdfFormat} onValueChange={(v) => setSetting('pdfFormat', v as any)}>
|
<Select value={pdfFormat} onValueChange={(v) => setSetting('pdfFormat', v as any)}>
|
||||||
<SelectTrigger id="export-pdf-format" aria-label="Default PDF format"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="export-pdf-format" aria-label="Default PDF format">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="letter">Letter</SelectItem>
|
<SelectItem value="letter">Letter</SelectItem>
|
||||||
<SelectItem value="a4">A4</SelectItem>
|
<SelectItem value="a4">A4</SelectItem>
|
||||||
@@ -22,7 +38,9 @@ export function ExportSettings() {
|
|||||||
<div>
|
<div>
|
||||||
<Label htmlFor="export-pdf-margins">Default PDF margins</Label>
|
<Label htmlFor="export-pdf-margins">Default PDF margins</Label>
|
||||||
<Select value={pdfMargins} onValueChange={(v) => setSetting('pdfMargins', v as any)}>
|
<Select value={pdfMargins} onValueChange={(v) => setSetting('pdfMargins', v as any)}>
|
||||||
<SelectTrigger id="export-pdf-margins" aria-label="Default PDF margins"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="export-pdf-margins" aria-label="Default PDF margins">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="narrow">Narrow</SelectItem>
|
<SelectItem value="narrow">Narrow</SelectItem>
|
||||||
<SelectItem value="normal">Normal</SelectItem>
|
<SelectItem value="normal">Normal</SelectItem>
|
||||||
@@ -32,12 +50,18 @@ export function ExportSettings() {
|
|||||||
</div>
|
</div>
|
||||||
<label className="flex items-center justify-between">
|
<label className="flex items-center justify-between">
|
||||||
<span>Embed fonts in PDFs</span>
|
<span>Embed fonts in PDFs</span>
|
||||||
<Switch checked={pdfEmbedFonts} onCheckedChange={(c) => setSetting('pdfEmbedFonts', c)} aria-label="Embed fonts" />
|
<Switch
|
||||||
|
checked={pdfEmbedFonts}
|
||||||
|
onCheckedChange={(c) => setSetting('pdfEmbedFonts', c)}
|
||||||
|
aria-label="Embed fonts"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="export-docx-template">Default DOCX template</Label>
|
<Label htmlFor="export-docx-template">Default DOCX template</Label>
|
||||||
<Select value={docxTemplate} onValueChange={(v) => setSetting('docxTemplate', v as any)}>
|
<Select value={docxTemplate} onValueChange={(v) => setSetting('docxTemplate', v as any)}>
|
||||||
<SelectTrigger id="export-docx-template" aria-label="Default DOCX template"><SelectValue /></SelectTrigger>
|
<SelectTrigger id="export-docx-template" aria-label="Default DOCX template">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="standard">Standard</SelectItem>
|
<SelectItem value="standard">Standard</SelectItem>
|
||||||
<SelectItem value="minimal">Minimal</SelectItem>
|
<SelectItem value="minimal">Minimal</SelectItem>
|
||||||
@@ -47,8 +71,13 @@ export function ExportSettings() {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Label htmlFor="export-html-highlight">Default HTML highlight</Label>
|
<Label htmlFor="export-html-highlight">Default HTML highlight</Label>
|
||||||
<Select value={htmlHighlightStyle} onValueChange={(v) => setSetting('htmlHighlightStyle', v as any)}>
|
<Select
|
||||||
<SelectTrigger id="export-html-highlight" aria-label="Default HTML highlight"><SelectValue /></SelectTrigger>
|
value={htmlHighlightStyle}
|
||||||
|
onValueChange={(v) => setSetting('htmlHighlightStyle', v as any)}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="export-html-highlight" aria-label="Default HTML highlight">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="github">GitHub</SelectItem>
|
<SelectItem value="github">GitHub</SelectItem>
|
||||||
<SelectItem value="monokai">Monokai</SelectItem>
|
<SelectItem value="monokai">Monokai</SelectItem>
|
||||||
@@ -59,7 +88,11 @@ export function ExportSettings() {
|
|||||||
</div>
|
</div>
|
||||||
<label className="flex items-center justify-between">
|
<label className="flex items-center justify-between">
|
||||||
<span>Render tables as ASCII by default</span>
|
<span>Render tables as ASCII by default</span>
|
||||||
<Switch checked={renderTablesAsAscii} onCheckedChange={(c) => setSetting('renderTablesAsAscii', c)} aria-label="ASCII tables by default" />
|
<Switch
|
||||||
|
checked={renderTablesAsAscii}
|
||||||
|
onCheckedChange={(c) => setSetting('renderTablesAsAscii', c)}
|
||||||
|
aria-label="ASCII tables by default"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { Checkbox } from '@/components/ui/checkbox';
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
import { Input } from '@/components/ui/input';
|
import { Input } from '@/components/ui/input';
|
||||||
@@ -67,22 +74,35 @@ export function FindInFilesDialog() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex gap-4">
|
<div className="flex gap-4">
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={isRegex} onCheckedChange={(c) => setIsRegex(!!c)} aria-label="Regex" />
|
<Checkbox
|
||||||
|
checked={isRegex}
|
||||||
|
onCheckedChange={(c) => setIsRegex(!!c)}
|
||||||
|
aria-label="Regex"
|
||||||
|
/>
|
||||||
Regex
|
Regex
|
||||||
</label>
|
</label>
|
||||||
<label className="flex items-center gap-2">
|
<label className="flex items-center gap-2">
|
||||||
<Checkbox checked={caseSensitive} onCheckedChange={(c) => setCaseSensitive(!!c)} aria-label="Case sensitive" />
|
<Checkbox
|
||||||
|
checked={caseSensitive}
|
||||||
|
onCheckedChange={(c) => setCaseSensitive(!!c)}
|
||||||
|
aria-label="Case sensitive"
|
||||||
|
/>
|
||||||
Case sensitive
|
Case sensitive
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
{error && (
|
{error && (
|
||||||
<div role="alert" className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive">
|
<div
|
||||||
|
role="alert"
|
||||||
|
className="rounded border border-destructive/40 bg-destructive/5 p-2 text-xs text-destructive"
|
||||||
|
>
|
||||||
{error}
|
{error}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{results.length > 0 && (
|
{results.length > 0 && (
|
||||||
<div>
|
<div>
|
||||||
<Label>{results.length} result{results.length === 1 ? '' : 's'}</Label>
|
<Label>
|
||||||
|
{results.length} result{results.length === 1 ? '' : 's'}
|
||||||
|
</Label>
|
||||||
<div className="max-h-64 overflow-auto rounded border border-border bg-card/20 text-xs">
|
<div className="max-h-64 overflow-auto rounded border border-border bg-card/20 text-xs">
|
||||||
{results.map((r, i) => (
|
{results.map((r, i) => (
|
||||||
<button
|
<button
|
||||||
@@ -91,7 +111,9 @@ export function FindInFilesDialog() {
|
|||||||
className="block w-full truncate border-b border-border/30 px-2 py-1 text-left hover:bg-card/50"
|
className="block w-full truncate border-b border-border/30 px-2 py-1 text-left hover:bg-card/50"
|
||||||
data-testid="find-result"
|
data-testid="find-result"
|
||||||
>
|
>
|
||||||
<span className="font-mono text-muted-foreground">{r.filePath}:{r.line}</span>
|
<span className="font-mono text-muted-foreground">
|
||||||
|
{r.filePath}:{r.line}
|
||||||
|
</span>
|
||||||
<span className="ml-2">{r.content}</span>
|
<span className="ml-2">{r.content}</span>
|
||||||
</button>
|
</button>
|
||||||
))}
|
))}
|
||||||
@@ -100,7 +122,9 @@ export function FindInFilesDialog() {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<Button variant="ghost" onClick={closeModal} disabled={submitting}>Close</Button>
|
<Button variant="ghost" onClick={closeModal} disabled={submitting}>
|
||||||
|
Close
|
||||||
|
</Button>
|
||||||
<Button onClick={handleSearch} disabled={submitting || !query}>
|
<Button onClick={handleSearch} disabled={submitting || !query}>
|
||||||
{submitting ? 'Searching…' : 'Search'}
|
{submitting ? 'Searching…' : 'Search'}
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -0,0 +1,311 @@
|
|||||||
|
import { useState, useEffect, useCallback } from 'react';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { Checkbox } from '@/components/ui/checkbox';
|
||||||
|
import { Label } from '@/components/ui/label';
|
||||||
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from '@/components/ui/select';
|
||||||
|
import { useAppStore } from '@/stores/app-store';
|
||||||
|
import { toast } from '@/lib/toast';
|
||||||
|
|
||||||
|
interface HeaderFooterSettings {
|
||||||
|
headerEnabled: boolean;
|
||||||
|
footerEnabled: boolean;
|
||||||
|
headerLeft: string;
|
||||||
|
headerCenter: string;
|
||||||
|
headerRight: string;
|
||||||
|
footerLeft: string;
|
||||||
|
footerCenter: string;
|
||||||
|
footerRight: string;
|
||||||
|
logoPosition: 'none' | 'left' | 'right';
|
||||||
|
logoPath: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const DYNAMIC_FIELDS = [
|
||||||
|
{ token: '$PAGE$', label: 'Page' },
|
||||||
|
{ token: '$TOTAL$', label: 'Total Pages' },
|
||||||
|
{ token: '$DATE$', label: 'Date' },
|
||||||
|
{ token: '$TIME$', label: 'Time' },
|
||||||
|
{ token: '$TITLE$', label: 'Title' },
|
||||||
|
{ token: '$AUTHOR$', label: 'Author' },
|
||||||
|
{ token: '$FILENAME$', label: 'Filename' },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
const DEFAULTS: HeaderFooterSettings = {
|
||||||
|
headerEnabled: false,
|
||||||
|
footerEnabled: false,
|
||||||
|
headerLeft: '',
|
||||||
|
headerCenter: '',
|
||||||
|
headerRight: '',
|
||||||
|
footerLeft: '',
|
||||||
|
footerCenter: '',
|
||||||
|
footerRight: '',
|
||||||
|
logoPosition: 'none',
|
||||||
|
logoPath: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
type FieldKey = keyof Pick<
|
||||||
|
HeaderFooterSettings,
|
||||||
|
'headerLeft' | 'headerCenter' | 'headerRight' | 'footerLeft' | 'footerCenter' | 'footerRight'
|
||||||
|
>;
|
||||||
|
|
||||||
|
export function HeaderFooterDialog() {
|
||||||
|
const closeModal = useAppStore((s) => s.closeModal);
|
||||||
|
const [settings, setSettings] = useState<HeaderFooterSettings>(DEFAULTS);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [saving, setSaving] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let mounted = true;
|
||||||
|
async function load() {
|
||||||
|
try {
|
||||||
|
window.electronAPI?.send('get-header-footer-settings');
|
||||||
|
const unsub = window.electronAPI?.on('header-footer-settings-data', (data: unknown) => {
|
||||||
|
if (mounted && data && typeof data === 'object') {
|
||||||
|
setSettings({ ...DEFAULTS, ...(data as Partial<HeaderFooterSettings>) });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return () => {
|
||||||
|
unsub?.();
|
||||||
|
};
|
||||||
|
} finally {
|
||||||
|
if (mounted) setLoading(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void load();
|
||||||
|
return () => {
|
||||||
|
mounted = false;
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const updateField = useCallback((key: FieldKey, value: string) => {
|
||||||
|
setSettings((prev) => ({ ...prev, [key]: value }));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const insertToken = useCallback((key: FieldKey, token: string) => {
|
||||||
|
setSettings((prev) => ({
|
||||||
|
...prev,
|
||||||
|
[key]: prev[key] + token,
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleBrowseLogo = useCallback(async () => {
|
||||||
|
window.electronAPI?.send('browse-header-footer-logo');
|
||||||
|
const unsub = window.electronAPI?.on('header-footer-logo-selected', (data: unknown) => {
|
||||||
|
if (typeof data === 'string') {
|
||||||
|
setSettings((prev) => ({
|
||||||
|
...prev,
|
||||||
|
logoPath: data,
|
||||||
|
logoPosition: prev.logoPosition === 'none' ? 'left' : prev.logoPosition,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return () => {
|
||||||
|
unsub?.();
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleClearLogo = useCallback(() => {
|
||||||
|
setSettings((prev) => ({ ...prev, logoPath: null, logoPosition: 'none' }));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleSave = async () => {
|
||||||
|
setSaving(true);
|
||||||
|
window.electronAPI?.send('save-header-footer-settings', settings);
|
||||||
|
const unsub = window.electronAPI?.on('header-footer-logo-saved', () => {
|
||||||
|
toast.success('Header & footer settings saved');
|
||||||
|
closeModal();
|
||||||
|
setSaving(false);
|
||||||
|
unsub?.();
|
||||||
|
});
|
||||||
|
setTimeout(() => {
|
||||||
|
setSaving(false);
|
||||||
|
toast.success('Header & footer settings saved');
|
||||||
|
closeModal();
|
||||||
|
}, 500);
|
||||||
|
};
|
||||||
|
|
||||||
|
const fieldRows: Array<{ key: FieldKey; label: string; enabled: boolean }> = [
|
||||||
|
{ key: 'headerLeft', label: 'Left', enabled: settings.headerEnabled },
|
||||||
|
{ key: 'headerCenter', label: 'Center', enabled: settings.headerEnabled },
|
||||||
|
{ key: 'headerRight', label: 'Right', enabled: settings.headerEnabled },
|
||||||
|
{ key: 'footerLeft', label: 'Left', enabled: settings.footerEnabled },
|
||||||
|
{ key: 'footerCenter', label: 'Center', enabled: settings.footerEnabled },
|
||||||
|
{ key: 'footerRight', label: 'Right', enabled: settings.footerEnabled },
|
||||||
|
];
|
||||||
|
|
||||||
|
if (loading) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open onOpenChange={(o) => !o && closeModal()}>
|
||||||
|
<DialogContent className="max-w-lg">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Header & Footer</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Configure headers and footers for exported documents
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="space-y-4 text-sm">
|
||||||
|
<label className="flex items-center gap-2">
|
||||||
|
<Checkbox
|
||||||
|
checked={settings.headerEnabled}
|
||||||
|
onCheckedChange={(c) => setSettings((p) => ({ ...p, headerEnabled: !!c }))}
|
||||||
|
aria-label="Enable header"
|
||||||
|
/>
|
||||||
|
Enable header
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<p className="text-xs font-medium text-muted-foreground">Header</p>
|
||||||
|
{fieldRows
|
||||||
|
.filter((r) => r.key.startsWith('header'))
|
||||||
|
.map((row) => (
|
||||||
|
<div key={row.key} className="flex items-center gap-2">
|
||||||
|
<span className="w-12 text-xs text-muted-foreground">{row.label}</span>
|
||||||
|
<Input
|
||||||
|
value={settings[row.key]}
|
||||||
|
onChange={(e) => updateField(row.key, e.target.value)}
|
||||||
|
placeholder={`Header ${row.label.toLowerCase()}`}
|
||||||
|
className="flex-1"
|
||||||
|
disabled={!settings.headerEnabled}
|
||||||
|
aria-label={`Header ${row.label.toLowerCase()}`}
|
||||||
|
/>
|
||||||
|
<div className="flex gap-0.5">
|
||||||
|
{DYNAMIC_FIELDS.slice(0, 4).map((field) => (
|
||||||
|
<Button
|
||||||
|
key={field.token}
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
className="h-7 px-1.5 text-[10px]"
|
||||||
|
disabled={!settings.headerEnabled}
|
||||||
|
onClick={() => insertToken(row.key, field.token)}
|
||||||
|
title={field.label}
|
||||||
|
>
|
||||||
|
{field.token}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<label className="flex items-center gap-2">
|
||||||
|
<Checkbox
|
||||||
|
checked={settings.footerEnabled}
|
||||||
|
onCheckedChange={(c) => setSettings((p) => ({ ...p, footerEnabled: !!c }))}
|
||||||
|
aria-label="Enable footer"
|
||||||
|
/>
|
||||||
|
Enable footer
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<p className="text-xs font-medium text-muted-foreground">Footer</p>
|
||||||
|
{fieldRows
|
||||||
|
.filter((r) => r.key.startsWith('footer'))
|
||||||
|
.map((row) => (
|
||||||
|
<div key={row.key} className="flex items-center gap-2">
|
||||||
|
<span className="w-12 text-xs text-muted-foreground">{row.label}</span>
|
||||||
|
<Input
|
||||||
|
value={settings[row.key]}
|
||||||
|
onChange={(e) => updateField(row.key, e.target.value)}
|
||||||
|
placeholder={`Footer ${row.label.toLowerCase()}`}
|
||||||
|
className="flex-1"
|
||||||
|
disabled={!settings.footerEnabled}
|
||||||
|
aria-label={`Footer ${row.label.toLowerCase()}`}
|
||||||
|
/>
|
||||||
|
<div className="flex gap-0.5">
|
||||||
|
{DYNAMIC_FIELDS.slice(0, 4).map((field) => (
|
||||||
|
<Button
|
||||||
|
key={field.token}
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
className="h-7 px-1.5 text-[10px]"
|
||||||
|
disabled={!settings.footerEnabled}
|
||||||
|
onClick={() => insertToken(row.key, field.token)}
|
||||||
|
title={field.label}
|
||||||
|
>
|
||||||
|
{field.token}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<p className="text-xs font-medium text-muted-foreground">Logo</p>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Select
|
||||||
|
value={settings.logoPosition}
|
||||||
|
onValueChange={(v) =>
|
||||||
|
setSettings((p) => ({
|
||||||
|
...p,
|
||||||
|
logoPosition: v as HeaderFooterSettings['logoPosition'],
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<SelectTrigger className="w-32" aria-label="Logo position">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="none">None</SelectItem>
|
||||||
|
<SelectItem value="left">Left</SelectItem>
|
||||||
|
<SelectItem value="right">Right</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
{settings.logoPosition !== 'none' && (
|
||||||
|
<>
|
||||||
|
<Input
|
||||||
|
value={settings.logoPath ?? ''}
|
||||||
|
readOnly
|
||||||
|
placeholder="No logo selected"
|
||||||
|
className="flex-1"
|
||||||
|
aria-label="Logo path"
|
||||||
|
/>
|
||||||
|
<Button variant="outline" size="sm" onClick={handleBrowseLogo}>
|
||||||
|
Browse
|
||||||
|
</Button>
|
||||||
|
{settings.logoPath && (
|
||||||
|
<Button variant="ghost" size="sm" onClick={handleClearLogo}>
|
||||||
|
Clear
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
{settings.logoPath && (
|
||||||
|
<img
|
||||||
|
src={`file://${settings.logoPath}`}
|
||||||
|
alt="Logo preview"
|
||||||
|
className="h-8 rounded border object-contain"
|
||||||
|
onError={(e) => {
|
||||||
|
(e.target as HTMLImageElement).style.display = 'none';
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-end gap-2">
|
||||||
|
<Button variant="ghost" onClick={closeModal} disabled={saving}>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
<Button onClick={handleSave} disabled={saving}>
|
||||||
|
{saving ? 'Saving...' : 'Save'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,16 +1,23 @@
|
|||||||
import { useAppStore } from '@/stores/app-store';
|
import { useAppStore } from '@/stores/app-store';
|
||||||
import { AboutDialog } from './AboutDialog';
|
import { AboutDialog } from './AboutDialog';
|
||||||
|
import { BatchMediaConverterDialog } from './BatchMediaConverterDialog';
|
||||||
import { AsciiGeneratorDialog } from './AsciiGeneratorDialog';
|
import { AsciiGeneratorDialog } from './AsciiGeneratorDialog';
|
||||||
import { ConfirmDialog } from './ConfirmDialog';
|
import { ConfirmDialog } from './ConfirmDialog';
|
||||||
|
import { CrashReportModal } from './CrashReportModal';
|
||||||
import { ExportBatchDialog } from './ExportBatchDialog';
|
import { ExportBatchDialog } from './ExportBatchDialog';
|
||||||
import { ExportDocxDialog } from './ExportDocxDialog';
|
import { ExportDocxDialog } from './ExportDocxDialog';
|
||||||
import { ExportHtmlDialog } from './ExportHtmlDialog';
|
import { ExportHtmlDialog } from './ExportHtmlDialog';
|
||||||
import { ExportPdfDialog } from './ExportPdfDialog';
|
import { ExportPdfDialog } from './ExportPdfDialog';
|
||||||
|
import { ExportRevealjsDialog } from './ExportRevealjsDialog';
|
||||||
import { FindInFilesDialog } from './FindInFilesDialog';
|
import { FindInFilesDialog } from './FindInFilesDialog';
|
||||||
|
import { HeaderFooterDialog } from './HeaderFooterDialog';
|
||||||
import { SettingsSheet } from './SettingsSheet';
|
import { SettingsSheet } from './SettingsSheet';
|
||||||
import { TableGeneratorDialog } from './TableGeneratorDialog';
|
import { TableGeneratorDialog } from './TableGeneratorDialog';
|
||||||
|
import { UniversalConverterDialog } from './UniversalConverterDialog';
|
||||||
import { WelcomeDialog } from './WelcomeDialog';
|
import { WelcomeDialog } from './WelcomeDialog';
|
||||||
import { WordExportDialog } from './WordExportDialog';
|
import { WordExportDialog } from './WordExportDialog';
|
||||||
|
import { WritingAnalyticsDialog } from './WritingAnalyticsDialog';
|
||||||
|
import { PdfEditorDialog } from './PdfEditorDialog';
|
||||||
|
|
||||||
export function ModalLayer() {
|
export function ModalLayer() {
|
||||||
const modal = useAppStore((s) => s.modal);
|
const modal = useAppStore((s) => s.modal);
|
||||||
@@ -23,6 +30,8 @@ export function ModalLayer() {
|
|||||||
return <ExportDocxDialog sourcePath={modal.props.sourcePath} />;
|
return <ExportDocxDialog sourcePath={modal.props.sourcePath} />;
|
||||||
case 'export-html':
|
case 'export-html':
|
||||||
return <ExportHtmlDialog sourcePath={modal.props.sourcePath} />;
|
return <ExportHtmlDialog sourcePath={modal.props.sourcePath} />;
|
||||||
|
case 'export-revealjs':
|
||||||
|
return <ExportRevealjsDialog sourcePath={modal.props.sourcePath} />;
|
||||||
case 'export-batch':
|
case 'export-batch':
|
||||||
return <ExportBatchDialog sourcePaths={modal.props.sourcePaths} />;
|
return <ExportBatchDialog sourcePaths={modal.props.sourcePaths} />;
|
||||||
case 'settings':
|
case 'settings':
|
||||||
@@ -41,5 +50,22 @@ export function ModalLayer() {
|
|||||||
return <TableGeneratorDialog />;
|
return <TableGeneratorDialog />;
|
||||||
case 'find-in-files':
|
case 'find-in-files':
|
||||||
return <FindInFilesDialog />;
|
return <FindInFilesDialog />;
|
||||||
|
case 'crashReports':
|
||||||
|
return <CrashReportModal onClose={useAppStore.getState().closeModal} />;
|
||||||
|
case 'writing-analytics':
|
||||||
|
return <WritingAnalyticsDialog />;
|
||||||
|
case 'pdf-editor':
|
||||||
|
return (
|
||||||
|
<PdfEditorDialog
|
||||||
|
onClose={useAppStore.getState().closeModal}
|
||||||
|
initialFilePath={modal.props?.filePath}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
case 'universal-converter':
|
||||||
|
return <UniversalConverterDialog />;
|
||||||
|
case 'header-footer':
|
||||||
|
return <HeaderFooterDialog />;
|
||||||
|
case 'batch-media-converter':
|
||||||
|
return <BatchMediaConverterDialog />;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user