feat: Mobile improvements and Add selective file staging and improve branch switching

This commit is contained in:
gsxdsm
2026-02-17 15:20:28 -08:00
parent de021f96bf
commit 7fcf3c1e1f
42 changed files with 2706 additions and 256 deletions

View File

@@ -2,7 +2,7 @@ import * as path from 'path';
import * as fs from 'fs';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
import { defineConfig, type Plugin } from 'vite';
import electron from 'vite-plugin-electron/simple';
import { TanStackRouterVite } from '@tanstack/router-plugin/vite';
import { fileURLToPath } from 'url';
@@ -13,6 +13,66 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
const packageJson = JSON.parse(fs.readFileSync(path.resolve(__dirname, 'package.json'), 'utf-8'));
const appVersion = packageJson.version;
/**
* Vite plugin to optimize the HTML output for mobile PWA loading speed.
*
* Problem: Vite adds modulepreload links for ALL vendor chunks in index.html,
* including heavy route-specific libraries like ReactFlow (172KB), xterm (676KB),
* and CodeMirror (436KB). On mobile, these modulepreloads compete with critical
* resources for bandwidth, delaying First Contentful Paint by 500ms+.
*
* Solution: Convert modulepreload to prefetch for route-specific vendor chunks.
* - modulepreload: Browser parses + compiles immediately (blocks FCP)
* - prefetch: Browser downloads at lowest priority during idle (no FCP impact)
*
* This means these chunks are still cached for when the user navigates to their
* respective routes, but they don't block the initial page load.
*/
function mobilePreloadOptimizer(): Plugin {
// Vendor chunks that are route-specific and should NOT block initial load.
// These libraries are only needed on specific routes:
// - vendor-reactflow: /graph route only
// - vendor-xterm: /terminal route only
// - vendor-codemirror: spec/XML editor routes only
// - vendor-markdown: agent view, wiki, and other markdown-rendering routes
const deferredChunks = [
'vendor-reactflow',
'vendor-xterm',
'vendor-codemirror',
'vendor-markdown',
];
return {
name: 'mobile-preload-optimizer',
enforce: 'post',
transformIndexHtml(html) {
// Convert modulepreload to prefetch for deferred chunks
// This preserves the caching benefit while eliminating the FCP penalty
for (const chunk of deferredChunks) {
// Match modulepreload links for this chunk
const modulePreloadRegex = new RegExp(
`<link rel="modulepreload" crossorigin href="(\\./assets/${chunk}-[^"]+\\.js)">`,
'g'
);
html = html.replace(modulePreloadRegex, (_match, href) => {
return `<link rel="prefetch" href="${href}" as="script">`;
});
// Also convert eagerly-loaded CSS for these chunks to lower priority
const cssRegex = new RegExp(
`<link rel="stylesheet" crossorigin href="(\\./assets/${chunk}-[^"]+\\.css)">`,
'g'
);
html = html.replace(cssRegex, (_match, href) => {
return `<link rel="prefetch" href="${href}" as="style">`;
});
}
return html;
},
};
}
export default defineConfig(({ command }) => {
// Only skip electron plugin during dev server in CI (no display available for Electron)
// Always include it during build - we need dist-electron/main.js for electron-builder
@@ -58,6 +118,9 @@ export default defineConfig(({ command }) => {
}),
tailwindcss(),
react(),
// Mobile PWA optimization: demote route-specific vendor chunks from
// modulepreload (blocks FCP) to prefetch (background download)
mobilePreloadOptimizer(),
],
resolve: {
alias: {
@@ -78,6 +141,12 @@ export default defineConfig(({ command }) => {
},
build: {
outDir: 'dist',
// Target modern browsers for smaller output (no legacy polyfills)
target: 'esnext',
// Enable CSS code splitting for smaller initial CSS payload
cssCodeSplit: true,
// Increase chunk size warning to avoid over-splitting (which hurts HTTP/2 multiplexing)
chunkSizeWarningLimit: 600,
rollupOptions: {
external: [
'child_process',
@@ -92,6 +161,53 @@ export default defineConfig(({ command }) => {
'events',
'readline',
],
output: {
// Manual chunks for optimal caching and loading on mobile
manualChunks(id) {
// Vendor: React core (rarely changes, cache long-term)
if (id.includes('node_modules/react/') || id.includes('node_modules/react-dom/')) {
return 'vendor-react';
}
// Vendor: TanStack Router + Query (used on every page)
if (id.includes('@tanstack/react-router') || id.includes('@tanstack/react-query')) {
return 'vendor-tanstack';
}
// Vendor: UI library - split Radix UI (critical) from Lucide icons (deferrable)
// Radix UI primitives are used on almost every page for dialogs, tooltips, etc.
if (id.includes('@radix-ui/')) {
return 'vendor-radix';
}
// Lucide icons: Split from Radix so tree-shaken icons don't bloat the critical path
if (id.includes('lucide-react')) {
return 'vendor-icons';
}
// Fonts: Each font family gets its own chunk (loaded on demand)
if (id.includes('@fontsource/')) {
const match = id.match(/@fontsource\/([^/]+)/);
if (match) return `font-${match[1]}`;
}
// CodeMirror: Heavy editor - only loaded when needed
if (id.includes('@codemirror/') || id.includes('@lezer/')) {
return 'vendor-codemirror';
}
// Xterm: Terminal - only loaded when needed
if (id.includes('xterm') || id.includes('@xterm/')) {
return 'vendor-xterm';
}
// React Flow: Graph visualization - only loaded on dependency graph view
if (id.includes('@xyflow/') || id.includes('reactflow')) {
return 'vendor-reactflow';
}
// Zustand + Zod: State management and validation
if (id.includes('zustand') || id.includes('zod')) {
return 'vendor-state';
}
// React Markdown: Only needed on routes with markdown rendering
if (id.includes('react-markdown') || id.includes('remark-') || id.includes('rehype-')) {
return 'vendor-markdown';
}
},
},
},
},
optimizeDeps: {