1.4.0 • Published 4 years ago

@trendmicro/react-dropdown v1.4.0

Weekly downloads
4,516
License
MIT
Repository
github
Last release
4 years ago

react-dropdown build status Coverage Status

NPM

React Dropdown

Demo: https://trendmicro-frontend.github.io/react-dropdown

Installation

  1. Install the latest version of react and react-dropdown:

    npm install --save react @trendmicro/react-dropdown
  2. At this point you can import @trendmicro/react-dropdown and its styles in your application as follows:

    import Dropdown, {
        DropdownToggle,
        DropdownMenu,
        DropdownMenuWrapper,
        MenuItem,
        DropdownButton
    } from '@trendmicro/react-dropdown';
    
    // Be sure to include styles at some point, probably during your bootstraping
    import '@trendmicro/react-buttons/dist/react-buttons.css';
    import '@trendmicro/react-dropdown/dist/react-dropdown.css';

Recommended Setup

Create a common components directory including both Buttons and Dropdown components, as shown below:

components/
  Buttons/
    index.js
  Dropdown/
    index.js

components/Buttons/index.js

import '@trendmicro/react-buttons/dist/react-buttons.css';

export { Button, ButtonGroup, ButtonToolbar } from '@trendmicro/react-buttons';

components/Dropdown/index.js

import '@trendmicro/react-dropdown/dist/react-dropdown.css';
import Dropdown from '@trendmicro/react-dropdown';
import '../Buttons'; // Ensure CSS dependency

export default Dropdown;
export {
    DropdownToggle,
    DropdownMenu,
    DropdownMenuWrapper,
    MenuItem,
    DropdownButton
} from '@trendmicro/react-dropdown';

Then, import Dropdown component in your code:

import Dropdown from './components/Dropdown';

Custom Styling

You can make style changes using inline styles or styled-components, and specify propTypes and defaultProps by setting them as properties on the function.

Inline Styles

const CustomDropdownMenu = (props) => (
    <Dropdown.Menu {...props} style={{ padding: '2px 0' }} />
);
CustomDropdownMenu.propTypes = Dropdown.Menu.propTypes;
CustomDropdownMenu.defaultProps = Dropdown.Menu.defaultProps;

Styled Components

const CustomDropdownMenu = styled(Dropdown.Menu)`
    padding: 2px 0;
`;
CustomDropdownMenu.propTypes = Dropdown.Menu.propTypes;
CustomDropdownMenu.defaultProps = Dropdown.Menu.defaultProps;

To increase the CSS specificity of a rule, you can simply repeat a selector, like so:

const CustomMenuItem = styled(MenuItem)`
&& {
    a {
        &:hover {
            background: ${styleConstants.selectionColor};
        }
        padding: 0 6px;
    }
}
`;
CustomMenuItem.propTypes = MenuItem.propTypes;
CustomMenuItem.defaultProps = MenuItem.defaultProps;

Usage

Dropdown

<Dropdown
    onSelect={(eventKey) => {
    }}
>
    <Dropdown.Toggle
        btnStyle="flat"
    >
        Toggler
    </Dropdown.Toggle>
    <Dropdown.Menu>
        <MenuItem header>Header</MenuItem>
        <MenuItem eventKey={1}>link</MenuItem>
        <MenuItem divider />
        <MenuItem header>Header</MenuItem>
        <MenuItem eventKey={2}>link</MenuItem>
        <MenuItem eventKey={3} disabled>disabled</MenuItem>
        <MenuItem
            eventKey={4}
            title="link with title"
        >
            link with title
        </MenuItem>
        <MenuItem
            eventKey={5}
            active
            onSelect={(eventKey) => {
                alert(`Alert from menu item.\neventKey: ${eventKey}`);
            }}
        >
            link that alerts
        </MenuItem>
    </Dropdown.Menu>
</Dropdown>

Multi-Level Dropdown

<Dropdown>
    <Dropdown.Toggle title="Select an option" />
    <Dropdown.Menu>
        <MenuItem>
            Menu item one
        </MenuItem>
        <MenuItem>
            Menu item two
        </MenuItem>
        <MenuItem>
            Menu item three
        </MenuItem>
        <MenuItem divider />
        <MenuItem>
            Menu item four
            <MenuItem>
                Second level item one
            </MenuItem>
            <MenuItem>
                Second level item two
            </MenuItem>
            <MenuItem>
                Second level item three
                <MenuItem>
                    Third level item one
                </MenuItem>
            </MenuItem>
        </MenuItem>
    </Dropdown.Menu>
</Dropdown>

Dropdown Menu Wrapper

<Dropdown>
    <Dropdown.Toggle title="Select an option" />
    <Dropdown.MenuWrapper>
        <SearchFilter />
        <Dropdown.Menu>
            <MenuItem>
                Menu item one
            </MenuItem>
            <MenuItem>
                Menu item two
            </MenuItem>
            <MenuItem>
                Menu item three
            </MenuItem>
        </Dropdown.Menu>
    </Dropdown.MenuWrapper>
</Dropdown>

Dropdown Button

<DropdownButton
    btnSize="xs"
    title="More"
    onSelect={(eventKey) => {
    }}
>
    <MenuItem eventKey={1}>link</MenuItem>
    <MenuItem eventKey={2}>link</MenuItem>
</DropdownButton>

API

Properties

Dropdown

NameTypeDefaultDescription
componentClasselementButtonGroupA custom element for this component.
dropupbooleanfalseThe menu will open above the dropdown button, instead of below it.
disabledbooleanfalseWhether or not component is disabled.
openbooleanfalseWhether or not the dropdown is visible.
autoOpenbooleanfalseWhether to open the dropdown on mouse over.
pullRightbooleanfalseAlign the menu to the right side of the dropdown toggle.
onClosefunction(event)A callback fired when the dropdown closes.
onTogglefunction(boolean)A callback fired when the dropdown wishes to change visibility. Called with the requested open value.
onSelectfunction(eventKey, event)A callback fired when a menu item is selected.
rolestringIf 'menuitem', causes the dropdown to behave like a menu item rather than a menu button.
rootCloseEventOne of:'click''mousedown'Which event when fired outside the component will cause it to be closed.

DropdownToggle

NameTypeDefaultDescription
componentClasselementButtonA custom element for this component.
btnSizeOne of:'lg''md''sm''xs''md'
btnStyleOne of:'default''primary''emphasis''flat''link''flat'
noCaretbooleanfalseWhether to prevent a caret from being rendered next to the title.
titlenodeTitle content.
disabledbooleanfalseWhether or not component is disabled.

DropdownMenu

NameTypeDefaultDescription
componentClasselementulA custom element for this component.
onClosefunction(event)A callback fired when the dropdown menu closes.
onSelectfunction(eventKey, event)A callback fired when a menu item is selected.
rootCloseEventOne of:'click''mousedown'Which event when fired outside the component will cause it to be closed.

DropdownMenuWrapper

NameTypeDefaultDescription
componentClasselementdivA custom element for this component.
onClosefunction(event)A callback fired when the dropdown menu closes.
onSelectfunction(eventKey, event)A callback fired when a menu item is selected.
rootCloseEventOne of:'click''mousedown'Which event when fired outside the component will cause it to be closed.

MenuItem

NameTypeDefaultDescription
componentClasselementButtonA custom element for this component.
activebooleanfalseHighlight the menu item as active.
disabledbooleanfalseDisable the menu item, making it unselectable.
dividerbooleanfalseStyle the menu item as a horizontal rule, providing visual separation between groups of menu items.
eventKeyanyValue passed to the onSelect handler, useful for identifying the selected menu item.
headerbooleanfalseStyle the menu item as a header label, useful for describing a group of menu items.
onClickfunction(event)Callback fired when the menu item is clicked, even if it is disabled.
openbooleanfalseWhether or not the dropdown submenu is visible.
onClosefunction(event)A callback fired when the dropdown menu closes.
onSelectfunction(eventKey, event)A callback fired when a menu item is selected.
rootCloseEventOne of:'click''mousedown'Which event when fired outside the component will cause it to be closed.

DropdownButton

NameTypeDefaultDescription
componentClasselementButtonGroupA custom element for this component.
dropupbooleanfalseThe menu will open above the dropdown button, instead of below it.
disabledbooleanfalseWhether or not component is disabled.
pullRightbooleanfalseAlign the menu to the right side of the dropdown toggle.
openbooleanfalseWhether or not the dropdown is visible.
onClosefunction(event)A callback fired when the dropdown closes.
onTogglefunction(boolean)A callback fired when the dropdown wishes to change visibility. Called with the requested open value.
onSelectfunction(eventKey, event)A callback fired when a menu item is selected.
rolestringIf 'menuitem', causes the dropdown to behave like a menu item rather than a menu button.
rootCloseEventOne of:'click''mousedown'Which event when fired outside the component will cause it to be closed.
btnSizeOne of:'lg''md''sm''xs''md'
btnStyleOne of:'default''primary''emphasis''flat''link''flat'
titlenodeTitle content.
noCaretbooleanfalseWhether to prevent a caret from being rendered next to the title.

License

MIT

1.4.0

4 years ago

1.3.0

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.7.3

6 years ago

0.7.2

6 years ago

0.7.1

7 years ago

0.7.0

7 years ago

0.6.14

7 years ago

0.6.13

7 years ago

0.6.12

7 years ago

0.6.11

7 years ago

0.6.10

7 years ago

0.6.9

7 years ago

0.6.8

7 years ago

0.6.7

7 years ago

0.6.6

7 years ago

0.6.5

7 years ago

0.6.4

7 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.0

7 years ago

0.1.0

7 years ago