UNPKG

@blueprintjs/core

Version:
72 lines 3.67 kB
"use strict"; /* * Copyright 2017 Palantir Technologies, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.FileInput = void 0; var tslib_1 = require("tslib"); var classnames_1 = tslib_1.__importDefault(require("classnames")); var React = tslib_1.__importStar(require("react")); var common_1 = require("../../common"); var props_1 = require("../../common/props"); var NS = common_1.Classes.getClassNamespace(); // this is a simple component, unit tests would be mostly tautological /* istanbul ignore next */ /** * File input component. * * @see https://blueprintjs.com/docs/#core/components/file-input */ var FileInput = /** @class */ (function (_super) { tslib_1.__extends(FileInput, _super); function FileInput() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.handleInputChange = function (e) { var _a, _b, _c, _d; (_b = (_a = _this.props).onInputChange) === null || _b === void 0 ? void 0 : _b.call(_a, e); (_d = (_c = _this.props.inputProps) === null || _c === void 0 ? void 0 : _c.onChange) === null || _d === void 0 ? void 0 : _d.call(_c, e); }; return _this; } FileInput.prototype.render = function () { var _a, _b, _c; var _d = this.props, buttonText = _d.buttonText, className = _d.className, disabled = _d.disabled, fill = _d.fill, hasSelection = _d.hasSelection, inputProps = _d.inputProps, large = _d.large, onInputChange = _d.onInputChange, small = _d.small, text = _d.text, htmlProps = tslib_1.__rest(_d, ["buttonText", "className", "disabled", "fill", "hasSelection", "inputProps", "large", "onInputChange", "small", "text"]); var rootClasses = (0, classnames_1.default)(className, common_1.Classes.FILE_INPUT, (_a = {}, _a[common_1.Classes.FILE_INPUT_HAS_SELECTION] = hasSelection, _a[common_1.Classes.DISABLED] = disabled, _a[common_1.Classes.FILL] = fill, _a[common_1.Classes.LARGE] = large, _a[common_1.Classes.SMALL] = small, _a)); var uploadProps = (_b = {}, _b["".concat(NS, "-button-text")] = buttonText, _b.className = (0, classnames_1.default)(common_1.Classes.FILE_UPLOAD_INPUT, (_c = {}, _c[common_1.Classes.FILE_UPLOAD_INPUT_CUSTOM_TEXT] = !!buttonText, _c)), _b); return (React.createElement("label", tslib_1.__assign({}, htmlProps, { className: rootClasses }), React.createElement("input", tslib_1.__assign({}, inputProps, { onChange: this.handleInputChange, type: "file", disabled: disabled })), React.createElement("span", tslib_1.__assign({}, uploadProps), text))); }; FileInput.displayName = "".concat(props_1.DISPLAYNAME_PREFIX, ".FileInput"); FileInput.defaultProps = { hasSelection: false, inputProps: {}, text: "Choose file...", }; return FileInput; }(common_1.AbstractPureComponent)); exports.FileInput = FileInput; //# sourceMappingURL=fileInput.js.map