summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/fonts/reducers/fonts.js
blob: 92a6ef87c13237c0072657509d751b524938b263 (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 {
  UPDATE_FONTS,
} = require("resource://devtools/client/inspector/fonts/actions/index.js");

const INITIAL_FONT_DATA = {
  // All fonts on the current page.
  allFonts: [],
};

const reducers = {
  [UPDATE_FONTS](_, { allFonts }) {
    return { allFonts };
  },
};

module.exports = function (fontData = INITIAL_FONT_DATA, action) {
  const reducer = reducers[action.type];
  if (!reducer) {
    return fontData;
  }
  return reducer(fontData, action);
};