All files / performance/src code-splitting.js

48.73% Statements 58/119
39.28% Branches 22/56
54.16% Functions 26/48
48.69% Lines 56/115

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402                            9x               9x 9x 9x                                                                                                                                                                                                                                       2x             1x             1x             2x 1x 1x   1x 1x               1x                         1x                     5x 5x 5x   5x   6x 1x 1x       5x                                 5x 5x   1x 1x                 5x 1x     4x                                                 3x 3x     3x 4x   3x         1x               3x         1x 1x 1x                                                   2x             1x                   3x 3x             7x 7x             1x 2x 2x   1x       2x                         1x 4x   2x             1x 1x   1x                        
/**
 * Coherent.js Code Splitting
 * 
 * Dynamic imports and code splitting utilities
 * 
 * @module performance/code-splitting
 */
 
/**
 * Code Splitter
 * Manages dynamic imports and lazy loading
 */
export class CodeSplitter {
  constructor(options = {}) {
    this.options = {
      preload: [],
      prefetch: [],
      timeout: 10000,
      retries: 3,
      ...options
    };
    
    this.modules = new Map();
    this.loading = new Map();
    this.failed = new Set();
  }
 
  /**
   * Dynamically import a module
   * 
   * @param {string} path - Module path
   * @param {Object} [options] - Import options
   * @returns {Promise} Module exports
   */
  async import(path, options = {}) {
    // Check cache
    if (this.modules.has(path)) {
      return this.modules.get(path);
    }
 
    // Check if already loading
    if (this.loading.has(path)) {
      return this.loading.get(path);
    }
 
    // Create import promise
    const importPromise = this.loadModule(path, options);
    this.loading.set(path, importPromise);
 
    try {
      const module = await importPromise;
      this.modules.set(path, module);
      this.loading.delete(path);
      return module;
    } catch (error) {
      this.loading.delete(path);
      this.failed.add(path);
      throw error;
    }
  }
 
  /**
   * Load module with retries
   */
  async loadModule(path, options = {}) {
    const maxRetries = options.retries ?? this.options.retries;
    const timeout = options.timeout ?? this.options.timeout;
    
    let lastError;
    
    for (let attempt = 0; attempt <= maxRetries; attempt++) {
      try {
        // Add cache busting if retry
        const importPath = attempt > 0 
          ? `${path}?retry=${attempt}&t=${Date.now()}`
          : path;
 
        // Import with timeout
        const module = await Promise.race([
          import(importPath),
          new Promise((_, reject) => 
            setTimeout(() => reject(new Error('Import timeout')), timeout)
          )
        ]);
 
        return module;
      } catch (error) {
        lastError = error;
        
        if (attempt < maxRetries) {
          // Exponential backoff
          await new Promise(resolve => 
            setTimeout(resolve, Math.pow(2, attempt) * 1000)
          );
        }
      }
    }
 
    throw new Error(`Failed to load module ${path}: ${lastError.message}`);
  }
 
  /**
   * Preload modules
   */
  async preload(paths) {
    const pathArray = Array.isArray(paths) ? paths : [paths];
    
    return Promise.all(
      pathArray.map(path => this.import(path).catch(err => {
        console.warn(`Failed to preload ${path}:`, err);
        return null;
      }))
    );
  }
 
  /**
   * Prefetch modules (low priority)
   */
  prefetch(paths) {
    const pathArray = Array.isArray(paths) ? paths : [paths];
    
    if (typeof requestIdleCallback !== 'undefined') {
      requestIdleCallback(() => {
        pathArray.forEach(path => {
          this.import(path).catch(() => {});
        });
      });
    } else {
      setTimeout(() => {
        pathArray.forEach(path => {
          this.import(path).catch(() => {});
        });
      }, 0);
    }
  }
 
  /**
   * Check if module is loaded
   */
  isLoaded(path) {
    return this.modules.has(path);
  }
 
  /**
   * Check if module is loading
   */
  isLoading(path) {
    return this.loading.has(path);
  }
 
  /**
   * Check if module failed to load
   */
  hasFailed(path) {
    return this.failed.has(path);
  }
 
  /**
   * Clear cache
   */
  clearCache(path = null) {
    if (path) {
      this.modules.delete(path);
      this.failed.delete(path);
    } else {
      this.modules.clear();
      this.failed.clear();
    }
  }
 
  /**
   * Get statistics
   */
  getStats() {
    return {
      loaded: this.modules.size,
      loading: this.loading.size,
      failed: this.failed.size,
      modules: Array.from(this.modules.keys())
    };
  }
}
 
/**
 * Create a code splitter
 */
export function createCodeSplitter(options = {}) {
  return new CodeSplitter(options);
}
 
/**
 * Lazy load a component
 * 
 * @param {Function} loader - Function that returns import promise
 * @param {Object} [options] - Lazy loading options
 * @returns {Function} Lazy component
 */
export function lazy(loader, options = {}) {
  let modulePromise = null;
  let module = null;
  let error = null;
 
  return function LazyComponent(props = {}) {
    // If already loaded, return component
    if (module) {
      const Component = module.default || module;
      return Component(props);
    }
 
    // If error occurred, show error
    Iif (error) {
      if (options.errorComponent) {
        return options.errorComponent({ error, retry: () => {
          error = null;
          modulePromise = null;
          return LazyComponent(props);
        }});
      }
      return {
        div: {
          className: 'lazy-error',
          text: `Error loading component: ${error.message}`
        }
      };
    }
 
    // Start loading if not already
    Eif (!modulePromise) {
      modulePromise = loader()
        .then(mod => {
          module = mod;
          return mod;
        })
        .catch(err => {
          error = err;
          throw err;
        });
    }
 
    // Show loading state
    if (options.loadingComponent) {
      return options.loadingComponent(props);
    }
 
    return {
      div: {
        className: 'lazy-loading',
        text: options.loadingText || 'Loading...'
      }
    };
  };
}
 
/**
 * Split component into chunks
 */
export function splitComponent(componentPath, options = {}) {
  const splitter = new CodeSplitter(options);
  
  return lazy(
    () => splitter.import(componentPath),
    options
  );
}
 
/**
 * Create route-based code splitting
 */
export function createRouteSplitter(routes) {
  const splitter = new CodeSplitter();
  const routeMap = new Map();
 
  // Process routes
  for (const [path, config] of Object.entries(routes)) {
    if (typeof config === 'string') {
      // Simple path to component
      routeMap.set(path, {
        loader: () => splitter.import(config)
      });
    } else {
      // Full config
      routeMap.set(path, {
        loader: () => splitter.import(config.component),
        preload: config.preload || [],
        ...config
      });
    }
  }
 
  return {
    /**
     * Load route component
     */
    async loadRoute(path) {
      const route = routeMap.get(path);
      Eif (!route) {
        throw new Error(`Route not found: ${path}`);
      }
 
      // Preload dependencies
      if (route.preload && route.preload.length > 0) {
        splitter.prefetch(route.preload);
      }
 
      // Load main component
      return await route.loader();
    },
 
    /**
     * Preload route
     */
    preloadRoute(path) {
      const route = routeMap.get(path);
      if (route) {
        return route.loader();
      }
    },
 
    /**
     * Get all routes
     */
    getRoutes() {
      return Array.from(routeMap.keys());
    },
 
    /**
     * Get splitter instance
     */
    getSplitter() {
      return splitter;
    }
  };
}
 
/**
 * Bundle analyzer helper
 */
export class BundleAnalyzer {
  constructor() {
    this.chunks = new Map();
    this.loadTimes = new Map();
  }
 
  /**
   * Track chunk load
   */
  trackLoad(chunkName, size, loadTime) {
    this.chunks.set(chunkName, { size, loadTime });
    this.loadTimes.set(chunkName, loadTime);
  }
 
  /**
   * Get bundle statistics
   */
  getStats() {
    const chunks = Array.from(this.chunks.entries());
    const totalSize = chunks.reduce((sum, [, chunk]) => sum + chunk.size, 0);
    const avgLoadTime = chunks.reduce((sum, [, chunk]) => sum + chunk.loadTime, 0) / chunks.length;
 
    return {
      totalChunks: chunks.length,
      totalSize,
      averageLoadTime: avgLoadTime,
      chunks: chunks.map(([name, data]) => ({
        name,
        size: data.size,
        loadTime: data.loadTime,
        percentage: (data.size / totalSize * 100).toFixed(2)
      }))
    };
  }
 
  /**
   * Find largest chunks
   */
  getLargestChunks(limit = 10) {
    return Array.from(this.chunks.entries())
      .sort((a, b) => b[1].size - a[1].size)
      .slice(0, limit)
      .map(([name, data]) => ({ name, ...data }));
  }
 
  /**
   * Find slowest chunks
   */
  getSlowestChunks(limit = 10) {
    return Array.from(this.chunks.entries())
      .sort((a, b) => b[1].loadTime - a[1].loadTime)
      .slice(0, limit)
      .map(([name, data]) => ({ name, ...data }));
  }
}
 
export default {
  CodeSplitter,
  createCodeSplitter,
  lazy,
  splitComponent,
  createRouteSplitter,
  BundleAnalyzer
};