summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/im/messages/mail/inline.js
blob: a6e7f72302951a898bf14ebe91cd40f6ca65ffff (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
/* 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/. */

function checkNewText(target) {
  if (target.className == "event-row") {
    let parent = target.closest(".event");
    // We need to start a group with this element if there are at least 4
    // system messages and they aren't already grouped.
    if (
      !parent?.grouped &&
      parent?.querySelector(".event-row:nth-of-type(4)")
    ) {
      let toggle = document.createElement("div");
      toggle.className = "eventToggle";
      toggle.addEventListener("click", event => {
        toggle.closest(".event").classList.toggle("hide-children");
      });
      parent.insertBefore(
        toggle,
        parent.querySelector(".event-row:nth-of-type(2)")
      );
      parent.classList.add("hide-children");
      parent.grouped = true;
    }
  }
}

new MutationObserver(function (aMutations) {
  for (let mutation of aMutations) {
    for (let node of mutation.addedNodes) {
      if (node instanceof HTMLElement) {
        checkNewText(node);
      }
    }
  }
}).observe(document.getElementById("ibcontent"), {
  childList: true,
  subtree: true,
});