UNPKG

@instructure/quiz-interactions

Version:

A React UI component Library for quiz interaction types.

130 lines (129 loc) 4.98 kB
function _array_like_to_array(arr, len) { if (len == null || len > arr.length) len = arr.length; for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i]; return arr2; } function _array_with_holes(arr) { if (Array.isArray(arr)) return arr; } function _iterable_to_array_limit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){ _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally{ try { if (!_n && _i["return"] != null) _i["return"](); } finally{ if (_d) throw _e; } } return _arr; } function _non_iterable_rest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _sliced_to_array(arr, i) { return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest(); } function _unsupported_iterable_to_array(o, minLen) { if (!o) return; if (typeof o === "string") return _array_like_to_array(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen); } import React, { useState } from 'react'; import PropTypes from 'prop-types'; import { Decimal } from '@instructure/quiz-i18n/util/Decimal'; import { Flex } from '@instructure/quiz-common/components/Flex/index'; import { ScientificNumberInput } from '@instructure/quiz-number-input/components/ScientificNumberInput'; import t from '@instructure/quiz-i18n/format-message'; function WithinARange(param) { var tmp = param.end, propEnd = tmp === void 0 ? undefined : tmp, id = param.id, locale = param.locale, _param_messages = param.messages, messages = _param_messages === void 0 ? undefined : _param_messages, numericTypeSelect = param.numericTypeSelect, onChange = param.onChange, tmp1 = param.start, propStart = tmp1 === void 0 ? undefined : tmp1; var _useState = _sliced_to_array(useState(function() { if (!propStart) return ''; try { return Decimal.toLocaleString(propStart, locale); } catch (e) { return propStart; } }), 2), start = _useState[0], setStart = _useState[1]; var _useState1 = _sliced_to_array(useState(function() { if (!propEnd) return ''; try { return Decimal.toLocaleString(propEnd, locale); } catch (e) { return propEnd; } }), 2), end = _useState1[0], setEnd = _useState1[1]; var handleStartChange = function(event, value, normalized) { setStart(value); onChange(event, { id: id, start: normalized }); }; var handleEndChange = function(event, value, normalized) { setEnd(value); onChange(event, { id: id, end: normalized }); }; return /*#__PURE__*/ React.createElement(Flex, { alignItems: "start" }, /*#__PURE__*/ React.createElement(Flex.Item, { shouldGrow: true, shouldShrink: true, margin: "0 xx-small" }, numericTypeSelect), /*#__PURE__*/ React.createElement(Flex.Item, { shouldGrow: true, shouldShrink: true, margin: "0 xx-small" }, /*#__PURE__*/ React.createElement(ScientificNumberInput, { renderLabel: t('Range start'), messages: messages.start, onChange: handleStartChange, value: start, "aria-valuetext": "".concat(start, " ").concat(t('Range start')), isRequired: true })), /*#__PURE__*/ React.createElement(Flex.Item, { shouldGrow: true, shouldShrink: true, margin: "0 xx-small" }, /*#__PURE__*/ React.createElement(ScientificNumberInput, { renderLabel: t('Range end'), messages: messages.end, onChange: handleEndChange, value: end, "aria-valuetext": "".concat(end, " ").concat(t('Range end')), isRequired: true }))); } WithinARange.propTypes = { end: PropTypes.string, id: PropTypes.string.isRequired, locale: PropTypes.string.isRequired, messages: PropTypes.objectOf(PropTypes.array), numericTypeSelect: PropTypes.node.isRequired, onChange: PropTypes.func.isRequired, start: PropTypes.string }; WithinARange.defaultProps = { end: void 0, messages: void 0, start: void 0 }; export default WithinARange;