sailboat-design
Version:
A simple sailboat simulator
60 lines (59 loc) • 2.79 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 { forwardRef } from 'react';
import classNames from 'classnames';
import Icon from '../Icon/icon';
/**
* Input 输入框 通过鼠标或键盘输入内容,是最基础的表单域的包装。
*
* ~~~js
* // 这样引用
* import { Input } from 'sailboatship'
* ~~~
*
* 支持 HTMLInput 的所有基本属性
*/
export var Input = forwardRef(function (props, ref) {
var _a;
var disabled = props.disabled, size = props.size, icon = props.icon, prepend = props.prepend, append = props.append, style = props.style, restProps = __rest(props, ["disabled", "size", "icon", "prepend", "append", "style"]);
var cnames = classNames('sailboat-input-wrapper', (_a = {},
_a["input-size-".concat(size)] = size,
_a['is-disabled'] = disabled,
_a['input-group'] = prepend || append,
_a['input-group-append'] = !!append,
_a['input-group-prepend'] = !!prepend,
_a));
var fixControlledValue = function (value) {
if (typeof value === 'undefined' || value === null) {
return '';
}
return value;
};
if ('value' in props) {
delete restProps.defaultValue;
restProps.value = fixControlledValue(props.value);
}
return (_jsxs("div", __assign({ className: cnames, style: style }, { children: [prepend && _jsx("div", __assign({ className: "sailboat-input-group-prepend" }, { children: prepend })), icon && (_jsx("div", __assign({ className: "icon-wrapper" }, { children: _jsx(Icon, { icon: icon, title: "title-".concat(icon) }) }))), _jsx("input", __assign({ ref: ref, className: "sailboat-input-inner", disabled: disabled }, restProps)), append && _jsx("div", __assign({ className: "sailboat-input-group-append" }, { children: append }))] })));
});
export default Input;