aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/xtext/HighlightingService.ts
blob: a126ee40c3fa908fc8d8d3e522b93cce8be3b81e (plain) (blame)
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
import type EditorStore from '../editor/EditorStore';
import type { IHighlightRange } from '../editor/semanticHighlighting';

import type UpdateService from './UpdateService';
import { highlightingResult } from './xtextServiceResults';

export default class HighlightingService {
  constructor(
    private readonly store: EditorStore,
    private readonly updateService: UpdateService,
  ) {}

  onPush(push: unknown): void {
    const { regions } = highlightingResult.parse(push);
    const allChanges = this.updateService.computeChangesSinceLastUpdate();
    const ranges: IHighlightRange[] = [];
    regions.forEach(({ offset, length, styleClasses }) => {
      if (styleClasses.length === 0) {
        return;
      }
      const from = allChanges.mapPos(offset);
      const to = allChanges.mapPos(offset + length);
      if (to <= from) {
        return;
      }
      ranges.push({
        from,
        to,
        classes: styleClasses,
      });
    });
    this.store.updateSemanticHighlighting(ranges);
  }

  onDisconnect(): void {
    this.store.updateSemanticHighlighting([]);
  }
}