Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Listbox for Buckeye UX
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dan Keck
Listbox for Buckeye UX
Commits
5b2014dd
Commit
5b2014dd
authored
1 year ago
by
Dan Keck
Browse files
Options
Downloads
Patches
Plain Diff
Fixed naming
parent
70272132
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
listbox.bux.css
+9
-9
9 additions, 9 deletions
listbox.bux.css
listbox.bux.js
+44
-21
44 additions, 21 deletions
listbox.bux.js
sample.html
+1
-1
1 addition, 1 deletion
sample.html
with
54 additions
and
31 deletions
listbox.bux.css
+
9
−
9
View file @
5b2014dd
.bux-
multiselection-dropdown
button
,
.bux-
multiselection-dropdown
button
:hover
.bux-
listbox
button
,
.bux-
listbox
button
:hover
{
background-color
:
#fff
;
text-align
:
left
;
...
...
@@ -10,14 +10,14 @@
padding
:
0.625rem
1.25rem
0.625rem
6px
;
color
:
#000
;
}
.bux-
multiselection-dropdown
button
:focus
.bux-
listbox
button
:focus
{
background-color
:
#fff
;
color
:
#000
;
outline
:
2px
solid
#3492b8
;
border
:
2px
solid
#212325
;
}
.bux-
multiselection-dropdown
.bux-checkbox
.bux-
listbox
.bux-checkbox
{
border
:
2px
solid
#212325
;
background-color
:
#fff
;
...
...
@@ -29,20 +29,20 @@
border
:
2px
solid
#B0B0B0
;
box-shadow
:
1px
1px
5px
#C0C0C0
;
}
.bux-
multiselection-dropdown
tr
:hover
,
.bux-
multiselection-dropdown
tr
:focus-within
.bux-
listbox
tr
:hover
,
.bux-
listbox
tr
:focus-within
{
background-color
:
#E0E0E6
;
}
.bux-
multiselection-dropdown
fieldset
table
.bux-
listbox
fieldset
table
{
width
:
100%
;
}
.bux-
multiselection-dropdown
fieldset
td
.bux-
listbox
fieldset
td
{
padding
:
8px
8px
8px
8px
;
}
.bux-
multiselection-dropdown
fieldset
.bux-checkbox__option
.bux-
listbox
fieldset
.bux-checkbox__option
{
margin
:
0
0.125rem
0
0.125rem
;
}
This diff is collapsed.
Click to expand it.
listbox.bux.js
+
44
−
21
View file @
5b2014dd
// opening = true, false, or the word "toggle"
function
bux
MultiselectionDropdown
ChangeState
(
$
multiselect
,
opening
,
focus
)
function
bux
Listbox
ChangeState
(
$
listbox
,
opening
,
focus
)
{
var
$checkboxContainer
=
$
multiselect
.
find
(
"
.bux-checkbox
"
);
var
$button
=
$
multiselect
.
find
(
"
button
"
);
var
$checkboxContainer
=
$
listbox
.
find
(
"
.bux-checkbox
"
);
var
$button
=
$
listbox
.
find
(
"
button
"
);
if
(
opening
==
"
toggle
"
)
{
...
...
@@ -22,39 +22,44 @@ function buxMultiselectionDropdownChangeState($multiselect, opening, focus)
}
}
// Update the text of the button to reflect the newly selected values.
$
(
document
).
on
(
"
refreshText
"
,
"
.bux-multiselection-dropdown button
"
,
function
()
function
buxListboxUpdateButtonText
(
$listbox
)
{
var
$multiselect
=
$
(
this
).
parent
().
parent
();
var
selectedLabels
=
$multiselect
.
find
(
"
input[type=checkbox]:checked
"
).
toArray
().
map
(
cb
=>
{
return
$
(
cb
).
parent
().
find
(
"
label
"
).
text
();
}).
join
(
"
,
"
);
var
selectedLabels
=
$listbox
.
find
(
"
input[type=checkbox]:checked
"
).
toArray
().
map
(
cb
=>
{
return
$
(
cb
).
parent
().
find
(
"
label
"
).
text
();
}).
join
(
"
,
"
);
if
(
selectedLabels
.
trim
().
length
==
0
)
selectedLabels
=
"
"
;
$
(
this
).
html
(
selectedLabels
);
$listbox
.
find
(
"
button
"
).
html
(
selectedLabels
);
}
// Update the text of the button to reflect the newly selected values.
$
(
document
).
on
(
"
refreshText
"
,
"
.bux-listbox button
"
,
function
()
{
var
$listbox
=
$
(
this
).
parent
().
parent
();
buxListboxUpdateButtonText
(
$listbox
);
});
// User changed state of a checkbox.
$
(
document
).
on
(
"
change
"
,
"
.bux-
multiselection-dropdown
input[type=checkbox]
"
,
function
()
$
(
document
).
on
(
"
change
"
,
"
.bux-
listbox
input[type=checkbox]
"
,
function
()
{
var
$
multiselect
=
$
(
this
).
parent
().
parent
().
parent
().
parent
().
parent
().
parent
().
parent
().
parent
();
$
multiselect
.
find
(
"
button
"
).
trigger
(
"
refreshText
"
);
var
$
listbox
=
$
(
this
).
parent
().
parent
().
parent
().
parent
().
parent
().
parent
().
parent
().
parent
();
$
listbox
.
find
(
"
button
"
).
trigger
(
"
refreshText
"
);
});
// User toggled open the checkbox list.
$
(
document
).
on
(
"
click
"
,
"
.bux-
multiselection-dropdown
button
"
,
function
()
$
(
document
).
on
(
"
click
"
,
"
.bux-
listbox
button
"
,
function
(
e
)
{
var
$
multiselect
=
$
(
this
).
parent
().
parent
();
bux
MultiselectionDropdown
ChangeState
(
$
multiselect
,
"
toggle
"
,
true
);
var
$
listbox
=
$
(
this
).
parent
().
parent
();
bux
Listbox
ChangeState
(
$
listbox
,
"
toggle
"
,
true
);
});
// Handle keystrokes inside the checkbox list.
$
(
"
.bux-
multiselection-dropdown
"
).
on
(
"
keyup
"
,
"
input[type=checkbox]
"
,
function
(
e
)
$
(
"
.bux-
listbox
"
).
on
(
"
keyup
"
,
"
input[type=checkbox]
"
,
function
(
e
)
{
var
$tr
=
$
(
this
).
parent
().
parent
().
parent
();
var
$table
=
$tr
.
parent
();
var
$
multiselect
=
$table
.
parent
().
parent
().
parent
().
parent
();
var
$
listbox
=
$table
.
parent
().
parent
().
parent
().
parent
();
if
(
e
.
key
===
"
Escape
"
||
e
.
key
===
"
Enter
"
)
if
(
e
.
key
===
"
Escape
"
)
{
bux
MultiselectionDropdown
ChangeState
(
$
multiselect
,
false
,
true
);
bux
Listbox
ChangeState
(
$
listbox
,
false
,
true
);
e
.
preventDefault
();
}
...
...
@@ -66,7 +71,7 @@ $(".bux-multiselection-dropdown").on("keyup", "input[type=checkbox]", function(e
case
"
End
"
:
$table
.
children
().
last
().
find
(
"
input[type=checkbox]
"
).
focus
();
e
.
preventDefault
();
break
;
}
});
$
(
"
.bux-
multiselection-dropdown
"
).
on
(
"
keydown
"
,
"
input[type=checkbox]
"
,
function
(
e
)
$
(
"
.bux-
listbox
"
).
on
(
"
keydown
"
,
"
input[type=checkbox]
"
,
function
(
e
)
{
switch
(
e
.
key
)
{
...
...
@@ -77,6 +82,24 @@ $(".bux-multiselection-dropdown").on("keydown", "input[type=checkbox]", function
}
});
// Close the checkbox list with Escape
$
(
"
.bux-listbox
"
).
on
(
"
keyup
"
,
"
button
"
,
function
(
e
)
{
var
$listbox
=
$
(
this
).
parent
().
parent
();
if
(
e
.
key
===
"
Escape
"
)
{
buxListboxChangeState
(
$listbox
,
false
,
true
);
e
.
preventDefault
();
}
s
});
// User leaves the checkbox list.
$
(
document
).
mouseup
(
function
(
e
)
{
$
(
"
.bux-multiselection-dropdown
"
).
each
(
function
(
i
,
ms
)
{
var
$ms
=
$
(
ms
);
if
(
!
$ms
.
is
(
e
.
target
)
&&
$ms
.
has
(
e
.
target
).
length
===
0
)
buxMultiselectionDropdownChangeState
(
$ms
,
false
);
});
});
$
(
document
).
keyup
(
function
(
e
)
{
$
(
"
.bux-multiselection-dropdown
"
).
each
(
function
(
i
,
ms
)
{
var
$ms
=
$
(
ms
);
if
(
!
$ms
.
is
(
e
.
target
)
&&
$ms
.
has
(
e
.
target
).
length
===
0
)
buxMultiselectionDropdownChangeState
(
$ms
,
false
);
});
});
$
(
document
).
mouseup
(
function
(
e
)
{
$
(
"
.bux-listbox
"
).
each
(
function
(
i
,
ms
)
{
var
$ms
=
$
(
ms
);
if
(
!
$ms
.
is
(
e
.
target
)
&&
$ms
.
has
(
e
.
target
).
length
===
0
)
buxListboxChangeState
(
$ms
,
false
);
});
});
$
(
document
).
keyup
(
function
(
e
)
{
$
(
"
.bux-listbox
"
).
each
(
function
(
i
,
ms
)
{
var
$ms
=
$
(
ms
);
if
(
!
$ms
.
is
(
e
.
target
)
&&
$ms
.
has
(
e
.
target
).
length
===
0
)
buxListboxChangeState
(
$ms
,
false
);
});
});
// Initialization
$
(
function
()
{
$
(
"
.bux-listbox
"
).
each
((
i
,
lb
)
=>
buxListboxUpdateButtonText
(
$
(
lb
)));
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
sample.html
+
1
−
1
View file @
5b2014dd
...
...
@@ -15,7 +15,7 @@
<main>
<div
class=
"bux-container bux-grid"
>
<div
class=
"bux-grid__cell bux-grid__cell--12"
>
<div
class=
"bux-selection-dropdown bux-
multiselection-dropdown
"
>
<div
class=
"bux-selection-dropdown bux-
listbox
"
>
<label
for=
"weekdays"
class=
"bux-selection-dropdown__label"
>
Weekdays
</label>
<div
class=
"bux-selection-dropdown__input"
>
<button
id=
"weekdays"
type=
"button"
name=
"weekdays"
role=
"combobox"
aria-expanded=
"false"
aria-controls=
"weekdays-checkboxlist"
aria-description=
"multiselect"
>
</button>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment