jekyll-theme-amethyst 2.7.2 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1862052f2e939b117bac0d111234895d4103a5a39223c98fcf6794a1116f92f0
4
- data.tar.gz: 5a0eb362913341106ea1f20eba8b6c50e3830b74e00ca4bc0928db95be0f8c9a
3
+ metadata.gz: d7bc014f3e7b88c3d75ac915dd7f40e7c3ab9034fd5f2f079bf5021b62430d9a
4
+ data.tar.gz: a57427dae152217ce9ff7edc81a26bc10b48d270d474a6ae5e8c40dcf5807bed
5
5
  SHA512:
6
- metadata.gz: ae8a07691607180df222d14e234f63e20572186c2a55da2475391b434f9e6270d38dfb1a99916976df25ee1eca168ca04608291cded1d9de0a460c7cd8ff5613
7
- data.tar.gz: 7ec00e114a617140bb10edc658c7235272675e4c5a731ed1cce538220aa4f60ec857db3fb7d1951a8fcf585ab33adfbc24a74a53bb9092a8389a9619ae62cc26
6
+ metadata.gz: 1cbe973d795c46c42e196514a9e5a3fd804de62cb043f1eb90cac83047d569ec4f5f7ddacc758b93b232106de9b2694e05975c877bda7c6db98b972352f484f0
7
+ data.tar.gz: eb9aa6ad3022132e0d38d0240175a5eb2159087e15a0ad122c03922a737d0b572f0a3fc3505d26c6f435fd7ace68fb4e4ed9ceca38fdbc0bdeab13947b0affd1
data/LICENSE.txt CHANGED
@@ -1,5 +1,4 @@
1
- Copyright (c) 2020 Timo Tijhof
2
- Copyright (c) 2018 Trent Willis
1
+ Copyright Timo Tijhof, Trent Willis, https://github.com/qunitjs/jekyll-theme-amethyst
3
2
 
4
3
  Permission is hereby granted, free of charge, to any person obtaining
5
4
  a copy of this software and associated documentation files (the
@@ -137,5 +137,6 @@ Block data:
137
137
  <div class="toc-wrapper">
138
138
  <h4>Table of contents</h4>{{ jekyll_toc }}</div>
139
139
  {%- endif -%}
140
+ <script defer type="module" src="{{ '/assets/toc.js' | file_version_query | relative_url }}"></script>
140
141
  {%- endif %}
141
142
  </aside>
data/_sass/amethyst.scss CHANGED
@@ -585,6 +585,7 @@ typesense-minibar input[type="search"] {
585
585
  .toc-wrapper .toc {
586
586
  max-height: calc( 100vh - 2.5rem );
587
587
  overflow-y: auto;
588
+ scroll-behavior: smooth;
588
589
  }
589
590
  .toc,
590
591
  .toc ol {
@@ -596,6 +597,9 @@ typesense-minibar input[type="search"] {
596
597
  .toc .sidebar-item a {
597
598
  border-left: 0;
598
599
  }
600
+ .toc-item-current > a {
601
+ font-weight: bold;
602
+ }
599
603
 
600
604
  // .toc,
601
605
  // .toc ol {
data/assets/toc.js ADDED
@@ -0,0 +1,83 @@
1
+ /*! toc.js - https://github.com/qunitjs/jekyll-theme-amethyst */
2
+ const tocElement = document.querySelector('.toc');
3
+ const tocItems = [].slice.call(tocElement.querySelectorAll('li > a[href^="#"]'));
4
+ const headings = tocItems.map(item => document.getElementById(item.getAttribute('href').slice(1)));
5
+
6
+ // TOC items of currently-visible headings
7
+ //
8
+ // If we simply highlight the first `entry.isIntersecting`, then when H2#Examples
9
+ // and H3#Foo both become visible, we'd keep highlighting H2#Examples even after it
10
+ // leaves the viewport, because H3#Foo was already observed earlier.
11
+ // Maintain a list of visible headings and highight the top-most, so that after we
12
+ // observe a heading leaving the viewport, we still know what's left.
13
+ const currentItems = [];
14
+
15
+ // After scrollling to a new heading, we scroll the TOC to the same heading.
16
+ // Only scroll if the item was not already visible, to reduce distraction.
17
+ //
18
+ // DIV.toc-wrapper
19
+ // | kind: offset parent # because `position: sticky`
20
+ // |
21
+ // |- DIV.toc
22
+ // | | var: tocElement
23
+ // | | kind: scroll parent # because `overflow-y: auto;`
24
+ // | |
25
+ // | | tocElement.offsetTop # height of any content above tocElement
26
+ // | | tocElement.scrollTop # scrollY coord, starts at 0
27
+ // | | tocElement.clientHeight # height of visible scrollable area, e.g. 400px
28
+ // | |
29
+ // |- |- li > a[href]
30
+ // var: item
31
+ //
32
+ // item.offsetTop # fixed offset from offsetParent
33
+ //
34
+ const observer = new IntersectionObserver(
35
+ (entries) => {
36
+ for (const entry of entries) {
37
+ const item = tocItems[headings.indexOf(entry.target)];
38
+ if (entry.isIntersecting && !currentItems.includes(item)) {
39
+ currentItems.push(item);
40
+ } else if (!entry.isIntersecting && currentItems.includes(item)) {
41
+ currentItems.splice(currentItems.indexOf(item), 1);
42
+ }
43
+ }
44
+ // Resort to handle scrolling up, ensure new top-most item is on top
45
+ currentItems.sort((a, b) => a.compareDocumentPosition(b) & 4 ? -1 : 1)
46
+
47
+ if (!currentItems[0]) {
48
+ // No headings in the viewport, keep highlighting the last heading we saw.
49
+ return;
50
+ }
51
+ for (const item of tocItems) {
52
+ if (item === currentItems[0]) {
53
+ item.parentNode.classList.add('toc-item-current');
54
+
55
+ const itemTop = item.offsetTop - tocElement.offsetTop;
56
+ if (itemTop < tocElement.scrollTop) {
57
+ tocElement.scrollTo({
58
+ top: itemTop - item.clientHeight
59
+ });
60
+ } else if (itemTop > (tocElement.scrollTop + tocElement.clientHeight - item.clientHeight)) {
61
+ tocElement.scrollTo({
62
+ top: itemTop + tocElement.clientHeight - item.clientHeight
63
+ });
64
+ }
65
+ } else {
66
+ item.parentNode.classList.remove('toc-item-current');
67
+ }
68
+ }
69
+ },
70
+ {
71
+ // Support Firefox 136: Include a tiny top margin,
72
+ // because of fragment navigation bug, which scrolls headings to -0.1px of the viewport?
73
+ //
74
+ // Use bottom -50% to consider only the top half of the viewport.
75
+ // When reading a long section of which the heading is long past,
76
+ // we don't highlight the "next" heading until it reaches the top half.
77
+ rootMargin: '2px 0px -50% 0px',
78
+ threshold: [0.8]
79
+ }
80
+ );
81
+ for (const heading of headings) {
82
+ observer.observe(heading);
83
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-amethyst
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.2
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Tijhof
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-01-25 00:00:00.000000000 Z
12
+ date: 2025-04-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -130,6 +130,7 @@ files:
130
130
  - _sass/highlight.scss
131
131
  - _sass/typesense-minibar.css
132
132
  - assets/styles.scss
133
+ - assets/toc.js
133
134
  - assets/typesense-minibar.js
134
135
  - lib/jekyll-theme-amethyst.rb
135
136
  homepage: https://github.com/qunitjs/jekyll-theme-amethyst