Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

when using Multiple Sidebars the sidebar not being updated #809

Closed
3 tasks done
userquin opened this issue Jun 18, 2022 · 3 comments · Fixed by #811
Closed
3 tasks done

when using Multiple Sidebars the sidebar not being updated #809

userquin opened this issue Jun 18, 2022 · 3 comments · Fixed by #811
Labels
bug Something isn't working theme Related to the theme

Comments

@userquin
Copy link
Collaborator

userquin commented Jun 18, 2022

Describe the bug

just read the title

Reproduction

https://github.com/antfu/vite-plugin-pwa/tree/userquin/feat-new-theme

you can also disable pwa, just add disable: true option on VitePWA plugin here: https://github.com/antfu/vite-plugin-pwa/blob/userquin/feat-new-theme/docs/vite.config.ts#L53

from root folder run pnpm install && pnpm run build then pnpm run docs to start dev or pnpm run docs:preview to start preview

Expected behavior

The sidebar should update

System Info

Also failing on Netlify preview: https://github.com/antfu/vite-plugin-pwa/pull/304


System:
    OS: Windows 10 10.0.19044
    CPU: (16) x64 Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
    Memory: 42.87 GB / 63.95 GB
  Binaries:
    Node: 16.13.0 - C:\Program Files\nodejs\node.EXE
    npm: 8.1.0 - C:\Program Files\nodejs\npm.CMD
  Browsers:
    Chrome: 102.0.5005.115
    Edge: Spartan (44.19041.1266.0), Chromium (102.0.1245.41)
    Internet Explorer: 11.0.19041.1566
  npmPackages:
    vitepress: ^1.0.0-alpha.2 => 1.0.0-alpha.2

Additional context

No response

Validations

  • Follow our Code of Conduct
  • Read the docs.
  • Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
@userquin userquin added the bug: pending triage Maybe a bug, waiting for confirmation label Jun 18, 2022
@brc-dd brc-dd added bug Something isn't working theme Related to the theme and removed bug: pending triage Maybe a bug, waiting for confirmation labels Jun 18, 2022
@brc-dd
Copy link
Member

brc-dd commented Jun 18, 2022

Fix: collapsed should be a computed ref:

const collapsed = ref(props.collapsible && props.collapsed)
function toggle() {
if (props.collapsible) {
collapsed.value = !collapsed.value
}
}

But what will be the toggle then?

@userquin
Copy link
Collaborator Author

add a watcher or just add a setter to the computed: https://vuejs.org/guide/essentials/computed.html#writable-computed

@userquin
Copy link
Collaborator Author

userquin commented Jun 18, 2022

@brc-dd try adding this:

watchEffect(() => {
  collapsed.value = props.collapsible && props.collapsed
})

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jan 21, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working theme Related to the theme
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants