Skip to content

Commit 91d43bf

Browse files
committedNov 23, 2022
Highlight the collection context link when it is active
Fixes #1280
1 parent 20aa68e commit 91d43bf

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import 'arclight/oembed_viewer'
22

33
import Truncate from 'arclight/truncate_controller'
4+
import CollectionLink from 'arclight/collection_link_controller'
5+
46
Stimulus.register('arclight-truncate', Truncate)
7+
Stimulus.register('arclight-collection-link', CollectionLink)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Controller } from '@hotwired/stimulus'
2+
3+
export default class extends Controller {
4+
static targets = ['link']
5+
6+
connect() {
7+
this.highlight({ newURL: document.documentURI })
8+
}
9+
10+
highlight(event) {
11+
this.linkTarget.classList.toggle('active', event.newURL.endsWith(this.linkTarget.href))
12+
}
13+
}

‎app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ $hierarchy-view-collapse-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3
2222
}
2323
}
2424

25-
.al-hierarchy-highlight > .documentHeader {
25+
.al-hierarchy-highlight > .documentHeader,
26+
.al-sidebar-navigation-context .active {
2627
background: $mark-bg;
2728
}
2829

‎app/components/arclight/collection_sidebar_component.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<ul class='nav flex-column'>
44
<% partials.each do |section| %>
55
<% next unless has_section?(section) %>
6-
<li class='nav-item'>
6+
<li class='nav-item' data-controller="arclight-collection-link" data-action="hashchange@window->arclight-collection-link#highlight">
77
<%= link_to section_label(section),
88
document_section_path(section),
99
class: 'nav-link pl-0 ps-0 py-1',
10-
data: { turbolinks: 'false' }
10+
data: { arclight_collection_link_target: 'link' }
1111
%>
1212
</li>
1313
<% end %>

‎lib/arclight/engine.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ class Engine < ::Rails::Engine
3535
end
3636

3737
initializer 'arclight.assets', before: 'assets' do |app|
38-
app.config.assets.precompile << 'arclight/arclight.js'
39-
app.config.assets.precompile << 'arclight/oembed_viewer.js'
40-
app.config.assets.precompile << 'arclight/truncate_controller.js'
38+
# rubocop:disable Lint/ConstantDefinitionInBlock
39+
PRECOMPILE_ASSETS = %w[arclight/arclight.js arclight/oembed_viewer.js arclight/truncate_controller.js arclight/collection_link_controller.js].freeze
40+
# rubocop:enable Lint/ConstantDefinitionInBlock
41+
42+
app.config.assets.precompile += PRECOMPILE_ASSETS
4143
end
4244

4345
initializer 'arclight.importmap', before: 'importmap' do |app|

‎lib/generators/arclight/install_generator.rb

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ def pin_javascript_dependencies
116116
# TODO: We may be able to move these to a single importmap for arclight.
117117
pin "arclight/oembed_viewer", to: "arclight/oembed_viewer.js"
118118
pin "arclight/truncate_controller", to: "arclight/truncate_controller.js"
119+
pin "arclight/collection_link_controller", to: "arclight/collection_link_controller.js"
119120
RUBY
120121
end
121122

0 commit comments

Comments
 (0)
Please sign in to comment.