1.0.1 • Published 2 years ago

react-ult-navbar v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

react-ult-navbar


react-ult-navbar is navigation component for your React project that is highly customizable and mobile responsive. Before using please consider that this component relies on the use of React Router version 6 in your project. Additionally, this component uses Framer Motion that may conflict with other animation libraries.

Getting Started


Installation

The easiest way to start using react-ult-navbar is to install it from npm.

npm install react-ult-navbar --save

Install React Router version 6.

npm install react-router-dom@6

Import and wrap your 'App' in React Router's BrowserRouter component.

import { render } from "react-dom";
import {
  BrowserRouter
} from "react-router-dom";

render(
    <BrowserRouter>
        <App />
    </BrowserRouter>,
  document.getElementById("root")
);

Then add components: Navbar and Pages from react-ult-navbar inside your 'App' project. Both will accept an array of objects as props called "links" that will create links within the Navbar component and routes within Pages.

import { Navbar, Pages } from 'react-ult-navbar';
import Page from './components/Page';

const PAGES = [
  {
    path: '/',
    text: 'Home',
    component: <Page title='Home' />,
  },
  {
    path: 'about',
    text: 'About',
    component: <Page title='About' />,
  },
  {
    path: 'contact',
    text: 'Contact',
    component: <Page title='Contact' />,
  },
  {
    path: 'profile',
    text: 'Profile',
    component: <Page title='Profile' />,
    children: [
        {
            path: 'profile1',
            text: 'Profile 1',
            component: <Page title='Profile #1' />
        }
    ]
  }
];

function App() {
  return (
      <div className='App'>
        <Navbar
          bgColor='grey'
          fontColor='white'
          fontSize='1rem'
          links={PAGES}
          logoText='Brand Name'
        />
        <Pages pages={PAGES} />
      </div>
  );
}

export default App;

If you followed the steps above then you should be set for navigation!

Props


Navbar Mandatory Prop

Both Navbar and Pages component requires a prop of "links" that accepts an Array of Objects to render yours links and routes. | Key | Type | value | | --- | ----- | ---- | | path | string | url segment - value of "about" will provide a link of /about | | text | string | name of link listed in the UI element | | component | Component | components rendered as pages in your project | | children | links | optional. Renders any nested links if applicable - /users/profiles/profiles123 |

Navbar Utility Props

PropsTypeDefaultDescription
fontColorstringinheritadjust font color - 'black'
fontSizestringinheritadjust font size - '1rem'
bgColorstringtransparentadjust background-color - 'lightblue'
position"start", "center", "end""end"adjust position of links inside navbar when in desktop view
logoIconstringnullaccepts an imported image or path as a logo
logoTextstringnullname of brand as text - "Microsoft"
logoTextSizestringnulladjust font size of logoText - '24px'
logoTextClassstringnulladd className for seperate css styling
addClassstringnulladd className for additional styling of navbar

License


MIT

1.0.1

2 years ago

1.0.0

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago