aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/language/folding.ts
blob: 4dabfa27391b30e0d5b3d60f71601f7969a5defb (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
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
import type { EditorState } from '@codemirror/state';
import type { SyntaxNode } from '@lezer/common';

export type FoldRange = { from: number; to: number };

/**
 * Folds a block comment between its delimiters.
 *
 * @param node the node to fold
 * @returns the folding range or `null` is there is nothing to fold
 */
export function foldBlockComment(node: SyntaxNode): FoldRange {
  return {
    from: node.from + 2,
    to: node.to - 2,
  };
}

/**
 * Folds a declaration after the first element if it appears on the opening line,
 * otherwise folds after the opening keyword.
 *
 * @example
 * First element on the opening line:
 * ```
 * scope Family = 1,
 *       Person += 5..10.
 * ```
 * becomes
 * ```
 * scope Family = 1,[...].
 * ```
 *
 * @example
 * First element not on the opening line:
 * ```
 * scope Family
 *       = 1,
 *       Person += 5..10.
 * ```
 * becomes
 * ```
 * scope [...].
 * ```
 *
 * @param node the node to fold
 * @param state the editor state
 * @returns the folding range or `null` is there is nothing to fold
 */
export function foldDeclaration(
  node: SyntaxNode,
  state: EditorState,
): FoldRange | null {
  const { firstChild: open, lastChild: close } = node;
  if (open === null || close === null) {
    return null;
  }
  const cursor = open.cursor();
  const lineEnd = state.doc.lineAt(open.from).to;
  let foldFrom = open.to;
  while (cursor.next() && cursor.from < lineEnd) {
    if (cursor.type.name === ',') {
      foldFrom = cursor.to;
      break;
    }
  }
  return {
    from: foldFrom,
    to: close.from,
  };
}

/**
 * Folds a node only if it has at least one sibling of the same type.
 *
 * The folding range will be the entire `node`.
 *
 * @param node the node to fold
 * @returns the folding range or `null` is there is nothing to fold
 */
function foldWithSibling(node: SyntaxNode): FoldRange | null {
  const { parent } = node;
  if (parent === null) {
    return null;
  }
  const { firstChild } = parent;
  if (firstChild === null) {
    return null;
  }
  const cursor = firstChild.cursor();
  let nSiblings = 0;
  while (cursor.nextSibling()) {
    if (cursor.type === node.type) {
      nSiblings += 1;
    }
    if (nSiblings >= 2) {
      return {
        from: node.from,
        to: node.to,
      };
    }
  }
  return null;
}

function foldWholeNode(node: SyntaxNode): FoldRange {
  return {
    from: node.from,
    to: node.to,
  };
}

export function foldConjunction(node: SyntaxNode): FoldRange | null {
  if (node.parent?.type?.name === 'PredicateBody') {
    return foldWithSibling(node);
  }
  return foldWholeNode(node);
}