@carrot-farm/mongsil-ui
Version:
react ui library
39 lines (38 loc) • 2.15 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 * as React from 'react';
var DropdownView = React.forwardRef(function (_a, ref) {
var button = _a.button, position = _a.position, _b = _a.className, className = _b === void 0 ? '' : _b, _c = _a.styled, styled = _c === void 0 ? true : _c, _d = _a.visible, visible = _d === void 0 ? false : _d, children = _a.children, onClick = _a.onClick, args = __rest(_a, ["button", "position", "className", "styled", "visible", "children", "onClick"]);
return (React.createElement(React.Fragment, null,
React.createElement("input", { type: "hidden", className: "dropdown-hidden" }),
React.createElement("div", __assign({ className: "dropdown " + (position === 'left'
? 'dropdown-left'
: position === 'right'
? 'dropdown-right'
: position === 'top'
? 'dropdown-top'
: '') + " " + className, ref: ref }, args),
React.createElement("label", { tabIndex: 0, className: "btn m-1", onClick: onClick }, button),
React.createElement("ul", { tabIndex: 0, className: "dropdown-content menu p-2 w-52 " + (styled === true ? 'styled' : '') + " " + (visible === true ? 'visible' : '') }, children))));
});
export default DropdownView;