summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/resource/legacy-listeners/css-changes.js
blob: e9f3e17075ebb21ec44bd6e1ea6fd9e61fad0609 (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
/* 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";

const ResourceCommand = require("resource://devtools/shared/commands/resource/resource-command.js");

module.exports = async function ({ targetFront, onAvailable }) {
  if (!targetFront.hasActor("changes")) {
    return;
  }

  const changesFront = await targetFront.getFront("changes");

  // Get all changes collected up to this point by the ChangesActor on the server,
  // then fire each change as "add-change".
  const changes = await changesFront.allChanges();
  await onAvailable(changes.map(change => toResource(change)));

  changesFront.on("add-change", change => onAvailable([toResource(change)]));
};

function toResource(change) {
  return Object.assign(change, {
    resourceType: ResourceCommand.TYPES.CSS_CHANGE,
  });
}