arclight 1.1.1 → 1.1.3

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: dcb3f419a2de7718525b07816f81a8f6d957cf6e4cd999bd3cd037d8c83252e1
4
- data.tar.gz: 8458d1d2031ffe66f4f6a562b808990c23a04f7d0863fa30d616fbf85e403a34
3
+ metadata.gz: 8fa0be8b6a63486a158607273080d3bc226029d05c8d8b76b73f72a60dc6afa3
4
+ data.tar.gz: 155b435d83af03435aff13db82a1509148da62a84fa960135d1c73b5dfa335ae
5
5
  SHA512:
6
- metadata.gz: 2304bd8ff0448478ceb17d021322993f8b69ab2d77a8f6148c17e223939fbc056ceca5999dd37b2af3a0f5b1a7cd658329141a48f461dd04761cd5f7ef721280
7
- data.tar.gz: 81f134a1d90866588ce97f0dc60ee1bebdf213fe5a467ec9ae032fdd2301ef236eefab02ad553040f270b483f788049c90eace3e320a6b1a0b8bcf071a5a0781
6
+ metadata.gz: 22eeea5a79c6fc8a777a42eff6f9c0ebd2be7bead5a4a3e92277be5a88936b5628b89042999c7b21c3963824767dadc0448f9912ebf9d76fbd9b630e98dfa7e6
7
+ data.tar.gz: d5b7a8fa47adfa754db93b8fe0012b7bf51c38f6c10a801b762610b4ca0621fae43a9f80cef4bb71264a90ecebb2bfe002f6b99b02ab36698e86fda7e10e6842
@@ -1,4 +1,5 @@
1
1
  .navbar-search {
2
+ z-index: 10;
2
3
  .search-query-form {
3
4
  max-width: 100% !important; // work around blacklight styles
4
5
  display: flex;
@@ -17,7 +17,7 @@ module Arclight
17
17
  end
18
18
 
19
19
  def search_within_collection_url
20
- search_catalog_path(helpers.search_without_group.merge(f: { collection: [document.collection_name] }))
20
+ search_catalog_path(helpers.search_without_group.deep_merge(f: { collection: [document.collection_name] }))
21
21
  end
22
22
  end
23
23
  end
@@ -7,6 +7,9 @@ module Arclight
7
7
  class Parent
8
8
  attr_reader :id, :label, :eadid, :level
9
9
 
10
+ alias global_id id
11
+ Arclight.deprecation.deprecate_methods(self, global_id: 'Call `id` instead')
12
+
10
13
  def initialize(id:, label:, eadid:, level:)
11
14
  @id = id
12
15
  @label = label
@@ -5,10 +5,11 @@ module Arclight
5
5
  # Object for parsing and formalizing Solr_Ead "Parents"
6
6
  # https://github.com/awead/solr_ead/blob/8cf7ffaa66e0e4c9c0b12f5646d6c2e20984cd99/lib/solr_ead/behaviors.rb#L54-L57
7
7
  class Parents
8
- attr_reader :ids, :labels, :levels
8
+ attr_reader :ids, :legacy_ids, :labels, :levels
9
9
 
10
- def initialize(ids:, labels:, eadid:, levels:)
10
+ def initialize(ids:, legacy_ids:, labels:, eadid:, levels:)
11
11
  @ids = ids
12
+ @legacy_ids = legacy_ids
12
13
  @labels = labels
13
14
  @eadid = eadid
14
15
  @levels = levels
@@ -21,17 +22,18 @@ module Arclight
21
22
  ##
22
23
  # @return [Array[Arclight::Parent]]
23
24
  def as_parents
24
- ids.map.with_index { |id, idx| Arclight::Parent.new(id: id, label: labels[idx], eadid: eadid, level: levels[idx]) }
25
+ (ids.presence || legacy_ids).map.with_index { |id, idx| Arclight::Parent.new(id: id, label: labels[idx], eadid: eadid, level: levels[idx]) }
25
26
  end
26
27
 
27
28
  ##
28
29
  # @param [SolrDocument] document
29
30
  def self.from_solr_document(document)
30
31
  ids = document.parent_ids
32
+ legacy_ids = document.legacy_parent_ids.map { |legacy_id| document.eadid == legacy_id ? legacy_id : "#{document.eadid}#{legacy_id}" }
31
33
  labels = document.parent_labels
32
34
  eadid = document.eadid
33
35
  levels = document.parent_levels
34
- new(ids: ids, labels: labels, eadid: eadid, levels: levels)
36
+ new(ids: ids, legacy_ids: legacy_ids, labels: labels, eadid: eadid, levels: levels)
35
37
  end
36
38
  end
37
39
  end
@@ -8,6 +8,8 @@ module Arclight
8
8
 
9
9
  included do
10
10
  attribute :parent_ids, :array, 'parent_ids_ssim'
11
+ attribute :legacy_parent_ids, :array, 'parent_ssim'
12
+ Arclight.deprecation.deprecate_methods(self, legacy_parent_ids: 'Use `parent_ids` instead')
11
13
  attribute :parent_labels, :array, 'parent_unittitles_ssm'
12
14
  attribute :parent_levels, :array, 'parent_levels_ssm'
13
15
  attribute :unitid, :string, 'unitid_ssm'
@@ -304,6 +304,7 @@ SEARCHABLE_NOTES_FIELDS.map do |selector|
304
304
  end
305
305
  DID_SEARCHABLE_NOTES_FIELDS.map do |selector|
306
306
  to_field "#{selector}_html_tesm", extract_xpath("./did/#{selector}", to_text: false)
307
+ to_field "#{selector}_tesim", extract_xpath("./did/#{selector}")
307
308
  end
308
309
 
309
310
  # =============================
@@ -240,6 +240,7 @@ end
240
240
 
241
241
  DID_SEARCHABLE_NOTES_FIELDS.map do |selector|
242
242
  to_field "#{selector}_html_tesm", extract_xpath("/ead/archdesc/did/#{selector}", to_text: false)
243
+ to_field "#{selector}_tesim", extract_xpath("/ead/archdesc/did/#{selector}")
243
244
  end
244
245
 
245
246
  NAME_ELEMENTS.map do |selector|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Arclight
4
- VERSION = '1.1.1'
4
+ VERSION = '1.1.3'
5
5
  end
@@ -33,7 +33,6 @@ en:
33
33
  fileplan: File plan
34
34
  odd: Other descriptive data
35
35
  note: Note
36
- did_note: Note
37
36
 
38
37
  access_subjects: Subjects
39
38
  names_coll: Names
data/solr/conf/schema.xml CHANGED
@@ -348,8 +348,7 @@
348
348
  <copyField source="access_subjects_ssim" dest="text" />
349
349
  <copyField source="containers_ssim" dest="text" />
350
350
 
351
- <!-- grab the searchable notes -->
352
- <copyField source="abstract_tesim" dest="text" />
351
+ <!-- grab the searchable notes (SEARCHABLE_NOTES_FIELDS) -->
353
352
  <copyField source="accessrestrict_tesim" dest="text" />
354
353
  <copyField source="accruals_tesim" dest="text" />
355
354
  <copyField source="acqinfo_tesim" dest="text" />
@@ -359,23 +358,24 @@
359
358
  <copyField source="bibliography_tesim" dest="text" />
360
359
  <copyField source="bioghist_tesim" dest="text" />
361
360
  <copyField source="custodhist_tesim" dest="text" />
362
- <copyField source="did_note_tesim" dest="text" />
363
361
  <copyField source="fileplan_tesim" dest="text" />
364
362
  <copyField source="indexes_tesim" dest="text" />
365
363
  <copyField source="language_ssim" dest="text" />
366
- <copyField source="materialspec_tesim" dest="text" />
367
- <copyField source="note_tesim" dest="text" />
368
364
  <copyField source="odd_tesim" dest="text" />
369
365
  <copyField source="originalsloc_tesim" dest="text" />
370
366
  <copyField source="parent_unittitles_tesim" dest="text" />
371
367
  <copyField source="physdesc_tesim" dest="text" />
372
- <copyField source="physloc_tesim" dest="text" />
373
368
  <copyField source="phystech_tesim" dest="text" />
374
369
  <copyField source="processinfo_tesim" dest="text" />
375
370
  <copyField source="relatedmaterial_tesim" dest="text" />
376
371
  <copyField source="scopecontent_tesim" dest="text" />
377
372
  <copyField source="separatedmaterial_tesim" dest="text" />
378
373
  <copyField source="userestrict_tesim" dest="text" />
374
+ <!-- did searchable notes (DID_SEARCHABLE_NOTES_FIELDS) -->
375
+ <copyField source="abstract_tesim" dest="text" />
376
+ <copyField source="materialspec_tesim" dest="text" />
377
+ <copyField source="physloc_tesim" dest="text" />
378
+ <copyField source="note_tesim" dest="text" />
379
379
  <!-- grab structured data that's important -->
380
380
  <copyField source="unitid_ssm" dest="text" />
381
381
  <copyField source="unitid_ssm" dest="unitid_identifier_match" />
@@ -142,12 +142,14 @@
142
142
  ead_ssi
143
143
  ref_ssm
144
144
  unitid_ssm
145
+ unitid_identifier_match
145
146
  </str>
146
147
  <str name="pf_identifier">
147
148
  id^2
148
149
  ead_ssi^2
149
150
  ref_ssm^2
150
151
  unitid_ssm^2
152
+ unitid_identifier_match^2
151
153
  </str>
152
154
  <str name="qf_name">
153
155
  name_teim
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arclight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darren Hardy
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2024-03-13 00:00:00.000000000 Z
14
+ date: 2024-03-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: blacklight
@@ -501,7 +501,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
501
501
  - !ruby/object:Gem::Version
502
502
  version: '0'
503
503
  requirements: []
504
- rubygems_version: 3.5.6
504
+ rubygems_version: 3.4.10
505
505
  signing_key:
506
506
  specification_version: 4
507
507
  summary: A Blacklight-based environment to support discovery and delivery for archives