| /* |
| * Copyright (C) 2018 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| WI.EventBreakpointPopover = class EventBreakpointPopover extends WI.Popover |
| { |
| constructor(delegate) |
| { |
| super(delegate); |
| |
| this._breakpoint = null; |
| |
| this._currentCompletions = []; |
| this._suggestionsView = new WI.CompletionSuggestionsView(this, {preventBlur: true}); |
| |
| this._targetElement = null; |
| this._preferredEdges = null; |
| |
| this.windowResizeHandler = this._presentOverTargetElement.bind(this); |
| } |
| |
| // Public |
| |
| get breakpoint() { return this._breakpoint; } |
| |
| show(targetElement, preferredEdges) |
| { |
| this._targetElement = targetElement; |
| this._preferredEdges = preferredEdges; |
| |
| let contentElement = document.createElement("div"); |
| contentElement.classList.add("event-breakpoint-content"); |
| |
| let label = contentElement.appendChild(document.createElement("div")); |
| label.classList.add("label"); |
| label.textContent = WI.UIString("Break on events with name:"); |
| |
| this._domEventNameInputElement = contentElement.appendChild(document.createElement("input")); |
| this._domEventNameInputElement.setAttribute("dir", "ltr"); |
| this._domEventNameInputElement.placeholder = WI.UIString("Example: \u201C%s\u201D").format("click"); |
| this._domEventNameInputElement.spellcheck = false; |
| this._domEventNameInputElement.addEventListener("keydown", (event) => { |
| if (isEnterKey(event) || event.key === "Tab") { |
| this._result = WI.InputPopover.Result.Committed; |
| |
| if (this._suggestionsView.visible && this._suggestionsView.selectedIndex < this._currentCompletions.length) |
| this._domEventNameInputElement.value = this._currentCompletions[this._suggestionsView.selectedIndex]; |
| |
| this.dismiss(); |
| } else if ((event.key === "ArrowUp" || event.key === "ArrowDown") && this._suggestionsView.visible) { |
| event.stop(); |
| |
| if (event.key === "ArrowDown") |
| this._suggestionsView.selectNext(); |
| else |
| this._suggestionsView.selectPrevious(); |
| } |
| }); |
| this._domEventNameInputElement.addEventListener("input", (event) => { |
| WI.domManager.getSupportedEventNames() |
| .then((eventNames) => { |
| this._currentCompletions = []; |
| for (let eventName of eventNames) { |
| if (eventName.toLowerCase().startsWith(this._domEventNameInputElement.value.toLowerCase())) |
| this._currentCompletions.push(eventName); |
| } |
| |
| if (!this._currentCompletions.length) { |
| this._suggestionsView.hide(); |
| return; |
| } |
| |
| this._suggestionsView.update(this._currentCompletions); |
| this._showSuggestionsView(); |
| }); |
| }); |
| |
| this.content = contentElement; |
| |
| this._presentOverTargetElement(); |
| |
| this._domEventNameInputElement.select(); |
| } |
| |
| dismiss() |
| { |
| this._breakpoint = new WI.EventBreakpoint(WI.EventBreakpoint.Type.Listener, {eventName: this._domEventNameInputElement.value}); |
| |
| super.dismiss(); |
| |
| this._suggestionsView.hide(); |
| } |
| |
| // CompletionSuggestionsView delegate |
| |
| completionSuggestionsClickedCompletion(suggestionsView, selectedText) |
| { |
| this._domEventNameInputElement.value = selectedText; |
| |
| this.dismiss(); |
| } |
| |
| // Private |
| |
| _presentOverTargetElement() |
| { |
| if (!this._targetElement) |
| return; |
| |
| let targetFrame = WI.Rect.rectFromClientRect(this._targetElement.getBoundingClientRect()); |
| this.present(targetFrame, this._preferredEdges); |
| } |
| |
| _showSuggestionsView() |
| { |
| let computedStyle = window.getComputedStyle(this._domEventNameInputElement); |
| let padding = parseInt(computedStyle.borderLeftWidth) + parseInt(computedStyle.paddingLeft); |
| |
| let rect = WI.Rect.rectFromClientRect(this._domEventNameInputElement.getBoundingClientRect()); |
| rect.origin.x += padding; |
| rect.size.width -= padding + parseInt(computedStyle.borderRightWidth) + parseInt(computedStyle.paddingRight); |
| this._suggestionsView.show(rect); |
| } |
| }; |