1.10.0 • Published 5 years ago

material-ui-superselectfield v1.10.0

Weekly downloads
1,921
License
MIT
Repository
github
Last release
5 years ago

material-ui-superSelectField

npm javascript style guide downloads
DeepScan Grade Known Vulnerabilities Codecov

Table of Contents

Preview (Live demo)

dataSource caseInsensitive chips

Installation

This component requires 3 peer dependencies :

  • react
  • react-dom
  • material-ui

... so make sure they are installed in your project.

yarn add material-ui-superselectfield

ES5 version

import SelectField from 'material-ui-superselectfield'

ES6+ version

import SelectField from 'material-ui-superselectfield/es'

Properties

NameTypeDefaultDescription
anchorOriginobject{ vertical: 'top', horizontal: 'left' }Anchor position of the menu, accepted values: top, bottom / left, right
autocompleteFilterfunctionsee belowProvide your own filtering parser. Default: case insensitive.The search field will appear only if there are more than 10 children (see showAutocompleteThreshold).By default, the parser will check for label props, 'value' otherwise.
canAutoPositionbooltrueIf present, this property allows the inner Popover component to position the menu in such way options are not hidden by the screen edges.
checkPositionstringPosition of the checkmark in multiple mode. Accepted values: '', left, right
childrenany[]Datasource is an array of any type of nodes, styled at your convenience./!\ REQUIRED: each node must expose a value property. This value property will be used by default for both option's value and label.A label property can be provided to specify a different value than value.
disabledboolfalseInclude this property to disable superSelectField.
elementHeightnumber, number[]36Height in pixels of each option element. If elements have different heights, you can provide them in an array.
errorTextstring or node''Include this property to show an error warning.
floatingLabelstring or nodeThe content to use for the floating label element.
hintTextstring'Click me'Placeholder text for the main selections display.
hintTextAutocompletestring or node'Type something'Placeholder text for the autocomplete.
keepSearchOnSelectboolfalsePrevents the autocomplete field's value to be reset after each selection.
multipleboolfalseInclude this property to turn superSelectField into a multi-selection dropdown. Checkboxes will appear.
namestringRequired to differentiate between multiple instances of superSelectField in same page.
nb2shownumber5Number of options displayed from the menu.
noMatchFoundnode'No match found'Placeholder text / node when the autocomplete filter fails.
openImmediatelyboolfalseMakes the menu opened on page load.
onAutoCompleteTypingfunction() => {}Exposes the word typed in AutoComplete. Useful for triggering onType API requests.
onChangefunction() => {}Triggers when closing the menu. Use this if you do not want to update your component state with each selection and only on menu close. signature: (selectedValues, name) with selectedValues array of selected values based on selected nodes' value property, and name the value of the superSelectField instance's name property
onMenuOpenfunction() => {}Triggers when opening the Menu.
onSelectfunction() => {}Triggers when selecting an item in the menu. Use this to update your componenet state with each selection from the menu (while still open). signature: (selectedValues, name) with selectedValues array of selected values based on selected nodes' value property, and name the value of the superSelectField instance's name property
showAutocompleteThresholdnumber, 'always', 'never'10Maximum number of options from which to display the autocomplete search field. For example, if autoComplete textfield needs to be disabled, just set this prop with a value higher than children length. However, if you need the autocomplete to show always, you may pass 'always'. This will open the menu even if there are no items to display. Passing 'never' will never show the autocomplete regadless of how many children are passed.
useLayerForClickAwayboolfalseIf true, the popover dropdown will render on top of an invisible layer, which will prevent clicks to the underlying elements, and trigger an onRequestClose('clickAway') call.
valuenull, object, object[]nullSelected value(s)./!\ REQUIRED: each object must expose a 'value' property.
withResetSelectAllButtonsboolfalsePaired with 'multiple', shows an header containing the 'RESET' and 'SELECT ALL' buttons.

Note when setting value

if multiple is set, value must be at least an empty Array.
For single value mode, you can set value to null.
When using objects, make sure they expose a non-null value property.
PropTypes should raise warnings if implementing otherwise.

Styling properties

NameTypeDefaultDescription
autocompleteStyleobjectAllows to change the styles of the auto-complete field (inner input component). Notice: margins left/right and width of the autocomplete root element are not customisable, (automatically calculated)
autocompleteUnderlineStyleobjectAllows to change the styles of the searchTextField's underline.
autocompleteUnderlineFocusStyleobjectAllows to change the styles of the searchTextField's underline when focused.
checkedIconSVGiconsee belowThe SvgIcon to use for the checked state. This is useful to create icon toggles.
dropDownIconSVGiconsee belowThe SvgIcon to use for the drop down icon in the select.
errorStyleobject{color: 'red'}Allows to change the style of error message's container. Will resolve only if errorText is defined.
floatingLabelStyleobjectAllows to change the styles of the floating label.
floatingLabelFocusStyleobjectAllows to change the styles of the floating label when focused.
innerDivStyleobject{}Styles applied to the inner div of MenuItems hosting each of your children components.
hoverColorstring'rgba(69, 90, 100, 0.1)'Overrides the hover background color.
menuStyleobject{}Styles applied to the comtainer which will receive your children components.
menuGroupStyleobject{}Styles applied to the MenuItems hosting your \.
menuFooterStyleobject{}Styles applied to the Menu's footer.
menuCloseButtonnodeA button for an explicit closing of the menu. Useful on mobiles.
noMatchFoundStyleobject{}Allows to change the style of the noMatchFound list item.
popoverClassNamestring''Sets the className property of the Popover component.
popoverWidthnumber180Sets the width of the Menu.The menu is the container for 4 main sub-components: the autocomplete textfield, the header for reset/selectAll buttons, the options container, and the footer.The menu width will always set its width to the highest value between popoverWidth prop(in px) or the root component width. The default value 180px were chosen so that the header's inner buttons don't overflow.
resetButtonnodesee belowNode used to deselect all options./!\ Requires withResetSelectAllButtons.
selectAllButtonnodesee belowNode used to select all options./!\ Requires withResetSelectAllButtons.
selectedMenuItemStyleobjectStyles to be applied to the selected MenuItem.
selectionsRendererfunctionsee belowProvide your own renderer for selected options. Defaults to concatenating children's values text. Check CodeExample4 for a more advanced renderer example.
styleobject{}Insert your own inlined styles, applied to the root component.
unCheckedIconSVGiconsee belowThe SvgIcon to use for the unchecked state. This is useful to create icon toggles.
underlineErrorStyleobject{borderColor: 'red'}Allows to change the style of the underline in error state. Will resolve only if errorText is defined.
underlineFocusStyleobjectAllows to change the styles of the underline when focused.
underlineStyleobjectAllows to change the styles of the underline.

Default functions

NameDefault function
autocompleteFilter(searchText, text) => !text || text.toLowerCase().includes(searchText.toLowerCase())
checkedIcon<CheckedIcon style={{ top: 'calc(50% - 12px)' }} />
dropDownIcon<DropDownArrow/>
resetButton<FlatButton label='reset' hoverColor='rgba(69, 90, 100, 0.1)' fullWidth />
selectAllButton<FlatButton label='select all' hoverColor='rgba(69, 90, 100, 0.1)' fullWidth labelStyle={{ whiteSpace: 'nowrap' }} />
unCheckedIcon<UnCheckedIcon style={{ top: 'calc(50% - 12px)' }} />
selectionsRenderer

Usage

Check the CodeExampleX.js provided in the repository.

Building

You can build the project with :

git clone https://github.com/Sharlaan/material-ui-superselectfield.git
yarn && yarn start

It should open a new page on your default browser @ localhost:3000

Linking in another local project

To test changes on a local build of SSF :

yarn build && yarn link

... then navigate into your local project directory, and type :

yarn link material-ui-superselectfield

/!\ Warning : if you reinstall dependencies in your project, this will break the link, you will have to re-link SSF.

Tests

yarn test

Contributing

Please follow these steps :

  • Fork the repo, then pull the forked repo locally.
  • Make your changes. Note: use incremental changes with atomic commits.
  • Add unit tests for any new or changed functionality.
  • Lint and test your code. Note: lint is automatically run before each commit, and test on prepush.
  • Add comments to explain critical or potentially hard to understand code and tests.
  • Once everything linted, tested and commented, push to your repo.
  • In original repo, click on New pull request button, then click on compare across forks, then in head fork button choose your forked repo.
  • Explain the PR, and check any potential conflicts before saving.
  • ADMIN ONLY Check, make comments/suggestions and eventually merge the PR.
  • ADMIN ONLY(https://tailordev.fr/blog/2018/03/15/automated-npm-releases-with-travis-ci#bonus-npm-releases-like-a-pro) on Master branch with npm version patch|minor|major --git-tag-version MUIv0.x|MUIv1 then push. Note : NWB will automatically publish it upon detecting the version bump in package.json.

Known bugs

  • keyboard-focus handling combined with optgroups and autocompleted results

TodoList

  • implement select all and reset, for multiple mode

  • implement onClose handler for multiple mode, to allow registering selected values in oneshot instead of exposing values at each selection (ie one single server request)

  • set autoWidth to false automatically if width prop has a value

  • add a css rule for this.root :focus { outline: 'none' }, and :hover { darken }

  • add tests for focus states/styles when tabbing between multiple superSelectFields

  • add tests for keystrokes

  • add proptypes checking for value and children

  • support of \

  • implement selectable \ to select all inner children

  • check rendering performance with 200 MenuItems (integrate react-infinite)

  • implement the container for errors (absolutely positioned below the focusedLine)

    Expose more props :

    • noMatchFound message
    • floatingLabelText
    • canAutoPosition
    • checkPosition
    • anchorOrigin
    • popoverStyle
    • hoverColor
    • disabled
    • required
    • errorMessage
    • errorStyle
    • classeNames for sub-components
    • maxSelection
  • add props.disableAutoComplete (default: false), or a nbItems2showAutocomplete (default: null, meaning never show the searchTextField)

  • make Autocomplete appears only if current numberOfMenuItems > props.autocompleteTreshold

  • implement a checkboxRenderer for MenuItem (or expose 2 properties CheckIconFalse & CheckIconTrue)

  • make a PR reimplementing MenuItem.insetChildren replaced with checkPosition={'left'(default) or 'right'}

  • add an example with GooglePlaces

  • add an example with ReduxForm
1.10.0

5 years ago

1.9.8

6 years ago

1.9.7

6 years ago

1.9.6

6 years ago

1.9.5

6 years ago

1.9.4

6 years ago

1.9.3

6 years ago

1.9.2

6 years ago

1.9.1

6 years ago

1.9.0

6 years ago

1.8.11

6 years ago

1.8.10

6 years ago

1.8.9

6 years ago

1.8.8

6 years ago

1.8.7

6 years ago

1.8.6

6 years ago

1.8.5

6 years ago

1.8.4

6 years ago

1.8.3

6 years ago

1.8.2

6 years ago

1.8.1

6 years ago

1.8.0

6 years ago

1.7.4

6 years ago

1.7.3

6 years ago

1.7.2

6 years ago

1.7.1

6 years ago

1.7.0

7 years ago

1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.6

7 years ago

1.5.5

7 years ago

1.5.4

7 years ago

1.5.3

7 years ago

1.5.2

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago