mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-06 08:48:49 +01:00
🎨 Improve slash menu (#15906)
This commit is contained in:
parent
0147a6573d
commit
e259626ce5
2 changed files with 10 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ import {
|
|||
} from "../util/selection";
|
||||
import {genHintItemHTML, hintEmbed, hintRef, hintSlash} from "./extend";
|
||||
import {getSavePath, newFile} from "../../util/newFile";
|
||||
import {upDownHint} from "../../util/upDownHint";
|
||||
import {isAbnormalItem, upDownHint} from "../../util/upDownHint";
|
||||
import {setPosition} from "../../util/setPosition";
|
||||
import {getContenteditableElement, hasNextSibling, hasPreviousSibling} from "../wysiwyg/getBlock";
|
||||
import {transaction, updateTransaction} from "../wysiwyg/transaction";
|
||||
|
|
@ -290,6 +290,14 @@ ${unicode2Emoji(emoji.unicode)}</button>`;
|
|||
/// #endif
|
||||
}
|
||||
this.element.scrollTop = 0;
|
||||
let currentHintElement = this.element.querySelector(".b3-list-item--focus") as HTMLElement;
|
||||
if (isAbnormalItem(currentHintElement, "b3-list-item")) {
|
||||
currentHintElement.classList.remove("b3-list-item--focus");
|
||||
do {
|
||||
currentHintElement = currentHintElement.nextElementSibling as HTMLElement;
|
||||
} while (isAbnormalItem(currentHintElement, "b3-list-item"));
|
||||
currentHintElement?.classList.add("b3-list-item--focus");
|
||||
}
|
||||
this.bindUploadEvent(protyle, this.element);
|
||||
if (this.source !== "hint") {
|
||||
const searchElement = this.element.querySelector("input.b3-text-field") as HTMLInputElement;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
export const isAbnormalItem = (currentHintElement: HTMLElement, className: string) => {
|
||||
return !currentHintElement || !currentHintElement.classList.contains(className) || currentHintElement.getBoundingClientRect().height === 0;
|
||||
return currentHintElement && (!currentHintElement.classList.contains(className) || currentHintElement.getBoundingClientRect().height === 0);
|
||||
};
|
||||
|
||||
export const upDownHint = (listElement: Element, event: KeyboardEvent, classActiveName = "b3-list-item--focus", defaultElement?: Element) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue