@momentum-ui/react
Version:
Cisco Momentum UI framework for ReactJs applications
114 lines (89 loc) • 4.36 kB
JavaScript
var _excluded = ["active", "ariaLabel", "className", "disabled", "iconColor", "iconSize", "onClick", "type"];
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
/** @component call-control */
import React from 'react';
import PropTypes from 'prop-types';
import { Button, Icon } from "./..";
var CallControl = /*#__PURE__*/function (_React$PureComponent) {
_inheritsLoose(CallControl, _React$PureComponent);
function CallControl() {
return _React$PureComponent.apply(this, arguments) || this;
}
var _proto = CallControl.prototype;
_proto.render = function render() {
var _this$props = this.props,
active = _this$props.active,
ariaLabel = _this$props.ariaLabel,
className = _this$props.className,
disabled = _this$props.disabled,
iconColor = _this$props.iconColor,
iconSize = _this$props.iconSize,
onClick = _this$props.onClick,
type = _this$props.type,
otherHTMLProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
var activeRed = ['camera-muted', 'cancel', 'microphone-muted', 'speaker'];
var activeBlue = ['camera', 'participant-list', 'share-screen'];
var getActiveColor = function getActiveColor() {
switch (true) {
case activeRed.includes(type):
return 'red';
case activeBlue.includes(type):
return 'blue';
default:
return 'dark-gray';
}
};
var getColor = function getColor() {
return active ? getActiveColor() : 'dark-gray';
};
return /*#__PURE__*/React.createElement(Button, _extends({
ariaLabel: ariaLabel || type,
circle: true,
className: 'md-call-control' + ("" + (className && " " + className || '')),
color: type === 'cancel' ? 'red' : getColor(),
disabled: disabled,
onClick: onClick
}, otherHTMLProps), /*#__PURE__*/React.createElement(Icon, _extends({
name: type + "_" + iconSize
}, iconColor && {
color: iconColor
})));
};
return CallControl;
}(React.PureComponent);
CallControl.propTypes = {
/** @prop Sets active css styling | false */
active: PropTypes.bool,
/** @prop Text to display for blindness accessibility features | '' */
ariaLabel: PropTypes.string,
/** @prop Optional css class string | '' */
className: PropTypes.string,
/** @prop Sets the attribute disabled to the CallControl button | false */
disabled: PropTypes.bool,
/** @prop Optional icon color prop | $md-white-100 */
iconColor: PropTypes.string,
/** @prop Optional numeric icon size prop | 24 */
iconSize: PropTypes.number,
/** @prop Handler to be called when the user taps the CallControl button | null */
onClick: PropTypes.func,
/** @prop Optional numeric size prop for CallControl button | 56 */
size: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/** @prop Optional predefined CallControl prop type | '' */
type: PropTypes.oneOf(['activities', 'camera', 'camera-muted', 'cancel', 'handset', 'microphone-muted', 'more', 'participant-list', 'share-screen', 'speaker', 'view-list'])
};
CallControl.defaultProps = {
active: false,
ariaLabel: '',
className: '',
disabled: false,
iconColor: 'white-100',
iconSize: 24,
onClick: null,
size: 56,
type: ''
};
CallControl.displayName = 'CallControl';
export default CallControl;