Socket
Socket
Sign inDemoInstall

cardon

Package Overview
Dependencies
5
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cardon

Create reusable React cards, pop-ups or modals with asynchronous functionality


Version published
Weekly downloads
13
Maintainers
1
Install size
27.1 kB
Created
Weekly downloads
 

Readme

Source

cardon

Npm Version License

Cardon: Reusable Asynchronous Functional Cards

Cardon is a tool that allows you to create reusable cards that can be used as asynchronous functions on any screen.

Demo

You can check out a live demo of Cardon on CodeSandbox.

Edit Example Usage - cardon

Installation

To use Cardon in your project, install it as a dependency using either Yarn or NPM.

# Yarn

$ yarn add cardon


# NPM

$ npm install cardon

How to Use Cardon

Cardon provides two primary methods, 'CardonContainer' and 'withCardon', for usage.

Component NameDescription
CardonContainerIt creates an instance for the cards. All cards are displayed within this container.
withCardonThis method wraps the component you want to display as a card, injects properties named 'visible' and 'get' into it, and then returns an interface for usage.

withCardon Injected props

withCardon adds several props to the component it wraps.

NameTypeDescription
visiblebooleanThis property controls the visibility of the card. It toggles based on the invocation of the 'show' or 'hide' function.
getWithCardonGetThis is a callback generator function. Callbacks must be created using the 'get' function to return the desired callback value. To ensure the correct functioning of the cards, only callbacks generated via 'get' should be used.

withCardon Options

withCardon also accepts an options object as a second parameter.

NameTypeDefault ValueDescription
destroyOnHidebooleanfalseIf set to true, the component will be destroyed when hidden. If left unchanged, the component will remain on the root and must be manually hidden using the 'visible' property.
keystring (optional)-A unique identifier for the card. This key can be used to control the visibility of a specific card using the Cardon.hide(key) method.

When called, each card returns two functions named 'show' and 'hide'.

withCardon methods after wrapping
NameTypeDescription
show(props?: P, callback?: (result: R) => void) => Promise<R>The function to show the card. It returns a promise with data and waits until the card is closed or can utilize the callback function provided as the second parameter. The card is automatically hidden after the result is returned.
hide() => voidAllows the card to be cancelled and hidden without waiting for data to return. Typically, this doesn't need to be used but can be situationally helpful.

withCardon can also receive options with its second parameter as withCardon(component, options).

Cardon Class

Cardon exports a Cardon class with utility methods.

import Cardon from "cardon";
MethodDescription
Cardon.clear()Clears all visible cards.
Cardon.hide(key: string)Hides a specific card. The card must have a unique key assigned during creation using the 'withCardon' method.

Example

Here are a few simple steps to use Cardon:

  1. Add the CardonContainer component to the root file.
// App.js
function App() {
  return (
    <div>
       <Main />
+      <CardonContainer />
    </div >
  );
}
export default App;
  1. Create a folder named 'cardon' or any name of your choosing and place your cards within this folder.

  2. Wrap the component you want to use as a card as shown in the example below.

// ./cardon/MyModalCard.jsx
import { withCardon } from "cardon";
import React from "react";

function MyModalCard({ visible, get, title }) {
  return (
    <Modal open={visible} onClose={get(null)}>
      My Reusable '{title}' Modal!
      <button onClick={get(true)}>Yes</button>
      <button onClick={get(false)}>No</button>
    </Modal>
  );
}
export default withCardon(MyModalCard);

Or with TypeScript:

// ./cardon/MyModalCard.tsx
import { withCardon } from "cardon";
import React from "react";

interface Props {
  title: string;
}
function MyModalCard({ visible, get, title }) {
  return (
    <div>
      My Reusable '{title}' Card!
      <button onClick={get(true)}>Yes</button>
      <button onClick={get(false)}>No</button>
    </div>
  );
}
export default withCardon<Props, boolean>(MyModalCard);

You can alternatively use a card with 'destroyOnHide' options (This is necessary if the card doesn't use the 'visible' prop):

// ./cardon/MyModalCard.jsx
import React from "react";
import { withCardon } from "cardon";

function MyModalCard({ get, title }) {
  return (
    <div>
      My Reusable '{title}' Card!
      <button onClick={get(true)}>Yes</button>
      <button onClick={get(false)}>No</button>
    </div>
  );
}
export default withCardon(MyModalCard, { destroyOnHide: true });
  1. Import the component and call the 'show' function to display it. Optionally, you can pass props to the card and asynchronously receive the result.
let result = await MyModalCard.show({ title: "Awesome" });

Here's an example of usage:

import React from "react";
import { MyModalCard } from "./cardon/MyModalCard";
function HomePage() {
  const [modalResult, setModalResult] = React.useState(false);
  const showModal = async () => {
    let result = await MyModalCard.show({ title: "Awesome" });
    setModalResult(result);
  };

  return (
    <>
      {modalResult ? "Yes" : "No"}
      <button onClick={showModal}>Show</button>
    </>
  );
}

You can also use the Cardon class like this:

import Cardon from "cardon";

Cardon.hide("my-modal-card-key");
// or clear all visible cards
Cardon.clear();

API

Check here for the API document

Changelog

v1.0.3

  • Added a new optional prop 'key' to the 'withCardon' method. This key is used to uniquely identify a card for specific operations, such as hiding the card.
  • Introduced a new class 'Cardon' with utility methods for managing cards. The Cardon class includes the methods 'clear', which removes all visible cards, and 'hide', which hides a specific card given its unique key.

License

MIT - Mustafa Kuru

Keywords

FAQs

Last updated on 30 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc