blacklight 8.0.0.beta5 → 8.0.0.beta6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/Gemfile +0 -4
  4. data/README.md +1 -1
  5. data/Rakefile +18 -0
  6. data/VERSION +1 -1
  7. data/app/assets/config/blacklight/manifest.js +3 -0
  8. data/app/assets/stylesheets/blacklight/_facets.scss +32 -5
  9. data/app/assets/stylesheets/blacklight/blacklight_defaults.scss +1 -1
  10. data/app/components/blacklight/document_component.rb +21 -2
  11. data/app/components/blacklight/response/facet_group_component.html.erb +2 -1
  12. data/app/helpers/blacklight/blacklight_helper_behavior.rb +0 -5
  13. data/app/javascript/blacklight/bookmark_toggle.js +8 -15
  14. data/app/javascript/blacklight/button_focus.js +10 -10
  15. data/app/javascript/blacklight/index.js +5 -5
  16. data/app/javascript/blacklight/modal.js +6 -11
  17. data/app/javascript/blacklight/search_context.js +51 -57
  18. data/app/models/concerns/blacklight/document.rb +11 -0
  19. data/app/views/catalog/_document.html.erb +2 -2
  20. data/app/views/layouts/blacklight/base.html.erb +4 -4
  21. data/blacklight.gemspec +1 -1
  22. data/config/importmap.rb +1 -1
  23. data/config/locales/blacklight.ar.yml +209 -226
  24. data/config/locales/blacklight.de.yml +197 -209
  25. data/config/locales/blacklight.en.yml +2 -0
  26. data/config/locales/blacklight.es.yml +196 -209
  27. data/config/locales/blacklight.fr.yml +196 -213
  28. data/config/locales/blacklight.hu.yml +193 -206
  29. data/config/locales/blacklight.it.yml +197 -209
  30. data/config/locales/blacklight.nl.yml +193 -206
  31. data/config/locales/blacklight.pt-BR.yml +195 -209
  32. data/config/locales/blacklight.sq.yml +193 -206
  33. data/config/locales/blacklight.zh.yml +194 -207
  34. data/lib/blacklight/configuration/view_config.rb +0 -4
  35. data/lib/blacklight/engine.rb +6 -7
  36. data/lib/generators/blacklight/assets/importmap_generator.rb +9 -2
  37. data/lib/generators/blacklight/assets/propshaft_generator.rb +11 -2
  38. data/lib/generators/blacklight/assets/sprockets_generator.rb +2 -0
  39. data/package.json +7 -4
  40. data/rollup.config.js +11 -1
  41. data/spec/features/sitelinks_search_box_spec.rb +13 -0
  42. data/spec/models/blacklight/icon_spec.rb +0 -2
  43. data/spec/spec_helper.rb +1 -1
  44. data/spec/support/view_component_test_helpers.rb +21 -0
  45. data/spec/test_app_templates/Gemfile.extra +4 -0
  46. data/spec/views/catalog/_document.html.erb_spec.rb +21 -0
  47. data/tasks/blacklight.rake +1 -1
  48. metadata +7 -10
  49. data/app/assets/javascripts/blacklight/blacklight.esm.js +0 -390
  50. data/app/assets/javascripts/blacklight/blacklight.esm.js.map +0 -1
  51. data/app/assets/javascripts/blacklight/blacklight.js +0 -398
  52. data/app/assets/javascripts/blacklight/blacklight.js.map +0 -1
  53. data/spec/features/sitelinks_search_box.rb +0 -13
  54. data/spec/support/view_component_capybara_test_helpers.rb +0 -8
@@ -24,4 +24,25 @@ RSpec.describe "catalog/_document" do
24
24
  expect(rendered).to match /b_partial/
25
25
  expect(rendered).to match /c_partial/
26
26
  end
27
+
28
+ context 'with a configured document component' do
29
+ let(:custom_component_class) do
30
+ Class.new(Blacklight::DocumentComponent) do
31
+ # Override component rendering with our own value
32
+ def call
33
+ 'blah'
34
+ end
35
+ end
36
+ end
37
+
38
+ before do
39
+ stub_const('MyDocumentComponent', custom_component_class)
40
+ blacklight_config.index.document_component = MyDocumentComponent
41
+ end
42
+
43
+ it 'renders the document component' do
44
+ render partial: "catalog/document", locals: { document: document, document_counter: 1, view_config: blacklight_config.index }
45
+ expect(rendered).to match /blah/
46
+ end
47
+ end
27
48
  end
@@ -43,7 +43,7 @@ end
43
43
 
44
44
  # rubocop:disable Rails/RakeEnvironment
45
45
  desc "Run test suite"
46
- task :ci do
46
+ task ci: ['build:npm'] do
47
47
  with_solr do
48
48
  Rake::Task['blacklight:internal:seed'].invoke
49
49
  within_test_app do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.0.beta5
4
+ version: 8.0.0.beta6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Rochkind
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: exe
19
19
  cert_chain: []
20
- date: 2023-02-02 00:00:00.000000000 Z
20
+ date: 2023-02-21 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: rails
@@ -375,12 +375,9 @@ files:
375
375
  - README.md
376
376
  - Rakefile
377
377
  - VERSION
378
+ - app/assets/config/blacklight/manifest.js
378
379
  - app/assets/images/blacklight/logo.png
379
380
  - app/assets/images/favicon.ico
380
- - app/assets/javascripts/blacklight/blacklight.esm.js
381
- - app/assets/javascripts/blacklight/blacklight.esm.js.map
382
- - app/assets/javascripts/blacklight/blacklight.js
383
- - app/assets/javascripts/blacklight/blacklight.js.map
384
381
  - app/assets/stylesheets/blacklight/_autocomplete.scss
385
382
  - app/assets/stylesheets/blacklight/_balanced_list.scss
386
383
  - app/assets/stylesheets/blacklight/_blacklight_base.scss
@@ -811,7 +808,7 @@ files:
811
808
  - spec/features/search_results_spec.rb
812
809
  - spec/features/search_sort_spec.rb
813
810
  - spec/features/search_spec.rb
814
- - spec/features/sitelinks_search_box.rb
811
+ - spec/features/sitelinks_search_box_spec.rb
815
812
  - spec/fixtures/sample_solr_documents.yml
816
813
  - spec/helpers/blacklight/configuration_helper_behavior_spec.rb
817
814
  - spec/helpers/blacklight/facets_helper_behavior_spec.rb
@@ -884,7 +881,7 @@ files:
884
881
  - spec/support/features/search_helpers.rb
885
882
  - spec/support/features/session_helpers.rb
886
883
  - spec/support/presenter_test_helpers.rb
887
- - spec/support/view_component_capybara_test_helpers.rb
884
+ - spec/support/view_component_test_helpers.rb
888
885
  - spec/test_app_templates/Gemfile.extra
889
886
  - spec/test_app_templates/lib/generators/test_app_generator.rb
890
887
  - spec/views/catalog/_document.html.erb_spec.rb
@@ -984,7 +981,7 @@ test_files:
984
981
  - spec/features/search_results_spec.rb
985
982
  - spec/features/search_sort_spec.rb
986
983
  - spec/features/search_spec.rb
987
- - spec/features/sitelinks_search_box.rb
984
+ - spec/features/sitelinks_search_box_spec.rb
988
985
  - spec/fixtures/sample_solr_documents.yml
989
986
  - spec/helpers/blacklight/configuration_helper_behavior_spec.rb
990
987
  - spec/helpers/blacklight/facets_helper_behavior_spec.rb
@@ -1057,7 +1054,7 @@ test_files:
1057
1054
  - spec/support/features/search_helpers.rb
1058
1055
  - spec/support/features/session_helpers.rb
1059
1056
  - spec/support/presenter_test_helpers.rb
1060
- - spec/support/view_component_capybara_test_helpers.rb
1057
+ - spec/support/view_component_test_helpers.rb
1061
1058
  - spec/test_app_templates/Gemfile.extra
1062
1059
  - spec/test_app_templates/lib/generators/test_app_generator.rb
1063
1060
  - spec/views/catalog/_document.html.erb_spec.rb
@@ -1,390 +0,0 @@
1
- const Blacklight = function() {
2
- const buffer = new Array;
3
- return {
4
- onLoad: function(func) {
5
- buffer.push(func);
6
- },
7
-
8
- activate: function() {
9
- for(let i = 0; i < buffer.length; i++) {
10
- buffer[i].call();
11
- }
12
- },
13
-
14
- listeners: function () {
15
- const listeners = [];
16
- if (typeof Turbo !== 'undefined') {
17
- listeners.push('turbo:load', 'turbo:frame-load');
18
- } else if (typeof Turbolinks !== 'undefined' && Turbolinks.supported) {
19
- // Turbolinks 5
20
- if (Turbolinks.BrowserAdapter) {
21
- listeners.push('turbolinks:load');
22
- } else {
23
- // Turbolinks < 5
24
- listeners.push('page:load', 'DOMContentLoaded');
25
- }
26
- } else {
27
- listeners.push('DOMContentLoaded');
28
- }
29
-
30
- return listeners;
31
- }
32
- };
33
- }();
34
-
35
- // turbolinks triggers page:load events on page transition
36
- // If app isn't using turbolinks, this event will never be triggered, no prob.
37
- Blacklight.listeners().forEach(function(listener) {
38
- document.addEventListener(listener, function() {
39
- Blacklight.activate();
40
- });
41
- });
42
-
43
- Blacklight.onLoad(function () {
44
- const elem = document.querySelector('.no-js');
45
-
46
- // The "no-js" class may already have been removed because this function is
47
- // run on every turbo:load event, in that case, it won't find an element.
48
- if (!elem) return;
49
-
50
- elem.classList.remove('no-js');
51
- elem.classList.add('js');
52
- });
53
-
54
- /* Converts a "toggle" form, with single submit button to add/remove
55
- something, like used for Bookmarks, into an AJAXy checkbox instead.
56
- Apply to a form. Does require certain assumption about the form:
57
- 1) The same form 'action' href must be used for both ADD and REMOVE
58
- actions, with the different being the hidden input name="_method"
59
- being set to "put" or "delete" -- that's the Rails method to pretend
60
- to be doing a certain HTTP verb. So same URL, PUT to add, DELETE
61
- to remove. This plugin assumes that.
62
- Plus, the form this is applied to should provide a data-doc-id
63
- attribute (HTML5-style doc-*) that contains the id/primary key
64
- of the object in question -- used by plugin for a unique value for
65
- DOM id's.
66
- Uses HTML for a checkbox compatible with Bootstrap 4.
67
- new CheckboxSubmit(document.querySelector('form.something')).render()
68
- */
69
- class CheckboxSubmit {
70
- constructor(form) {
71
- this.form = form;
72
- }
73
-
74
- async clicked(evt) {
75
- this.spanTarget.innerHTML = this.form.getAttribute('data-inprogress');
76
- this.labelTarget.setAttribute('disabled', 'disabled');
77
- this.checkboxTarget.setAttribute('disabled', 'disabled');
78
- const response = await fetch(this.formTarget.getAttribute('action'), {
79
- body: new FormData(this.formTarget),
80
- method: this.formTarget.getAttribute('method').toUpperCase(),
81
- headers: {
82
- 'Accept': 'application/json',
83
- 'X-Requested-With': 'XMLHttpRequest',
84
- 'X-CSRF-Token': document.querySelector('meta[name=csrf-token]')?.content
85
- }
86
- });
87
- this.labelTarget.removeAttribute('disabled');
88
- this.checkboxTarget.removeAttribute('disabled');
89
- if (response.ok) {
90
- const json = await response.json();
91
- this.updateStateFor(!this.checked);
92
- document.querySelector('[data-role=bookmark-counter]').innerHTML = json.bookmarks.count;
93
- } else {
94
- alert('Error');
95
- }
96
- }
97
-
98
- get checked() {
99
- return (this.form.querySelectorAll('input[name=_method][value=delete]').length != 0)
100
- }
101
-
102
- get formTarget() {
103
- return this.form
104
- }
105
-
106
- get labelTarget() {
107
- return this.form.querySelector('[data-checkboxsubmit-target="label"]')
108
- }
109
-
110
- get checkboxTarget() {
111
- return this.form.querySelector('[data-checkboxsubmit-target="checkbox"]')
112
- }
113
-
114
- get spanTarget() {
115
- return this.form.querySelector('[data-checkboxsubmit-target="span"]')
116
- }
117
-
118
- updateStateFor(state) {
119
- this.checkboxTarget.checked = state;
120
-
121
- if (state) {
122
- this.labelTarget.classList.add('checked');
123
- //Set the Rails hidden field that fakes an HTTP verb
124
- //properly for current state action.
125
- this.formTarget.querySelector('input[name=_method]').value = 'delete';
126
- this.spanTarget.innerHTML = this.form.getAttribute('data-present');
127
- } else {
128
- this.labelTarget.classList.remove('checked');
129
- this.formTarget.querySelector('input[name=_method]').value = 'put';
130
- this.spanTarget.innerHTML = this.form.getAttribute('data-absent');
131
- }
132
- }
133
- }
134
-
135
- const BookmarkToggle = (() => {
136
- // change form submit toggle to checkbox
137
- Blacklight.doBookmarkToggleBehavior = function() {
138
- document.addEventListener('click', (e) => {
139
- if (e.target.matches('[data-checkboxsubmit-target="checkbox"]')) {
140
- const form = e.target.closest('form');
141
- if (form) new CheckboxSubmit(form).clicked(e);
142
- }
143
- });
144
- };
145
- Blacklight.doBookmarkToggleBehavior.selector = 'form.bookmark-toggle';
146
-
147
- Blacklight.doBookmarkToggleBehavior();
148
- })();
149
-
150
- const ButtonFocus = (() => {
151
- document.addEventListener('click', (e) => {
152
- // Button clicks should change focus. As of 10/3/19, Firefox for Mac and
153
- // Safari both do not set focus to a button on button click.
154
- // See https://zellwk.com/blog/inconsistent-button-behavior/ for background information
155
- if (e.target.matches('[data-toggle="collapse"]') || e.target.matches('[data-bs-toggle="collapse"]')) {
156
- e.target.focus();
157
- }
158
- });
159
- })();
160
-
161
- /*
162
- The blacklight modal plugin can display some interactions inside a Bootstrap
163
- modal window, including some multi-page interactions.
164
-
165
- It supports unobtrusive Javascript, where a link or form that would have caused
166
- a new page load is changed to display it's results inside a modal dialog,
167
- by this plugin. The plugin assumes there is a Bootstrap modal div
168
- on the page with id #blacklight-modal to use as the modal -- the standard Blacklight
169
- layout provides this.
170
-
171
- To make a link or form have their results display inside a modal, add
172
- `data-blacklight-modal="trigger"` to the link or form. (Note, form itself not submit input)
173
- With Rails link_to helper, you'd do that like:
174
-
175
- link_to something, link, data: { blacklight_modal: "trigger" }
176
-
177
- The results of the link href or form submit will be displayed inside
178
- a modal -- they should include the proper HTML markup for a bootstrap modal's
179
- contents. Also, you ordinarily won't want the Rails template with wrapping
180
- navigational elements to be used. The Rails controller could suppress
181
- the layout when a JS AJAX request is detected, OR the response
182
- can include a `<div data-blacklight-modal="container">` -- only the contents
183
- of the container will be placed inside the modal, the rest of the
184
- page will be ignored.
185
-
186
- Link or forms inside the modal will ordinarily cause page loads
187
- when they are triggered. However, if you'd like their results
188
- to stay within the modal, just add `data-blacklight-modal="preserve"`
189
- to the link or form.
190
-
191
- Here's an example of what might be returned, demonstrating most of the devices available:
192
-
193
- <div data-blacklight-modal="container">
194
- <div class="modal-header">
195
- <button type="button" class="close" data-bl-dismiss="modal" aria-hidden="true">×</button>
196
- <h3 class="modal-title">Request Placed</h3>
197
- </div>
198
-
199
- <div class="modal-body">
200
- <p>Some message</p>
201
- <%= link_to "This result will still be within modal", some_link, data: { blacklight_modal: "preserve" } %>
202
- </div>
203
-
204
-
205
- <div class="modal-footer">
206
- <button type="button" class="btn btn-secondary" data-bl-dismiss="modal">Close</button>
207
- </div>
208
- </div>
209
-
210
-
211
- One additional feature. If the content returned from the AJAX form submission
212
- can be a turbo-stream that defines some HTML fragementsand where on the page to put them:
213
- https://turbo.hotwired.dev/handbook/streams
214
- */
215
-
216
- const Modal = (() => {
217
- // We keep all our data in Blacklight.modal object.
218
- // Create lazily if someone else created first.
219
- if (Blacklight.modal === undefined) {
220
- Blacklight.modal = {};
221
- }
222
-
223
- const modal = Blacklight.modal;
224
-
225
- // a Bootstrap modal div that should be already on the page hidden
226
- modal.modalSelector = '#blacklight-modal';
227
-
228
- // Trigger selectors identify forms or hyperlinks that should open
229
- // inside a modal dialog.
230
- modal.triggerLinkSelector = 'a[data-blacklight-modal~=trigger]';
231
-
232
- // preserve selectors identify forms or hyperlinks that, if activated already
233
- // inside a modal dialog, should have destinations remain inside the modal -- but
234
- // won't trigger a modal if not already in one.
235
- //
236
- // No need to repeat selectors from trigger selectors, those will already
237
- // be preserved. MUST be manually prefixed with the modal selector,
238
- // so they only apply to things inside a modal.
239
- modal.preserveLinkSelector = modal.modalSelector + ' a[data-blacklight-modal~=preserve]';
240
-
241
- modal.containerSelector = '[data-blacklight-modal~=container]';
242
-
243
- // Called on fatal failure of ajax load, function returns content
244
- // to show to user in modal. Right now called only for network errors.
245
- modal.onFailure = function (error) {
246
- console.error('Server error:', this.url, error);
247
-
248
- const contents = `<div class="modal-header">
249
- <div class="modal-title">There was a problem with your request.</div>
250
- <button type="button" class="blacklight-modal-close btn-close close" data-bl-dismiss="modal" aria-label="Close">
251
- <span aria-hidden="true" class="visually-hidden">&times;</span>
252
- </button>
253
- </div>
254
- <div class="modal-body">
255
- <p>Expected a successful response from the server, but got an error</p>
256
- <pre>${this.url}\n${error}</pre>
257
- </div>`;
258
-
259
- document.querySelector(`${modal.modalSelector} .modal-content`).innerHTML = contents;
260
-
261
- modal.show();
262
- };
263
-
264
- // Add the passed in contents to the modal and display it.
265
- modal.receiveAjax = function (contents) {
266
- const domparser = new DOMParser();
267
- const dom = domparser.parseFromString(contents, "text/html");
268
- // If there is a containerSelector on the document, use its children.
269
- let elements = dom.querySelectorAll(`${modal.containerSelector} > *`);
270
- if (elements.length == 0) {
271
- // If the containerSelector wasn't found, use the whole document
272
- elements = dom.body.childNodes;
273
- }
274
-
275
- document.querySelector(`${modal.modalSelector} .modal-content`).replaceChildren(...elements);
276
-
277
- modal.show();
278
- };
279
-
280
-
281
- modal.modalAjaxLinkClick = function(e) {
282
- e.preventDefault();
283
- const href = e.target.getAttribute('href');
284
- fetch(href)
285
- .then(response => {
286
- if (!response.ok) {
287
- throw new TypeError("Request failed");
288
- }
289
- return response.text();
290
- })
291
- .then(data => modal.receiveAjax(data))
292
- .catch(error => modal.onFailure(error));
293
- };
294
-
295
- modal.setupModal = function() {
296
- // Register both trigger and preserve selectors in ONE event handler, combining
297
- // into one selector with a comma, so if something matches BOTH selectors, it
298
- // still only gets the event handler called once.
299
- document.addEventListener('click', (e) => {
300
- if (e.target.closest(`${modal.triggerLinkSelector}, ${modal.preserveLinkSelector}`))
301
- modal.modalAjaxLinkClick(e);
302
- else if (e.target.closest('[data-bl-dismiss="modal"]'))
303
- modal.hide();
304
- });
305
- };
306
-
307
- modal.hide = function (el) {
308
- const dom = document.querySelector(Blacklight.modal.modalSelector);
309
-
310
- if (!dom.open) return
311
- dom.close();
312
- };
313
-
314
- modal.show = function(el) {
315
- const dom = document.querySelector(Blacklight.modal.modalSelector);
316
-
317
- if (dom.open) return
318
- dom.showModal();
319
- };
320
-
321
- modal.setupModal();
322
- })();
323
-
324
- const SearchContext = (() => {
325
- Blacklight.doSearchContextBehavior = function() {
326
- document.addEventListener('click', (e) => {
327
- if (e.target.matches('[data-context-href]')) {
328
- Blacklight.handleSearchContextMethod.call(e.target, e);
329
- }
330
- });
331
- };
332
-
333
- Blacklight.csrfToken = () => document.querySelector('meta[name=csrf-token]')?.content;
334
- Blacklight.csrfParam = () => document.querySelector('meta[name=csrf-param]')?.content;
335
-
336
- // this is the Rails.handleMethod with a couple adjustments, described inline:
337
- // first, we're attaching this directly to the event handler, so we can check for meta-keys
338
- Blacklight.handleSearchContextMethod = function(event) {
339
- const link = this;
340
-
341
- // instead of using the normal href, we need to use the context href instead
342
- let href = link.getAttribute('data-context-href');
343
- let target = link.getAttribute('target');
344
- let csrfToken = Blacklight.csrfToken();
345
- let csrfParam = Blacklight.csrfParam();
346
- let form = document.createElement('form');
347
- form.method = 'post';
348
- form.action = href;
349
-
350
-
351
- let formContent = `<input name="_method" value="post" type="hidden" />
352
- <input name="redirect" value="${link.getAttribute('href')}" type="hidden" />`;
353
-
354
- // check for meta keys.. if set, we should open in a new tab
355
- if(event.metaKey || event.ctrlKey) {
356
- target = '_blank';
357
- }
358
-
359
- if (csrfParam !== undefined && csrfToken !== undefined) {
360
- formContent += `<input name="${csrfParam}" value="${csrfToken}" type="hidden" />`;
361
- }
362
-
363
- // Must trigger submit by click on a button, else "submit" event handler won't work!
364
- // https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit
365
- formContent += '<input type="submit" />';
366
-
367
- if (target) { form.setAttribute('target', target); }
368
-
369
- form.style.display = 'none';
370
- form.innerHTML = formContent;
371
- document.body.appendChild(form);
372
- form.querySelector('[type="submit"]').click();
373
-
374
- event.preventDefault();
375
- };
376
-
377
- Blacklight.doSearchContextBehavior();
378
- })();
379
-
380
- const index = {
381
- BookmarkToggle,
382
- ButtonFocus,
383
- Modal,
384
- SearchContext,
385
- Core: Blacklight,
386
- onLoad: Blacklight.onLoad
387
- };
388
-
389
- export { index as default };
390
- //# sourceMappingURL=blacklight.esm.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"blacklight.esm.js","sources":["../../../javascript/blacklight/core.js","../../../javascript/blacklight/checkbox_submit.js","../../../javascript/blacklight/bookmark_toggle.js","../../../javascript/blacklight/button_focus.js","../../../javascript/blacklight/modal.js","../../../javascript/blacklight/search_context.js","../../../javascript/blacklight/index.js"],"sourcesContent":["const Blacklight = function() {\n const buffer = new Array;\n return {\n onLoad: function(func) {\n buffer.push(func);\n },\n\n activate: function() {\n for(let i = 0; i < buffer.length; i++) {\n buffer[i].call();\n }\n },\n\n listeners: function () {\n const listeners = [];\n if (typeof Turbo !== 'undefined') {\n listeners.push('turbo:load', 'turbo:frame-load');\n } else if (typeof Turbolinks !== 'undefined' && Turbolinks.supported) {\n // Turbolinks 5\n if (Turbolinks.BrowserAdapter) {\n listeners.push('turbolinks:load');\n } else {\n // Turbolinks < 5\n listeners.push('page:load', 'DOMContentLoaded');\n }\n } else {\n listeners.push('DOMContentLoaded');\n }\n\n return listeners;\n }\n };\n}();\n\n// turbolinks triggers page:load events on page transition\n// If app isn't using turbolinks, this event will never be triggered, no prob.\nBlacklight.listeners().forEach(function(listener) {\n document.addEventListener(listener, function() {\n Blacklight.activate()\n })\n})\n\nBlacklight.onLoad(function () {\n const elem = document.querySelector('.no-js');\n\n // The \"no-js\" class may already have been removed because this function is\n // run on every turbo:load event, in that case, it won't find an element.\n if (!elem) return;\n\n elem.classList.remove('no-js')\n elem.classList.add('js')\n})\n\n\nexport default Blacklight\n","/* Converts a \"toggle\" form, with single submit button to add/remove\n something, like used for Bookmarks, into an AJAXy checkbox instead.\n Apply to a form. Does require certain assumption about the form:\n 1) The same form 'action' href must be used for both ADD and REMOVE\n actions, with the different being the hidden input name=\"_method\"\n being set to \"put\" or \"delete\" -- that's the Rails method to pretend\n to be doing a certain HTTP verb. So same URL, PUT to add, DELETE\n to remove. This plugin assumes that.\n Plus, the form this is applied to should provide a data-doc-id\n attribute (HTML5-style doc-*) that contains the id/primary key\n of the object in question -- used by plugin for a unique value for\n DOM id's.\n Uses HTML for a checkbox compatible with Bootstrap 4.\n new CheckboxSubmit(document.querySelector('form.something')).render()\n*/\nexport default class CheckboxSubmit {\n constructor(form) {\n this.form = form\n }\n\n async clicked(evt) {\n this.spanTarget.innerHTML = this.form.getAttribute('data-inprogress')\n this.labelTarget.setAttribute('disabled', 'disabled');\n this.checkboxTarget.setAttribute('disabled', 'disabled');\n const response = await fetch(this.formTarget.getAttribute('action'), {\n body: new FormData(this.formTarget),\n method: this.formTarget.getAttribute('method').toUpperCase(),\n headers: {\n 'Accept': 'application/json',\n 'X-Requested-With': 'XMLHttpRequest',\n 'X-CSRF-Token': document.querySelector('meta[name=csrf-token]')?.content\n }\n })\n this.labelTarget.removeAttribute('disabled')\n this.checkboxTarget.removeAttribute('disabled')\n if (response.ok) {\n const json = await response.json()\n this.updateStateFor(!this.checked)\n document.querySelector('[data-role=bookmark-counter]').innerHTML = json.bookmarks.count\n } else {\n alert('Error')\n }\n }\n\n get checked() {\n return (this.form.querySelectorAll('input[name=_method][value=delete]').length != 0)\n }\n\n get formTarget() {\n return this.form\n }\n\n get labelTarget() {\n return this.form.querySelector('[data-checkboxsubmit-target=\"label\"]')\n }\n\n get checkboxTarget() {\n return this.form.querySelector('[data-checkboxsubmit-target=\"checkbox\"]')\n }\n\n get spanTarget() {\n return this.form.querySelector('[data-checkboxsubmit-target=\"span\"]')\n }\n\n updateStateFor(state) {\n this.checkboxTarget.checked = state\n\n if (state) {\n this.labelTarget.classList.add('checked')\n //Set the Rails hidden field that fakes an HTTP verb\n //properly for current state action.\n this.formTarget.querySelector('input[name=_method]').value = 'delete'\n this.spanTarget.innerHTML = this.form.getAttribute('data-present')\n } else {\n this.labelTarget.classList.remove('checked')\n this.formTarget.querySelector('input[name=_method]').value = 'put'\n this.spanTarget.innerHTML = this.form.getAttribute('data-absent')\n }\n }\n}\n","import Blacklight from './core'\nimport CheckboxSubmit from './checkbox_submit'\n\nconst BookmarkToggle = (() => {\n // change form submit toggle to checkbox\n Blacklight.doBookmarkToggleBehavior = function() {\n document.addEventListener('click', (e) => {\n if (e.target.matches('[data-checkboxsubmit-target=\"checkbox\"]')) {\n const form = e.target.closest('form')\n if (form) new CheckboxSubmit(form).clicked(e);\n }\n });\n };\n Blacklight.doBookmarkToggleBehavior.selector = 'form.bookmark-toggle';\n\n Blacklight.doBookmarkToggleBehavior();\n})()\n\nexport default BookmarkToggle\n","const ButtonFocus = (() => {\n document.addEventListener('click', (e) => {\n // Button clicks should change focus. As of 10/3/19, Firefox for Mac and\n // Safari both do not set focus to a button on button click.\n // See https://zellwk.com/blog/inconsistent-button-behavior/ for background information\n if (e.target.matches('[data-toggle=\"collapse\"]') || e.target.matches('[data-bs-toggle=\"collapse\"]')) {\n e.target.focus()\n }\n })\n})()\n\nexport default ButtonFocus\n","/*\n The blacklight modal plugin can display some interactions inside a Bootstrap\n modal window, including some multi-page interactions.\n\n It supports unobtrusive Javascript, where a link or form that would have caused\n a new page load is changed to display it's results inside a modal dialog,\n by this plugin. The plugin assumes there is a Bootstrap modal div\n on the page with id #blacklight-modal to use as the modal -- the standard Blacklight\n layout provides this.\n\n To make a link or form have their results display inside a modal, add\n `data-blacklight-modal=\"trigger\"` to the link or form. (Note, form itself not submit input)\n With Rails link_to helper, you'd do that like:\n\n link_to something, link, data: { blacklight_modal: \"trigger\" }\n\n The results of the link href or form submit will be displayed inside\n a modal -- they should include the proper HTML markup for a bootstrap modal's\n contents. Also, you ordinarily won't want the Rails template with wrapping\n navigational elements to be used. The Rails controller could suppress\n the layout when a JS AJAX request is detected, OR the response\n can include a `<div data-blacklight-modal=\"container\">` -- only the contents\n of the container will be placed inside the modal, the rest of the\n page will be ignored.\n\n Link or forms inside the modal will ordinarily cause page loads\n when they are triggered. However, if you'd like their results\n to stay within the modal, just add `data-blacklight-modal=\"preserve\"`\n to the link or form.\n\n Here's an example of what might be returned, demonstrating most of the devices available:\n\n <div data-blacklight-modal=\"container\">\n <div class=\"modal-header\">\n <button type=\"button\" class=\"close\" data-bl-dismiss=\"modal\" aria-hidden=\"true\">×</button>\n <h3 class=\"modal-title\">Request Placed</h3>\n </div>\n\n <div class=\"modal-body\">\n <p>Some message</p>\n <%= link_to \"This result will still be within modal\", some_link, data: { blacklight_modal: \"preserve\" } %>\n </div>\n\n\n <div class=\"modal-footer\">\n <button type=\"button\" class=\"btn btn-secondary\" data-bl-dismiss=\"modal\">Close</button>\n </div>\n </div>\n\n\n One additional feature. If the content returned from the AJAX form submission\n can be a turbo-stream that defines some HTML fragementsand where on the page to put them:\n https://turbo.hotwired.dev/handbook/streams\n*/\nimport Blacklight from './core'\nimport ModalForm from './modalForm'\n\nconst Modal = (() => {\n // We keep all our data in Blacklight.modal object.\n // Create lazily if someone else created first.\n if (Blacklight.modal === undefined) {\n Blacklight.modal = {};\n }\n\n const modal = Blacklight.modal\n\n // a Bootstrap modal div that should be already on the page hidden\n modal.modalSelector = '#blacklight-modal';\n\n // Trigger selectors identify forms or hyperlinks that should open\n // inside a modal dialog.\n modal.triggerLinkSelector = 'a[data-blacklight-modal~=trigger]';\n\n // preserve selectors identify forms or hyperlinks that, if activated already\n // inside a modal dialog, should have destinations remain inside the modal -- but\n // won't trigger a modal if not already in one.\n //\n // No need to repeat selectors from trigger selectors, those will already\n // be preserved. MUST be manually prefixed with the modal selector,\n // so they only apply to things inside a modal.\n modal.preserveLinkSelector = modal.modalSelector + ' a[data-blacklight-modal~=preserve]';\n\n modal.containerSelector = '[data-blacklight-modal~=container]';\n\n // Called on fatal failure of ajax load, function returns content\n // to show to user in modal. Right now called only for network errors.\n modal.onFailure = function (error) {\n console.error('Server error:', this.url, error);\n\n const contents = `<div class=\"modal-header\">\n <div class=\"modal-title\">There was a problem with your request.</div>\n <button type=\"button\" class=\"blacklight-modal-close btn-close close\" data-bl-dismiss=\"modal\" aria-label=\"Close\">\n <span aria-hidden=\"true\" class=\"visually-hidden\">&times;</span>\n </button>\n </div>\n <div class=\"modal-body\">\n <p>Expected a successful response from the server, but got an error</p>\n <pre>${this.url}\\n${error}</pre>\n </div>`\n\n document.querySelector(`${modal.modalSelector} .modal-content`).innerHTML = contents\n\n modal.show();\n }\n\n // Add the passed in contents to the modal and display it.\n modal.receiveAjax = function (contents) {\n const domparser = new DOMParser();\n const dom = domparser.parseFromString(contents, \"text/html\")\n // If there is a containerSelector on the document, use its children.\n let elements = dom.querySelectorAll(`${modal.containerSelector} > *`)\n if (elements.length == 0) {\n // If the containerSelector wasn't found, use the whole document\n elements = dom.body.childNodes\n }\n\n document.querySelector(`${modal.modalSelector} .modal-content`).replaceChildren(...elements)\n\n modal.show();\n };\n\n\n modal.modalAjaxLinkClick = function(e) {\n e.preventDefault();\n const href = e.target.getAttribute('href')\n fetch(href)\n .then(response => {\n if (!response.ok) {\n throw new TypeError(\"Request failed\");\n }\n return response.text();\n })\n .then(data => modal.receiveAjax(data))\n .catch(error => modal.onFailure(error))\n };\n\n modal.setupModal = function() {\n // Register both trigger and preserve selectors in ONE event handler, combining\n // into one selector with a comma, so if something matches BOTH selectors, it\n // still only gets the event handler called once.\n document.addEventListener('click', (e) => {\n if (e.target.closest(`${modal.triggerLinkSelector}, ${modal.preserveLinkSelector}`))\n modal.modalAjaxLinkClick(e)\n else if (e.target.closest('[data-bl-dismiss=\"modal\"]'))\n modal.hide()\n })\n };\n\n modal.hide = function (el) {\n const dom = document.querySelector(Blacklight.modal.modalSelector)\n\n if (!dom.open) return\n dom.close()\n }\n\n modal.show = function(el) {\n const dom = document.querySelector(Blacklight.modal.modalSelector)\n\n if (dom.open) return\n dom.showModal()\n }\n\n modal.setupModal()\n})()\n\nexport default Modal\n","import Blacklight from './core'\n\nconst SearchContext = (() => {\n Blacklight.doSearchContextBehavior = function() {\n document.addEventListener('click', (e) => {\n if (e.target.matches('[data-context-href]')) {\n Blacklight.handleSearchContextMethod.call(e.target, e)\n }\n })\n };\n\n Blacklight.csrfToken = () => document.querySelector('meta[name=csrf-token]')?.content\n Blacklight.csrfParam = () => document.querySelector('meta[name=csrf-param]')?.content\n\n // this is the Rails.handleMethod with a couple adjustments, described inline:\n // first, we're attaching this directly to the event handler, so we can check for meta-keys\n Blacklight.handleSearchContextMethod = function(event) {\n const link = this\n\n // instead of using the normal href, we need to use the context href instead\n let href = link.getAttribute('data-context-href')\n let target = link.getAttribute('target')\n let csrfToken = Blacklight.csrfToken()\n let csrfParam = Blacklight.csrfParam()\n let form = document.createElement('form')\n form.method = 'post'\n form.action = href\n\n\n let formContent = `<input name=\"_method\" value=\"post\" type=\"hidden\" />\n <input name=\"redirect\" value=\"${link.getAttribute('href')}\" type=\"hidden\" />`\n\n // check for meta keys.. if set, we should open in a new tab\n if(event.metaKey || event.ctrlKey) {\n target = '_blank';\n }\n\n if (csrfParam !== undefined && csrfToken !== undefined) {\n formContent += `<input name=\"${csrfParam}\" value=\"${csrfToken}\" type=\"hidden\" />`\n }\n\n // Must trigger submit by click on a button, else \"submit\" event handler won't work!\n // https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit\n formContent += '<input type=\"submit\" />'\n\n if (target) { form.setAttribute('target', target); }\n\n form.style.display = 'none'\n form.innerHTML = formContent\n document.body.appendChild(form)\n form.querySelector('[type=\"submit\"]').click()\n\n event.preventDefault()\n };\n\n Blacklight.doSearchContextBehavior();\n})()\n\nexport default SearchContext\n","import BookmarkToggle from './bookmark_toggle'\nimport ButtonFocus from './button_focus'\nimport Modal from './modal'\nimport SearchContext from './search_context'\nimport Core from './core'\n\nexport default {\n BookmarkToggle,\n ButtonFocus,\n Modal,\n SearchContext,\n Core,\n onLoad: Core.onLoad\n}\n"],"names":["Core"],"mappings":"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"}