1.0.3 • Published 2 years ago

react-popup-announcement v1.0.3

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

Install

npm install --save react-popup-announcement

Usage

import * as React from "react";
import Image from "./image.svg";
import Announcement from "react-popup-announcement";

class Example extends React.Component {
  render() {
    return (
      <Announcement
        title="Here is your component"
        subtitle="The best announcement component for React is finally here. Install it in all your projects."
        link="https://github.com/kristofferandreasen/react-popup-announcement"
        imageSource={Image}
        buttonText="Click here!"
      />
    );
  }
}

Usage with optional properties

This example includes the optional properties in the component.

The daysToLive property changes to the cookie created by the component. This way you can control how many days you want to wait before you show the announcement to the same user.

The secondsBeforeBannerShows property changes the number of seconds a user waits before the announcement is presented.

The closeIconSize is to allow you to change to size of the icon in the top right corner.

The animateInDuration changes the duration of the fade-in animation.

The animateOutDuration changes the duration of the fade-out animation - this is fired on the click of the close icon.

import * as React from "react";
import Image from "./image.svg";
import Announcement from "react-popup-announcement";

class Example extends React.Component {
  render() {
    return (
      <Announcement
        title="Here is your component"
        subtitle="The best announcement component for React is finally here. Install it in all your projects."
        link="https://github.com/kristofferandreasen/react-popup-announcement"
        imageSource={Image}
        buttonText="Click here!"
        daysToLive={3}
        secondsBeforeBannerShows={20}
        closeIconSize={30}
        animateInDuration={2000}
        animateOutDuration={500}
      />
    );
  }
}

Properties

PropertyTypeRequiredDefault valueDescription
titlestringyesThe title of the announcement
subtitlestringyesThe general card text on the announcement
imageSourcestringyesThe image source string used on the left side of the image. Use a square image for the best results. Dimensions are 68x68 pixels.
onBannerClick(event: React.MouseEvent) => voidyesThe function triggered on click on the banner.
buttonTextstringyesThe text displayed on the button.
daysToLivenumberno7An optional property specifying the number of days the cookie will live before the announcement is shown again to a user.
secondsBeforeBannerShowsnumberno5The number of seconds a user has to keep the page open before the announcement is shown.
animateInDurationnumberno1000Changes the duration of the fade-in animation.
animateOutDurationnumberno30Change the duration of the fade-out animation.

Developing

The project is bootstrapped with create-react-library and TypeScript has been added to the project. You can read more about the development workflow in the project docs.

To start developing, you need to open two terminals.

In the first tab, run from the main directory:

npm start

This will activate rollup to watch for any changes to your src directory and build the dist everytime.

In another terminal, navigate to the example folder:

cd example

Then run:

npm install

and finally:

npm start

This will start up the development server allowing you to see the results. Be aware that the solution is setting a cookie and this cookie will be stored in your browser. In order to see the banner again, you will need to open the localhost link in incognito or clear your browser cookies.

Contributing

Your contributions are always welcome! Please have a look at the contribution guidelines first 🎉

License

MIT © kristofferandreasen