UNPKG

@fremtind/jkl-feedback-react

Version:
95 lines (94 loc) 3.61 kB
"use strict"; var __defProp = Object.defineProperty; var __defProps = Object.defineProperties; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropDescs = Object.getOwnPropertyDescriptors; var __getOwnPropNames = Object.getOwnPropertyNames; var __getOwnPropSymbols = Object.getOwnPropertySymbols; var __hasOwnProp = Object.prototype.hasOwnProperty; var __propIsEnum = Object.prototype.propertyIsEnumerable; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __spreadValues = (a, b) => { for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]); if (__getOwnPropSymbols) for (var prop of __getOwnPropSymbols(b)) { if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]); } return a; }; var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b)); var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var useMainQuestion_exports = {}; __export(useMainQuestion_exports, { useMainQuestion: () => useMainQuestion }); module.exports = __toCommonJS(useMainQuestion_exports); var import_react = require("react"); const useMainQuestion = (onSubmit) => { const [currentValue, setCurrentValue] = (0, import_react.useState)(); const [message, setMessage] = (0, import_react.useState)(); const [submitted, setSubmitted] = (0, import_react.useState)(false); const feedbackRef = (0, import_react.useRef)({ onSubmit, currentValue, message, submitted }); (0, import_react.useEffect)(() => { feedbackRef.current = __spreadProps(__spreadValues({}, feedbackRef.current), { onSubmit, currentValue, message, submitted }); }, [onSubmit, currentValue, message, submitted]); const submitHandler = (0, import_react.useCallback)((intentionalSubmit = true) => { const { message: message2, currentValue: currentValue2, submitted: submitted2, onSubmit: onSubmit2 } = feedbackRef.current; if (!submitted2 && currentValue2 !== void 0) { const feedbackValue = Array.isArray(currentValue2) ? currentValue2.map((option) => option.value) : currentValue2 == null ? void 0 : currentValue2.value; onSubmit2(__spreadValues({ feedbackValue, intentionalSubmit }, intentionalSubmit && message2 ? { message: message2 } : {})); } }, []); const autoSubmit = (0, import_react.useCallback)(() => submitHandler(false), [submitHandler]); (0, import_react.useEffect)(() => { if (typeof window !== "undefined") { window.addEventListener("beforeunload", autoSubmit); } return () => { autoSubmit(); window.removeEventListener("beforeunload", autoSubmit); }; }, [autoSubmit]); const handleSubmit = (e) => { e.preventDefault(); submitHandler(); setSubmitted(true); }; return { currentValue, setCurrentValue, message, setMessage, submitted, handleSubmit }; }; //# sourceMappingURL=useMainQuestion.js.map