Coder Social home page Coder Social logo

react-growl's Introduction

alt text

@crystallize/react-growl

The React Growl Notifications module used in Crystallize PIM. This is a generic React package initially built for the React boilerplates powered by Headless Ecommerce.

alt text

Install

yarn add @crystallize/react-growl styled-components framer-motion

or

npm install @crystallize/react-growl styled-components framer-motion

The module requires two peer dependencies which are used in Crystallize PIM, styled-components and framer-motion

Usage

In Layout or somewhere outside the route definition:

import { GrowlScene } from '@crystallize/react-growl';

<body>
    <GrowlScene />
    <MyApp />
</body>

Call it!

import { growl } from '@crystallize/react-growl';

// Regular
const myGrowl = await growl({
    title: 'Good job',
    message: 'You got this growl to work!'
});

// With JSX and a type
const myGrowl = await growl({
    title: 'Title goes here',
    message: <b>Hey, I can use JSX!</b>,
    type: 'error'
});

// Sticky, user cannot close it
const myGrowl = await growl({
    title: "I'm sticky",
    message: 'You just try to remove me!',
    sticky: true
});

// Custom timeout
const myGrowl = await growl({
    title: "I'll go away quickly",
    message: 'It will only be in your life for 2 seconds',
    timeout: 2000
});

Growl props

Prop name Type Default Description
type string info The type of growl. One of "info", "warning" or "error"
timeout number (inherited from GrowlScene) Set a custom timeout (in milliseconds) for the growl instance
title string null The title
message string null The message
sticky boolean false If the growl should "stick" to the screen and hide the close button and not auto close

Growl instance

When you call growl, you can await the growl instance. On the instance you have the following methods available

instance.update

myGrowl.update({
    type: 'warning',
    title: 'New title',
    message: <div>New message</div>,
    sticky: true
})

Takes the same arguments as growl(). Updates the growl in-place.

instance.hide

myGrowl.hide()

Hide the growl manually, because it is a static growl, or because you do not want to wait for the auto timeout.

GrowlScene props

Prop name Type Default
growlComponent Component null
defaultTimeout number 7000

Whatever other props you pass will be forwarded along to the underlying UL

react-growl's People

Contributors

hakonkrogh avatar dependabot[bot] avatar papelipe avatar meetdave3 avatar

Stargazers

Kaaz avatar Elias Tsiggelis avatar Lee Glasgow avatar Thomas Lekanger avatar

Watchers

James Cloos avatar  avatar Stavros Sotiropoulos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.