mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			123 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/* eslint-disable no-console */
 | 
						|
import chokidar from 'chokidar';
 | 
						|
import cors from 'cors';
 | 
						|
import { context } from 'esbuild';
 | 
						|
import type { Request, Response } from 'express';
 | 
						|
import express from 'express';
 | 
						|
import { packageOptions } from '../.build/common.js';
 | 
						|
import { generateLangium } from '../.build/generateLangium.js';
 | 
						|
import { defaultOptions, getBuildConfig } from './util.js';
 | 
						|
 | 
						|
const configs = Object.values(packageOptions).map(({ packageName }) =>
 | 
						|
  getBuildConfig({
 | 
						|
    ...defaultOptions,
 | 
						|
    minify: false,
 | 
						|
    core: false,
 | 
						|
    options: packageOptions[packageName],
 | 
						|
  })
 | 
						|
);
 | 
						|
const mermaidIIFEConfig = getBuildConfig({
 | 
						|
  ...defaultOptions,
 | 
						|
  minify: false,
 | 
						|
  core: false,
 | 
						|
  options: packageOptions.mermaid,
 | 
						|
  format: 'iife',
 | 
						|
});
 | 
						|
configs.push(mermaidIIFEConfig);
 | 
						|
 | 
						|
const contexts = await Promise.all(
 | 
						|
  configs.map(async (config) => ({ config, context: await context(config) }))
 | 
						|
);
 | 
						|
 | 
						|
let rebuildCounter = 1;
 | 
						|
const rebuildAll = async () => {
 | 
						|
  const buildNumber = rebuildCounter++;
 | 
						|
  const timeLabel = `Rebuild ${buildNumber} Time (total)`;
 | 
						|
  console.time(timeLabel);
 | 
						|
  await Promise.all(
 | 
						|
    contexts.map(async ({ config, context }) => {
 | 
						|
      const buildVariant = `Rebuild ${buildNumber} Time (${Object.keys(config.entryPoints!)[0]} ${config.format})`;
 | 
						|
      console.time(buildVariant);
 | 
						|
      await context.rebuild();
 | 
						|
      console.timeEnd(buildVariant);
 | 
						|
    })
 | 
						|
  ).catch((e) => console.error(e));
 | 
						|
  console.timeEnd(timeLabel);
 | 
						|
};
 | 
						|
 | 
						|
let clients: { id: number; response: Response }[] = [];
 | 
						|
function eventsHandler(request: Request, response: Response) {
 | 
						|
  const headers = {
 | 
						|
    'Content-Type': 'text/event-stream',
 | 
						|
    Connection: 'keep-alive',
 | 
						|
    'Cache-Control': 'no-cache',
 | 
						|
  };
 | 
						|
  response.writeHead(200, headers);
 | 
						|
  const clientId = Date.now();
 | 
						|
  clients.push({
 | 
						|
    id: clientId,
 | 
						|
    response,
 | 
						|
  });
 | 
						|
  request.on('close', () => {
 | 
						|
    clients = clients.filter((client) => client.id !== clientId);
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
let timeoutID: NodeJS.Timeout | undefined = undefined;
 | 
						|
 | 
						|
/**
 | 
						|
 * Debounce file change events to avoid rebuilding multiple times.
 | 
						|
 */
 | 
						|
function handleFileChange() {
 | 
						|
  if (timeoutID !== undefined) {
 | 
						|
    clearTimeout(timeoutID);
 | 
						|
  }
 | 
						|
  // eslint-disable-next-line @typescript-eslint/no-misused-promises
 | 
						|
  timeoutID = setTimeout(async () => {
 | 
						|
    await rebuildAll();
 | 
						|
    sendEventsToAll();
 | 
						|
    timeoutID = undefined;
 | 
						|
  }, 100);
 | 
						|
}
 | 
						|
 | 
						|
function sendEventsToAll() {
 | 
						|
  clients.forEach(({ response }) => response.write(`data: ${Date.now()}\n\n`));
 | 
						|
}
 | 
						|
 | 
						|
async function createServer() {
 | 
						|
  await generateLangium();
 | 
						|
  handleFileChange();
 | 
						|
  const app = express();
 | 
						|
  chokidar
 | 
						|
    .watch('**/src/**/*.{js,ts,langium,yaml,json}', {
 | 
						|
      ignoreInitial: true,
 | 
						|
      ignored: [/node_modules/, /dist/, /docs/, /coverage/],
 | 
						|
    })
 | 
						|
    // eslint-disable-next-line @typescript-eslint/no-misused-promises
 | 
						|
    .on('all', async (event, path) => {
 | 
						|
      // Ignore other events.
 | 
						|
      if (!['add', 'change'].includes(event)) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      console.log(`${path} changed. Rebuilding...`);
 | 
						|
      if (path.endsWith('.langium')) {
 | 
						|
        await generateLangium();
 | 
						|
      }
 | 
						|
      handleFileChange();
 | 
						|
    });
 | 
						|
 | 
						|
  app.use(cors());
 | 
						|
  app.get('/events', eventsHandler);
 | 
						|
  for (const { packageName } of Object.values(packageOptions)) {
 | 
						|
    app.use(express.static(`./packages/${packageName}/dist`));
 | 
						|
  }
 | 
						|
  app.use(express.static('demos'));
 | 
						|
  app.use(express.static('cypress/platform'));
 | 
						|
 | 
						|
  app.listen(9000, () => {
 | 
						|
    console.log(`Listening on http://localhost:9000`);
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
void createServer();
 |