UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

76 lines 3.88 kB
"use strict"; 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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); 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; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TextInput = void 0; var React = __importStar(require("react")); var validate_1 = require("../form/validation/validate.cjs"); var ValidationError_1 = require("../form/validation/ValidationError.cjs"); var useInput_1 = require("../form/useInput.cjs"); var FieldTitle_1 = require("../util/FieldTitle.cjs"); var TextInput = function (_a) { var multiline = _a.multiline, _b = _a.type, type = _b === void 0 ? 'text' : _b, props = __rest(_a, ["multiline", "type"]); var _c = (0, useInput_1.useInput)(props), id = _c.id, field = _c.field, _d = _c.fieldState, error = _d.error, invalid = _d.invalid; return (React.createElement("div", null, React.createElement("label", { htmlFor: id }, React.createElement(FieldTitle_1.FieldTitle, { label: props.label, source: props.source, resource: props.resource, isRequired: (0, validate_1.isRequired)(props.validate) })), React.createElement("br", null), multiline ? (React.createElement("textarea", __assign({ id: id }, field, { "aria-describedby": invalid ? "error-".concat(id) : undefined }))) : (React.createElement("input", __assign({ id: id }, field, { type: type, "aria-describedby": invalid ? "error-".concat(id) : undefined }))), invalid && (error === null || error === void 0 ? void 0 : error.message) ? (React.createElement("p", { style: { color: 'red' }, id: "error-".concat(id) }, React.createElement(ValidationError_1.ValidationError, { error: error.message }))) : null)); }; exports.TextInput = TextInput; //# sourceMappingURL=TextInput.js.map