diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/inspector/components/inspector-tab-panel.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/inspector/components/inspector-tab-panel.js')
-rw-r--r-- | devtools/client/inspector/components/inspector-tab-panel.js | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/devtools/client/inspector/components/inspector-tab-panel.js b/devtools/client/inspector/components/inspector-tab-panel.js new file mode 100644 index 000000000..68db7781e --- /dev/null +++ b/devtools/client/inspector/components/inspector-tab-panel.js @@ -0,0 +1,67 @@ +/* -*- 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"; + +const { DOM, createClass, PropTypes } = require("devtools/client/shared/vendor/react"); + +// Shortcuts +const { div } = DOM; + +/** + * Helper panel component that is using an existing DOM node + * as the content. It's used by Sidebar as well as SplitBox + * components. + */ +var InspectorTabPanel = createClass({ + displayName: "InspectorTabPanel", + + propTypes: { + // ID of the node that should be rendered as the content. + id: PropTypes.string.isRequired, + // Optional prefix for panel IDs. + idPrefix: PropTypes.string, + // Optional mount callback + onMount: PropTypes.func, + }, + + getDefaultProps: function () { + return { + idPrefix: "", + }; + }, + + componentDidMount: function () { + let doc = this.refs.content.ownerDocument; + let panel = doc.getElementById(this.props.idPrefix + this.props.id); + + // Append existing DOM node into panel's content. + this.refs.content.appendChild(panel); + + if (this.props.onMount) { + this.props.onMount(this.refs.content, this.props); + } + }, + + componentWillUnmount: function () { + let doc = this.refs.content.ownerDocument; + let panels = doc.getElementById("tabpanels"); + + // Move panel's content node back into list of tab panels. + panels.appendChild(this.refs.content.firstChild); + }, + + render: function () { + return ( + div({ + ref: "content", + className: "devtools-inspector-tab-panel", + }) + ); + } +}); + +module.exports = InspectorTabPanel; |