{"version":3,"file":"js/5315-cb51911de90c8b4a66de.chunk.js","mappings":"4IAGAA,KAAO,WACL,GAAIA,IAAO,kBAAkBC,OAAS,EAAG,CACvC,MACMC,EADOF,IAAO,kBACiBG,KAAK,6BAKpCC,EAAaC,SAASC,cAAc,2CAC1C,GAAIF,EAAY,CACd,MAAMG,EAAUC,EAAAA,GAAQC,YAAYL,GAChCG,GACFA,EAAQG,MAEZ,CAEIR,GACFF,IAAO,wCAAwCW,GAAG,SAAS,KACzDN,SAASO,iBAAiB,4BAA4BC,SAASC,IAC7DC,EAAAA,GAAMC,oBAAoBF,GAAIJ,MAAM,KAE/B,KAIXV,IAAO,2BAA2BW,GAAG,SAAS,KAE5C,MAAMM,EAAUjB,IAAO,kCACjBkB,EAAUD,EAAQE,MAGxBnB,IAAO,kCAAkCoB,YAAY,cAErD,IAAIC,EAAerB,IAAO,4BAA4BsB,KAAK,oBAK3D,GAJoB,MAAhBD,GACFA,EAAaE,SAGXL,EAAQjB,OAAS,EAInB,OAFAD,IAAO,qCAAqCmB,IAAID,GAChDlB,IAAO,kBAAkBwB,UAClB,EACF,CACLxB,IAAO,kCAAkCyB,SAAS,cAClDJ,EAAerB,IAAO,UAAW,CAAE0B,MAAO,cAAeC,KAAM,mBAC/D,MAAMC,EAAa5B,IAAO,aAAaiB,EAAQY,KAAK,UAEpD,OADAR,EAAaS,YAAYF,IAClB,CACT,IAEJ,CACF,G","sources":["webpack://agra/./app/javascript/petition/form.js"],"sourcesContent":["import jQuery from 'jquery'\nimport { Modal, Popover } from 'bootstrap'\n\njQuery(function () {\n if (jQuery('#petition_form').length > 0) {\n const form = jQuery('#petition_form')\n const displayEditConfirmation = form.data('display-edit-confirmation')\n\n // If there are input fields with popovers, show the first one on page load.\n // The popovers will have already been initialized in popovers.js, so we're not\n // checking for rel=popover or creating any popovers, just opening one if it exists.\n const firstField = document.querySelector('#petition_form input[type=text]:enabled')\n if (firstField) {\n const popover = Popover.getInstance(firstField)\n if (popover) {\n popover.show()\n }\n }\n\n if (displayEditConfirmation) {\n jQuery('#petition-save-button .submit-button').on('click', () => {\n document.querySelectorAll('.edit-confirmation-modal').forEach((el) => {\n Modal.getOrCreateInstance(el).show()\n })\n return false\n })\n }\n\n jQuery('#edit-confirmation-save').on('click', () => {\n // Extract the message\n const element = jQuery('#modal_edit_moderation_message')\n const message = element.val()\n\n // Remove errors, if any exist.\n jQuery('#modal_edit_moderation_message').removeClass('is-invalid')\n\n let errorElement = jQuery('.edit-confirmation-modal').find('span.help-inline')\n if (errorElement != null) {\n errorElement.remove()\n }\n\n if (message.length > 0) {\n // set hidden field for form submission.\n jQuery('#petition_edit_moderation_message').val(message)\n jQuery('#petition_form').submit()\n return true\n } else {\n jQuery('#modal_edit_moderation_message').addClass('is-invalid')\n errorElement = jQuery('', { class: 'help-inline', text: 'can\\'t be blank' })\n const inputLabel = jQuery(`label[for=${element.attr('id')}]`)\n errorElement.insertAfter(inputLabel)\n return false\n }\n })\n }\n})\n"],"names":["jQuery","length","displayEditConfirmation","data","firstField","document","querySelector","popover","Popover","getInstance","show","on","querySelectorAll","forEach","el","Modal","getOrCreateInstance","element","message","val","removeClass","errorElement","find","remove","submit","addClass","class","text","inputLabel","attr","insertAfter"],"sourceRoot":""}