RequestListColumnScheme.js (1043B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 "use strict"; 6 7 const { 8 Component, 9 } = require("resource://devtools/client/shared/vendor/react.mjs"); 10 const dom = require("resource://devtools/client/shared/vendor/react-dom-factories.js"); 11 const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.mjs"); 12 13 class RequestListColumnScheme extends Component { 14 static get propTypes() { 15 return { 16 item: PropTypes.object.isRequired, 17 }; 18 } 19 20 shouldComponentUpdate(nextProps) { 21 return ( 22 this.props.item.urlDetails.scheme !== nextProps.item.urlDetails.scheme 23 ); 24 } 25 26 render() { 27 const { urlDetails } = this.props.item; 28 return dom.td( 29 { 30 className: "requests-list-column requests-list-scheme", 31 title: urlDetails.scheme, 32 }, 33 urlDetails.scheme 34 ); 35 } 36 } 37 38 module.exports = RequestListColumnScheme;