|
1 |
| -import { inBrowser } from 'vitepress' |
| 1 | +import { inBrowser, onContentUpdated } from 'vitepress' |
2 | 2 |
|
3 | 3 | export function useCodeGroups() {
|
| 4 | + if (import.meta.env.DEV) { |
| 5 | + onContentUpdated(() => { |
| 6 | + document.querySelectorAll('.vp-code-group > .blocks').forEach((el) => { |
| 7 | + Array.from(el.children).forEach((child) => { |
| 8 | + child.classList.remove('active') |
| 9 | + }) |
| 10 | + el.children[0].classList.add('active') |
| 11 | + }) |
| 12 | + }) |
| 13 | + } |
| 14 | + |
4 | 15 | if (inBrowser) {
|
5 | 16 | window.addEventListener('click', (e) => {
|
6 | 17 | const el = e.target as HTMLInputElement
|
7 | 18 |
|
8 | 19 | if (el.matches('.vp-code-group input')) {
|
9 | 20 | // input <- .tabs <- .vp-code-group
|
10 | 21 | const group = el.parentElement?.parentElement
|
11 |
| - const i = Array.from(group?.querySelectorAll('input') || []).indexOf(el) |
| 22 | + if (!group) return |
| 23 | + |
| 24 | + const i = Array.from(group.querySelectorAll('input')).indexOf(el) |
| 25 | + if (i < 0) return |
| 26 | + |
| 27 | + const blocks = group.querySelector('.blocks') |
| 28 | + if (!blocks) return |
| 29 | + |
| 30 | + const current = Array.from(blocks.children).find((child) => |
| 31 | + child.classList.contains('active') |
| 32 | + ) |
| 33 | + if (!current) return |
12 | 34 |
|
13 |
| - const current = group?.querySelector('div[class*="language-"].active') |
14 |
| - const next = group?.querySelectorAll( |
15 |
| - 'div[class*="language-"]:not(.language-id)' |
16 |
| - )?.[i] |
| 35 | + const next = blocks.children[i] |
| 36 | + if (!next || current === next) return |
17 | 37 |
|
18 |
| - if (current && next && current !== next) { |
19 |
| - current.classList.remove('active') |
20 |
| - next.classList.add('active') |
21 |
| - } |
| 38 | + current.classList.remove('active') |
| 39 | + next.classList.add('active') |
22 | 40 | }
|
23 | 41 | })
|
24 | 42 | }
|
|
0 commit comments