Created
June 23, 2016 18:40
-
-
Save helenvholmes/f15e26d2312700576122262a12c37317 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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: dom, createClass, PropTypes, addons } = | |
require("devtools/client/shared/vendor/react"); | |
const { getStr } = require("../utils/l10n"); | |
const Types = require("../types"); | |
module.exports = createClass({ | |
displayName: "DeviceModal", | |
propTypes: { | |
devices: PropTypes.shape(Types.devices).isRequired, | |
onDeviceListUpdate: PropTypes.func.isRequired, | |
onUpdateDeviceDisplayed: PropTypes.func.isRequired, | |
onUpdateDeviceModalOpen: PropTypes.func.isRequired, | |
}, | |
mixins: [ addons.PureRenderMixin ], | |
getInitialState() { | |
return {}; | |
}, | |
componentWillReceiveProps(nextProps) { | |
let { | |
devices, | |
} = nextProps; | |
for (let type of devices.types) { | |
for (let device of devices[type]) { | |
this.setState({ | |
[device.name]: device.displayed, | |
}); | |
} | |
} | |
}, | |
onDeviceCheckboxClick({ target }) { | |
this.setState({ | |
[target.value]: !this.state[target.value] | |
}); | |
}, | |
onDeviceModalSubmit() { | |
let { | |
devices, | |
onDeviceListUpdate, | |
onUpdateDeviceDisplayed, | |
onUpdateDeviceModalOpen, | |
} = this.props; | |
let displayedDeviceList = []; | |
for (let type of devices.types) { | |
for (let device of devices[type]) { | |
if (this.state[device.name] != device.displayed) { | |
onUpdateDeviceDisplayed(device, type, this.state[device.name]); | |
} | |
if (this.state[device.name]) { | |
displayedDeviceList.push(device.name); | |
} | |
} | |
} | |
onDeviceListUpdate(displayedDeviceList); | |
onUpdateDeviceModalOpen(false); | |
}, | |
render() { | |
let { | |
devices, | |
onUpdateDeviceModalOpen, | |
} = this.props; | |
let modalClass = "device-modal container fade-in"; | |
if (!devices.isModalOpen) { | |
modalClass = "device-modal container fade-out"; | |
} | |
const sortedDevices = {}; | |
for (let type of devices.types) { | |
sortedDevices[type] = Object.assign([], devices[type]) | |
.sort((a, b) => a.name.localeCompare(b.name)); | |
} | |
return dom.div( | |
{ | |
className: modalClass, | |
}, | |
dom.button({ | |
id: "device-close-button", | |
className: "toolbar-button devtools-button", | |
onClick: () => onUpdateDeviceModalOpen(false), | |
}), | |
dom.div( | |
{ | |
className: "device-modal-content", | |
}, | |
devices.types.map(type => { | |
return dom.div( | |
{ | |
className: "device-type", | |
key: type, | |
}, | |
dom.header( | |
{ | |
className: "device-header", | |
}, | |
type | |
), | |
sortedDevices[type].map(device => { | |
return dom.label( | |
{ | |
className: "device-label", | |
key: device.name, | |
}, | |
dom.input({ | |
className: "device-input-checkbox", | |
type: "checkbox", | |
value: device.name, | |
checked: this.state[device.name], | |
onChange: this.onDeviceCheckboxClick, | |
}), | |
device.name | |
); | |
}) | |
); | |
}) | |
), | |
dom.button( | |
{ | |
id: "device-submit-button", | |
onClick: this.onDeviceModalSubmit, | |
}, | |
getStr("responsive.done") | |
) | |
); | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment