refactor: improve performance of contextmenu

This commit is contained in:
Syuilo 2023-07-16 22:12:42 -07:00 committed by ThatOneCalculator
parent 97a0127dbf
commit 5d4af6b69e
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 17 additions and 14 deletions

View file

@ -0,0 +1,13 @@
Copyright 2023 Calckey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -436,10 +436,7 @@ onMounted(() => {
setPosition();
props.textarea.addEventListener("keydown", onKeydown);
for (const el of Array.from(document.querySelectorAll("body *"))) {
el.addEventListener("mousedown", onMousedown);
}
document.body.addEventListener("mousedown", onMousedown);
nextTick(() => {
exec();
@ -457,10 +454,7 @@ onMounted(() => {
onBeforeUnmount(() => {
props.textarea.removeEventListener("keydown", onKeydown);
for (const el of Array.from(document.querySelectorAll("body *"))) {
el.removeEventListener("mousedown", onMousedown);
}
document.body.removeEventListener("mousedown", onMousedown);
});
</script>

View file

@ -57,15 +57,11 @@ onMounted(() => {
rootEl.style.top = `${top}px`;
rootEl.style.left = `${left}px`;
for (const el of Array.from(document.querySelectorAll("body *"))) {
el.addEventListener("mousedown", onMousedown);
}
document.body.addEventListener("mousedown", onMousedown);
});
onBeforeUnmount(() => {
for (const el of Array.from(document.querySelectorAll("body *"))) {
el.removeEventListener("mousedown", onMousedown);
}
document.body.removeEventListener("mousedown", onMousedown);
});
function onMousedown(evt: Event) {