Skip to content

modifiers with props #1

Open
Open
@azu

Description

@azu

I think it is difficult to create expected class name string by suitcss-classnames.

    static propTypes = {
        align: React.PropTypes.oneOf(["left", "center", "right"])
    };

    render() {
        // <Component>--modifier
        const names = suitClassNames({
            component: this.constructor.name,
            modifiers: {
                align: this.props.align
            }
        });
        // `Component--alignLeft` is happy!
   }

ref: suitcss/components-grid: Component CSS for grids

Component--alignLeft is suitabe classname. But, current result is Component--align :(

vs.

        const names = suitClassNames({
            component: this.constructor.name,
            modifiers: {
                align: this.props.align
            }
        });

should be Component--alignLeft.

OR

Provide alternative way of creating.

        const names = suitClassNames({
            component: this.constructor.name,
            modifiers: {
                [`align${this.props.align}`]: this.props.align
            }
        });

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions