summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/reps/promise.js
blob: 0a903d366cdf9721eccc2512d75d0ca56ac15265 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* 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";

// Make this available to both AMD and CJS environments
define(function (require, exports, module) {
  // ReactJS
  const React = require("devtools/client/shared/vendor/react");
  // Dependencies
  const { createFactories, isGrip } = require("./rep-utils");
  const { PropRep } = createFactories(require("./prop-rep"));
  // Shortcuts
  const { span } = React.DOM;

  /**
   * Renders a DOM Promise object.
   */
  const PromiseRep = React.createClass({
    displayName: "Promise",

    propTypes: {
      object: React.PropTypes.object.isRequired,
      mode: React.PropTypes.string,
    },

    getTitle: function (object) {
      const title = object.class;
      if (this.props.objectLink) {
        return this.props.objectLink({
          object: object
        }, title);
      }
      return title;
    },

    getProps: function (promiseState) {
      const keys = ["state"];
      if (Object.keys(promiseState).includes("value")) {
        keys.push("value");
      }

      return keys.map((key, i) => {
        return PropRep(Object.assign({}, this.props, {
          mode: "tiny",
          name: `<${key}>`,
          object: promiseState[key],
          equal: ": ",
          delim: i < keys.length - 1 ? ", " : ""
        }));
      });
    },

    render: function () {
      const object = this.props.object;
      const {promiseState} = object;
      let objectLink = this.props.objectLink || span;

      if (this.props.mode == "tiny") {
        let { Rep } = createFactories(require("./rep"));

        return (
          span({className: "objectBox objectBox-object"},
            this.getTitle(object),
            objectLink({
              className: "objectLeftBrace",
              object: object
            }, " { "),
            Rep({object: promiseState.state}),
            objectLink({
              className: "objectRightBrace",
              object: object
            }, " }")
          )
        );
      }

      const props = this.getProps(promiseState);
      return (
        span({className: "objectBox objectBox-object"},
          this.getTitle(object),
          objectLink({
            className: "objectLeftBrace",
            object: object
          }, " { "),
          ...props,
          objectLink({
            className: "objectRightBrace",
            object: object
          }, " }")
        )
      );
    },
  });

  // Registration
  function supportsObject(object, type) {
    if (!isGrip(object)) {
      return false;
    }
    return type === "Promise";
  }

  // Exports from this module
  exports.PromiseRep = {
    rep: PromiseRep,
    supportsObject: supportsObject
  };
});