blacklight-hierarchy 5.4.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f94c79bf8bbe805effc4bec475a954cf3dc958eb6e4bed158c72432ff21c63e
4
- data.tar.gz: 2f2b214a450f319ba642b309646162833a8205b6081bd03b81e8fb254cf884a1
3
+ metadata.gz: ee133f1b21f148557b8c40603fde045e4c79fbcf41fd6baa02883a07341c399c
4
+ data.tar.gz: 20badd3b19799248b0da5e8191921e49a3835e52f5c0a044f88f5c4eb27490e8
5
5
  SHA512:
6
- metadata.gz: 66a38ecc4ffa59c73d6121110cf7fdb9dab24a56d5001e3b3e9a262595d3e5b47c9af52b8b7b1a38006b94d9794c2984e8a2610c698cc3432ddd6189fff0c816
7
- data.tar.gz: 4b7274458273f4c9f86f3f93de9af1adbb15d5e03dc7519d12f9700763cd73ca27f7d2e5f17d18836ee537230da27dd9d7e4ac7ec785d048ca54e75a9b68a926
6
+ metadata.gz: b4ad69b3c7dee5a5ac12f430affc11f43f67b572533bcc9b456e2ec7321a329de7f4ac407e87679e6dacf63c3408d110fbcf4107496e4c665a2f464c2f650531
7
+ data.tar.gz: 6c8498f864b8b6ae8e71863d2a0cb249470000852b5907101aadc86590e6975c73c91ae6b3d5e4c6e23003a7a8cc59279fa7dde5bf258556f02a155ec94cde6a
@@ -18,7 +18,7 @@ jobs:
18
18
  runs-on: ubuntu-latest
19
19
  strategy:
20
20
  matrix:
21
- ruby: [2.7, 3.0]
21
+ ruby: [2.7, '3.0']
22
22
  steps:
23
23
  - uses: actions/checkout@v2
24
24
  - name: Set up Ruby
data/README.md CHANGED
@@ -83,15 +83,17 @@ Facet fields should be added for each permutation of hierarchy key and term valu
83
83
  config.facet_display[:hierarchy].each{ |k,v| puts "#{k}_#{v}" }
84
84
  ```
85
85
 
86
- ### Overriding the icon
87
- The icon is available in an engine configuration. You can change them in an initializer in your app.
86
+ ### Changing the icons
87
+ We store our closed/open icons as the SASS variables `$b-h-closed-icon` and `$b-h-closed-icon` in `hierarchy.scss`. By default we use SVGs provided by the [Font Awesome](https://github.com/FortAwesome/Font-Awesome) library. To change the icon, reassign these SASS variables with new SVG code.
88
88
 
89
- ```ruby
90
- Blacklight::Hierarchy::Engine.config.closed_icon = '➕'
91
- Blacklight::Hierarchy::Engine.config.opened_icon = '➖'
89
+ ```scss
90
+ /* app/assets/stylesheets/blacklight/hierarchy/hierarchy.scss */
92
91
 
92
+ // plus sign
93
+ $b-h-closed-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><!--! Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d='M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z'/></svg>") !default;
93
94
  ```
94
95
 
96
+
95
97
  ### Aria Labels
96
98
  For screen reader purposes we have used "Toggle subgroup" as the aria-label attribute of the button. This is internationalized using rails' i18n feature.
97
99
 
@@ -1,3 +1,8 @@
1
+ // plus sign
2
+ $b-h-closed-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><!--! Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d='M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z'/></svg>") !default;
3
+ // minus sign
4
+ $b-h-opened-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><!--! Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d='M312 232C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H312zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z'/></svg>") !default;
5
+
1
6
  $text-muted: #777 !default;
2
7
 
3
8
  .facet-hierarchy {
@@ -34,8 +39,21 @@ $text-muted: #777 !default;
34
39
  }
35
40
  }
36
41
 
42
+ .twiddle>.toggle-handle {
43
+ background-color: transparent;
44
+ }
45
+
46
+ .twiddle>.toggle-handle .toggle-icon {
47
+ background-position: center;
48
+ background-repeat: no-repeat;
49
+ margin-top: 3px;
50
+ min-height: 20px;
51
+ min-width: 20px;
52
+ }
53
+
37
54
  .twiddle>.toggle-handle .closed {
38
- display: inline;
55
+ background-image: escape-svg($b-h-closed-icon);
56
+ display: inline-block;
39
57
  }
40
58
 
41
59
  .twiddle>.toggle-handle .opened {
@@ -47,7 +65,8 @@ $text-muted: #777 !default;
47
65
  }
48
66
 
49
67
  .twiddle-open>.toggle-handle .opened {
50
- display: inline;
68
+ background-image: escape-svg($b-h-opened-icon);
69
+ display: inline-block;
51
70
  }
52
71
 
53
72
  .h-leaf {
@@ -22,8 +22,8 @@ module Blacklight::HierarchyHelper
22
22
  bs_target: "##{controls}"
23
23
  },
24
24
  class: 'toggle-handle') do
25
- tag.span(Blacklight::Hierarchy::Engine.config.closed_icon, :'aria-hidden' => 'true', class: 'closed') +
26
- tag.span(Blacklight::Hierarchy::Engine.config.opened_icon, :'aria-hidden' => 'true', class: 'opened')
25
+ tag.div( :'aria-hidden' => 'true', class: 'closed toggle-icon') +
26
+ tag.div( :'aria-hidden' => 'true', class: 'opened toggle-icon')
27
27
  end
28
28
  end
29
29
 
@@ -4,8 +4,6 @@ require 'rails'
4
4
  module Blacklight
5
5
  module Hierarchy
6
6
  class Engine < Rails::Engine
7
- config.closed_icon = '⊞'
8
- config.opened_icon = '⊟'
9
7
  end
10
8
  end
11
9
  end
@@ -1,5 +1,5 @@
1
1
  module Blacklight
2
2
  module Hierarchy
3
- VERSION = '5.4.0'.freeze
3
+ VERSION = '6.0.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight-hierarchy
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.0
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael B. Klein
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2022-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: blacklight
@@ -194,7 +194,7 @@ files:
194
194
  homepage: https://github.com/sul-dlss/blacklight-hierarchy
195
195
  licenses: []
196
196
  metadata: {}
197
- post_install_message:
197
+ post_install_message:
198
198
  rdoc_options: []
199
199
  require_paths:
200
200
  - lib
@@ -209,8 +209,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  - !ruby/object:Gem::Version
210
210
  version: '0'
211
211
  requirements: []
212
- rubygems_version: 3.1.4
213
- signing_key:
212
+ rubygems_version: 3.2.32
213
+ signing_key:
214
214
  specification_version: 4
215
215
  summary: Hierarchical Facets for Blacklight
216
216
  test_files: