{ "version": 3, "sources": ["../../javascript/modules/debate/index.js", "../../javascript/debate.js"], "sourcesContent": ["export function configureNewCommentForm(newCommentForm) {\n if (newCommentForm !== null) {\n const commentBodyField = newCommentForm.querySelector(\n \".debate-new-comment-form__body\"\n );\n\n const commentSubmitButton = newCommentForm.querySelector(\n \".debate-new-comment-form__submit\"\n );\n const inputChangeHandler = handleCommentBodyChange.bind(\n null,\n commentBodyField,\n commentSubmitButton\n );\n\n commentBodyField.addEventListener(\"input\", inputChangeHandler, false);\n }\n}\n\nexport function reRenderComments(commentHtml, commentCount) {\n const debateSection = document.getElementById(\"debate\");\n const commentCountElement = debateSection.querySelector(\".comments_count\");\n const textArea = debateSection.querySelector(\"#comment_content\");\n const commentList = debateSection.querySelector(\".comments\");\n const submitButton = debateSection.querySelector(\n \".debate-new-comment-form__submit\"\n );\n\n // This is safe, since it's (should be) escaped on the server.\n commentList.innerHTML = commentHtml;\n commentCountElement.innerText = commentCount.toString();\n textArea.value = \"\";\n // Horrible hack to get around Rails UJS re-enabling this button. Zero is an\n // okay timout value the callback will run after UJS is done.\n setTimeout(function () {\n submitButton.setAttribute(\"disabled\", \"disabled\");\n }, 0);\n}\n\nfunction handleCommentBodyChange(textArea, submitButton) {\n if (textArea.value.length > 0) {\n submitButton.removeAttribute(\"disabled\");\n } else {\n submitButton.setAttribute(\"disabled\", \"disabled\");\n }\n}\n", "import { configureNewCommentForm, reRenderComments } from \"./modules/debate\";\n\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n const debateForm = document.getElementById(\"new_comment\");\n\n configureNewCommentForm(debateForm);\n});\n\nwindow.reRenderComments = reRenderComments;\n"], "mappings": ";;AAAO,WAAS,wBAAwB,gBAAgB;AACtD,QAAI,mBAAmB,MAAM;AAC3B,YAAM,mBAAmB,eAAe;AAAA,QACtC;AAAA,MACF;AAEA,YAAM,sBAAsB,eAAe;AAAA,QACzC;AAAA,MACF;AACA,YAAM,qBAAqB,wBAAwB;AAAA,QACjD;AAAA,QACA;AAAA,QACA;AAAA,MACF;AAEA,uBAAiB,iBAAiB,SAAS,oBAAoB,KAAK;AAAA,IACtE;AAAA,EACF;AAEO,WAAS,iBAAiB,aAAa,cAAc;AAC1D,UAAM,gBAAgB,SAAS,eAAe,QAAQ;AACtD,UAAM,sBAAsB,cAAc,cAAc,iBAAiB;AACzE,UAAM,WAAW,cAAc,cAAc,kBAAkB;AAC/D,UAAM,cAAc,cAAc,cAAc,WAAW;AAC3D,UAAM,eAAe,cAAc;AAAA,MACjC;AAAA,IACF;AAGA,gBAAY,YAAY;AACxB,wBAAoB,YAAY,aAAa,SAAS;AACtD,aAAS,QAAQ;AAGjB,eAAW,WAAY;AACrB,mBAAa,aAAa,YAAY,UAAU;AAAA,IAClD,GAAG,CAAC;AAAA,EACN;AAEA,WAAS,wBAAwB,UAAU,cAAc;AACvD,QAAI,SAAS,MAAM,SAAS,GAAG;AAC7B,mBAAa,gBAAgB,UAAU;AAAA,IACzC,OAAO;AACL,mBAAa,aAAa,YAAY,UAAU;AAAA,IAClD;AAAA,EACF;;;AC3CA,WAAS,iBAAiB,oBAAoB,WAAY;AACxD,UAAM,aAAa,SAAS,eAAe,aAAa;AAExD,4BAAwB,UAAU;AAAA,EACpC,CAAC;AAED,SAAO,mBAAmB;", "names": [] }