summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/src/util/extractKey.ts
blob: fd14c5a64fd410f5182c32b9835310e8943396d5 (plain)
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
import { Key, KeyPath, Value } from "./types";
import valueToKey from "./valueToKey";

// http://www.w3.org/TR/2015/REC-IndexedDB-20150108/#dfn-steps-for-extracting-a-key-from-a-value-using-a-key-path
const extractKey = (keyPath: KeyPath, value: Value) => {
  if (Array.isArray(keyPath)) {
    const result: Key[] = [];

    for (let item of keyPath) {
      // This doesn't make sense to me based on the spec, but it is needed to pass the W3C KeyPath tests (see same
      // comment in validateKeyPath)
      if (
        item !== undefined &&
        item !== null &&
        typeof item !== "string" &&
        (item as any).toString
      ) {
        item = (item as any).toString();
      }
      result.push(valueToKey(extractKey(item, value)));
    }

    return result;
  }

  if (keyPath === "") {
    return value;
  }

  let remainingKeyPath: string | null = keyPath;
  let object = value;

  while (remainingKeyPath !== null) {
    let identifier;

    const i = remainingKeyPath.indexOf(".");
    if (i >= 0) {
      identifier = remainingKeyPath.slice(0, i);
      remainingKeyPath = remainingKeyPath.slice(i + 1);
    } else {
      identifier = remainingKeyPath;
      remainingKeyPath = null;
    }

    if (!object.hasOwnProperty(identifier)) {
      return;
    }

    object = object[identifier];
  }

  return object;
};

export default extractKey;