-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathbootstrap-navbar-dropdowns.js
55 lines (50 loc) · 2.14 KB
/
bootstrap-navbar-dropdowns.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
(function ($) {
$.fn.navbarDropdown = function (pluginOptions) {
const options = Object.assign({
theme: 'bs4', // bs3 | bs4 | bs5
trigger: 'click', // click | mouseover
dropdownSelector: null
}, pluginOptions);
if (!options.dropdownSelector) {
switch (options.theme) {
case 'bs3':
options.dropdownSelector = '.dropdown';
break;
case 'bs4':
options.dropdownSelector = '.dropdown-item.dropdown';
break;
case 'bs5':
options.dropdownSelector = '.dropdown';
break;
}
}
$(this).addClass(`nv-dropdown-${options.theme}`);
$(this).find(options.dropdownSelector).on(options.trigger, function (e) {
const $el = $(this).children('.dropdown-toggle');
if ($el.length > 0 && $(e.target).hasClass('dropdown-toggle')) {
var $parent = $el.offsetParent(".dropdown-menu");
$(this).parent("li").toggleClass('open');
if (!$parent.parent().hasClass('navbar-nav')) {
if ($parent.hasClass('show')) {
$parent.removeClass('show');
$el.next().removeClass('show');
$el.next().css({"top": -999, "left": -999});
} else {
$parent.parent().find('.show').removeClass('show');
$parent.addClass('show');
$el.next().addClass('show');
$el.next().css({"top": $el[0].offsetTop, "left": $parent.outerWidth() - 4});
}
e.preventDefault();
e.stopPropagation();
}
return this;
}
});
$(this).find(options.dropdownSelector).on('hidden.bs.dropdown', function () {
$(this).find('li.dropdown').removeClass('show open');
$(this).find('ul.dropdown-menu').removeClass('show open');
});
return this;
};
}(jQuery));