0.7.2 • Published 1 month ago

react-js-banner v0.7.2

Weekly downloads
528
License
MIT
Repository
github
Last release
1 month ago

npm npm npm

react-js-banner

Simple React JS line banner Component with fade in and fade out animation.

Description

It is a simple line text banner component (like warning, error, success). Styles (font and background) can be customized. By default the banner has a fade in and fade out animation of 2s. This can be used in two ways, banner can be shown for a specific amount of time using visibleTime prop, or can be handled manually by making the title text null or changing the string.

How it looks

alt text

How to thank me? Just click on ⭐️ button or buy me a tea using the donation button below :)

Installation

Install it from npm and include it in your React build process (using Webpack, Browserify, etc).

npm i react-js-banner

Usage

Import Banner in your react component.

import Banner from 'react-js-banner';

Example:

<Banner 
  id="banner1"
  title="This is an example Banner Title" 
  css={{ color: "#000", backgroundColor: "grey", fontFamily: "arial" }} 
/>

If you want the banner to be available for a specific amount of time, visibleTime prop can be passed:

<Banner 
  id="banner2"
  title="This is an example banner with CSS" 
  css={{color: "#FFF", backgroundColor: "red", fontSize: 20 }} 
  visibleTime={3000}
/>

For instance, you can define the background color, font color, font family, size, etc.

{
  banner1Css: { color: "#FFF", backgroundColor: "green" },
  banner2Css: { color: "#000", backgroundColor: "grey", fontFamily: "arial" },
  banner3Css: { color: "#FFF", backgroundColor: "red", fontSize: 20 }
}

Example of banner with image:

import logo from './logo.svg';
<Banner 
  id="banner3"
  title="This is an example banner with CSS and Image" 
  image={logo} 
  imageClass="App-logo"
  css={this.state.banner2Css}
/>

New! Now the banner accepts a list of children to display all content data to make it more extensible!

<Banner id="banner4">
  <div>
    <h1>h1</h1>
    <h2>h2</h2>
    <h3>h3</h3>
  </div>
</Banner>

Props

NameTypeMandatoryDescription
idStringYBanner Id you want to use
titleStringNAdding some text will make the banner appear
cssobjectNCSS customizations
visibleTimenumberNtime in seconds you want the banner to be visible
imageStringNimage to appear at the left of text
imageClassStringNimage css class e.g "image-customized-class"
transitionAppearTimenumberNtime for the banner to appear
transitionTimenumberNtime for the transition to take
showBannerboolNforce the banner to show or hide, this will override the visibleTime variable
onHideCallbackfunctionNcallback when the popup hides (to be used with visible time prop in manage state, will pass as param the banner id)

Donations

If you think that any information you obtained here is useful and worth of some money and are willing to pay for it, feel free to send any amount through Paypal :)

npm.io

You can also follow me on Patreon: https://patreon.com/Jacware

Changelog

v0.7.2

  • Package size further optimized from ~118kb+ to <11kb packed / 31kb unpacked :)

v0.7.1

  • Package size optimized from ~600kb+ to <100kb

v0.7.0

Changes and features

  • New function callback when the popup hides. This should be used with the visible time prop, call and return the id given as param For example:
<Banner  
  id="banner4"
  title="This is an example banner with CSS and 3 Seconds of Visibility" 
  css={this.state.banner3Css} 
  visibleTime={3000} 
  showBanner={true}
  onHideCallback={(bannerId) => alert('This is an example banner with CSS and 3 Seconds of Visibility Hidden')}
/>
  • Enhanced fade in / out animations
  • Several code updates and optimiation to avoid double rendering
  • There is no need to use the showBanner prop anymore and will soon be deprecated

Breaking Changes

  • Banner Id new prop required

Other

showBanner prop is under revision and will be deprecated in a future version

v0.6.1

  • Removed Polyfill Dependency
  • Package size decreased!

v0.6.0

  • Bug Fixes
  • Dependencies updated

v0.5.2

  • Removed polyfill as dependency

v0.5.0

  • Added ability to accept children:

e.g

<Banner showBanner={true}>
  <div>
    <h1>h1</h1>
    <h2>h2</h2>
    <h3>h3</h3>
  </div>
</Banner>

v0.4.1

  • Size optimizations

v0.4.0

  • Dependencies updated

v0.3.0

  • Added ability to show / hide banner whenever is required via new showBanner prop
  • If the prop is not defined will show the banner if it has a title defined
  • Banner can render HTML snippets

v0.2.5

  • Added transition show and hide times as prop
  • Added appear time as prop

v0.2.2

  • Bug fixing
  • Prop types added

v0.2.1

  • Feature for adding images to banner added

v0.2.0

  • Visible time feature added

v0.1.0

  • Initial release

License

Licensed under the MIT License © jciccio

0.7.2

1 month ago

0.7.1

1 month ago

0.7.0

1 month ago

0.6.1

2 months ago

0.6.0

2 months ago

0.6.0-beta3

3 years ago

0.6.0-beta1

3 years ago

0.6.0-beta2

3 years ago

0.5.2

4 years ago

0.5.0

4 years ago

0.5.1

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.0

5 years ago

0.2.4

5 years ago

0.2.2

6 years ago

0.2.3

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago