(for modern browsers and ie9+)
Flounder is a styled select box replacement aimed at being easily configurable while conforming to native functionality and accessibility standards.
// npm
require('flounder');
// es6
import Flounder from 'flounder';
Flounder can be used in vanilla js, requirejs, jquery, and microbe.
// vanilla
new Flounder( target, configOptions );
// requirejs
requirejs( [ 'flounder' ], function( Flounder )
{
new Flounder( target, configOptions );
} );
// jQuery plugin
$( '.example--class' ).flounder( configOptions );
// microbe plugin
µ( '.example--class' ).flounder( configOptions )
Flounder also adds a reference of itself to its target element. So if you lose the reference, you can just grab it from the element again
document.querySelector( '#vanilla--select' ).flounder.destroy()
###Target options
Flounder's target is quite flexible.
you can give it an element:
new Flounder( document.getElementsByTagName( 'input--el' )[0], options );
an array:
new Flounder( [ el1, el2, el3 ], options );
an HTML collection:
new Flounder( document.getElementsByTagName( 'input' ), options );
a jQuery object:
new Flounder( $( 'input' ), options );
a microbe:
new Flounder( µ( 'input' ), options );
or, just a selector string:
new Flounder( 'input', options );
If flounder is fed an element that already has a flounder, it will destroy it and re initialize it with the new options.
###Available config options
{
allowHTML : false,
classes : {
flounder : 'class--to--give--the--main--flounder--element',
hidden : 'class--to--denote--hidden',
selected : 'class--to--denote--selected--option',
wrapper : 'additional--class--to--give--the--wrapper'
},
data : dataObject,
defaultEmpty : true,
defaultValue : defaultValue,
defaultIndex : defaultIndex,
disableArrow : false,
keepChangesOnDestroy : false,
multiple : false,
multipleTags : false,
multipleMessage : '(Multiple Items Selected)',
onClose : function( e, valueArray ){},
onComponentDidMount : function(){},
onComponentWillUnmount : function(){},
onFirstTouch : function( e ){},
onInit : function(){},
onOpen : function( e, valueArray ){},
onSelect : function( e, valueArray ){}
openOnHover : false,
placeholder : 'Please choose an option',
search : false,
selectDataOverride : false
}
-
allowHTML
- (boolean) Renders the data text as HTML. With this option enabled, any api call that must compare text will need the exact html in order to be a match -
classes
- (object) Contains configurable classes for various elements. The are additional classes, not replacement classes. -
data
- (array) select box options to build in the select box. Can be organized various ways -
defaultEmpty
- (boolean) first in priority, this makes the flounder start with a blank valueless option -
defaultValue
- (string) Sets the default value to the passed value but only if it matches one of the select box options. Multi-tag select boxes only support placeholders -
defaultIndex
- (number) Sets the default option to the passed index but only if it exists. This overrides defaultValue. Multi-tag select boxes only support placeholders. -
disableArrow
- (boolean) does not add the dropdown arrow element -
keepChangesOnDestroy
- (boolean) Determines whether on destroy the old element is restored, or the flounder changes to the select box are kept. This only applies when the initial element for flounder is a select box -
multiple
- (boolean) Determines whether it is a multi-select box or single -
multipleTags
- (boolean) Determines how a multi-select box is displayed -
multipleMessage
- (string) If there are no tags, this is the message that will be displayed in the selected area when there are multiple options selected -
onClose
- (function) Triggered when the selectbox is closed -
onComponentDidMount
- (function) Triggered when the selectbox is finished building -
onComponentWillUnmount
- (function) Triggered right before flounder is removed from the dom -
onFirstTouch
- (function) Triggered the first time flounder is interacted with. An example usage would be calling an api for a list of data to populate a drop down, but waiting to see if the user interacts with it -
onInit
- (function) Triggered when the selectbox is initiated, but before it's built -
onOpen
- (function) Triggered when the selectbox is opened -
onSelect
- (function) Triggered when an option selectbox is closed -
openOnHover
- (boolean) replaces click to open action with hover -
placeholder
- (string) Builds a blank option with the placeholder text that is selected by default. This overrides defaultIndex -
search
- (boolean) Determines whether the select box is searchable -
selectDataOverride
- (boolean) If this is true, flounder will ignore sleect box options tags and just apply the passed data
IMPORTANT DEFAULT PRIORITY
1 ) placeholder
2 ) defaultIndex
3 ) defaultValue
4 ) whatever is at index 0
selectbox data must be passed as an array of objects
[
{
text : 'probably the string you want to see',
value : 'return value',
description : 'a longer description of this element', // optional, string
extraClass : 'extra--classname', // optional, string
disabled : false // optional, boolean
},
...
]
or a simple array of strings. The passed text will be both the text and the value. There would be no description in this case
[
'value 1',
'value 2',
'value 3',
...
]
or, if you want section headers. You can even add uncatagorized things intermingled
[
{
header : header1,
data : [ option1, option2, ... ]
},
{
text : 'probably the string you want to see',
value : 'return value',
description : 'a longer description of this element'
},
{
header : header2,
data : [ option1, option2, ... ]
},
...
]
all extra properties passed in an option that are not shown here will be added as data attributes for the sake of reference later. The data can be accessed in the init (before building) as this.data if they need reformatting or filtering.
These functions are intended for use in the user provided event callbacks
this.buildFromUrl( url, callback )
this.clickByIndex( index, multiple )
this.clickByText( text, multiple )
this.clickByValue( value, multiple )
this.deselectAll()
this.destroy()
this.disable( bool )
this.disableByIndex( index )
this.disableByText( text )
this.disableByValue( value )
this.enableByIndex( index )
this.enableByText( text )
this.enableByValue( value )
this.getData( [ num ] )
this.getSelected()
this.getSelectedValues()
this.loadDataFromUrl( url, callback )
this.props
this.rebuild( [ data, props ] )
this.refs
this.setByIndex( index, multiple )
this.setByText( text, multiple )
this.setByValue( value, multiple )
-
buildFromUrl( url, callback )
loads data from a remote address, passes it to a callback, then builds the flounder object -
clickByIndex( index, multiple )
sets the item with the passed index as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This fires the onClick event. A negative index will start counting from the end. -
clickByText( text, multiple )
sets the item with the passed text as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This fires the onClick event -
clickByValue( value, multiple )
sets the item with the passed value as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This fires the onClick event -
deselectAll()
deselects all data -
destroy()
removes event listeners, then flounder. this will return the element to it's original state -
disable( bool )
disables or reenables flounder -
disableByIndex( index )
disables a flounder option by index. A negative index will start counting from the end. -
disableByText( text )
disables a flounder option by text -
disableByValue( value )
disables a flounder option by value -
enableByIndex( index )
enables a flounder option by index. A negative index will start counting from the end. -
enableByText( text )
enables a flounder option by text -
enableByValue( value )
enables a flounder option by value -
getData( [ num ] )
returns the option element and the div element at a specified index as an object{ option : option element, div : div element }
. If no number is given, it will return all data. -
getSelected()
returns the currently selected option tags in an array -
getSelectedValues()
returns the currently selected values in an array -
loadDataFromUrl( url, callback )
loads data from a remote address and returns it to a passed callback. -
props
the props set in the initial constructor -
rebuild( data, props )
rebuilds the select box options with new or altered data. If props are set, this completely rebuilds flounder -
refs
contains references to all flounder elements -
setByIndex( index, multiple )
sets the item with the passed index as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This does not fire the onClick event. A negative index will start counting from the end. -
setByText( text, multiple )
sets the item with the passed text as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This does not fire the onClick event. -
setByValue( value, multiple )
sets the item with the passed value as selected. If multiple is true and it is a multi-select box, it is selected additionally. Otherwise it's selected instead. This accepts arrays as well. Without multiple equaling true it will only select the last option. This does not fire the onClick event.
We gladly accept and review any pull-requests. Feel free! ❤️
Otherwise, if you just want to talk, we are very easy to get a hold of!
- Slack: flounder.slack.com
- Email: flounder@knoblau.ch
- Web: http://flounderjs.com/
- Git: https://github.com/sociomantic-tsunami/flounder/
This project adheres to the Contributor Covenant. By participating, you are expected to honor this code.
Need to report something? flounder@knoblau.ch
Given the example data:
var data = [
{
cssClass : 'select-filters',
id : 'All',
isTaxonomy : true,
text : 'All'
},
{
cssClass : 'category',
id : 'category',
isTaxonomy : true,
text : 'Categories'
},
{
cssClass : 'tag',
id : 'tag',
isTaxonomy : true,
text : 'Tags'
}
];
a vanilla flounder
flounder can be attached to basically anything
new flounder( document.getElementById( 'example' ), {
placeholder : 'placeholders!',
onInit : function()
{
var res = [];
data.forEach( function( dataObj )
{
res.push( {
text : dataObj.text,
value : dataObj.id
} );
} );
this.data = res;
}
} );
The result of these is shown here (only styled with the structural css)
closed
open menu
1 selected
See more examples on the demo page
-
css
- arrow changed from svg to css
-
build
- fixed a complex data objects bug
-
build
- complex data objects are now built correctly
- added the ability to disable the arrow element
-
wrappers
- react moved to it's own repo
-
css
- .flounder__arrow - background colors
- .flounder__arrow - :hover
- .flounder__arrow - :active
-
events
- hover is now javascript based for future expandability
- openOnHover now available
-
defaults
- fixed a bug where multiple defaults were being applied
-
api fixed a bug in setDefaultValue concerning index 0
-
api
- fixed a specificity css issue preventing disabling things
- fixed a type issue that prevented disabling by value
-
build
- elements are now properly disabled with the disabled flag
-
defaults
- added defaultEmpty
- fix removeAllChildren when selectDataOverride option is passed
-
events
- fixed addPlaceholder method for blur of opened dropdown
- onSelect now reacts on change events
-
traviscli
- dropped support for node 0.11
- added support for node 5.0.0
-
tests
- add test "blurOpenedDropdown" to cover fix
-
tests
- version test completed
- default priority fixed
-
default
- priority fixed
- null default bug fixed
-
tests
- utils tests completed
-
demo
- updates and cleanup
-
documentation
- repo url updategi
- general updates and clean up
- api
- added allowHTML
To keep the length of this file down, older changes are here