1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/**
* @file media_library.widget.js
*/
(($, Drupal, Sortable) => {
/**
* Allows users to re-order their selection with drag+drop.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches behavior to re-order selected media items.
*/
Drupal.behaviors.MediaLibraryWidgetSortable = {
attach(context) {
// Allow media items to be re-sorted with drag+drop in the widget.
const selection = context.querySelectorAll('.js-media-library-selection');
selection.forEach((widget) => {
Sortable.create(widget, {
draggable: '.js-media-library-item',
handle: '.js-media-library-item-preview',
onEnd: () => {
$(widget)
.children()
.each((index, child) => {
$(child).find('.js-media-library-item-weight')[0].value = index;
});
},
});
});
},
};
/**
* Allows selection order to be set without drag+drop for accessibility.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches behavior to toggle the weight field for media items.
*/
Drupal.behaviors.MediaLibraryWidgetToggleWeight = {
attach(context) {
const strings = {
show: Drupal.t('Show media item weights'),
hide: Drupal.t('Hide media item weights'),
};
const mediaLibraryToggle = once(
'media-library-toggle',
'.js-media-library-widget-toggle-weight',
context,
);
$(mediaLibraryToggle).on('click', (e) => {
e.preventDefault();
const $target = $(e.currentTarget);
e.currentTarget.textContent = $target.hasClass('active')
? strings.show
: strings.hide;
$target
.toggleClass('active')
.closest('.js-media-library-widget')
.find('.js-media-library-item-weight')
.parent()
.toggle();
});
mediaLibraryToggle.forEach((item) => {
item.textContent = strings.show;
});
$(once('media-library-toggle', '.js-media-library-item-weight', context))
.parent()
.hide();
},
};
/**
* Disable the open button when the user is not allowed to add more items.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches behavior to disable the media library open button.
*/
Drupal.behaviors.MediaLibraryWidgetDisableButton = {
attach(context) {
// When the user returns from the modal to the widget, we want to shift
// the focus back to the open button. If the user is not allowed to add
// more items, the button needs to be disabled. Since we can't shift the
// focus to disabled elements, the focus is set back to the open button
// via JavaScript by adding the 'data-disabled-focus' attribute.
once(
'media-library-disable',
'.js-media-library-open-button[data-disabled-focus="true"]',
context,
).forEach((button) => {
$(button).focus();
// There is a small delay between the focus set by the browser and the
// focus of screen readers. We need to give screen readers time to shift
// the focus as well before the button is disabled.
setTimeout(() => {
$(button).attr('disabled', 'disabled');
}, 50);
});
},
};
})(jQuery, Drupal, Sortable);
|