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

react-placenode

v1.0.1

Published

A placeholder component for heavy load resources like images, cards, list and so on.

Downloads

5

Readme

React Placenode

A placeholder component for heavy load resources like images, cards, list and so on. This package consists of 2 main components.

  • Placenode component It can be useful in a situation where a user has to wait for the content to load e.g. when fetching data from APIs or databases.

Demo:

Example of the Placenode component

  • PlacenodeImage component It reserve space for the image and helps the user to know the image is loading. You have to manually render your image with your component state logic.

Demo:

Example of the PlacenodeImage component

Installation

npm:

npm install --save react-placenode

Yarn:

yarn add react-placenode

Getting Started

Install react-placenode and import CSS file or you could also import the SASS file if you are using a preprocessor.

// import css file
import 'react-placenode/css/placenode.css';

// optional for preprocessor like sass environment
import 'react-placenode/scss/placenode.scss';

Now you can import required components on your custom component files:

// import only Placenode component
import { Placenode } from 'react-placenode';

// import only PlacenodeImage component
import { PlacenodeImage } from 'react-placenode';

// import both components
import { Placenode, PlacenodeImage } from 'react-placenode';

Placenode props

This component contains only 5 props.

1:

|Name|Type|Default|Description| |--|--|--|--| | active | Boolean |false | show animation effect |

Snippet

// It will set the animation effect to true
<Placenode active />
2:

|Name|Type|Default|Description| |--|--|--|--| | avatar | Boolean / {size,shape} |false | enable avatar placeholder |

Snippets:

// active avatar placeholder
<Placenode avatar />

// Use avatar object properties

/**
 * size
 * Set the avatar size
 * Type - Number / 'large', 'small', 'default'
 * 
 * shape
 * Set the shape of the avatar
 * Type - 'circle', 'square'
 */
 
 // size property use cases:
 // It will set some inline styles on the avatar
 // For example: set the width, height & line-height of the 46 
 // pixels
 <Placenode avatar={ {size:46} } />
 <Placenode avatar={ {size:'large'} } />
 <Placenode avatar={ {size:'small'} } />
 
 // shape property use cases:
 <Placenode avatar={ {shape:'circle'} } />
 <Placenode avatar={ {shape:'square'} } />
 
3:

|Name|Type|Default|Description| |--|--|--|--| | loading | Boolean | | display placenode component until loading is true |

Snippet:

//#region Global imports
import React, { useState } from "react";
import "react-placenode/scss/placenode.scss";
import { Placenode } from "react-placenode";
//#endregion Global imports

//#region Component
const App = () => {
  const [loading, setLoading] = useState(true);

  const toggle = () => {
    setLoading(prevLoading => {
      return !prevLoading;
    });
  };

  return (
    // `loading` could be state value of your local state
    <Placenode loading={loading}>
      {/* Content will display when loading value of the local state would be false.  */}
    </Placenode>
  );
};

export default App;
//#endregion component
4:

|Name|Type|Default|Description| |--|--|--|--| | paragraph | Boolean / {rows,width} |false | show paragraph placeholder |

Snippets:

// active paragraph placeholder
<Placenode paragraph />

// Use paragraph object properties

/**
 * rows
 * Set the row count of paragraph
 * Type - Number
 * 
 * width
 * It will set the width of the paragraph. If width is an array
 * it will set the width of each row. Otherwise just set
 * the width of the last row
 * Type - Number / String / [Number/ String]
 * 
 */
 
 // rows property use case:
 // Make paragraph of 6 rows
 <Placenode paragraph={ {rows:6} } />
 // Make paragraph of 8 rows
 <Placenode paragraph={ {rows:8} } />
 
 // width property use cases:
 // Set the width of the paragraph of last row to 9 pixels. 
 <Placenode paragraph={ {width:9} } />
 <Placenode paragraph={ {width:'9px'} } />
 // Set the width of the paragraph of last row to 9 rem.
 <Placenode paragraph={ {width:'9rem'} } />
 // Set the width of `1st row` 2px, `2nd row` 4rem and so on.
 <Placenode paragraph={ {width:[2,'4rem',6,7]} } />
5:

|Name|Type|Default|Description| |--|--|--|--| | title | Boolean / {width} |false | show title placeholder |

Snippets:

// active title placeholder
<Placenode title />

// Use title object properties

/**
 * width
 * Set the width of title
 * Type - Number / String
 */
 
 // width property use cases:
 // Set the width of the title to 9 pixels. 
 <Placenode title={ {width:9} } />
 <Placenode title={ {width:'9px'} } />

Component Example

//#region Global imports
import React, { useState } from "react";
import "react-placenode/scss/placenode.scss";
import { Placenode } from "react-placenode";
//#endregion Global imports

//#region Component
const App = () => {
  const [loading, setLoading] = useState(true);

  const toggle = () => {
    setLoading(prevLoading => {
      return !prevLoading;
    });
  };
  return (
    <>
      <div style={{ width: "100%", maxWidth: "760px", margin: "0 auto" }}>
        {/* Combination with avatar, title and multiple paragraphs. */}
        <Placenode
          loading={loading}
          active
          title
          avatar
          paragraph={{ rows: 4, width: ["100%", "100%", "100%", "100%"] }}>
         
          {/* Content */}
          <div style={{ display: "flex", flexWrap: "nowrap" }}>
            
            {/* Image Wrapper */}
            <div style={{ paddingRight: "16px" }}>
              <img
                style={{ display: "block" }}
                src="https://s.gravatar.com/avatar/189aabc3ffd285683ec6dc6a024b9c49?size=200&default=retro"
                alt="Avatar"/>
            </div>
            
            {/* Paragraph */}
            <div>
              <p style={{ margin: 0 }}>
                Lorem Ipsum is simply dummy text of the printing and typesetting
                industry. Lorem Ipsum has been the industry standard dummy
                text ever since the 1500s, when an unknown printer took a galley
                of type and scrambled it to make a type specimen book. It has
                survived not only five centuries, but also the leap into
                electronic typesetting, remaining essentially unchanged. It was
                popularised in the 1960s with the release of Letraset sheets
                containing Lorem Ipsum passages, and more recently with desktop
                publishing software like Aldus PageMaker including versions of
                Lorem Ipsum.
              </p>
            </div>
          </div>
        </Placenode>
      </div>
      {/* Button */}
      <button onClick={toggle}>
        {loading ? "Data is fetching..." : "Data loaded"}
      </button>
    </>
  );
};

export default App;
//#endregion component

PlacenodeImage props

|Name|Type|Default|Description| |--|--|--|--| | active | Boolean | | active animation effect | tag | elementType | | an element type you want to render (string or function). | className | String | | additional classes on the container | fluid | Boolean | | make your placeholder fluid that takes up the width of its container | shape | 'square' / 'rectangular'| | square (1:1) or rectangular (4:3) will embed an aspect ratio into the image loader so that they modify size correctly with responsive styles.

Snippets:

// active animation
<PlacenodeImage active />

// render container as `anchor` element
<PlacenodeImage tag="a" />

// explicit add width & height of the placeholder container
<PlacenodeImage style={{ height: 150, width: 150 }} />

// active animation & set `square` aspect ratio
<PlacenodeImage active shape="square" />

// active animation & set `rectangular` aspect ratio
<PlacenodeImage active shape="rectangular" />

// active animation & takes the width of its container
<PlacenodeImage active fluid />

Component Example

//#region Global imports
import React, { useState } from "react";
import "react-placenode/scss/placenode.scss";
import { PlacenodeImage } from "react-placenode";
//#endregion Global imports

//#region Component
const App = () => {
  const [loading, setLoading] = useState(true);

  const load = () => {
    setLoading(prevLoading => {
      return !prevLoading;
    });
  };

  return (
    <>
      {loading && (
        <PlacenodeImage
          active
          style={{ width: 200, height: 200 }}
          shape="square"
        />
      )}
      <img
        style={loading ? { display: "none" } : {}}
        src="https://s.gravatar.com/avatar/189aabc3ffd285683ec6dc6a024b9c49?size=200&default=retro"
        alt="Avatar"
        onLoad={load}
      />
      <h1>{loading ? "Loading..." : "Loaded"}</h1>
    </>
  );
};

export default App;
//#endregion component

License

MIT