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

ino-listview

v1.0.2

Published

A customizable ListView component for React

Downloads

218

Readme

ino-listview

A customizable ListView component for React applications.

Installation

Install the package using npm:

## Usage

Here's a basic example of how to use the ListView component:

import React from "react";
import { ListView } from "ino-listview";
const data = [
  { id: 1, name: "Item 1" },
  { id: 2, name: "Item 2" },
  { id: 3, name: "Item 3" },
];
const MyComponent = () => {
  const renderItem = ({ item, index, isActive }) => (
    <div className={isActive ? "active" : ""}>{item.name}</div>
  );
  return (
    <ListView
      itemsCount={10}
      itemsTotal={data.length}
      itemWidth={10}
      itemHeight={5}
      renderItem={renderItem}
      data={data}
    />
  );
};

Props

The ListView component accepts the following props:

| Prop | Type | Default | Description | | ------------------ | -------------------------- | ------------ | ---------------------------------------------------- | | id | string | - | Unique identifier for the list | | uniqueKey | string | 'list-' | Prefix for item keys | | listType | 'horizontal' | 'vertical' | 'horizontal' | Orientation of the list | | nativeControle | boolean | false | Enable native keyboard control | | debounce | number | 300 | Debounce time for keyboard events (ms) | | itemsCount | number | - | Number of items visible at once | | itemsTotal | number | - | Total number of items in the list | | buffer | number | - | Number of extra items to render for smooth scrolling | | itemWidth | number | - | Width of each item (in rem) | | itemHeight | number | - | Height of each item (in rem) | | isActive | boolean | - | Whether the list is currently active | | initialActiveIndex | number | 0 | Initial active item index | | onBackScrollIndex | number | null | Index to scroll to on 'back' action | | startScrollIndex | number | 0 | Initial scroll position | | direction | 'ltr' | 'rtl' | 'ltr' | Text direction | | onMouseEnter | function | () => {} | Callback when mouse enters an item | | onUp | function | () => {} | Callback for 'up' action | | onDown | function | () => {} | Callback for 'down' action | | onLeft | function | () => {} | Callback for 'left' action | | onRight | function | () => {} | Callback for 'right' action | | onBack | function | () => {} | Callback for 'back' action | | renderItem | function | - | Function to render each item | | data | array | - | Array of data to render |

Customization

You can customize the appearance of the ListView by styling the following classes:

  • .scroll-view-parent: The parent container of the list
  • .scroll-view: The scrollable container
  • .list-view: Applied to horizontal lists

License

This project is licensed under the MIT License.