Last active
October 18, 2018 06:45
-
-
Save mendaomn/e6e9f0f806bde83c8fc19ceb2a2879a0 to your computer and use it in GitHub Desktop.
Implementation of Elm's classList function. Allows to conditionally apply classes according to the current state
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileOverview Implementation of Elm's classList function. | |
* Allows to conditionally apply classes according to the current state | |
* [source]{@link https://package.elm-lang.org/packages/evancz/elm-html/3.0.0/Html-Attributes#classList} | |
* | |
* @param {string[ [string, bool] ]} rules - An array of rules. Every rule has 2 elements: | |
* element.0: string, the class you want to apply | |
* element.1: bool, whether or not to apply the class | |
* @return {string} - The interpolated string of classes | |
* | |
* @example | |
* // returns 'class1' | |
* classList([ ['class1', true], ['class2', false] ]) | |
* | |
* @example | |
* // returns '' | |
* classList([ ['class1', false], ['class2', false] ]) | |
* | |
* @example | |
* // return 'active' or '' according to the value in this.state.isActive | |
* classList([ ['active', this.state.isActive] ]) | |
*/ | |
export default function classList(rules) { | |
return rules.filter(rule => rule[1]) | |
.map(rule => rule[0]) | |
.join(' ') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment