fl-icon-selector.js
3.9 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
(function($){
/**
* Helper class for the icon selector lightbox.
*
* @class FLIconSelector
* @since 1.0
*/
FLIconSelector = {
/**
* A reference to the lightbox HTML content that is
* loaded via AJAX.
*
* @since 1.0
* @access private
* @property {String} _content
*/
_content : null,
/**
* A reference to a FLLightbox object.
*
* @since 1.0
* @access private
* @property {FLLightbox} _lightbox
*/
_lightbox : null,
/**
* A flag for whether the content has already
* been rendered or not.
*
* @since 1.0
* @access private
* @property {Boolean} _rendered
*/
_rendered : false,
/**
* The text that is used to filter the selection
* of visible icons.
*
* @since 1.0
* @access private
* @property {String} _filterText
*/
_filterText : '',
/**
* Opens the icon selector lightbox.
*
* @since 1.0
* @method open
* @param {Function} callback A callback that fires when an icon is selected.
*/
open: function(callback)
{
if(!FLIconSelector._rendered) {
FLIconSelector._render();
}
if(FLIconSelector._content === null) {
FLIconSelector._lightbox.open('<div class="fl-builder-lightbox-loading"></div>');
FLBuilder.ajax({
action: 'render_icon_selector'
}, FLIconSelector._getContentComplete);
}
else {
FLIconSelector._lightbox.open();
}
FLIconSelector._lightbox.on('icon-selected', function(event, icon){
FLIconSelector._lightbox.off('icon-selected');
FLIconSelector._lightbox.close();
callback(icon);
});
},
/**
* Renders a new instance of FLLightbox.
*
* @since 1.0
* @access private
* @method _render
*/
_render: function()
{
FLIconSelector._lightbox = new FLLightbox({
className: 'fl-icon-selector'
});
FLIconSelector._rendered = true;
},
/**
* Callback for when the lightbox content
* has been returned via AJAX.
*
* @since 1.0
* @access private
* @method _getContentComplete
* @param {String} response The JSON with the HTML lightbox content.
*/
_getContentComplete: function(response)
{
var data = JSON.parse(response);
FLIconSelector._content = data.html;
FLIconSelector._lightbox.setContent(data.html);
$('.fl-icons-filter-select').on('change', FLIconSelector._filter);
$('.fl-icons-filter-text').on('keyup', FLIconSelector._filter);
$('.fl-icons-list i').on('click', FLIconSelector._select);
$('.fl-icon-selector-cancel').on('click', $.proxy(FLIconSelector._lightbox.close, FLIconSelector._lightbox));
},
/**
* Filters the selection of visible icons based on
* the library select and search input text.
*
* @since 1.0
* @access private
* @method _filter
*/
_filter: function()
{
var section = $( '.fl-icons-filter-select' ).val(),
text = $( '.fl-icons-filter-text' ).val();
// Filter sections.
if ( 'all' == section ) {
$( '.fl-icons-section' ).show();
}
else {
$( '.fl-icons-section' ).hide();
$( '.fl-' + section ).show();
}
// Filter icons.
FLIconSelector._filterText = text;
if ( '' !== text ) {
$( '.fl-icons-list i' ).each( FLIconSelector._filterIcon );
}
else {
$( '.fl-icons-list i' ).show();
}
},
/**
* Shows or hides an icon based on the filter text.
*
* @since 1.0
* @access private
* @method _filterIcon
*/
_filterIcon: function()
{
var icon = $( this );
if ( -1 == icon.attr( 'class' ).indexOf( FLIconSelector._filterText ) ) {
icon.hide();
}
else {
icon.show();
}
},
/**
* Called when an icon is selected and fires the
* icon-selected event on the lightbox.
*
* @since 1.0
* @access private
* @method _select
*/
_select: function()
{
var icon = $(this).attr('class');
FLIconSelector._lightbox.trigger('icon-selected', icon);
}
};
})(jQuery);