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

@orcden/od-smart-list

v2.1.0

Published

OrcDen List Component

Downloads

8

Readme

A component to quickly define lists with headers based on a given route

<od-smart-list> is a simple component that allows the user to define list headers and a route. The list refreshes whenever the route or given data changes. Easy for tooling routes and integrating search and filtering.

Installation

  • Install with npm
npm i @orcden/od-smart-list

Usage

import '@orcden/od-smart-list';
<od-smart-list id='smart-list' row-id='id' route='https://example.com/route'>
    <od-smart-list-header name='field1'>Test Head 1</od-smart-list-header>
    <od-smart-list-header name='field2'>Test Head 2</od-smart-list-header>
</od-smart-list>

Attributes

OD-Smart-List

| Attribute | Type | Default | Description | |-----------|---------|---------|-----------------------------------------------------------------------------------------| | route | String | undefined | Set this to have the list automatically get data from a route | | row-id | String | undefined | Will set each row's id to the field value indicated here. |

OD-Smart-List-Header

| Attribute | Type | Default | Description | |-----------|---------|---------|-----------------------------------------------------------------------------------------| | name | String | undefined | set this value to tell which field of data to pull for each column |

Properties

OD-Smart-List

| Attribute | Type | Default | Description | |-----------|---------|---------|-----------------------------------------------------------------------------------------| | route | String | undefined | Set this to have the list automatically get data from a route | | rowId | String | undefined | will set each row's id to the field value indicated here. | | data | Array | undefined | Can be used to get and set the data displayed in the list |

Functions

OD-Smart-List

| Name | Parameters | Description | |-----------|------|-----------------------------------------------| | refresh | None | Manually refreshes the list. should not need to be called under most circumsatnces | | addRowClickListener | callback | Adds a click listener to each row. Callback parameters: event, row | | orderBy | string fieldName, int direction | orders the list based on the given header fieldname and direction ( 1 for ascending, -1 for descending ) |

Styling

  • CSS variables are available to alter the default styling provided

OD-Smart-List

| Shadow Parts | Description | |------------------|-----------------------| | list-table | The main table used for the list | | header-row | The header row | | header-cell | The cells in the header | | data-row | The rows that hold data | | data-cell | The cells that hold data | | empty-label | The label that displays the empty message | | fieldName | maps the 'name' of each header to a column of cells |

Development

Run development server and show demo

npm run demo

Run linter

npm run lint

Fix linter errors

npm run fix

Run tests

npm run test

Build for production

npm run build