Open In App

React.js Blueprint Select2 Props interface

Blueprint is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex and data-dense for desktop applications.

In this article, we’ll discuss the React.js Blueprint Select2 Props interface. Select2 component displays a list of items to choose one item and item children are wrapped in a MenuItem that contains the list and an optional InputGroup to filter the items.



React.js BluePrint Select2 Props:

 



Syntax:

<Select2
    items={ITEM_DATA}
    itemPredicate={filterData}
    ...
>
    <Button disabled={true}>
</Select2>

Creating React Application And Installing Module:

Step 1: Create a React application using the following command:

npm create-react-app appname

Step 2: After creating your project folder i.e. appname, move to it using the following command:

cd appname

Step 3: After creating the ReactJS application, Install the required module using the following command:

npm install @blueprintjs/core
npm install @blueprintjs/select

Project Structure:

 

Step 4: Run the project as follows:

npm start

Example 1: The below example demonstrates the usage of items, itemRenderer, and onItemSelect props of the select2 component.




import React, { useState } from "react";
import { Button, MenuItem } from "@blueprintjs/core";
import { Select2 } from "@blueprintjs/select";
import "@blueprintjs/core/lib/css/blueprint.css";
import "@blueprintjs/select/lib/css/blueprint-select.css";
  
function App() {
    const [item, setItem] = useState("Java");
    const [items, setItems] = useState([]);
  
    return (
        <center>
            <div style={{ textAlign: "center", color: "green" }}>
                <h1>GeeksforGeek</h1>
                <h2>ReactJs Blueprint Select2</h2>
            </div>
            <Select2
                items={["Java", "Python", "C++", "SQL", "JavaScript"]}
                selectedItems={items}
                itemRenderer={(val, itemProps) => {
                    return (
                        <MenuItem
                            disabled={itemProps.modifiers.disabled}
                            key={val}
                            text={val}
                            onClick={(elm) => {
                                setItem(elm.target.textContent);
                                setItems((items) => {
                                    return [...items, elm.target.textContent];
                                });
                            }}
                            active={itemProps.modifiers.active}
                        />
                    );
                }}
                onItemSelect={setItem}>
                <Button text={item} rightIcon="caret-down" />
            </Select2>
        </center>
    );
}
  
export default App;

Output:

 

Example 2: Below is another example that demonstrates the usage of the disabled prop of the select2 component.




import React, { useState } from "react";
import { Button, MenuItem } from "@blueprintjs/core";
import { Select2 } from "@blueprintjs/select";
import "@blueprintjs/core/lib/css/blueprint.css";
import "@blueprintjs/select/lib/css/blueprint-select.css";
  
function App() {
    const [item, setItem] = useState("Java");
    const [items, setItems] = useState([]);
  
    return (
        <center>
            <div style={{ textAlign: "center", color: "green" }}>
                <h1>GeeksforGeek</h1>
                <h2>ReactJs Blueprint Select2</h2>
            </div>
            <Select2
                items={["Java", "Python", "C++", "SQL", "JavaScript"]}
                selectedItems={items}
                disabled={true}
                itemRenderer={(val, itemProps) => {
                    return (
                        <MenuItem
                            key={val}
                            text={val}
                            onClick={(elm) => {
                                setItem(elm.target.textContent);
                                setItems((items) => {
                                    return [...items, elm.target.textContent];
                                });
                            }}
                            active={itemProps.modifiers.active}
                        />
                    );
                }}
                onItemSelect={setItem}>
                <Button text={item} rightIcon="caret-down" />
            </Select2>
        </center>
    );
}
  
export default App;

Output:

 

Reference: https://blueprintjs.com/docs/#select/select2.props-interface


Article Tags :