DEV Community

Cover image for How to Implement Search Functionality in Your React Navbar
Hrushi M
Hrushi M

Posted on • Originally published at blog.superflows.dev

How to Implement Search Functionality in Your React Navbar

Introduction

This article shows you how to implement the search functionality in the react navigation bar. It shows you how to configure the search input, listen to the user data entry callback and then how to style it.

Prerequisites

This article assumes that you have read the previous navbar tutorials. In case you haven't you will find a consolidated list in the reference links section. This article assumes that you have installed the Superflows library, have the default navigation bar up and running, have added your brand information and have also customised your menu. This tutorial takes it forward from there.

Step 1 - Show / Hide the Search Input

To show the search input, set the showSearch prop to true, as shown:

return (
        <div>
                <SfNav showSearch={true}/>
        </div>
);
Enter fullscreen mode Exit fullscreen mode

It renders as follows:

Image search visible

Image search visible mobile

To hide the search input, set the showSearch prop to false, as shown:

return (
        <div>
                <SfNav showSearch={false} />
        </div>
);
Enter fullscreen mode Exit fullscreen mode

It renders as follows:

Image search hidden

Image search hidden mobile

Step 2 - Set the Search Input Caption

To change the search caption, set the searchCaption prop to the appropriate string value, as shown:

return (
        <div>
                <SfNav searchCaption="Find" />
        </div>
);
Enter fullscreen mode Exit fullscreen mode

It renders as follows:

Image search caption

Image search caption mobile

Step 3 - Set the Search Input Icon

You can also add an icon to the search input. Simply set the searchIcon prop to the icon object. The icon object can be taken from any library. In the example below, I have used the bootstrap icons library:

To change the search caption, set the searchCaption prop to the appropriate string value, as shown:

npm install react-bootstrap-icons
Enter fullscreen mode Exit fullscreen mode
import {Search} from 'react-bootstrap-icons';
Enter fullscreen mode Exit fullscreen mode
return (
        <div>
                <SfNav searchIcon={<Search />} />
        </div>
);
Enter fullscreen mode Exit fullscreen mode

It renders as follows:

Image search icon

Image search icon mobile

Step 4 - Handle the Callback

The navigation bar returns a callback if the user enters some text in the search input and presses enter. You can subscribe to this callback by subscribing to the onSearchPressed prop, as shown:

return (
        <div>
              <SfNav onSearchPressed={(value) => {alert(value)}}/>
        </div>
);
Enter fullscreen mode Exit fullscreen mode

Step 5 - Styling

You can then customise the look and feel, by using inline css or by class names. The Superflows navigation bar exposes props that facilitate customisation. An example is shown below:

return (
        <div>
              <SfNav 
                  stylesSearchContainer={{backgroundColor: 'black', color: 'white', border: 'solid 1px gray'}}
                  stylesSearchInput={{backgroundColor: '#444', borderRadius: '10px', color: '#efefef', paddingTop: '5px', paddingBottom: '5px'}}
              />
        </div>
);
Enter fullscreen mode Exit fullscreen mode

It renders as follows:

Image search style

Image style mobile

Reference Links

Documentation

This link

Code

This link

Previous Tutorials of Navbar

Video Tutorial

Further Reading

You have already seen how to get started with the navigation bar, how to insert brand information into it, how to customise the menu and now, how to configure the search input. The next tutorial will show you how to use and customise the sign in button.

Conclusion

This article shows you how to configure the search input. How to show / hide it, how to change the caption, how to add an icon, how to handle callback and how to customise and style it.

Top comments (0)