{"version":3,"file":"form_controller-BFlq_gyC.js","sources":["../../../app/javascript/controllers/compose/models/mentions_manager.js","../../../app/javascript/controllers/note/form_controller.js"],"sourcesContent":["import { AttachmentManager } from './attachment_manager'\n\nclass MentionsManager extends AttachmentManager {\n insert({ currentTarget }) {\n super.insert(this.constructAttachmentElementForMention(currentTarget))\n }\n\n moveCursorToRightAndInsertAttachmentAndMoveToRight(attachment) {\n this.inputController.isParsing = true\n\n this.inputController.nextTick(() => {\n this.cursor.moveToRight()\n\n this.inputController.nextTick(() => {\n this.recordUndoEntryAndInsertAttachment(attachment)\n\n this.cursor.moveToRight()\n this.inputController.isParsing = false\n\n return this.afterAttachmentInsertion()\n })\n })\n }\n\n replace(id, withElement) {\n const piece = this.trixDocument.getPieces().filter(piece => piece.attachment)\n .find(piece => piece.attachment.attributes.values.id === id)\n\n const pieceIndex = this.trixDocument.getPieces().findIndex(p => p.id === piece.id)\n const contentLengthBeforePiece = this.inputController.contentLengthBeforePiece(pieceIndex)\n\n this.editor.setSelectedRange([contentLengthBeforePiece, contentLengthBeforePiece + 1])\n this.editor.deleteInDirection('backward')\n\n this.editor.insertAttachment(this.attachmentFor(withElement))\n this.inputController.afterAttachmentInsertion()\n }\n\n constructAttachmentElementForMention(currentTarget) {\n const pieceBeforeCursor = this.cursor.pieceBeforeCaret()\n const pieceIndex = this.trixDocument.getPieces().findIndex(piece => piece.id === pieceBeforeCursor.id)\n const contentLengthBeforePiece = this.inputController.contentLengthBeforePiece(pieceIndex)\n\n const content = pieceBeforeCursor.string.split('@')[1]\n\n const start = contentLengthBeforePiece + pieceBeforeCursor.string.split('@')[0].length\n const end = start + content.length + 1\n\n this.editor.setSelectedRange([start, end])\n this.editor.deleteInDirection('backward')\n\n return this.attachmentFor(currentTarget)\n }\n\n attachmentFor(element) {\n const attachmentContent = element.querySelector('[data-content]').cloneNode(true)\n attachmentContent.classList.remove('hidden')\n\n return new Trix.Attachment({\n content: attachmentContent.outerHTML.toString(),\n contentType: 'mention',\n sgid: element.dataset.sgid,\n id: element.dataset.id\n })\n }\n}\n\nexport { MentionsManager }\n","import ComposeController from '../compose/base_controller'\n\nimport {\n KeyboardKey,\n Character,\n MentionsManager\n} from \"../compose/models\"\n\nexport default class extends ComposeController {\n static values = {\n ensureCaretVisibility: Boolean,\n }\n\n static targets = [\n 'mentionsList',\n 'submit',\n 'hideButton',\n 'noteUsage',\n 'destinationList',\n 'destinationListToggleButton'\n ]\n\n initialize() {\n super.initialize()\n this.mentionsManager = new MentionsManager(this)\n }\n\n connect() {\n super.connect()\n\n if(this.ensureCaretVisibilityValue) {\n this.nextTick(() => this.cursor.ensureCaretVisibility())\n }\n }\n\n onTrixFocus() {\n if(this.ensureCaretVisibilityValue) {\n this.nextTick(() => this.cursor.ensureCaretVisibility())\n }\n }\n\n onTrixContentChange() {\n if(this.ensureCaretVisibilityValue) {\n this.cursor.ensureCaretVisibility()\n }\n\n if (this.empty) return\n\n if (this.documentStartsWithZeroWidthNonJoinerSpace) {\n this.deleteStartingZeroWidthNonJoinerSpace()\n }\n }\n\n onTrixKeydown(event) {\n const key = KeyboardKey.fromKeyboardEvent(event)\n const character = Character.fromKeyboardEvent(event)\n const characterBeforeCursor = this.cursor.characterBeforeCaret()\n\n if(key.isEscape && this.empty) {\n return this.hideButtonTarget.click()\n }\n\n if(this.hasDestinationListTarget && this.isVisible(this.destinationListTarget)) {\n this.destinationListToggleButtonTarget.click()\n }\n\n if (key.isHotkey) {\n return this.handleHotkey(event)\n }\n\n if (key.isBackspace && this.cursor.pieceBeforeCaret().isShortlink) {\n return this.mentionsManager.deleteAttachmentInPosition()\n }\n\n if (key.isArrow) {\n return this.handleArrowNavigation(event)\n }\n\n if(character.isAtSymbol && characterBeforeCursor.isWhitespace) {\n const [start, _] = this.editor.getSelectedRange()\n const rect = this.editor.getClientRectAtPosition(start)\n\n this.mentionStartsAt = start\n this.showMentionsDropdown(rect)\n }\n\n if (this.noSelection && key.isAlphanumeric && this.cursor.pieceBeforeCaretIsShortLink()) {\n this.ensureWhitespaceBeforeCursor()\n }\n\n if (this.noSelection && key.isAlphanumeric && this.cursor.pieceBeforeCaretIsTag()) {\n this.ensureWhitespaceBeforeCursor()\n }\n }\n\n onTrixKeyup(event) {\n const key = KeyboardKey.fromKeyboardEvent(event)\n\n if (this.noSelection && key.isAlphanumeric && this.cursor.pieceAtCaretIsShortLink()) {\n this.ensureWhitespaceAfterCursor()\n }\n\n if (this.noSelection && key.isAlphanumeric && this.cursor.pieceAtCaretIsTag()) {\n this.ensureWhitespaceAfterCursor()\n }\n\n const pieceAtPosition = this.cursor.pieceBeforeCaret()\n const pieceContent = (pieceAtPosition.string || '').split(/(\\s+)/)\n const pieceIndex = this.trixDocument.getPieces().findIndex(piece => piece.id === pieceAtPosition.id)\n\n const contentLengthBeforePiece = this.contentLengthBeforePiece(pieceIndex)\n\n const mention = pieceContent.find(substring => substring.startsWith('@'))\n\n if(!key.isVerticalArrow) {\n if(mention) {\n const mentionIndex = pieceContent.findIndex(substring => substring.startsWith('@'))\n\n const mentionStartsAt = contentLengthBeforePiece + pieceContent.slice(0, mentionIndex).join('').length\n const mentionEndsAt = mentionStartsAt + mention.length\n const rect = this.editor.getClientRectAtPosition(mentionStartsAt)\n\n this.showMentionsDropdown(rect)\n\n const cursorWithinMention = this.trixPosition[0] > mentionStartsAt && this.trixPosition[0] <= mentionEndsAt\n\n if(cursorWithinMention) {\n this.dispatch('query', {\n target: this.mentionsListTarget,\n detail: mention.replace('@', '')\n })\n } else {\n this.hide(this.mentionsListTarget)\n }\n } else {\n this.hide(this.mentionsListTarget)\n }\n }\n }\n\n handleArrowNavigation(event) {\n const key = KeyboardKey.fromKeyboardEvent(event)\n const characterBeforeCaret = this.cursor.characterBeforeCaret()\n\n if (key.isLeftArrow && this.cursor.pieceBeforeCaretIsShortLink()) {\n this.cursor.moveToLeft()\n } else if (key.isRightArrow && this.cursor.pieceAtCaretIsShortLink()) {\n this.cursor.moveToRight()\n }\n }\n\n handleHotkey(event) {\n const key = KeyboardKey.fromKeyboardEvent(event)\n\n if(key.activateBold || key.activateItalic || key.activateLink) {\n event.preventDefault()\n }\n\n if(key.isEnter && !key.isShift && this.mentionsListTarget.classList.contains('hidden')) {\n this.submitTarget.click()\n }\n }\n\n blur() {\n // When the user clicks a button in the toolbar, trix will blur, but the cursor will still be visible,\n // allowing the user to type. This way, we force Trix to blur.\n const input = window.document.createElement('input')\n input.classList.add('absolute', '-left-[20rem]', '-top-[20rem]')\n\n document.body.appendChild(input)\n\n input.focus()\n input.remove()\n }\n\n hideDestinationListDropdown() {\n if(this.hasDestinationListTarget && this.isVisible(this.destinationListTarget)) {\n this.destinationListToggleButtonTarget.click()\n\n this.editor.setSelectedRange(this.trixPosition)\n this.focus()\n }\n }\n\n showMentionsDropdown(rect) {\n const parentRect = this.element.getBoundingClientRect()\n\n const x = Math.abs(rect.left - parentRect.left)\n this.mentionsListTarget.style.transform = `translateX(${x}px)`\n\n this.show(this.mentionsListTarget)\n this.mentionsListTarget.setAttribute('data-arrow-navigation-enabled-value', true)\n }\n\n addMention({ detail: currentTarget }) {\n this.mentionsManager.insert({ currentTarget })\n\n this.mentionStartsAt = null\n this.mentionsListTarget.setAttribute('data-arrow-navigation-enabled-value', false)\n }\n\n updateMention({ detail: { id, element } }) {\n this.mentionsManager.replace(id, element)\n }\n\n focus() {\n if (!this.editor) return\n\n if(this.ensureCaretVisibilityValue) {\n this.cursor.ensureCaretVisibility()\n }\n\n this.trixTarget.focus()\n }\n\n afterAttachmentInsertion() {\n this.hide(this.mentionsListTarget)\n\n this.element.querySelectorAll('figure').forEach(figure => {\n figure.removeEventListener('click', this.onFigureClick.bind(this))\n figure.addEventListener('click', this.onFigureClick.bind(this))\n })\n }\n\n onFigureClick({ currentTarget: figure }) {\n const rect = figure.getBoundingClientRect()\n const parentRect = this.element.getBoundingClientRect()\n\n const x = Math.abs(rect.left - parentRect.left)\n this.mentionsListTarget.style.transform = `translateX(${x}px)`\n\n\n const userId = figure.firstElementChild.getAttribute('data-id')\n\n this.dispatch('mention:edit', {\n target: this.mentionsListTarget,\n detail: userId\n })\n }\n\n clear() {\n this.resetContent()\n\n this.dispatch('cleared', {\n target: document.getElementById('compose')\n })\n }\n\n clearAndHide() {\n if(this.isInvisible()) return\n this.hideButtonTarget.click()\n }\n\n focusPreviousLocation() {\n this.editor.setSelectedRange(this.oldPosition)\n this.focus()\n }\n\n resetTargetConnected() {\n this.resetTarget.remove()\n this.hideButtonTarget.click()\n }\n\n resetNoteUsageDescription({ currentTarget }) {\n this.noteUsageTarget.innerText = currentTarget.dataset.description\n\n this.editor.setSelectedRange(this.trixPosition)\n this.focus()\n }\n\n updateNoteUsageDescription() {\n this.noteUsageTarget.innerText = this.noteUsageTarget.dataset.altText\n\n this.editor.setSelectedRange(this.trixPosition)\n this.focus()\n }\n\n // private\n\n get empty() {\n return this.trixDocument.toString().length === 2\n }\n}\n"],"names":["MentionsManager","AttachmentManager","currentTarget","attachment","id","withElement","piece","pieceIndex","p","contentLengthBeforePiece","pieceBeforeCursor","content","start","end","element","attachmentContent","form_controller","ComposeController","event","key","KeyboardKey","character","Character","characterBeforeCursor","_","rect","pieceAtPosition","pieceContent","mention","substring","mentionIndex","mentionStartsAt","mentionEndsAt","input","parentRect","x","figure","userId","__publicField"],"mappings":"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"}