Go to file
Michael Mainguy 63550a42b4 Implement lazy loading for 3D viewers to optimize bundle size
- Use React.lazy() and Suspense for BabylonViewer and BabylonTimelineViewer
- Reduce main bundle size from 7.4MB to 336KB (95% reduction)
- Split Babylon.js into separate chunk loaded only when 3D views are selected
- Add ThreeDViewerLoading component with spinner for better UX
- Babylon.js libraries now load on-demand when user clicks 3D view toggles

Bundle optimization results:
- Main bundle: 336KB (was 7.4MB)
- Babylon chunk: 7MB (lazy-loaded)
- BabylonViewer: 3.6KB (lazy-loaded)
- BabylonTimelineViewer: 6.6KB (lazy-loaded)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-11 12:21:18 -05:00
public Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
src Implement lazy loading for 3D viewers to optimize bundle size 2025-08-11 12:21:18 -05:00
types Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
.gitignore Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
analysis.css Refactored code to use css and be more modular. 2025-08-08 13:21:17 -05:00
CLAUDE.md Refactored code to use css and be more modular. 2025-08-08 13:21:17 -05:00
eslint.config.js Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
index.html Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
optimized.css Refactored code to use css and be more modular. 2025-08-08 13:21:17 -05:00
package-lock.json Implement comprehensive 3D timeline visualization with enhanced features 2025-08-07 09:21:45 -05:00
package.json Implement comprehensive 3D timeline visualization with enhanced features 2025-08-07 09:21:45 -05:00
README.md Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
tsconfig.app.json Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
tsconfig.json Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
tsconfig.node.json Initial commit: Performance Trace Analyzer with comprehensive features 2025-08-06 19:27:12 -05:00
vite.config.ts Fix TypeScript build errors and improve code quality 2025-08-11 11:29:10 -05:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      ...tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      ...tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      ...tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])