{ "version": 3, "sources": ["../../javascripts/web-ui/controllers/application.js", "../../javascripts/web-ui/controllers/dynamic-form.js", "../../javascripts/web-ui/morphdom/ignore.js", "../../javascripts/web-ui/csrf.js", "../../javascripts/web-ui/form/set-input-value-attributes.js", "../../javascripts/web-ui/log.js", "../../javascripts/web-ui/controllers/dynamic-form/discard-changes-confirmation.js", "../../javascripts/web-ui/controllers/dynamic-form/refresh.js", "../../javascripts/web-ui/controllers/textarea.js", "../../javascripts/web-ui/controllers/dropdown-menu.js", "../../javascripts/web-ui/controllers/refresh.js", "../../javascripts/web-ui/controllers/popover.js", "../../javascripts/web-ui/controllers/synchronized-form.js", "../../javascripts/web-ui/controllers/user-tools.js", "../../javascripts/web-ui/controllers/view-form-error.js", "../../javascripts/web-ui/controllers/modal-dialog.js", "../../javascripts/web-ui/controllers/async-select.js", "../../javascripts/web-ui/controllers/confirmation-field.js", "../../javascripts/web-ui/controllers/switch.js", "../../javascripts/web-ui/controllers/option-group.js", "../../javascripts/web-ui/controllers/field-preview.js", "../../javascripts/web-ui/controllers/index.js", "../../javascripts/web-ui/turbo/stream-actions/morph.js", "../../javascripts/web-ui/morphdom/preserve-attributes.js", "../../javascripts/web-ui/morphdom/morph-template.js", "../../javascripts/web-ui/morphdom/should-update.js", "../../javascripts/web-ui/confirmation-dialog.js", "../../javascripts/web-ui/turbo.js", "../../javascripts/web-ui/turbo/replace-stylesheets.js", "../../javascripts/web-ui/turbo/morphdom-render.js", "../../javascripts/web-ui/turbo/stream-actions/redirect.js", "../../javascripts/web-ui/turbo/disable-submit-button.js", "../../javascripts/web-ui/index.js"], "sourcesContent": ["import { Application } from \"@hotwired/stimulus\"\n\nconst application = Application.start()\n\n// Configure Stimulus development experience\napplication.debug = false\nwindow.Stimulus = application\n\nexport { application }\n", "import { Controller } from \"@hotwired/stimulus\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport { getCSRFToken } from \"web-ui/csrf\"\nimport { setInputValueAttributes } from \"web-ui/form/set-input-value-attributes\"\nimport * as Log from \"web-ui/log\"\n\n// Set dynamic_form_debug_value to true to observe and diagnose\n\nfunction isMetaInputName(name) {\n return name.startsWith(\"_\")\n}\n\nfunction isAuthenticityToken(name) {\n return name == \"authenticity_token\"\n}\n\n// Connects to data-controller=\"dynamic-form\"\nexport default class extends Controller {\n static values = {\n updateMode: { type: String, default: \"form\" }\n }\n\n connect() {\n this.debug(\"Connect\", { updateMode: this.updateModeValue })\n\n this.connected = true\n\n this.changedElementNames = new Set()\n this.actionFormUpdates = {}\n this.updateParams = null\n this.submitting = false\n this.updateDelay = 0\n\n document.addEventListener(\"turbo:before-stream-render\", this.beforeStreamRender)\n\n this.element.addEventListener(\"change\", this.change)\n this.element.addEventListener(\"submit\", this.submit)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.connected = false\n\n document.removeEventListener(\"turbo:before-stream-render\", this.beforeStreamRender)\n\n this.element.removeEventListener(\"change\", this.change)\n this.element.removeEventListener(\"submit\", this.submit)\n\n if (this.fetchAbortController) {\n this.fetchAbortController.abort()\n }\n }\n\n submit = (event) => {\n const submitter = event.submitter\n\n if (submitter == null) {\n return\n }\n\n const dataset = submitter.dataset\n const actionFormUpdatesJSON = dataset.formUpdates\n\n // If there are form updates, this is not a typical submission and those\n // updates should be applied, rather than allowing the form submission to\n // occur. - Aaron, Tue Jan 14 2025\n if (actionFormUpdatesJSON != null) {\n event.preventDefault()\n\n this.applyActionFormUpdates(actionFormUpdatesJSON)\n return\n }\n\n // This is probably not necessary for dynamic forms because they do\n // not tend to have typical submit buttons. It is here to maintain\n // similarity with dynamic-form. - Aaron, Tue Jan 14 2025\n this.submitting = true\n\n this.element.addEventListener(\"turbo:submit-end\", () => {\n this.submitting = false\n\n if (this.hasPendingUpdates()) {\n this.requestUpdate()\n }\n }, { once: true })\n }\n\n applyActionFormUpdates(actionFormUpdatesJSON) {\n const actionFormUpdates = JSON.parse(actionFormUpdatesJSON)\n for (const [name, value] of Object.entries(actionFormUpdates)) {\n this.actionFormUpdates[name] = value\n }\n\n this.requestUpdate()\n }\n\n change = (event) => {\n const input = event.target\n\n // Avoid updating disabled inputs, which can happen if a modification is\n // made to an input, and while it is still focused, an update disables that\n // input before it is blurred - Aaron, Wed Aug 09 2023\n if (input.disabled) {\n return\n }\n\n setInputValueAttributes(input)\n\n const name = input.name\n\n this.initiateChange(name)\n }\n\n initiateChange(name) {\n this.morphIgnoreInputs(name, true)\n this.changedElementNames.add(name)\n\n this.debug(\"Recorded change\", { changedElementCount: this.changedElementNames.size, name: name })\n\n this.requestUpdate()\n }\n\n requestUpdate() {\n if (this.updateDelay > 0) {\n this.debug(\"Delaying update\", { delayMilliseconds: this.updateDelay })\n }\n\n // Ensure update happens on the next tick, rather than the current, so that\n // an event handler may make additional changes to the form before the\n // update is submitted.\n // - Aaron, Shaun, Fri Jan 5 2023\n setTimeout(() => {\n this.update()\n }, this.updateDelay)\n }\n\n dispatch(eventName) {\n const event = new CustomEvent(eventName, { bubbles: true })\n if (this.element.isConnected) {\n this.element.dispatchEvent(event)\n }\n\n return event\n }\n\n morphIgnoreInputs(name, ignore) {\n const formElements = this.element.elements\n\n for (const elementName in formElements) {\n if (elementName === name) {\n const element = formElements[elementName]\n\n if (element.forEach) {\n element.forEach(element => {\n morphdomIgnore(element, ignore)\n })\n } else {\n morphdomIgnore(element, ignore)\n }\n }\n }\n }\n\n async update() {\n if (this.isUpdating()) {\n return\n }\n\n if (this.isSubmitting()) {\n return\n }\n\n if (!this.hasPendingUpdates()) {\n return\n }\n\n this.dispatch(\"dynamic-form:before-update\")\n\n const url = this.element.action\n\n const formData = new FormData(this.element)\n\n this.updateParams = new URLSearchParams()\n\n for (const [name, value] of formData) {\n if (this.includeUpdateParam(name)) {\n this.updateParams.append(name, value)\n }\n }\n\n this.changedElementNames.clear()\n\n const actionFormUpdates = this.actionFormUpdates\n this.actionFormUpdates = {}\n\n for (const [name, value] of Object.entries(actionFormUpdates)) {\n this.updateParams.append(name, value)\n }\n\n this.debug(\"Initiating update\", { changedElementCount: this.changedElementNames.size, updateParams: Array.from(this.updateParams.keys()) })\n const csrfToken = getCSRFToken()\n\n this.fetchAbortController = new AbortController()\n const signal = this.fetchAbortController.signal\n\n const options = {\n method: \"PATCH\",\n headers: {\n \"Content-Type\": \"application/x-www-form-urlencoded\",\n \"Accept\": \"text/vnd.turbo-stream.html\",\n \"X-CSRF-Token\": csrfToken\n },\n body: this.updateParams,\n signal\n }\n\n try {\n const response = await fetch(url, options)\n\n if (!response.ok) {\n this.dispatch(\"dynamic-form:update-failed\")\n this.retryUpdate()\n return\n }\n\n const html = await response.text()\n\n if (!this.connected) {\n return\n }\n\n Turbo.renderStreamMessage(html)\n\n } catch (error) {\n if (!this.connected) {\n return\n }\n\n Sentry.captureException(error)\n this.dispatch(\"dynamic-form:update-failed\")\n\n this.retryUpdate()\n }\n }\n\n includeUpdateParam(name) {\n if (isAuthenticityToken(name)) {\n return false\n }\n\n if (isMetaInputName(name)) {\n return true\n }\n\n if (this.updateModeValue == \"fields\") {\n return this.changedElementNames.has(name)\n }\n\n return true\n }\n\n retryUpdate() {\n this.updateDelay += 250\n this.updateDelay = Math.min(this.updateDelay, 5000)\n\n for (const name of this.updateParams.keys()) {\n if (!isMetaInputName(name)) {\n this.changedElementNames.add(name)\n }\n }\n\n this.updateParams = null\n\n this.requestUpdate()\n }\n\n resetUpdateDelay() {\n this.updateDelay = 0\n }\n\n // The only known way to ensure that code can be run immediately before a\n // morph and immediately after it is to add an event listener for\n // turbo:before-stream-render and override the event.detail.render method.\n //\n // In the overridden render method:\n //\n // 1. All fields that have been updated have their morph ignore removed\n // 2. The original render is invoked, which applies the morph\n // 3. The update is marked as complete\n // 4. If there is a pending update, requestUpdate is invoked\n //\n // This code was originally added to prevent a race condition wherein a\n // field that was filled in could be subsequently cleared by a previous\n // update's morph being applied.\n // - Aaron, Thu Mar 21 2024\n beforeStreamRender = (event) => {\n const stream = event.detail.newStream\n const action = stream.getAttribute(\"action\")\n const target = stream.getAttribute(\"target\")\n\n if (action !== \"morph\") {\n return\n }\n\n if (target !== this.element.id) {\n return\n }\n\n const render = event.detail.render\n\n event.detail.render = (self) => {\n if (!this.isUpdating()) {\n render(self)\n return\n }\n\n // This must be done here in case there is still a pending update when the\n // morphdom morph is applied for this update. If we did it earlier, a\n // twice updated field may flash its old value.\n // - Aaron, Wed Jul 20 2022\n for (const name of this.updateParams.keys()) {\n if (!this.changedElementNames.has(name)) {\n this.morphIgnoreInputs(name, false)\n }\n }\n\n this.updateParams = null\n\n render(self)\n\n this.debug(\"Completed update\", { changedElementCount: this.changedElementNames.size })\n\n this.dispatch(\"dynamic-form:update\")\n this.resetUpdateDelay()\n\n if (this.hasPendingUpdates()) {\n this.requestUpdate()\n }\n }\n }\n\n hasPendingUpdates() {\n return this.changedElementNames.size > 0 ||\n Object.keys(this.actionFormUpdates).length > 0\n }\n\n isUpdating() {\n return this.updateParams != null\n }\n\n isSubmitting() {\n return this.submitting\n }\n\n debug(message, data) {\n Log.debug(\"Dynamic Form - \" + message, data)\n }\n}\n", "export const morphdomIgnoreAttributeName = \"turboMorphIgnore\"\n\nexport function morphdomIgnore(element, ignore) {\n if (ignore) {\n element.dataset.turboMorphIgnore = ''\n } else {\n delete element.dataset.turboMorphIgnore\n }\n}\n\nexport function isMorphdomIgnored(element) {\n return morphdomIgnoreAttributeName in element.dataset\n}\n", "function getMetaElement(name) {\n return document.querySelector(`meta[name=\"${name}\"]`);\n}\n\nfunction getMetaContent(name) {\n const element = getMetaElement(name);\n return element && element.content;\n}\n\nexport function getCSRFToken() {\n return getMetaContent(\"csrf-token\")\n}\n", "// Morphdom uses the value of the `value` attribute for inputs to determine\n// whether or not to update the element. For selects, it uses the `selected`\n// attribute of `option` elements. It is possible for the value attribute to not\n// have the same value as the actual input's value when the value changes. This\n// function can be invoked to keep them in sync.\n//\n// Without this, for example, when a number field with the value of \"4\" is changed\n// to \"4a\" in the browser: the server will respond with an element that has a\n// value of \"4\", which will be the same as the browser version. This ensures that\n// that value attribute in the browser will change to \"4a\" before attempting to\n// morph, so a change will be detected, causing the input to change back to \"4\"\n// in the browser.\n// - Aaron, Mon Mar 4 2024\nexport function setInputValueAttributes(input) {\n const value = input.value\n\n if (input instanceof HTMLInputElement) {\n input.setAttribute(\"value\", value)\n } else if (input instanceof HTMLSelectElement) {\n const options = input.querySelectorAll(\"option\")\n\n options.forEach(option => {\n if (option.value == value) {\n option.setAttribute(\"selected\", \"\")\n } else {\n option.removeAttribute(\"selected\")\n }\n })\n } else if (input instanceof HTMLTextAreaElement) {\n input.textContent = value\n }\n}\n", "function isDebugEnabled() {\n return window.location.search.match(/\\bdebug\\b/) != undefined\n}\n\nexport function debug(message, data={}) {\n if (!isDebugEnabled()) {\n return\n }\n\n const formattedData = formatData(data)\n\n if (formattedData) {\n message = `${message} (${formattedData})`\n }\n\n console.log(message)\n}\n\nfunction formatData(data) {\n if (Object.keys(data).length == 0) {\n return\n }\n\n const parts = []\n\n for (const [key, value] of Object.entries(data)) {\n const formattedKey = titleCase(key)\n const formattedValue = JSON.stringify(value)\n\n parts.push(`${formattedKey}: ${formattedValue}`)\n }\n\n return parts.join(\", \")\n}\n\nfunction titleCase(text) {\n let titleCased = splitCamelCase(text)\n titleCased = capitalize(titleCased)\n\n return titleCased\n}\n\nfunction splitCamelCase(text) {\n return text.replace(/([A-Z])/g, \" $1\");\n}\n\nfunction capitalize(text) {\n return text.charAt(0).toUpperCase() + text.slice(1);\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Set dynamic_form_discard_changes_confirmation_debug_value to true to observe and diagnose\n\nconst confirmationText = \"Changes you made will not be saved\"\n\n// Connects to data-controller=\"dynamic-form-discard-changes-confirmation\"\nexport default class extends Controller {\n connect() {\n this.debug(\"Connect\")\n\n this.changed = false\n this.allowNavigation = false\n\n this.element.addEventListener(\"change\", this.change)\n document.addEventListener(\"click\", this.click, { capture: true })\n document.addEventListener(\"turbo:visit\", this.turboVisit)\n window.addEventListener(\"beforeunload\", this.beforeUnload)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"change\", this.change)\n document.removeEventListener(\"click\", this.click, { capture: true })\n document.removeEventListener(\"turbo:visit\", this.turboVisit)\n window.removeEventListener(\"beforeunload\", this.beforeUnload)\n }\n\n change = () => {\n this.changed = true\n }\n\n click = (event) => {\n const targetId = event.target.id\n if (targetId === \"cancel\") {\n this.allowNavigation = true\n return\n }\n\n if (!this.changed) {\n return\n }\n\n const targetLink = event.target.closest(\"a\")\n\n if (targetLink == null) {\n return\n }\n\n if (targetLink.target === \"_blank\") {\n return\n }\n\n const confirmed = confirm(confirmationText)\n\n if (confirmed) {\n this.allowNavigation = true\n } else {\n event.preventDefault()\n event.stopPropagation()\n }\n }\n\n // If the page being navigated to includes the meta tag to indicate that turbo\n // should reload the page, rather than proceeding with the turbo navigation,\n // then the page reload will trigger beforeunload.\n // At this point, we no longer need to protect against discarding changes because either the\n // form has been successfully submitted and the redirect is occurring, or the user clicked on\n // a turbo link and there weren't any unsaved changes.\n turboVisit = (event) => {\n window.removeEventListener(\"beforeunload\", this.beforeUnload)\n }\n\n beforeUnload = (event) => {\n if (!this.changed) {\n return\n }\n\n if (this.allowNavigation) {\n return\n }\n\n event.preventDefault()\n\n // Support for older browsers\n event.returnValue = confirmationText\n return confirmationText\n }\n\n debug(message, data) {\n Log.debug(\"Dynamic Form Discard Changes Confirmation - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\nconst refreshIntervalMilliseconds = 10 * 1000\n\n// Connects to data-controller=\"dynamic-form-refresh\"\nexport default class extends Controller {\n static values = {\n path: String\n }\n\n connect() {\n this.debug(\"Connect\", { path: this.pathValue })\n\n this.connected = true\n\n this.refreshing = false\n this.refreshIntervalStartTime = Date.now()\n\n this.startRefreshInterval()\n\n document.addEventListener(\"visibilitychange\", this.handleVisibilityChange)\n\n // Any form submission must abort the refresh so that the result of the\n // refresh cannot override the result of the submission\n // - Aaron, Shaun, Fri Mar 21 2025\n document.addEventListener(\"submit\", this.abortRefresh, { capture: true })\n this.element.addEventListener(\"dynamic-form:before-update\", this.abortRefresh)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.connected = false\n\n document.removeEventListener(\"visibilitychange\", this.handleVisibilityChange)\n document.removeEventListener(\"submit\", this.abortRefresh)\n this.element.removeEventListener(\"dynamic-form:before-update\", this.abortRefresh)\n\n this.stopRefreshInterval()\n this.abortRefresh()\n }\n\n startRefreshInterval() {\n this.stopRefreshInterval()\n\n this.refreshInterval = setInterval(() => {\n if (this.shouldRefresh()) {\n this.refresh()\n }\n }, refreshIntervalMilliseconds / 10)\n }\n\n stopRefreshInterval() {\n clearInterval(this.refreshInterval)\n }\n\n handleVisibilityChange = () => {\n if (this.shouldRefresh()) {\n this.refresh()\n }\n }\n\n // This may change the refreshIntervalStartTime because a refresh should not\n // occur immediately after an update in order to ensure that the validate\n // param is properly set. If the update sets the validate param, but has not\n // yet fully rendered, the refresh could happen without the validate param\n // set, causing it to regress.\n // - Aaron, Fri Mar 21 2025\n shouldRefresh() {\n if (document.hidden) {\n return false\n }\n\n const dynamicFormController = this.application.getControllerForElementAndIdentifier(this.element, \"dynamic-form\")\n\n if (dynamicFormController.hasPendingUpdates() || dynamicFormController.isUpdating()) {\n this.refreshIntervalStartTime = Date.now()\n return false\n }\n\n const busyElement = document.querySelector(\"[busy],[aria-busy]\")\n\n // Do not refresh while a turbo submission is taking place - Aaron, Shaun, Fri Mar 21 2025\n if (busyElement != null) {\n this.refreshIntervalStartTime = Date.now()\n return false\n }\n\n const now = Date.now()\n const millisecondsSinceStartTime = now - this.refreshIntervalStartTime\n\n if (millisecondsSinceStartTime < refreshIntervalMilliseconds) {\n return false\n }\n\n return true\n }\n\n async refresh() {\n if (this.refreshing) {\n return\n }\n\n this.debug(\"Starting refresh\")\n\n this.refreshAbortController = new AbortController()\n const signal = this.refreshAbortController.signal\n this.refreshing = true\n this.refreshIntervalStartTime = Date.now()\n\n const path = this.pathValue\n const headers = {\n \"Accept\": \"text/vnd.turbo-stream.html\"\n }\n\n try {\n const response = await fetch(path, { headers, signal })\n\n if (!response.ok) {\n return\n }\n\n const html = await response.text()\n\n if (!this.connected) {\n return\n }\n\n this.debug(\"Rendering\")\n\n Turbo.renderStreamMessage(html)\n\n this.debug(\"Refreshed\")\n\n } catch(error) {\n if (!this.connected) {\n return\n }\n\n Sentry.captureException(error)\n }\n\n this.refreshing = false\n this.refreshAbortController = null\n }\n\n abortRefresh = () => {\n if (this.refreshAbortController) {\n this.debug(\"Aborting refresh\")\n this.refreshAbortController.abort()\n }\n }\n\n debug(message, data) {\n Log.debug(\"Dynamic Form Refresh - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"textarea\"\nexport default class extends Controller {\n connect() {\n this.debug(\"Connect\")\n\n this.element.addEventListener(\"focus\", this.onFocus)\n this.element.addEventListener(\"blur\", this.onBlur)\n this.element.addEventListener(\"input\", this.resize)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"focus\", this.onFocus)\n this.element.removeEventListener(\"blur\", this.onBlur)\n this.element.removeEventListener(\"input\", this.resize)\n }\n\n resize = (e) => {\n const textareaElement = e.target\n\n this.debug(\"Resizing textarea\", { id: textareaElement.id })\n\n this.element.dataset.text = textareaElement.value\n }\n\n onFocus = () => {\n morphdomIgnore(this.element, true)\n }\n\n onBlur = () => {\n morphdomIgnore(this.element, false)\n }\n\n debug(message, data) {\n Log.debug(\"Textarea - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\";\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"dropdown-menu\"\nexport default class extends Controller {\n static targets = [\"button\"];\n\n connect() {\n this.debug(\"Connect\")\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n }\n\n isOpen() {\n return this.element.classList.contains(\"open\");\n }\n\n closeMenu(event) {\n if (event && this.element.contains(event.target)) {\n return;\n }\n\n this.element.classList.remove(\"open\");\n this.buttonTarget.removeAttribute(\"aria-expanded\");\n }\n\n openMenu() {\n this.element.classList.add(\"open\");\n this.buttonTarget.setAttribute(\"aria-expanded\", \"true\");\n }\n\n toggle() {\n if (this.isOpen()) {\n this.closeMenu();\n } else {\n this.openMenu();\n }\n }\n\n debug(message, data) {\n Log.debug(\"Dropdown Menu - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\nconst defaultIntervalSeconds = 10\n\n// Connects to data-controller=\"refresh\"\nexport default class extends Controller {\n static values = {\n intervalSeconds: Number,\n url: String\n }\n\n connect() {\n this.debug(\"Connect\", { url: this.urlValue, intervalSeconds: this.intervalSecondsValue })\n\n this.submissionCount = 0\n this.lastRefreshTime = Date.now()\n\n this.startInterval()\n\n document.addEventListener(\"turbo:submit-start\", this.recordSubmitStart)\n document.addEventListener(\"turbo:submit-end\", this.recordSubmitEnd)\n this.element.addEventListener(\"turbo:before-frame-render\", this.beforeFrameRender)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n clearInterval(this.interval)\n this.interval = null\n document.removeEventListener(\"turbo:submit-start\", this.recordSubmitStart)\n document.removeEventListener(\"turbo:submit-end\", this.recordSubmitEnd)\n this.element.removeEventListener(\"turbo:before-frame-render\", this.beforeFrameRender)\n }\n\n startInterval() {\n clearInterval(this.interval)\n\n const intervalTimerMilliseconds = this.intervalMilliseconds / 10\n\n this.interval = setInterval(this.poll, intervalTimerMilliseconds)\n }\n\n get intervalMilliseconds() {\n const intervalSeconds = this.intervalSecondsValue || defaultIntervalSeconds\n return intervalSeconds * 1000\n }\n\n intervalSecondsValueChanged() {\n if (!this.interval) {\n // Ignore the change if the interval is not in progress. This happens when\n // the controller connects initially. - Aaron, Thu May 9 2024\n return\n }\n\n this.startInterval()\n }\n\n beforeFrameRender = (e) => {\n if (this.shouldRefresh()) {\n const newFrame = e.detail.newFrame\n\n for (const key in newFrame.dataset) {\n this.element.dataset[key] = newFrame.dataset[key]\n }\n } else {\n // Addresses a race condition where a pending refresh would render while a refresh\n // should not occur (e.g., a form is submitted while a refresh fetch is outstanding)\n // - Kelly, Aaron, Tue Feb 07 2023\n e.detail.render = () => {}\n e.stopPropagation()\n }\n }\n\n shouldRefresh() {\n if (document.hidden) return false\n if (this.element.getAttribute('aria-busy')) return false\n if (this.submissionCount > 0) return false\n\n return true\n }\n\n recordSubmitStart = () => {\n this.submissionCount += 1\n }\n\n recordSubmitEnd = () => {\n if (this.submissionCount > 0) {\n this.submissionCount -= 1\n }\n }\n\n poll = () => {\n const now = Date.now()\n const millisecondsSinceLastRefresh = now - this.lastRefreshTime\n\n if (millisecondsSinceLastRefresh < this.intervalMilliseconds) {\n return\n }\n\n if (this.shouldRefresh()) {\n this.refresh()\n }\n }\n\n refresh() {\n this.lastRefreshTime = Date.now()\n this.element.src = null\n this.element.src = this.urlValue\n }\n\n debug(message, data) {\n Log.debug(\"Refresh - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport { computePosition, flip, shift, autoUpdate } from \"@floating-ui/dom\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"popover\"\nexport default class extends Controller {\n static targets = [\"container\", \"button\", \"popover\"]\n\n connect() {\n this.debug(\"Connect\")\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n }\n\n isVisible() {\n return this.containerTarget.classList.contains(\"visible\")\n }\n\n closePopover() {\n morphdomIgnore(this.element, false)\n this.containerTarget.classList.remove(\"visible\", \"top\", \"bottom\")\n this.buttonTarget.removeAttribute(\"aria-expanded\")\n\n if (this.disableAutoUpdate) {\n this.disableAutoUpdate()\n }\n }\n\n open() {\n morphdomIgnore(this.element, true)\n this.containerTarget.classList.add(\"visible\")\n this.buttonTarget.setAttribute(\"aria-expanded\", \"true\")\n this.popoverTarget.scrollTop = 0\n\n this.disableAutoUpdate = autoUpdate(\n this.buttonTarget,\n this.popoverTarget,\n this.updatePosition\n );\n }\n\n updatePosition = () => {\n computePosition(this.buttonTarget, this.popoverTarget, {\n placement: \"top\",\n middleware: [shift(), flip({ padding: 16 })],\n }).then(({ placement, middlewareData: { shift } }) => {\n if (placement === \"top\") {\n this.containerTarget.classList.add(\"top\")\n this.containerTarget.classList.remove(\"bottom\")\n } else {\n this.containerTarget.classList.add(\"bottom\")\n this.containerTarget.classList.remove(\"top\")\n }\n\n if (shift.x > 0) {\n this.popoverTarget.style.left = `${shift.x}px`\n }\n })\n }\n\n close(event) {\n if (!this.isVisible()) {\n return\n }\n\n if (event) {\n if (event.key === \"Escape\") {\n this.closePopover()\n }\n\n if (this.element.contains(event.target)) {\n return\n }\n }\n\n this.closePopover()\n }\n\n toggle() {\n this.isVisible() ? this.close() : this.open()\n }\n\n debug(message, data) {\n Log.debug(\"Popover - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as Log from \"web-ui/log\"\n\n// Use this when you want to wait for a turbo frame to complete its request\n// before submitting the form that you add this controller to. An example is an\n// passively submitting form in a frame and a button outside of that frame that\n// needs to send a request indicating the form is \"complete\". It must wait for\n// any pending passive submissions to occur before its submit in order to ensure\n// that the data the user entered is considered. - Aaron, Fri Jun 10 2022\n\n// |--- Passive submission starts\n// |\n// | |- Click submit on synchronized form (synchronized form cancels the submission)\n// | |\n// | |\n// |-+- Passive submission ends\n// |- Synchronized form resubmits\n\n// Usage example:\n//\n// = synchronized_button_to \"Submit synchronized form\",\n// examples_collaborative_form_synchronized_form_path,\n// class: \"primary\",\n// target_form_id: \"collaborative-form-frame\"\n//\n\n// Connects to data-controller=\"synchronized-form\"\nexport default class extends Controller {\n static values = {\n targetFormId: String\n }\n\n connect() {\n this.debug(\"Connect\", { targetFormId: this.targetFormIdValue })\n this.synchronize = this.synchronize.bind(this)\n\n this.element.addEventListener(\"submit\", this.synchronize, { capture: true })\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n this.element.removeEventListener(\"submit\", this.synchronize, { capture: true })\n\n this.clearInterval()\n }\n\n clearInterval() {\n if (this.interval) {\n this.debug(\"Clearing interval\")\n\n this.interval = null\n clearInterval(this.interval)\n }\n }\n\n synchronize(event) {\n const targetForm = document.getElementById(this.targetFormIdValue)\n\n if (!targetForm || targetForm.tagName !== \"FORM\") {\n this.warn(`Could not find form with ID ${this.targetFormId}`)\n\n return\n }\n\n this.clearInterval()\n\n if (this.isFormBusy(targetForm)) {\n this.debug(\"Suspending submission\")\n\n event.preventDefault()\n\n const form = event.target\n const submitter = event.submitter\n\n submitter?.setAttribute(\"disabled\", \"\")\n morphdomIgnore(this.element, true)\n\n this.interval = setInterval(() => {\n if (!this.isFormBusy(targetForm)) {\n clearInterval(this.interval)\n\n submitter?.removeAttribute(\"disabled\")\n morphdomIgnore(this.element, false)\n\n form.requestSubmit(submitter)\n }\n }, 50)\n } else {\n this.debug(\"Allowing submission\")\n }\n }\n\n isFormBusy(form) {\n const dynamicFormController = this.application.getControllerForElementAndIdentifier(form, \"dynamic-form\")\n\n if (dynamicFormController == null) {\n this.debug(\"isFormBusy did not find a dynamic form\")\n\n return false\n }\n\n const updating = dynamicFormController.isUpdating()\n const hasPendingUpdates = dynamicFormController.hasPendingUpdates()\n const busy = updating || hasPendingUpdates\n\n this.debug(\"isFormBusy\", { busy, updating, hasPendingUpdates })\n\n return busy\n }\n\n debug(message, data) {\n Log.debug(\"Synchronized Form - \" + message, data)\n }\n\n warn(message) {\n console.warn(\"Synchronized Form - \" + message)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"user-tools\"\nexport default class extends Controller {\n static targets = [\"button\"]\n\n connect() {\n this.debug(\"Connect\")\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n }\n\n isOpen() {\n return this.element.classList.contains(\"open\")\n }\n\n closeMenu(event) {\n if (event && this.element.contains(event.target)) {\n return\n }\n\n this.element.classList.remove(\"open\")\n this.buttonTarget.removeAttribute(\"aria-expanded\")\n }\n\n openMenu() {\n this.element.classList.add(\"open\")\n this.buttonTarget.setAttribute(\"aria-expanded\", \"true\")\n }\n\n toggle() {\n if (this.isOpen()) {\n this.closeMenu()\n } else {\n this.openMenu()\n }\n }\n\n debug(message, data) {\n Log.debug(\"User Tools - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"view-form-error\"\nexport default class extends Controller {\n connect() {\n this.debug(\"Connect\")\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n }\n\n viewError() {\n const invalidField = document.querySelector(\"form .field.invalid, form .message.error\")\n\n if (invalidField) {\n invalidField.scrollIntoView({ behavior: \"smooth\", block: \"center\" })\n\n const input = invalidField.querySelector(\"input, textarea, select\")\n\n if (input) {\n input.focus({ preventScroll: true })\n }\n }\n }\n\n debug(message, data) {\n Log.debug(\"View Form Error - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"modal-dialog\"\nexport default class extends Controller {\n connect() {\n this.debug(\"Connect\")\n\n this.element.showModal()\n this.element.addEventListener(\"close\", this.remove)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"close\", this.remove)\n }\n\n close() {\n this.element.close()\n }\n\n remove = () => {\n this.element.remove()\n }\n\n debug(message, data) {\n Log.debug(\"Modal Dialog - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\";\nimport \"tom-select\";\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as FloatingUI from \"@floating-ui/dom\";\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"async-select\"\nexport default class extends Controller {\n static values = {\n url: String,\n }\n\n connect() {\n this.debug(\"Connect\", { url: this.urlValue })\n\n const input = this.element.querySelector(\"input[id]\")\n const label = input.dataset[\"selectedLabel\"]\n const id = input.value\n\n document.addEventListener(\"turbo:before-cache\", this.beforeTurboCache)\n\n const items = []\n const options = []\n\n if (id) {\n items.push(id)\n options.push({ id, label })\n }\n\n this.tomSelect = new TomSelect(input, {\n valueField: \"id\",\n labelField: \"label\",\n openOnFocus: false,\n searchField: [],\n items: items,\n options: options,\n maxItems: 1,\n sortField: {\n field: \"label\",\n direction: \"asc\",\n },\n // A turbo form listens to all change events to any input on the form and collects them to be submitted\n // This input should not trigger updates to the form - Matt, Scott A, Thu Mar 16 2023\n controlInput: '',\n render: {\n loading: () => '
',\n },\n load: this.search,\n onFocus: () => morphdomIgnore(this.element, true),\n onBlur: () => {\n morphdomIgnore(this.element, false)\n this.popStashedItem()\n },\n onItemAdd: (value, item) => {\n const label = item.textContent\n\n const input = this.element.querySelector(\"input[id]\")\n input.dataset.selectedLabel = label\n\n this.clearStashedItem()\n },\n onType: (term) => {\n this.stashItem()\n\n this.tomSelect.clearOptions()\n\n if (!term) {\n this.tomSelect.close()\n }\n },\n onDropdownOpen: (dropdown) => {\n this.disableAutoUpdate = FloatingUI.autoUpdate(\n this.tomSelect.control_input,\n dropdown,\n this.updatePosition\n )\n },\n })\n\n morphdomIgnore(this.tomSelect.wrapper, true)\n\n this.observeDataAttributes(input)\n }\n\n // Store the current selected item and clear item list.\n // Clearing the item list fixes a couple of issues:\n // 1) Selected item is no longer the first item in the search results\n // 2) Selected item was present in the dropdown when loading\n // Stored selected item will be readded when a blur occurs\n // - Matt, Scott A, Thu Mar 16 2023\n stashItem = () => {\n const id = this.tomSelect.items[0]\n\n if (id) {\n const { label } = this.tomSelect.options[id]\n const item = { id, label }\n\n this.stashedItem = item\n this.tomSelect.clear(true)\n }\n }\n\n clearStashedItem = () => {\n this.stashedItem = null\n }\n\n popStashedItem = () => {\n if (this.stashedItem) {\n this.tomSelect.addOption(this.stashedItem)\n this.tomSelect.addItem(this.stashedItem.id, true)\n\n this.clearStashedItem()\n }\n }\n\n updatePosition = () => {\n FloatingUI.computePosition(\n this.tomSelect.control_input,\n this.tomSelect.dropdown,\n {\n placement: \"bottom\",\n middleware: [FloatingUI.flip({ padding: 16 })],\n }\n ).then(({ placement }) => {\n if (placement === \"bottom\") {\n this.tomSelect.dropdown.classList.add(\"bottom\")\n this.tomSelect.dropdown.classList.remove(\"top\")\n } else {\n this.tomSelect.dropdown.classList.add(\"top\")\n this.tomSelect.dropdown.classList.remove(\"bottom\")\n }\n })\n }\n\n beforeTurboCache = () => {\n this.tomSelect.destroy()\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n document.removeEventListener(\"turbo:before-cache\", this.beforeTurboCache)\n this.observer.disconnect()\n this.tomSelect.destroy()\n }\n\n // When a form value is persisted, rendering an async-select requires the label and value to be provided\n // to tom-select in order to display the selected item\n // When used within a collaborative form, subsequent changes to the selected item come through as mutations\n // to the attributes of the underlying input\n // This watches the value and data-selected-label attributes, and synchronizes them to tom-select\n // - Matt, Scott A, Thu Mar 16 2023\n observeDataAttributes(element) {\n this.observer = new MutationObserver((mutationRecords) => {\n const option = { id: null, label: null }\n\n const labelRecord = mutationRecords.find(record => record.attributeName === \"data-selected-label\")\n const valueRecord = mutationRecords.find(record => record.attributeName === \"value\")\n\n // tom-select alters attributes on the input that triggers mutations outside of what we're concerned with\n // We only proceed if the mutations include both value and label - Matt, Scott A, Thu Mar 16 2023\n if (!(labelRecord && valueRecord)) {\n return\n }\n\n const input = labelRecord.target\n\n option.id = input.value\n option.label = input.dataset[\"selectedLabel\"]\n\n const silent = true\n if (option.id && option.label) {\n this.tomSelect.addOption(option)\n this.tomSelect.addItem(option.id, silent)\n\n return\n }\n\n this.tomSelect.clear(silent)\n })\n\n this.observer.observe(element, { attributes: true })\n }\n\n search = async (term, callback) => {\n this.debug(\"Searching\", { url: this.urlValue, searchTerm: term })\n\n if (this.abortController) {\n this.abortController.abort()\n }\n\n this.abortController = new AbortController()\n\n const signal = this.abortController.signal\n\n try {\n const url = `${this.urlValue}?search_term=${encodeURIComponent(term)}`\n const response = await fetch(url, { signal })\n const json = await response.json()\n\n // ## Is this still needed?\n // ## Needs to be tested with real search data\n // ## - Matt, Scott A, Thu Mar 16 2023\n this.tomSelect.clearOptions()\n\n // As a user types, multiple searches are requested and aborted\n // This insures only the results that match the most current search term\n // are applied - Matt, Scott A, Thu Mar 16 2023\n if (term === this.tomSelect.lastValue) {\n callback(json)\n } else {\n callback([])\n }\n } catch (error) {\n callback([])\n\n // error code (20) is equivalent to an AbortError\n // See: https://developer.mozilla.org/en-US/docs/Web/API/DOMException#error_names\n // Abort errors will occur anytime a search is in flight and the user\n // types another character - Matt, Scott A, Mon Mar 6 2023\n if (error.code && error.code === 20) {\n return\n }\n\n Sentry.captureException(error)\n } finally {\n this.abortController = null\n }\n }\n\n debug(message, data) {\n Log.debug(\"Async Select - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\";\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"confirmation-field\"\nexport default class extends Controller {\n static values = {\n confirmationButtonId: String,\n confirmationText: String,\n debug: Boolean\n };\n\n connect() {\n this.debug(\"Connect\", { confirmationButtonId: this.confirmationButtonIdValue, confirmationText: this.confirmationTextValue })\n\n this.element.addEventListener(\"change\", this.confirm)\n\n this.confirm()\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"change\", this.confirm)\n }\n\n confirm = () => {\n const text = this.element.value\n\n this.debug(\"Confirming\", { inputText: text, confirmationText: this.confirmationTextValue })\n\n const confirmationButtonElement = document.getElementById(this.confirmationButtonIdValue)\n\n if (this.isConfirmed(text)) {\n confirmationButtonElement.removeAttribute(\"disabled\")\n } else {\n confirmationButtonElement.setAttribute(\"disabled\", \"disabled\")\n }\n }\n\n isConfirmed(text) {\n text = text.toLowerCase()\n text = text.trim()\n\n let confirmationText = this.confirmationTextValue.toLowerCase()\n confirmationText = confirmationText.trim()\n\n return text === confirmationText\n }\n\n debug(message, data) {\n Log.debug(\"Confirmation Field - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"switch\"\nexport default class extends Controller {\n connect() {\n this.debug(\"Connect\")\n\n this.element.addEventListener(\"change\", this.submitForm)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"change\", this.submitForm)\n }\n\n submitForm = (e) => {\n const option = e.target\n const form = option.form\n\n this.debug(\"Submitting form\", { id: form.id, optionId: option.id })\n\n form.requestSubmit()\n }\n\n debug(message, data) {\n Log.debug(\"Switch - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"option-group\"\nexport default class extends Controller {\n static targets = [\n \"option\"\n ]\n\n connect() {\n this.debug(\"Connect\")\n\n this.element.addEventListener(\"change\", this.onChange)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n this.element.removeEventListener(\"change\", this.onChange)\n }\n\n optionTargetConnected(element) {\n this.debug(\"Option connected\", { nameAttribute: element.name })\n }\n\n optionTargetDisconnected(element) {\n this.debug(\"Option disconnected\", { nameAttribute: element.name })\n }\n\n onChange = (e) => {\n const option = e.target\n const checked = option.checked\n\n if (checked) {\n this.reconcile(option)\n }\n }\n\n reconcile(selectedOption) {\n let options = this.optionTargets.filter(option => option != selectedOption)\n\n options = options.filter(option => option.checked)\n\n const exclusiveSelectedOption = \"exclusive\" in selectedOption.dataset\n if (!exclusiveSelectedOption) {\n options = options.filter(option => \"exclusive\" in option.dataset)\n }\n\n options.forEach(option => {\n this.debug(\"Unchecking option\", { nameAttribute: option.name })\n\n option.checked = false\n\n const event = new Event(\"change\", { bubbles: true })\n option.dispatchEvent(event)\n })\n }\n\n debug(message, data) {\n Log.debug(\"Option Group - \" + message, data)\n }\n}\n", "import { Controller } from \"@hotwired/stimulus\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as Log from \"web-ui/log\"\n\n// Connects to data-controller=\"field-preview\"\nexport default class extends Controller {\n static values = {\n sourceId: String\n }\n\n static targets = [ \"destination\" ]\n\n connect() {\n this.debug(\"Connect\", { sourceId: this.sourceIdValue })\n\n const sourceTarget = this.sourceTarget()\n sourceTarget.addEventListener(\"input\", this.onInput)\n sourceTarget.addEventListener(\"focus\", this.onFocus)\n sourceTarget.addEventListener(\"blur\", this.onBlur)\n }\n\n disconnect() {\n this.debug(\"Disconnect\")\n\n const sourceTarget = this.sourceTarget()\n if (sourceTarget !== null) {\n sourceTarget.removeEventListener(\"input\", this.onInput)\n sourceTarget.removeEventListener(\"focus\", this.onFocus)\n sourceTarget.removeEventListener(\"blur\", this.onBlur)\n }\n }\n\n onInput = (event) => {\n const value = event.target.value.trim()\n\n if (value === null || value === \"\") {\n this.hidePreview()\n this.updatePreview(value)\n } else {\n this.updatePreview(value)\n this.showPreview()\n }\n }\n\n onFocus = () => {\n morphdomIgnore(this.element, true)\n }\n\n onBlur = () => {\n morphdomIgnore(this.element, false)\n }\n\n showPreview() {\n this.element.firstChild.hidden = false\n }\n\n hidePreview() {\n this.element.firstChild.hidden = true\n }\n\n updatePreview(text) {\n // We are setting the element's content using `textContent`\n // to ensure the application is not vulnerable to HTML injection\n // - Nick, Scott A, Thu Feb 15 2024\n this.destinationTarget.textContent = text\n }\n\n sourceTarget() {\n return document.getElementById(this.sourceIdValue)\n }\n\n debug(message, data) {\n Log.debug(\"Field Preview - \" + message, data)\n }\n}\n", "import { application } from \"web-ui/controllers/application\"\nimport DynamicForm from \"web-ui/controllers/dynamic-form\"\nimport DynamicFormDiscardChangesConfirmation from \"web-ui/controllers/dynamic-form/discard-changes-confirmation\"\nimport DynamicFormRefresh from \"web-ui/controllers/dynamic-form/refresh\"\nimport Textarea from \"web-ui/controllers/textarea\"\nimport DropdownMenu from \"web-ui/controllers/dropdown-menu\"\nimport Refresh from \"web-ui/controllers/refresh\"\nimport Popover from \"web-ui/controllers/popover\"\nimport SynchronizedForm from \"web-ui/controllers/synchronized-form\"\nimport UserTools from \"web-ui/controllers/user-tools\"\nimport ViewFormError from \"web-ui/controllers/view-form-error\"\nimport ModalDialog from \"web-ui/controllers/modal-dialog\"\nimport AsyncSelect from \"web-ui/controllers/async-select\"\nimport ConfirmationField from \"web-ui/controllers/confirmation-field\"\nimport Switch from \"web-ui/controllers/switch\"\nimport OptionGroup from \"web-ui/controllers/option-group\"\nimport FieldPreview from \"web-ui/controllers/field-preview\"\n\napplication.register(\"dynamic-form\", DynamicForm)\napplication.register(\"dynamic-form-discard-changes-confirmation\", DynamicFormDiscardChangesConfirmation)\napplication.register(\"dynamic-form-refresh\", DynamicFormRefresh)\napplication.register(\"textarea\", Textarea)\napplication.register(\"dropdown-menu\", DropdownMenu)\napplication.register(\"refresh\", Refresh)\napplication.register(\"popover\", Popover)\napplication.register(\"synchronized-form\", SynchronizedForm)\napplication.register(\"user-tools\", UserTools)\napplication.register(\"view-form-error\", ViewFormError)\napplication.register(\"modal-dialog\", ModalDialog)\napplication.register(\"async-select\", AsyncSelect)\napplication.register(\"confirmation-field\", ConfirmationField)\napplication.register(\"switch\", Switch)\napplication.register(\"option-group\", OptionGroup)\napplication.register(\"field-preview\", FieldPreview)\n\nexport { application as stimulusApplication }\n", "import morphdom from \"morphdom\"\nimport { morphdomCopyPreservedAttributes } from \"web-ui/morphdom/preserve-attributes\"\nimport { morphdomShouldUpdate } from \"web-ui/morphdom/should-update\"\nimport { isMorphdomIgnored } from \"web-ui/morphdom/ignore\"\n\nfunction morph() {\n const options = {\n childrenOnly: this.hasAttribute(\"children-only\"),\n onBeforeElUpdated: (fromElement, toElement) => {\n morphdomCopyPreservedAttributes(fromElement, toElement)\n return morphdomShouldUpdate(fromElement, toElement)\n },\n\n onBeforeNodeDiscarded: (node) => {\n if (!(node instanceof HTMLElement)) {\n return true\n }\n\n // Do not remove elements that indicate they should be ignored\n if (isMorphdomIgnored(node)) {\n return false\n }\n\n return true\n }\n }\n\n this.targetElements.forEach(element => {\n let newElement\n\n if (options.childrenOnly) {\n newElement = this.templateContent\n } else {\n newElement = this.templateElement.innerHTML\n }\n\n morphdom(element, newElement, options)\n })\n}\n\nexport function activate(Turbo) {\n Turbo.StreamActions.morph = morph\n}\n", "export function morphdomPreserveAttributes(element, attributes) {\n const formattedAttributes = attributes.join(\" \")\n\n element.dataset.turboMorphPreserveAttributes = formattedAttributes\n}\n\nexport function morphdomCopyPreservedAttributes(fromElement, toElement) {\n const dataset = fromElement.dataset\n const preserveAttributesAttributeName = \"turboMorphPreserveAttributes\"\n\n if (!dataset.hasOwnProperty(preserveAttributesAttributeName)) {\n return\n }\n\n const delimitedAttributes = dataset[preserveAttributesAttributeName]\n let attributes = delimitedAttributes.split(\" \")\n attributes.push(\"data-turbo-morph-preserve-attributes\")\n\n for (let attribute of attributes) {\n const hasAttribute = fromElement.hasAttribute(attribute)\n\n if (hasAttribute) {\n const value = fromElement.getAttribute(attribute)\n toElement.setAttribute(attribute, value)\n } else {\n toElement.removeAttribute(attribute)\n }\n }\n}\n", "// Template element content is rendered into a document fragment. By\n// default, morphdom considers two fragments identical even if their\n// content differs - Nick, Sat Apr 20 2024\nexport function morphdomMorphTemplate(fromElement, toElement) {\n const node = toElement.cloneNode(true)\n fromElement.replaceWith(node)\n}\n", "import { morphdomMorphTemplate } from \"web-ui/morphdom/morph-template\"\n\nfunction isFocused(element) {\n const isInput = [\"INPUT\", \"SELECT\", \"TEXTAREA\"].includes(element.tagName)\n if (!isInput) {\n return false\n }\n\n return document.hasFocus() && element === document.activeElement\n}\n\nfunction isTemplate(element) {\n return element.tagName === \"TEMPLATE\"\n}\n\nexport function morphdomShouldUpdate(fromElement, toElement) {\n if (isTemplate(fromElement)) {\n morphdomMorphTemplate(fromElement, toElement)\n return false\n }\n\n // Do not update anything that has focus, unless the toElement is disabled\n // - Aaron, Wed Aug 09 2023\n if (isFocused(fromElement) && !toElement.disabled) {\n return false\n }\n\n // Do not update elements that indicate they should be ignored\n if (\"turboMorphIgnore\" in fromElement.dataset) {\n return false\n }\n\n return true\n}\n", "function showConfirmationDialog(confirmationTemplateID) {\n const dialogTemplate = document.querySelector(`#${confirmationTemplateID}`)\n\n if (!dialogTemplate) {\n return\n }\n\n const dialogFragment = dialogTemplate.content\n\n const dialog = dialogFragment.firstElementChild.cloneNode(true)\n document.body.appendChild(dialog)\n dialog.showModal()\n\n return new Promise((resolve, _reject) => {\n dialog.addEventListener(\"close\", () => {\n resolve(dialog.returnValue == \"confirm\")\n }, { once: true })\n }).finally(() => {\n dialog.remove()\n })\n}\n\nconst confirmations = new WeakSet()\n\nasync function handleClick(event) {\n const target = event.target\n\n const dataset = target.dataset\n const confirmationTemplateID = dataset.confirmationTemplateId\n\n if (!confirmationTemplateID) {\n return\n }\n\n if (confirmations.has(target)) {\n confirmations.delete(target)\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n const confirmed = await showConfirmationDialog(confirmationTemplateID)\n\n if (confirmed) {\n confirmations.add(target)\n target.click()\n }\n}\n\nexport function activate() {\n document.addEventListener(\"click\", handleClick, {\n capture: true\n })\n}\n", "import { Turbo } from \"@hotwired/turbo-rails\"\nimport * as ReplaceStylesheets from \"web-ui/turbo/replace-stylesheets\"\nimport * as MorphdomRender from \"web-ui/turbo/morphdom-render\"\n\nimport * as MorphStreamAction from \"web-ui/turbo/stream-actions/morph\"\nimport * as RedirectStreamAction from \"web-ui/turbo/stream-actions/redirect\"\nimport \"web-ui/turbo/disable-submit-button\"\n\nReplaceStylesheets.activate(Turbo)\nMorphdomRender.activate(Turbo)\n\nMorphStreamAction.activate(Turbo)\nRedirectStreamAction.activate(Turbo)\n\nTurbo.session.drive = false\n\n", "import * as Log from \"web-ui/log\"\n\nconst log = (message, data) => {\n Log.debug(\"Replace Stylesheets - \" + message, data)\n}\n\nfunction removeFingerprint(url) {\n if (!url) { return url }\n return url.replace(/-[0-9a-f]{7,128}(\\.digested)?\\.css$/, \".css\")\n}\n\nfunction stylesheetElementIsReplaceable(element) {\n return element.getAttribute(\"data-turbo-track\") == \"replace\" &&\n element.getAttribute(\"href\") != null\n}\n\n// Copied from turbo\nfunction waitForLoad(element, timeoutInMilliseconds = 2000) {\n return new Promise((resolve) => {\n const onComplete = () => {\n element.removeEventListener(\"error\", onComplete)\n element.removeEventListener(\"load\", onComplete)\n resolve()\n }\n\n element.addEventListener(\"load\", onComplete, { once: true })\n element.addEventListener(\"error\", onComplete, { once: true })\n setTimeout(resolve, timeoutInMilliseconds)\n })\n}\n\n// Original:\n// async copyNewHeadStylesheetElements() {\n// const loadingElements = []\n//\n// for (const element of this.newHeadStylesheetElements) {\n// loadingElements.push(waitForLoad(element as HTMLLinkElement))\n//\n// document.head.appendChild(element)\n// }\n//\n// await Promise.all(loadingElements)\n// }\n\nasync function copyNewHeadStylesheetElements() {\n log(\"copyNewHeadStylesheetElements\")\n\n const loadingElements = []\n const preloadElements = []\n\n const newStylesheetElements = this.newHeadStylesheetElements.filter(stylesheetElementIsReplaceable)\n const oldStylesheetElements = this.currentHeadSnapshot.getStylesheetElementsNotInSnapshot(this.newHeadSnapshot).filter(stylesheetElementIsReplaceable)\n\n const oldElementIndex = Object.fromEntries(oldStylesheetElements.map(element => [removeFingerprint(element.getAttribute(\"href\")), element]))\n\n let lastStylesheetElement = null\n\n for (const newElement of newStylesheetElements) {\n const newHref = newElement.getAttribute(\"href\")\n const hrefWithoutFingerprint = removeFingerprint(newHref)\n const oldElement = oldElementIndex[hrefWithoutFingerprint]\n const oldHref = oldElement && oldElement.getAttribute(\"href\")\n\n if (oldHref == newHref) {\n log(`Skipping ${newHref}`)\n delete oldElementIndex[hrefWithoutFingerprint]\n continue\n }\n\n // Convert the link tag to a preload so that it can be enabled at the same\n // time as others (after everything has loaded) and any old stylesheets can\n // be removed at the same time as well.\n newElement.setAttribute(\"as\", \"style\")\n newElement.setAttribute(\"rel\", \"preload\")\n preloadElements.push(newElement)\n\n loadingElements.push(waitForLoad(newElement))\n\n if (oldElement) {\n log(`Updating ${oldElement.getAttribute(\"href\")} to ${newHref}`)\n\n oldElement.after(newElement)\n } else {\n log(`Appending ${newHref} after`, lastStylesheetElement)\n\n // Ensure that the new elements maintain their order as much as possible\n if (lastStylesheetElement) {\n lastStylesheetElement.after(newElement)\n } else {\n document.head.appendChild(newElement)\n }\n }\n\n lastStylesheetElement = newElement\n }\n\n await Promise.all(loadingElements)\n\n for (const element of Object.values(oldElementIndex)) {\n log(`Removing ${element.getAttribute(\"href\")}`)\n\n element.remove()\n }\n\n for (const element of preloadElements) {\n log(`Converting preload ${element.getAttribute(\"href\")}`)\n\n element.setAttribute(\"rel\", \"stylesheet\")\n element.removeAttribute(\"as\")\n }\n}\n\nexport function activate(Turbo) {\n Turbo.PageRenderer.prototype.copyNewHeadStylesheetElements = copyNewHeadStylesheetElements\n}\n", "import morphdom from \"morphdom\"\nimport { morphdomCopyPreservedAttributes } from \"web-ui/morphdom/preserve-attributes\"\nimport { morphdomShouldUpdate } from \"web-ui/morphdom/should-update\"\n\nfunction morphdomRender({ detail }) {\n detail.render = (fromElement, toElement) => {\n morphdom(fromElement, toElement, {\n childrenOnly: true,\n onBeforeElUpdated: (fromElement, toElement) => {\n morphdomCopyPreservedAttributes(fromElement, toElement)\n return morphdomShouldUpdate(fromElement, toElement)\n }\n })\n }\n}\n\nexport function activate() {\n addEventListener(\"turbo:before-frame-render\", morphdomRender)\n}\n", "function redirect() {\n const path = this.getAttribute(\"path\")\n\n if (!path) {\n throw new Error(\"Path is not specified\")\n }\n\n window.location = path\n}\n\nexport function activate(Turbo) {\n Turbo.StreamActions.redirect = redirect\n}\n", "// Form submission buttons are disabled if form submissions are a redirect\n// https://github.com/hotwired/turbo/issues/766\n// - Shaun, Aaron, Mon Mar 11 2024\n\nconst buttonsInsideForm = (form) => {\n const buttons = Array.from(form.querySelectorAll(\"[type=submit]\"))\n\n return buttons.filter(b => !b.disabled)\n}\n\nconst buttonsOutsideForm = (formID) => {\n const buttons = Array.from(document.querySelectorAll(`[type=submit][form=${formID}]`))\n\n return buttons.filter(b => !b.disabled)\n}\n\nconst enabledSubmitButtons = (form) => {\n const formID = form.id\n\n if (formID) {\n return [\n ...buttonsInsideForm(form),\n ...buttonsOutsideForm(formID)\n ]\n }\n\n return buttonsInsideForm(form)\n}\n\nconst disableButtonsOnRedirect = (event) => {\n const fetchResponse = event.detail.fetchResponse\n\n // Fetch response may not be present if the request was canceled\n // - Shaun, Antoine, Stephen, Tue Mar 12 2024\n if (fetchResponse && fetchResponse.redirected) {\n const form = event.target\n\n const enabledButtons = enabledSubmitButtons(form)\n\n for (const button of enabledButtons) {\n button.disabled = true\n }\n\n const turboStreamRedirect = fetchResponse.contentType.includes(\"text/vnd.turbo-stream.html\")\n if (turboStreamRedirect) {\n const restoreButtons = () => {\n for (const button of enabledButtons) {\n button.disabled = false\n }\n }\n\n document.addEventListener(\"turbo:before-stream-render\", restoreButtons, { once: true })\n }\n }\n}\n\ndocument.addEventListener(\"turbo:submit-end\", disableButtonsOnRedirect)\n", "import { stimulusApplication } from \"web-ui/controllers\"\nimport * as MorphStreamAction from \"web-ui/turbo/stream-actions/morph\"\nimport { morphdomIgnore } from \"web-ui/morphdom/ignore\"\nimport * as ConfirmationDialog from \"web-ui/confirmation-dialog\"\nimport * as Log from \"web-ui/log\"\nimport \"web-ui/turbo\"\n\nConfirmationDialog.activate()\n\nexport {\n stimulusApplication,\n MorphStreamAction,\n morphdomIgnore,\n Log\n}\n"], "mappings": "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", "names": ["Application", "application", "Controller", "morphdomIgnoreAttributeName", "morphdomIgnore", "element", "ignore", "isMorphdomIgnored", "getMetaElement", "name", "getMetaContent", "element", "getCSRFToken", "setInputValueAttributes", "input", "value", "option", "log_exports", "__export", "debug", "isDebugEnabled", "message", "data", "formattedData", "formatData", "parts", "key", "value", "formattedKey", "titleCase", "formattedValue", "text", "titleCased", "splitCamelCase", "capitalize", "isMetaInputName", "name", "isAuthenticityToken", "dynamic_form_default", "Controller", "event", "submitter", "actionFormUpdatesJSON", "actionFormUpdates", "value", "input", "setInputValueAttributes", "eventName", "ignore", "formElements", "elementName", "element", "morphdomIgnore", "url", "formData", "csrfToken", "getCSRFToken", "signal", "options", "response", "html", "error", "stream", "action", "target", "render", "self", "message", "data", "debug", "Controller", "confirmationText", "discard_changes_confirmation_default", "Controller", "event", "targetLink", "message", "data", "debug", "Controller", "refreshIntervalMilliseconds", "refresh_default", "Controller", "dynamicFormController", "signal", "path", "headers", "response", "html", "error", "message", "data", "debug", "Controller", "textarea_default", "Controller", "textareaElement", "morphdomIgnore", "message", "data", "debug", "Controller", "dropdown_menu_default", "Controller", "event", "message", "data", "debug", "Controller", "defaultIntervalSeconds", "refresh_default", "Controller", "intervalTimerMilliseconds", "newFrame", "key", "message", "data", "debug", "Controller", "computePosition", "flip", "shift", "autoUpdate", "popover_default", "Controller", "morphdomIgnore", "autoUpdate", "computePosition", "shift", "flip", "placement", "event", "message", "data", "debug", "Controller", "synchronized_form_default", "Controller", "event", "targetForm", "form", "submitter", "morphdomIgnore", "dynamicFormController", "updating", "hasPendingUpdates", "busy", "message", "data", "debug", "Controller", "user_tools_default", "Controller", "event", "message", "data", "debug", "Controller", "view_form_error_default", "Controller", "invalidField", "input", "message", "data", "debug", "Controller", "modal_dialog_default", "Controller", "message", "data", "debug", "Controller", "FloatingUI", "async_select_default", "Controller", "input", "label", "id", "items", "options", "morphdomIgnore", "value", "item", "term", "dropdown", "placement", "element", "mutationRecords", "option", "labelRecord", "record", "valueRecord", "silent", "callback", "signal", "url", "json", "error", "message", "data", "debug", "Controller", "confirmation_field_default", "Controller", "text", "confirmationButtonElement", "confirmationText", "message", "data", "debug", "Controller", "switch_default", "Controller", "option", "form", "message", "data", "debug", "Controller", "option_group_default", "Controller", "element", "option", "selectedOption", "options", "event", "message", "data", "debug", "Controller", "field_preview_default", "Controller", "sourceTarget", "event", "value", "morphdomIgnore", "text", "message", "data", "debug", "application", "dynamic_form_default", "discard_changes_confirmation_default", "refresh_default", "textarea_default", "dropdown_menu_default", "popover_default", "synchronized_form_default", "user_tools_default", "view_form_error_default", "modal_dialog_default", "async_select_default", "confirmation_field_default", "switch_default", "option_group_default", "field_preview_default", "morph_exports", "__export", "activate", "morphdom", "morphdomCopyPreservedAttributes", "fromElement", "toElement", "dataset", "preserveAttributesAttributeName", "attributes", "attribute", "value", "morphdomMorphTemplate", "fromElement", "toElement", "node", "isFocused", "element", "isTemplate", "morphdomShouldUpdate", "fromElement", "toElement", "morphdomMorphTemplate", "morph", "options", "fromElement", "toElement", "morphdomCopyPreservedAttributes", "morphdomShouldUpdate", "node", "isMorphdomIgnored", "element", "newElement", "morphdom", "activate", "Turbo", "showConfirmationDialog", "confirmationTemplateID", "dialogTemplate", "dialog", "resolve", "_reject", "confirmations", "handleClick", "event", "target", "activate", "Turbo", "log", "message", "data", "debug", "removeFingerprint", "url", "stylesheetElementIsReplaceable", "element", "waitForLoad", "timeoutInMilliseconds", "resolve", "onComplete", "copyNewHeadStylesheetElements", "loadingElements", "preloadElements", "newStylesheetElements", "oldStylesheetElements", "oldElementIndex", "lastStylesheetElement", "newElement", "newHref", "hrefWithoutFingerprint", "oldElement", "activate", "Turbo", "morphdom", "morphdomRender", "detail", "fromElement", "toElement", "morphdom", "morphdomCopyPreservedAttributes", "morphdomShouldUpdate", "activate", "redirect", "path", "activate", "Turbo", "buttonsInsideForm", "form", "b", "buttonsOutsideForm", "formID", "enabledSubmitButtons", "disableButtonsOnRedirect", "event", "fetchResponse", "enabledButtons", "button", "restoreButtons", "activate", "Turbo", "activate"] }