-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdcf.js
97 lines (86 loc) · 3.25 KB
/
dcf.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
/**
* Custom Form Field Implementations
* Simplified Drupalized version, based on Filament Group's customfileinput plugin.
* @see: https://github.com/filamentgroup/jQuery-Custom-File-Input
*
* @author Peter Briers
* @version 0.2
*/
(function( $ ) {
$.fn.dcfFile = function() {
var $input = $('input:first', this);
var $container = $input.wrap('<div class="dcf-container dcf-file">').parent();
var $replacement = $('<div class="dcf-replacement"></div>').insertAfter($input);
var $button = $('<span class="dcf-button">Choose file</span>').appendTo($replacement);
var $feedback = $('<span class="dcf-feedback">No file selected...</span>').appendTo($replacement);
$container
.click(function(event) {
$input.trigger('click');
});
$input
.addClass('dcf-input')
.bind('change',function() {
var filename = $(this).val().split(/\\/).pop();
$feedback.text(filename);
})
.click(function(event) {
$input.data('val', $input.val());
//for IE and Opera, make sure change fires after choosing a file, using an async callback
setTimeout(function(){ $input.trigger('checkChange'); }, 100);
event.stopPropagation();
})
.bind('checkChange', function(){
if($input.val() && $input.val() != $input.data('val')){
$input.trigger('change');
}
});
}
$.fn.dcfSelect = function() {
$('select').each(function() {
var $input = $(this);
var $container = $input.wrap('<div class="dcf-container dcf-select">').parent();
var $replacement = $('<div class="dcf-replacement"></div>').insertAfter($input);
var $button = $('<span class="dcf-button"></span>').appendTo($replacement);
var $feedback = $('<span class="dcf-feedback"></span>').appendTo($replacement);
var select_text = function() {
var currentSelected = $container.find(':selected');
var html = currentSelected.html() || ' ';
$feedback.html(html);
}
$input
.addClass('dcf-input')
.live('change',function() { // jquery > 1.7: change 'live' to 'on' (live is deleted)
select_text();
});
select_text();
});
}
$.fn.dcfCheckbox = function() {
// Add checked class to checkbox labels.
$('label', this).click(function() {
$(this).toggleClass('checked');
});
}
$.fn.dcfRadio = function() {
// Add checked class to radio button labels.
$('.form-type-radio .form-radio:checked').parent().find('label').addClass('checked');
$('.form-type-radio label').click(function() {
if (! $(this).hasClass('checked')) {
$(this).toggleClass('checked');
$('.form-type-radio label').not(this).removeClass('checked');
}
// Clicking label not fully triggers checkbox to be checked in IE (MOBICZ-406).
var checkbox = $(this).closest('.form-radio');
var forAttribute = $(this).attr('for');
if (!checkbox.is(':checked') && forAttribute !== '') {
$('#' + forAttribute).click().change();
}
});
}
$.dcf = function() {
$('.form-type-file, .form-managed-file').dcfFile();
$('.form-type-checkbox').dcfCheckbox();
$('.form-type-radio').dcfRadio();
$('.form-type-select').dcfSelect();
}
})( jQuery );