mirror of
https://github.com/fmhy/edit.git
synced 2026-01-10 02:16:17 +00:00
fix: preserve TOC visibility and improve toggle consistency (#4570)
* feat: disable toggle starred to maintain consistency * fix: prevent Toggle Starred and Indexes from hiding TOC
This commit is contained in:
committed by
GitHub
parent
e6fb8d7520
commit
4b340191ad
@@ -2,10 +2,13 @@
|
||||
import { onBeforeUnmount, onMounted, ref } from 'vue'
|
||||
import Switch from './Switch.vue'
|
||||
|
||||
const isDisabled = ref(false)
|
||||
const isOn = ref(false)
|
||||
|
||||
const syncState = () => {
|
||||
isOn.value = document.documentElement.classList.contains('indexes-only')
|
||||
const root = document.documentElement
|
||||
isDisabled.value = root.classList.contains('starred-only')
|
||||
isOn.value = root.classList.contains('indexes-only')
|
||||
}
|
||||
|
||||
let observer: MutationObserver | undefined
|
||||
@@ -22,6 +25,11 @@ onMounted(syncState)
|
||||
onBeforeUnmount(() => observer?.disconnect())
|
||||
|
||||
const toggleIndexes = (value: boolean) => {
|
||||
if (isDisabled.value) {
|
||||
isOn.value = document.documentElement.classList.contains('indexes-only')
|
||||
return
|
||||
}
|
||||
|
||||
const root = document.documentElement
|
||||
const enabling = value
|
||||
const wasStarred = root.classList.contains('starred-only')
|
||||
@@ -47,11 +55,13 @@ const toggleIndexes = (value: boolean) => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Switch v-model="isOn" @update:modelValue="toggleIndexes" />
|
||||
<Switch v-model="isOn"
|
||||
:disabled="isDisabled"
|
||||
:class="{ disabled: isDisabled }"@update:modelValue="toggleIndexes" />
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.indexes-only li:not(.index) {
|
||||
.indexes-only .vp-doc li:not(.index) {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -47,7 +47,7 @@ const toggleStarred = (value: boolean) => {
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.starred-only li:not(.starred) {
|
||||
.starred-only .vp-doc li:not(.starred) {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user