npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cloudoperators/juno-messages-provider

v0.1.19

Published

Messages provider

Downloads

855

Readme

Messages Provider

License

Manage and display messages in your application easily and with the Juno message component.

A message holds generally important information to help understand the contents, purpose, or state of a whole page or view.

This lib uses a context store based on Zustand to manage the messages. That means that you can add as many contexts as you need. This is the case when you want to manage and display the messages in different locations in your main application as for example in a panel or modal.

Requirements

In order to run this library in your application you need to install also following libraries which are not included in the bundle:

  • @cloudoperators/juno-ui-components, recommended version ^2.14.1
  • react, recommended version 18.2.0
  • zustand, recommended version ^4.5.2
yarn add [email protected], [email protected] @cloudoperators/juno-ui-components

Usage

  1. Import this lib

    yarn add @cloudoperators//messages-provider
  2. Add the message MessagesProvider. Normally it is set on the top of your application so you can use it from everywhere underneath.

    import React from "react"
    import { MessagesProvider } from "@cloudoperators/messages-provider"
    import AppContent from "./AppContent"
    
    const App = (props) => {
      return (
        <MessagesProvider>
          <AppContent />
        </MessagesProvider>
      )
    }
    
    export default App
  3. Add the Messages container. This component hold the Juno messages to display. The messages container should be placed as a descendant component of the MessagesProvider. See that the App component holds the messages-provider and the descendant component AppContent holds the messages container. See the official react context documentation for more information.

    import React from "react"
    import { Messages } from "@cloudoperators/messages-provider"
    import AppContent from "./AppContent"
    
    const AppContent = (props) => {
      return (
        <>
          <Messages />
          <h1>Hello world!</h1>
        <>
      )
    }
  4. Use the following hook useActions to manage the messages from any descendant component in your application.

    import React from "react"
    import { useActions, Messages } from "@cloudoperators/messages-provider"
    
    const AppContent = (props) => {
      const { addMessage } = useActions()
    
      const onButtonClick = () => {
        addMessage({
          variant: "info",
          text: "Hello world!",
        })
      }
    
      return (
        <>
          <Messages />
          <h1>Hello world!</h1>
          <button onclick={onButtonClick()}>Send message</button>
        </>
      )
    }
    
    export default AppContent

Multiple contexts

This is the case when you want to manage and display the messages in different locations, for example in your main application as in a panel or modal. Following is an example of a component, NewItem, displaying a Panel and holding an new MessagesProvider.

import React from "react"
import { MessagesProvider } from "@cloudoperators/messages-provider"
import NewItemForm from "./NewItemForm"
import { Panel } from "@cloudoperators/juno-ui-components"

const NewItem = (props) => {
  return (
    <Panel opened={true} heading="New Item">
      <MessagesProvider>
        <NewItemForm />
      </MessagesProvider>
    </Panel>
  )
}

export default NewItem

Within the NewItemForm component all actions will be handled bei the first parent messages-provider, the one in NewItem, and the results displayed in the Messages container descendant of NewItem, the one in NewItemForm. So now you have two contexts, the main in your App component and one extra in the NewItem component.

import React from "react"
import { useActions, Messages } from "@cloudoperators/messages-provider"
import { PanelBody } from "@cloudoperators/juno-ui-components"

const NewItemForm = (props) => {
  const { addMessage } = useActions()

  const onButtonClick = () => {
    addMessage({
      variant: "info",
      text: "Hello Panel!",
    })
  }

  return (
    <PanelBody>
      <Messages />
      <h1>Hello From Panel!</h1>
      <button onclick={onButtonClick()}>Send message</button>
    </PanelBody>
  )
}

export default NewItemForm

Availabe attributes

  • messages: return all messages int the store

    import { useMessages } from "@cloudoperators/messages-provider"
    ...
    const messages = useMessages()
    ...

Availabe actions

  • messages: return all messages int the store

    import { useMessageStore } from "@cloudoperators/messages-provider"
    ...
    const messages = useMessageStore((state) => state.messages)
    ...
  • addMessage: adds a message to the store Accepts an object containing:

    • variant (string). Variants are defined below.
    • text (string or object)

    Returns the message id if succeed otherwise null.

    import { useActions } from "@cloudoperators/messages-provider"
    ...
    const { addMessage } = useActions()
    ...
    addMessage({
      variant: "info",
      text: "Hello world!",
    })
    ...
  • removeMessage: removes the message with the given id from the store Accepts a paremeter containing the id as string from the message to remove.

    import { useActions } from "@cloudoperators/messages-provider"
    ...
    const { removeMessage } = useActions()
    ...
    removeMessage("message_ID")
    ...
  • resetMessages: removes all messages in the store

    import { useActions } from "@cloudoperators/messages-provider"
    ...
    const { resetMessages } = useActions()
    ...
    resetMessages()
    ...

Variants

Following variants are available:

  • info
  • warning
  • danger
  • error
  • success

Variant info and success will be automatically dismissed after 10 seconds by default.