How to use react-inspector - 2 common examples

To help you get started, we’ve selected a few react-inspector examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mhammond / aboutsync / src / common.jsx View on Github external
}
  } else {
    return 
  }
};

// Wrapper around ReactInspector.ObjectInspector that sets some common props
function ObjectInspector(props) {
  // We let React do the defaulting for us using defaultProps.
  return ;
}

ObjectInspector.defaultProps = {
  // This lib isn't styled with CSS, so we have to go through this (the default
  // background is white, which looks bad).
  theme: Object.assign({}, ReactInspector.chromeLight, {
    BASE_BACKGROUND_COLOR: "transparent"
  }),
  nodeRenderer: aboutSyncNodeRenderer
};


function valueLookupTable(o) {
  return new Map(Object.entries(o).map(([k, v]) => [v, k]));
}

// Map of error number to the key in Cr (e.g. 2147500036 => "NS_ERROR_ABORT")
const CrLookupTable = valueLookupTable(Components.results);
class ErrorDisplay extends React.Component {
  static get propTypes() {
    return {
      onClose: PropTypes.func,
github rafaelrozon / react-storybook-console / dist / register.js View on Github external
var elements = consoleArgs.map(function (arg) {

                var key = createItemKey('log_item_ndx_');

                var item = void 0;

                if ((typeof arg === 'undefined' ? 'undefined' : (0, _typeof3.default)(arg)) === 'object') {

                    item = _react2.default.createElement(
                        'div',
                        { style: _styles2.default.inspector, key: key },
                        _react2.default.createElement(_reactInspector.ObjectInspector, { data: arg, showNonenumerable: true })
                    );
                } else {

                    item = _react2.default.createElement(
                        'span',
                        { style: _styles2.default.element, key: key },
                        arg
                    );
                }

                return item;
            });

react-inspector

Power of Browser DevTools inspectors right inside your React app

MIT
Latest version published 11 months ago

Package Health Score

77 / 100
Full package analysis