{"version":3,"file":"chunk-HealthConditions-1928f34e-esm.js","sources":["src/modules/HealthConditions.js"],"sourcesContent":["import { BreedHealthConditions } from './BreedHealthConditions';\nimport Foundation from './foundation';\nimport debounce from 'lodash/debounce';\nimport { maybeAddDisclaimer } from './ConditionDisclaimers';\nimport { myevUrl } from '../util/helpers';\nimport { pushGTMCustomEvent } from './pushGTMCustomEvent';\nimport { toggleAutocompleteValuesBasedOnInput } from '../util/jQueryAutocompleteHelpers';\n\nexport class HealthConditions {\n static async init() {\n await HealthConditions.loadDependencies();\n const response = await fetch(myevUrl('health-and-breed-list'));\n const identifiableHealth = await response.json();\n const healthDisplayName = (health) => {\n return `${health.disorder_name} ${health.subdisorder_name}`;\n };\n const allHealthLabelsForAutocomplete = identifiableHealth.map(healthDisplayName);\n const instructionsHealthList = document.getElementById('instructions-health-list');\n const healthConditionAutocompleteInput = jQuery(document.getElementById('health-list'));\n const searchWrapper = jQuery(document.querySelector('.breed-search-form'));\n const searchFormSize = searchWrapper.find('.search-form-size');\n const searchButton = document.getElementById('search-health-list');\n const clearButton = document.getElementById('clear-health-list');\n\n if (clearButton) {\n clearButton.addEventListener('click', () => {\n healthConditionAutocompleteInput.val('');\n document.getElementById('health-list-results').innerHTML = '';\n });\n }\n\n const onSelect = (value) => {\n const health = identifiableHealth.filter((item) => {\n return healthDisplayName(item) === value;\n });\n\n if (!health.length) {\n const container = document.getElementById('health-list-results');\n return HealthConditions.renderNoResults(value, container);\n }\n\n HealthConditions.fetchAndRenderHealthConditions(health[0], value).catch((_error) => {\n // TODO: Notify Sentry once a client side helper is created\n });\n };\n\n searchButton.addEventListener('click', function () {\n onSelect(healthConditionAutocompleteInput.val());\n });\n\n healthConditionAutocompleteInput.on('keyup', async function (e) {\n if (e.keyCode === 13 || e.key === 'Enter') {\n onSelect(jQuery(this).val());\n }\n });\n\n const defaultHealthLabelsForAutocomplete =\n typeof window.embark_popular_health_conditions !== 'undefined' ? window.embark_popular_health_conditions : [];\n\n const topPadding =\n searchFormSize.length && searchFormSize.data('input-padding-top') ? searchFormSize.data('input-padding-top') : 0;\n healthConditionAutocompleteInput.autocomplete({\n source: defaultHealthLabelsForAutocomplete,\n delay: 0,\n minLength: 0,\n select(event, ui) {\n if (event.key === 'Enter') {\n return;\n }\n onSelect(ui.item.value);\n },\n appendTo: '.breed-search-form_input',\n position: {\n my: 'left+0 top+' + topPadding,\n },\n });\n\n const generateIdFromLabel = (label) => {\n return label\n .replace(/[^\\w\\s-]/g, '')\n .replace(/\\s+/g, '-')\n .toLowerCase()\n .substring(0, 20);\n };\n\n healthConditionAutocompleteInput.autocomplete('instance')._renderItem = function (ul, item) {\n var li = jQuery('
  • ')\n .attr({\n id: 'item-' + generateIdFromLabel(item.label),\n role: 'option',\n })\n .append(jQuery('
    ').text(item.label));\n\n return li.appendTo(ul);\n };\n\n healthConditionAutocompleteInput.autocomplete('widget').attr({\n 'role': 'listbox',\n 'aria-labelledby': 'health-list',\n });\n\n const toggleSources = () =>\n toggleAutocompleteValuesBasedOnInput(\n healthConditionAutocompleteInput,\n allHealthLabelsForAutocomplete,\n defaultHealthLabelsForAutocomplete,\n 'Popular Searches'\n );\n healthConditionAutocompleteInput.on('focus', () => {\n toggleSources();\n healthConditionAutocompleteInput.autocomplete('search');\n instructionsHealthList.setAttribute('aria-hidden', false);\n });\n\n healthConditionAutocompleteInput.on('blur', () => {\n instructionsHealthList.setAttribute('aria-hidden', true);\n });\n\n healthConditionAutocompleteInput.on('input', debounce(toggleSources, 150));\n\n healthConditionAutocompleteInput.on('autocompleteopen', () => {\n let autocompleteMenu = healthConditionAutocompleteInput.autocomplete('widget');\n\n if (autocompleteMenu.length) {\n const menuId = autocompleteMenu.attr('id');\n healthConditionAutocompleteInput.attr({\n 'aria-controls': menuId,\n 'aria-expanded': true,\n });\n }\n });\n\n healthConditionAutocompleteInput.on('autocompleteclose', () => {\n healthConditionAutocompleteInput.removeAttr('aria-controls');\n healthConditionAutocompleteInput.attr('aria-expanded', false);\n });\n\n const menuWidth = searchFormSize.length\n ? searchFormSize.outerWidth()\n : healthConditionAutocompleteInput.outerWidth();\n // Set the autocomplete menu size as the input/wrapper.\n jQuery.ui.autocomplete.prototype._resizeMenu = function () {\n this.menu.element.outerWidth(menuWidth);\n };\n }\n\n static async fetchAndRenderHealthConditions(health, query) {\n const container = document.getElementById('health-list-results');\n container.innerHTML = '';\n\n const searchType = 'Health Condition Search';\n const eventProperties = {\n eventCategory: searchType,\n eventAction: query,\n eventURL: window.location.href,\n };\n\n let result;\n try {\n const response = await fetch(myevUrl(`/health-conditions/${health.health_id}`));\n result = await response.json();\n pushGTMCustomEvent(searchType, eventProperties);\n } catch (e) {\n eventProperties.eventAction += ' - no results';\n pushGTMCustomEvent(searchType, eventProperties);\n return HealthConditions.renderNoResults(query, container);\n }\n\n await HealthConditions.renderHealth(result, container, health);\n HealthConditions.renderSuggestions(health, container);\n }\n\n static async loadDependencies() {\n const { Accordion } = await import('foundation-sites/js/foundation.accordion');\n Foundation.plugin(Accordion, 'Accordion');\n }\n\n static async renderHealth(health, container, baseHealthQuery) {\n const { condition } = health;\n const accordion = jQuery('