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

@internetarchive/infinite-scroller

v1.0.1

Published

An infinite scroller web component.

Downloads

274

Readme

Build Status

Internet Archive Infinite Scroller

This is an infinite scroller web component, created with Lit. It detects when the user scrolls near the bottom to allow the consumer to fetch more data. It makes efficient use of browser resources by removing cells that are offscreen and loading a buffer of around either end of the visible cells to to preload cells before scrolling them into view.

Usage

// Have your component or a standalone datasource object
// implement the `InfiniteScrollerCellProviderInterface`,
// which has 1 method: `cellForIndex(index: number): TemplateResult | undefined`
class MyElement extends LitElement implements InfiniteScrollerCellProviderInterface {
  // infinite-scroller will call your method when it needs a cell at a given index
  cellForIndex(index: number): TemplateResult | undefined {
    const useTile1 = Math.random() < 0.5;
    if (useTile1) {
      return html`<tile-1>${index}</tile-1>`;
    } else {
      return html`<tile-2>${index}</tile-2>`;
    }
  }

  // when the user has scrolled to a certain point, it will emit a
  // `scrollThresholdReached` event, at which point you can fetch
  // more data and increase the `itemCount`
  scrollThresholdReached() {
    this.infiniteScroller.itemCount += 50;
  }

  // using infinite-scroller:
  // - `itemCount`: update this value when you want to display more data
  // - `cellProvider`: the data source for the cells that will have `cellForIndex(index:number)`
  // - `placeholderCell`: provide it a custom placeholder cell if you'd like
  // - `@scrollThresholdReached`: a listener for when the user nears the bottom to fetch more
  render() {
    return html`
      <infinite-scroller
        .itemCount=${100}
        .cellProvider=${this}
        .placeholderCellTemplate=${html`
          <my-placeholder-cell></my-placeholder-cell>
        `}
        @scrollThresholdReached=${this.scrollThresholdReached}
      >
      </infinite-scroller>
    `
  }
}

Local Demo with web-dev-server

yarn start

To run a local development server that serves the basic demo located in demo/index.html

Testing with Web Test Runner

To run the suite of Web Test Runner tests, run

yarn run test

To run the tests in watch mode (for <abbr title="test driven development">TDD</abbr>, for example), run

yarn run test:watch

Linting with ESLint, Prettier, and Types

To scan the project for linting errors, run

yarn run lint

You can lint with ESLint and Prettier individually as well

yarn run lint:eslint
yarn run lint:prettier

To automatically fix many linting errors, run

yarn run format

You can format using ESLint and Prettier individually as well

yarn run format:eslint
yarn run format:prettier

Tooling configs

For most of the tools, the configuration is in the package.json to reduce the amount of files in your project.

If you customize the configuration a lot, you can consider moving them to individual files.