summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/utils/sort-utils.js
blob: a7f49417e88973f30daaffe732eb3bc64490a4a5 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

/**
 * Sorts object by keys in alphabetical order
 * If object has nested children, it sorts the child-elements also by keys
 * @param {object} which should be sorted by keys in alphabetical order
 */
function sortObjectKeys(object) {
  if (object == null) {
    return null;
  }

  if (Array.isArray(object)) {
    for (let i = 0; i < object.length; i++) {
      if (typeof object[i] === "object") {
        object[i] = sortObjectKeys(object[i]);
      }
    }
    return object;
  }

  return Object.keys(object)
    .sort(function (left, right) {
      return left.toLowerCase().localeCompare(right.toLowerCase());
    })
    .reduce((acc, key) => {
      if (typeof object[key] === "object") {
        acc[key] = sortObjectKeys(object[key]);
      } else {
        acc[key] = object[key];
      }
      return acc;
    }, Object.create(null));
}

module.exports = {
  sortObjectKeys,
};