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-loop-item

v1.1.4

Published

A simple component that repeatedly creates components.

Downloads

11

Readme

react-loop-item

A simple component that repeatedly creates components.

NPM JavaScript Style Guide

Install

npm install react-loop-item --save

or

yarn add react-loop-item

Usage

<LoopItem>

import { LoopItem } from "react-loop-item";

const Articles = () => {
  // [list]: <Item> props
  const itemProps = [
    { contents: "1. Article sample A" },
    { contents: "2. Article sample B" },
  ];

  return <LoopItem target={Item} list={itemProps} />;
};

// [target]: Item component of list
const Item = ({ contents }) => <p>{contents}</p>;

<ListWrap>

[version] ^1.1.0

import { ListWrap } from "react-loop-item";

const Articles = () => {
  // [list]: <Item> props
  const itemProps = [
    { contents: "1. Article sample A" },
    { contents: "2. Article sample B" },
  ];

  return (
    <ListWrap
      // List tag
      tag="ul"
      className="ul-class"
      data-description="Add any ul attributes"
      // <LoopItem> props
      target={Item}
      list={itemProps}
    />
  );
};

// [target]: Item component of list
const Item = ({ contents }) => <li>{contents}</li>;

loop()

import { LoopItem, loop } from "react-loop-item";

loop(Item, list, each, instead, hidden, memo);
// or
<LoopItem
  target={Item}
  list={arr}
  each={fnc}
  instead={element}
  hidden={boolean}
  memo={boolean}
/>;

Props

target (required)

[type] elementType(React.Component, React.FC, React.forwardRef, string)

Component to be created repeatedly.

// Component
<LoopItem target={ItemComponent} />;

// Tag name
<LoopItem target={"img"} />;

list (optional)

[type] Array | number

Item data array or number of items.

// Array
<LoopItem target={Item} list={[{ foo: "bar" }, { foo: "bar" }]} />;

// Count
<LoopItem target={Item} list={5} />;

each (optional)

[type] Function

Callback function that converts each element of list to props for target when rendering target component. If each is omitted, list element is used as it is.

each has two arguments. (element and index of list)

// [list]: Raw datas
const model = [{ foo: "bar" }, { foo: "bar" }];

// [each]: Formatter for <Anchor> props
const getProps = (data, index) => ({
  // Properties
  value: data.foo,
  // Callbacks
  onClick: (event) => {
    event.preventDefault();
    console.log(model, data, index);
  },
});

// [target]: <Ancher> has value and onClick
const Anchor = ({ value, onClick }) => (
  <a href="#" onClick={onClick}>
    {value}
  </a>
);

<LoopItem target={Anchor} list={model} each={getProps} />;

tag (optional)

[type] string, [version] ^1.1.0, [for] ListWrap

Set tag name of parent element to wrap items.

<ListWrap tag="div" className="tag-example" target={Child} list={model}> />
// or
<div className="tag-example">
  <LoopItem target={Child} list={model}>
</div>

instead (optional)

[type] React.ReactNode

Element to return instead of null when list is empty. Use strings or element, no component.

target={Component} instead={strings or element}

// [list] : No data
const model = [];

// [instead]: Element to render instead of blank
const noData = <span>no data</span>;

// Do not use component
// const noData = () => <span>no data</span>;

<LoopItem target={Item} list={model} instead={noData} />;

hidden (optional)

[type] boolean

Prevent rendering.

<LoopItem target={Item} list={model} hidden />
// or
<LoopItem target={Item} list={model} hidden={true} />

memo (optional)

[type] string | boolean, [version] ^1.1.2

Whether to cache target using React.memo.

To use this feature, enter prop name of target you want to use as key in list, or true. Use it when absolutely necessary. Frequent use of React.memo is not recommended.

<LoopItem target={Item} list={model} memo="id" />
// or
<LoopItem target={Item} list={model} memo={true} />

Examples

AnchorList.jsx

import React from "react";
import { ListWrap } from "react-loop-item";

import style from "./AnchorList.module.css";

// <AnchorList> needs raw data array and <Item> props formatter.
const AnchorList = ({ list, each }) => (
  <ListWrap
    tag="ul"
    className={style["ul-style"]}
    target={Item}
    list={list}
    each={each}
    instead={noData}
  />
);

// Check target props
const Item = ({ label, href, onClick }) => (
  <li className={style["li-style"]}>
    <a href={href} onClick={onClick}>
      {label}
    </a>
  </li>
);

// What to display instead of the <ul>
const noData = <div>no data</div>;

export default AnchorList;

Tags.jsx

import React from "react";
import { LoopItem } from "react-loop-item";

import style from "./Tags.module.css";

// If you already know about raw datas,
// define <Item> props formatter in this component.
const Tags = ({ list }) => (
  <p className={style["p-style"]}>
    <LoopItem target={Item} list={list} each={getProps} />
  </p>
);

const Item = ({ value }) => (
  <span className={style["span-style"]}>{value}</span>
);

// Convert string to <Item> props
const getProps = (text, index) => ({
  value: text,
});

export default Tags;

ListContainer.jsx

import React from "react";
import AnchorList from "./AnchorList";
import Tags from "./Tags";

const ListContainer = () => {
  // <AnchorList> raw datas
  const siteList = [
    { url: "aaa.com", description: "aaa site", visited: 4 },
    { url: "bbb.com", description: "bbb site", visited: 2 },
    { url: "ccc.com", description: "ccc site", visited: 8 },
  ];

  // Formatter for <Item> props of <AnchorList>
  const getProps = (data, index) => {
    // raw datas (element and index of siteList)
    const { url, description, visited } = data;

    // Props
    return {
      key: url, // If key is omitted, index is used
      label: description,
      href: url,
      onClick(event) {
        event.preventDefault();
        console.log(siteList, index, visited);
      },
    };
  };

  // <Tags> raw datas
  const tagList = ["react", "loop", "for", "each", "list"];

  return (
    <div>
      {/* Your components */}
      <AnchorList list={siteList} each={getProps} />
      <Tags list={tagList} />
    </div>
  );
};

export default ListContainer;

Tips

Injecting Callbacks

If the structure of the raw data is fixed, the component using LoopItem defines props a formatter for the list item component. Then use the parent component's state or props to develop functions to use as callback.

import React from "react";
import AnchorList from "./AnchorList";

const ListContainer = () => {
  // Code to manage model
  // ...

  const updateVisited = (url, count) => {
    // Do something for updating model
  };

  // Callbacks injector for <Item> of <AnchorList>
  const getItemCallbacks = (data, index) => {
    const { url, description, visited } = data;

    // Callbacks
    return {
      onClick(event) {
        event.preventDefault();

        // Update visited
        updateVisited(url, visited + 1);
      },
    };
  };

  return (
    <div>
      {/* Your component */}
      <AnchorList list={model} each={getItemCallbacks} />
    </div>
  );
};

export default ListContainer;
import React from "react";
import { LoopItem } from "react-loop-item";

import style from "./AnchorList.module.css";

// <AnchorList> needs raw datas and <Item> callbacks injector.
const AnchorList = ({ list, each }) => {
  // Formatter for <Item> props
  const getItemProps = (data, index) => {
    const { url, description, visited } = data;

    return {
      // Properties
      key: url,
      href: url,
      label: description,

      // Inject <Item> callbacks
      ...each(data, index),
    };
  };

  return (
    <ul className={style["ul-style"]}>
      <LoopItem target={Item} list={list} each={getItemProps} />
    </ul>
  );
};

// Check target props
const Item = ({ label, href, onClick }) => (
  <li className={style["li-style"]}>
    <a href={href} onClick={onClick}>
      {label}
    </a>
  </li>
);

export default AnchorList;

Rendering Optimization

If rendering optimization is required, set the memo option.

For this to work smoothly, you need to manage the elements of the list as immutable objects. And make sure the references to the each callback don't change.

import React, { useReducer, useCallback } from "react";
import { ListWrap } from "react-loop-item";

// Demo data
const siteList = [
  { url: "aaa.com", description: "aaa site", visited: 4 },
  { url: "bbb.com", description: "bbb site", visited: 2 },
  { url: "ccc.com", description: "ccc site", visited: 8 },
];

// List reducer
const reducer = (state, url) =>
  state.map((item) =>
    // Returns new object only if it is a target.
    item.url !== url
      ? item
      : {
          ...item,
          visited: item.visited + 1,
        }
  );

const MemoList = () => {
  // Visit is dispatch
  const [list, visit] = useReducer(reducer, siteList);

  // Cached each
  const each = useCallback(
    (data, index) => ({
      ...data,
      onClick(event) {
        event.preventDefault();
        visit(data.url);
      },
    }),
    [visit] // Visit does not change the reference
  );

  // Try changing memo
  return (
    <ListWrap tag="ul" target={Anchor} list={list} each={each} memo="url" />
  );
};

const Anchor = ({ url, description, visited, onClick }) => {
  // Check rendering
  console.log("rendering!", url);
  return (
    <li>
      <a href={url} onClick={onClick}>
        {description}({visited})
      </a>
    </li>
  );
};

export default MemoList;

License

MIT © coxcore