/* Copyright 2015, 2016 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ 'use strict'; import React from 'react'; import * as Roles from '../../../Roles'; var reverseRoles = {}; Object.keys(Roles.LEVEL_ROLE_MAP).forEach(function(key) { reverseRoles[Roles.LEVEL_ROLE_MAP[key]] = key; }); module.exports = React.createClass({ displayName: 'PowerSelector', propTypes: { value: React.PropTypes.number.isRequired, // if true, the ; } customPicker = of { input }; } var selectValue; if (this.state.custom) { selectValue = "Custom"; } else { selectValue = Roles.LEVEL_ROLE_MAP[this.props.value] || "Custom"; } var select; if (this.props.disabled) { select = { selectValue }; } else { // Each level must have a definition in LEVEL_ROLE_MAP const levels = [0, 50, 100]; let options = levels.map((level) => { return { value: Roles.LEVEL_ROLE_MAP[level], // Give a userDefault (users_default in the power event) of 0 but // because level !== undefined, this should never be used. text: Roles.textualPowerLevel(level, 0), } }); options.push({ value: "Custom", text: "Custom level" }); options = options.map((op) => { return ; }); select = ; } return ( { select } { customPicker } ); } });