choices.js
4.28 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* global _SEARCHWP */
( function() {
'use strict';
const app = {
/**
* Init.
*
* @since 4.3.6
*/
init: () => {
if ( document.readyState === 'loading' ) {
document.addEventListener( 'DOMContentLoaded', app.ready );
return;
}
app.ready();
},
/**
* Document ready
*
* @since 4.3.6
*/
ready: () => {
app.events();
},
/**
* Events.
*
* @since 4.3.6
*/
events: () => {
document.querySelectorAll( 'select.swp-choicesjs-single' ).forEach( app.initChoicesSingle );
document.querySelectorAll( 'select.swp-choicesjs-multiple' ).forEach( app.initChoicesMultiple );
document.querySelectorAll( 'select.swp-choicesjs-hybrid' ).forEach( app.initChoicesHybrid );
},
/**
* Init single choice select.
*
* @since 4.3.6
*/
initChoicesSingle: ( el ) => {
if ( typeof Choices === 'undefined' ) {
return;
}
const args = {
searchEnabled: false,
shouldSort: false,
};
// Attach the Choices object to an element for easy access.
el.data = el.data || {};
el.data.choicesjs = new Choices( el, args );
},
/**
* Init searchable multiple choice select.
*
* @since 4.3.6
*/
initChoicesMultiple: ( el ) => {
if ( typeof Choices === 'undefined' ) {
return;
}
const args = {
removeItemButton: true,
duplicateItemsAllowed: false,
};
const choices = new Choices( el, args );
// This makes the input element take as little space as possible.
choices.clearInput();
// Attach the Choices object to an element for easy access.
el.data = el.data || {};
el.data.choicesjs = choices;
},
/**
* Init hybrid searchable multiple choice select with an ability to add new items by pressing Enter.
*
* @since 4.3.6
*/
initChoicesHybrid: ( el ) => {
if ( typeof Choices === 'undefined' ) {
return;
}
const args = {
removeItemButton: true,
duplicateItemsAllowed: false,
noResultsText: 'Press Enter to add item',
fuseOptions: {
threshold: 0,
},
};
const choices = new Choices( el, args );
// This makes the input element take as little space as possible.
choices.clearInput();
const keyupChoiceHybridCallback = ( e ) => {
if ( e.keyCode === 13 ) {
app.addChoiceToHybrid( choices );
}
};
choices.input.element.addEventListener( 'keyup', keyupChoiceHybridCallback, false );
// Attach the Choices object to an element for easy access.
el.data = el.data || {};
el.data.choicesjs = choices;
},
/**
* Add new item to a hybrid select.
*
* @since 4.3.6
*
* @param choices Choices.js object.
*/
addChoiceToHybrid: ( choices ) => {
if ( ! choices.input.value ) {
return;
}
const canAddItem = choices._canAddItem( choices._store.activeItems, choices.input.value );
if ( ! canAddItem.response ) {
const notice = choices._getTemplate( 'notice', canAddItem.notice );
choices.choiceList.clear();
choices.choiceList.append( notice );
return;
}
const choice = {
"value": choices.input.value,
"isSelected": true,
}
choices._addChoice( choice );
choices.clearInput();
},
};
app.init();
window.searchwp = window.searchwp || {};
window.searchwp.ChoicesJs = window.searchwp.ChoicesJs || app;
})();