-
Notifications
You must be signed in to change notification settings - Fork 52
/
jquery.simple-color.js
executable file
·384 lines (345 loc) · 15.7 KB
/
jquery.simple-color.js
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*
* jQuery simple-color plugin
* @requires jQuery v1.4.2 or later
*
* See https://github.com/recurser/jquery-simple-color
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Version: 1.2.3 (Sat, 29 Aug 2020 11:55:25 GMT)
*/
(function($) {
/**
* simpleColor() provides a mechanism for displaying simple color-choosers.
*
* If an options Object is provided, the following attributes are supported:
*
* defaultColor: Default (initially selected) color.
* Default value: '#FFF'
*
* cellWidth: Width of each individual color cell.
* Default value: 10
*
* cellHeight: Height of each individual color cell.
* Default value: 10
*
* cellMargin: Margin of each individual color cell.
* Default value: 1
*
* boxWidth: Width of the color display box.
* Default value: 115px
*
* boxHeight: Height of the color display box.
* Default value: 20px
*
* columns: Number of columns to display. Color order may look strange if this is altered.
* Default value: 16
*
* insert: The position to insert the color chooser. 'before' or 'after'.
* Default value: 'after'
*
* colors: An array of colors to display, if you want to customize the default color set.
* Default value: default color set - see 'defaultColors' below.
*
* displayColorCode: Display the color code (eg #333333) as text inside the button. true or false.
* Default value: false
*
* colorCodeAlign: Text alignment used to display the color code inside the button. Only used if
* 'displayColorCode' is true. 'left', 'center' or 'right'
* Default value: 'center'
*
* colorCodeColor: Text color of the color code inside the button. Only used if 'displayColorCode'
* is true.
* Default value: '#FFF' or '#000', decided based on the color selected in the chooser.
*
* onSelect: Callback function to call after a color has been chosen. The callback
* function will be passed two arguments - the hex code of the selected color,
* and the input element that triggered the chooser.
* Default value: null
* Returns: hex value
*
* onCellEnter: Callback function that excecutes when the mouse enters a cell. The callback
* function will be passed two arguments - the hex code of the current color,
* and the input element that triggered the chooser.
* Default value: null
* Returns: hex value
*
* onClose: Callback function that executes when the chooser is closed. The callback
* function will be passed one argument - the input element that triggered
* the chooser.
* Default value: null
*
* hideInput If true, hides the original input when displaying the color picker.
* Default: true
*
* livePreview: The color display will change to show the color of the hovered color cell.
* The display will revert if no color is selected.
* Default value: false
*
* chooserCSS: An associative array of CSS properties that will be applied to the pop-up
* color chooser.
* Default value: see options.chooserCSS in the source
*
* displayCSS: An associative array of CSS properties that will be applied to the color
* display box.
* Default value: see options.displayCSS in the source
*
* inputCSS An associative array of CSS properties that will be applied to the form input
* ex. { 'float':'left' }
*
*/
/**
* Decides if the text should be white or black, based on the chooser's selected color.
*
* @param {string} hexColor - The color selected in the chooser.
*
* @return {string} - Either #FFF or #000.
*/
function getAdaptiveTextColor(hexColor) {
var matches = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hexColor);
if (!matches) return '#FFF';
var r = parseInt(matches[1], 16);
var g = parseInt(matches[2], 16);
var b = parseInt(matches[3], 16);
var isWhite = (0.213 * r / 255) + (0.715 * g / 255) + (0.072 * b / 255) < 0.5;
return isWhite ? '#FFF' : '#000';
}
/**
* Sets the color of the given chooser, applying the given options.
*
* @param {Object} displayBox - jQuery-enhanced color display box element.
* @param {string} color - The hex color that has been selected.
* @param {Object} options - The options specified by the user.
*/
var setColor = function(displayBox, color, options) {
var textColor = options.colorCodeColor || getAdaptiveTextColor(color);
displayBox.data('color', color).css({
color: textColor,
textAlign: options.colorCodeAlign,
backgroundColor: color
});
if (options.displayColorCode === true) {
displayBox.text(color);
}
}
$.fn.simpleColor = function(options) {
var element = this;
var defaultColors = [
'990033', 'ff3366', 'cc0033', 'ff0033', 'ff9999', 'cc3366', 'ffccff', 'cc6699',
'993366', '660033', 'cc3399', 'ff99cc', 'ff66cc', 'ff99ff', 'ff6699', 'cc0066',
'ff0066', 'ff3399', 'ff0099', 'ff33cc', 'ff00cc', 'ff66ff', 'ff33ff', 'ff00ff',
'cc0099', '990066', 'cc66cc', 'cc33cc', 'cc99ff', 'cc66ff', 'cc33ff', '993399',
'cc00cc', 'cc00ff', '9900cc', '990099', 'cc99cc', '996699', '663366', '660099',
'9933cc', '660066', '9900ff', '9933ff', '9966cc', '330033', '663399', '6633cc',
'6600cc', '9966ff', '330066', '6600ff', '6633ff', 'ccccff', '9999ff', '9999cc',
'6666cc', '6666ff', '666699', '333366', '333399', '330099', '3300cc', '3300ff',
'3333ff', '3333cc', '0066ff', '0033ff', '3366ff', '3366cc', '000066', '000033',
'0000ff', '000099', '0033cc', '0000cc', '336699', '0066cc', '99ccff', '6699ff',
'003366', '6699cc', '006699', '3399cc', '0099cc', '66ccff', '3399ff', '003399',
'0099ff', '33ccff', '00ccff', '99ffff', '66ffff', '33ffff', '00ffff', '00cccc',
'009999', '669999', '99cccc', 'ccffff', '33cccc', '66cccc', '339999', '336666',
'006666', '003333', '00ffcc', '33ffcc', '33cc99', '00cc99', '66ffcc', '99ffcc',
'00ff99', '339966', '006633', '336633', '669966', '66cc66', '99ff99', '66ff66',
'339933', '99cc99', '66ff99', '33ff99', '33cc66', '00cc66', '66cc99', '009966',
'009933', '33ff66', '00ff66', 'ccffcc', 'ccff99', '99ff66', '99ff33', '00ff33',
'33ff33', '00cc33', '33cc33', '66ff33', '00ff00', '66cc33', '006600', '003300',
'009900', '33ff00', '66ff00', '99ff00', '66cc00', '00cc00', '33cc00', '339900',
'99cc66', '669933', '99cc33', '336600', '669900', '99cc00', 'ccff66', 'ccff33',
'ccff00', '999900', 'cccc00', 'cccc33', '333300', '666600', '999933', 'cccc66',
'666633', '999966', 'cccc99', 'ffffcc', 'ffff99', 'ffff66', 'ffff33', 'ffff00',
'ffcc00', 'ffcc66', 'ffcc33', 'cc9933', '996600', 'cc9900', 'ff9900', 'cc6600',
'993300', 'cc6633', '663300', 'ff9966', 'ff6633', 'ff9933', 'ff6600', 'cc3300',
'996633', '330000', '663333', '996666', 'cc9999', '993333', 'cc6666', 'ffcccc',
'ff3333', 'cc3333', 'ff6666', '660000', '990000', 'cc0000', 'ff0000', 'ff3300',
'cc9966', 'ffcc99', 'ffffff', 'cccccc', '999999', '666666', '333333', '000000',
'000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000'
];
// Option defaults
options = $.extend({
defaultColor: this.attr('defaultColor') || '#FFF',
cellWidth: this.attr('cellWidth') || 10,
cellHeight: this.attr('cellHeight') || 10,
cellMargin: this.attr('cellMargin') || 1,
boxWidth: this.attr('boxWidth') || '115px',
boxHeight: this.attr('boxHeight') || '20px',
columns: this.attr('columns') || 16,
insert: this.attr('insert') || 'after',
colors: this.attr('colors') || defaultColors,
displayColorCode: this.attr('displayColorCode') || false,
colorCodeAlign: this.attr('colorCodeAlign') || 'center',
colorCodeColor: this.attr('colorCodeColor') || false,
hideInput: this.attr('hideInput') || true,
onSelect: null,
onCellEnter: null,
onClose: null,
livePreview: false
}, options || {});
// Figure out the cell dimensions
options.totalWidth = options.columns * (options.cellWidth + (2 * options.cellMargin));
// Custom CSS for the chooser, which relies on previously defined options.
options.chooserCSS = $.extend({
'border': '1px solid #000',
'margin': '0 0 0 5px',
'width': options.totalWidth,
'height': options.totalHeight,
'top': 0,
'left': options.boxWidth,
'position': 'absolute',
'background-color': '#fff'
}, options.chooserCSS || {});
// Custom CSS for the display box, which relies on previously defined options.
options.displayCSS = $.extend({
'background-color': options.defaultColor,
'border': '1px solid #000',
'width': options.boxWidth,
'height': options.boxHeight,
'line-height': options.boxHeight + 'px',
'cursor': 'pointer'
}, options.displayCSS || {});
// Custom CSS for the input field.
options.inputCSS = $.extend({}, options.inputCSS || {});
if (options.hideInput) {
// Hide the input unless configured otherwise.
this.hide();
} else {
// Apply custom CSS to the input field if it is visible.
this.css(options.inputCSS);
}
// This should probably do feature detection - I don't know why we need +2 for IE
// but this works for jQuery 1.9.1
if (navigator.userAgent.indexOf("MSIE")!=-1){
options.totalWidth += 2;
}
options.totalHeight = Math.ceil(options.colors.length / options.columns) * (options.cellHeight + (2 * options.cellMargin));
// Store these options so they'll be available to the other functions
// TODO - must be a better way to do this, not sure what the 'official'
// jQuery method is. Ideally i want to pass these as a parameter to the
// each() function but i'm not sure how
$.simpleColorOptions = options;
function buildChooser(index) {
options = $.simpleColorOptions;
// Create a container to hold everything
var container = $("<div class='simpleColorContainer' />");
// Absolutely positioned child elements now 'work'.
container.css('position', 'relative');
// Create the color display box
var defaultColor = (this.value && this.value != '') ? this.value : options.defaultColor;
var displayBox = $("<div class='simpleColorDisplay' />");
displayBox.css(options.displayCSS);
setColor(displayBox, defaultColor, options);
container.append(displayBox);
var selectCallback = function (event) {
// Bind and namespace the click listener only when the chooser is
// displayed. Unbind when the chooser is closed.
$('html').bind("click.simpleColorDisplay", function(e) {
$('html').unbind("click.simpleColorDisplay");
$('.simpleColorChooser').hide();
// If the user has not selected a new color, then revert the display.
// Makes sure the selected cell is within the current color chooser.
var target = $(e.target);
if (target.is('.simpleColorCell') === false || $.contains( $(event.target).closest('.simpleColorContainer')[0], target[0]) === false) {
setColor(displayBox, displayBox.data('color'), options);
}
// Execute onClose callback whenever the color chooser is closed.
if (options.onClose) {
options.onClose(element);
}
});
// Use an existing chooser if there is one
if (event.data.container.chooser) {
event.data.container.chooser.toggle();
// Build the chooser.
} else {
// Make a chooser div to hold the cells
var chooser = $("<div class='simpleColorChooser'/>");
chooser.css(options.chooserCSS);
event.data.container.chooser = chooser;
event.data.container.append(chooser);
// Create the cells
for (var i=0; i<options.colors.length; i++) {
var cell = $("<div class='simpleColorCell' id='" + options.colors[i] + "'/>");
cell.css({
'width': options.cellWidth + 'px',
'height': options.cellHeight + 'px',
'margin': options.cellMargin + 'px',
'cursor': 'pointer',
'lineHeight': options.cellHeight + 'px',
'fontSize': '1px',
'float': 'left',
'background-color': '#'+options.colors[i]
});
chooser.append(cell);
if (options.onCellEnter || options.livePreview) {
cell.bind('mouseenter', function(event) {
if (options.onCellEnter) {
options.onCellEnter(this.id, element);
}
if (options.livePreview) {
setColor(displayBox, '#' + this.id, options);
}
});
}
cell.bind('click', {
input: event.data.input,
chooser: chooser,
displayBox: displayBox
},
function(event) {
var color = '#' + this.id
event.data.input.value = color;
$(event.data.input).change();
setColor(displayBox, color, options);
event.data.chooser.hide();
// If 'displayColorCode' is turned on, display the currently selected color code as text inside the button.
if (options.displayColorCode) {
event.data.displayBox.text(color);
}
// If an onSelect callback function is defined then excecute it.
if (options.onSelect) {
options.onSelect(this.id, element);
}
});
}
}
};
// Also bind the display box button to display the chooser.
var callbackParams = {
input: this,
container: container,
displayBox: displayBox
};
displayBox.bind('click', callbackParams, selectCallback);
$(this).after(container);
$(this).data('container', container);
};
this.each(buildChooser);
$('.simpleColorDisplay').each(function() {
$(this).click(function(e){
e.stopPropagation();
});
});
return this;
};
/*
* Close the given color choosers.
*/
$.fn.closeChooser = function() {
this.each( function(index) {
$(this).data('container').find('.simpleColorChooser').hide();
});
return this;
};
/*
* Set the color of the given color choosers.
*
* @param {string} color - The hex color to select in the chooser.
*/
$.fn.setColor = function(color) {
this.each( function(index) {
var displayBox = $(this).data('container').find('.simpleColorDisplay');
setColor(displayBox, color, { displayColorCode: displayBox.data('displayColorCode') });
});
return this;
};
})(jQuery);