This project is archived and not maintained anymore.
(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-react');
// es6
import Flounder from 'flounder-react';
// react ReactDOM.render( React.createElement( FlounderReact, configOptions ), target );
// react (JSX) React.render( , target );
// react has some caveats. If you want to use react flounder, you should // build it from the source file. ./dist/flounder.react.js is so // large because it already has a copy of react included. Additionally, // react flounder can only be attached to a container, and not an // INPUT or SELECT
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( '#flounder--wrapper--thing' ).flounder.destroy()
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,
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 ){}
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. -
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 -
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;
}
} );
a react flounder
react flounder can only be attached to container elements (div, span, etc)
ReactDOM.render( React.createElement( FlounderReact, {
placeholder : 'placeholders!',
onInit : function()
{
var res = [];
data.forEach( function( dataObj )
{
res.push( {
text : dataObj.text,
value : dataObj.id
} );
} );
this.data = res;
} } ), document.getElementById( 'example' )
);
The result of either of these is shown here (only styled with the structural css)
closed
open menu
1 selected
See more examples on the demo page
When you release a new verion, commit it to dev (keeps dev upto date), commit it to master, then commit it to release. It must be released from the release
branch. It is the only branch that commits the dist files
- 0.1.2
-
spread switched back to slice due to ie incompatabillity
-
0.1.0
-
use strict removed
-
slice switched for spread
-
only flounder is exported by default
-
flounder version bumped to 0.8.1
-
test, demo, and npm scripts changed to reflect flounder changes
-
0.0.9
-
dist added to package.json
-
0.0.7
-
finished seperating flounder and flounder-react
-
0.0.6
- tests
- exist