react-chat-elements
Version:
Reactjs chat components
39 lines (38 loc) • 2.83 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { useState } from 'react';
import './Dropdown.css';
import classNames from 'classnames';
import Button from '../Button/Button';
var Dropdown = function (_a) {
var _b;
var _c = _a.animationPosition, animationPosition = _c === void 0 ? 'nortwest' : _c, _d = _a.animationType, animationType = _d === void 0 ? 'default' : _d, props = __rest(_a, ["animationPosition", "animationType"]);
var _e = useState(undefined), show = _e[0], setShow = _e[1];
var onBlur = function () {
if (show === true)
setShow(false);
};
return (_jsxs("div", __assign({ className: classNames('rce-dropdown-container', props.className), onBlur: onBlur }, { children: [_jsx(Button, __assign({}, props.buttonProps, { onClick: function () { return setShow(!show); } })), _jsx("div", __assign({ className: classNames('rce-dropdown', animationType, 'rce-dropdown-open__' + animationPosition, { 'dropdown-hide': show === false }, { 'dropdown-show': show === true }) }, { children: _jsxs("ul", { children: [props.title && _jsx("span", __assign({ className: 'rce-dropdown-title' }, { children: props.title })), (_b = props.items) === null || _b === void 0 ? void 0 : _b.map(function (x, i) { return (_jsx("li", __assign({ onMouseDown: function (e) { return props.onSelect(i); } }, { children: x instanceof Object ? (x.icon ? (_jsxs("span", __assign({ className: 'rce-button-icon--container' }, { children: [(x.icon.float === 'right' || !x.icon.float) && _jsx("a", { children: x.text }), _jsx("span", __assign({ style: { float: x.icon.float, color: x.icon.color, fontSize: x.icon.size || 12 }, className: classNames('rce-button-icon', x.icon.className) }, { children: x.icon.component })), x.icon.float === 'left' && _jsx("a", { children: x.text })] }))) : (_jsx("a", { children: x.text }))) : (_jsx("a", { children: x })) }), i)); })] }) }))] })));
};
export default Dropdown;