UNPKG

@blueprintjs/core

Version:
68 lines 3.47 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 }); var tslib_1 = require("tslib"); var classnames_1 = tslib_1.__importDefault(require("classnames")); var React = tslib_1.__importStar(require("react")); var react_lifecycles_compat_1 = require("react-lifecycles-compat"); var common_1 = require("../../common"); var props_1 = require("../../common/props"); // TODO: write tests (ignoring for now to get a build passing quickly) /* istanbul ignore next */ 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) { common_1.Utils.safeInvoke(_this.props.onInputChange, e); common_1.Utils.safeInvoke(_this.props.inputProps.onChange, 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, text = _d.text, htmlProps = tslib_1.__rest(_d, ["buttonText", "className", "disabled", "fill", "hasSelection", "inputProps", "large", "onInputChange", "text"]); var rootClasses = classnames_1.default(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), className); var NS = common_1.Classes.getClassNamespace(); var uploadProps = (_b = {}, _b[NS + "-button-text"] = buttonText, _b.className = 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 = props_1.DISPLAYNAME_PREFIX + ".FileInput"; FileInput.defaultProps = { hasSelection: false, inputProps: {}, text: "Choose file...", }; FileInput = tslib_1.__decorate([ react_lifecycles_compat_1.polyfill ], FileInput); return FileInput; }(common_1.AbstractPureComponent2)); exports.FileInput = FileInput; //# sourceMappingURL=fileInput.js.map