aboutsummaryrefslogtreecommitdiff
path: root/src/content/domains/KeySequence.ts
blob: 6a05c2ff759384d2e72c1fffcfaf3489b4599730 (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
import Key, * as keyUtils from './Key';

export default class KeySequence {
  private keys: Key[];

  private constructor(keys: Key[]) {
    this.keys = keys;
  }

  static from(keys: Key[]): KeySequence {
    return new KeySequence(keys);
  }

  push(key: Key): number {
    return this.keys.push(key);
  }

  length(): number {
    return this.keys.length;
  }

  startsWith(o: KeySequence): boolean {
    if (this.keys.length < o.keys.length) {
      return false;
    }
    for (let i = 0; i < o.keys.length; ++i) {
      if (!keyUtils.equals(this.keys[i], o.keys[i])) {
        return false;
      }
    }
    return true;
  }

  getKeyArray(): Key[] {
    return this.keys;
  }
}

export const fromMapKeys = (keys: string): KeySequence => {
  const fromMapKeysRecursive = (
    remainings: string, mappedKeys: Key[],
  ): Key[] => {
    if (remainings.length === 0) {
      return mappedKeys;
    }

    let nextPos = 1;
    if (remainings.startsWith('<')) {
      let ltPos = remainings.indexOf('>');
      if (ltPos > 0) {
        nextPos = ltPos + 1;
      }
    }

    return fromMapKeysRecursive(
      remainings.slice(nextPos),
      mappedKeys.concat([keyUtils.fromMapKey(remainings.slice(0, nextPos))])
    );
  };

  let data = fromMapKeysRecursive(keys, []);
  return KeySequence.from(data);
};