mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-26 11:28:49 +01:00
This commit is contained in:
parent
405f6a3b65
commit
8bbee09614
1 changed files with 35 additions and 0 deletions
35
app/src/protyle/util/clearSelect.ts
Normal file
35
app/src/protyle/util/clearSelect.ts
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import {updateHeader} from "../render/av/row";
|
||||
|
||||
export const clearSelect = (types: ("av" | "img" | "cell" | "row")[], element: Element) => {
|
||||
if (types.includes("cell")) {
|
||||
element.querySelectorAll(".av__cell--select, .av__cell--active").forEach((item: HTMLElement) => {
|
||||
item.querySelector(".av__drag-fill")?.remove();
|
||||
item.classList.remove("av__cell--select", "av__cell--active");
|
||||
});
|
||||
}
|
||||
if (types.includes("row")) {
|
||||
element.querySelectorAll(".av__row--select").forEach((item: HTMLElement) => {
|
||||
item.classList.remove("av__row--select");
|
||||
item.querySelector(".av__firstcol use").setAttribute("xlink:href", "#iconUncheck");
|
||||
updateHeader(item);
|
||||
});
|
||||
}
|
||||
if (types.includes("av")) {
|
||||
element.querySelectorAll(" .av__cell--select, .av__cell--active, .av__row--select, .av__gallery-item--select").forEach((item: HTMLElement) => {
|
||||
if (item.classList.contains("av__row--select")) {
|
||||
item.classList.remove("av__row--select");
|
||||
item.querySelector(".av__firstcol use").setAttribute("xlink:href", "#iconUncheck");
|
||||
updateHeader(item);
|
||||
} else {
|
||||
item.querySelector(".av__drag-fill")?.remove();
|
||||
item.classList.remove("av__cell--select", "av__cell--active", "av__gallery-item--select");
|
||||
}
|
||||
});
|
||||
}
|
||||
if (types.includes("img")) {
|
||||
element.querySelectorAll(".img--select").forEach((item: HTMLElement) => {
|
||||
item.classList.remove("img--select");
|
||||
});
|
||||
}
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue