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

@wjfe/dataview

v0.10.0

Published

> Svelte v5 table component suitable for examination of extensive tabular data.

Downloads

204

Readme

@wjfe/dataview

Svelte v5 table component suitable for examination of extensive tabular data.

Overview

The data view component renders a table with functionality suitable for close examination of the presented data. It provides conveniences like pinnable columns and row highlighting on hover, useful to users when following data with their eyes.

Demo Website

The component tries to be as unopinionated as possible in terms of styling and tries to provide as little styling as possible. Certain features, however, impose some appearance requirements. For example, pinning columns in the grid requires opaque background colors or else the data from other columns will be seen through the pinned columns when the data view is scrolled horizontally.

To theme the table to your needs or otherwise make it play well with your styling framework of choice (Bootstrap, Tailwind CSS, Bulma, etc.), you may style it in accordance to what is shown in the Theming the Data View section.

Quickstart

Install the package:

npm i @wjfe/dataview

Now import the data view component and use it:

import { WjDataView } from '@wjfe/dataview';

The only two required properties are columns and data. The former defines the columns in the data view; the latter provides the data that shows in each column. By default, the key property of each column is treated as the key to retrieve data from the data row, but this can be overridden by providing get functions.

Each column must have the key and the text properties. Any other property is optional.

Each data object (the rows) must have an id property of type number or string, and the wjdv property, which is an object that holds operational data for each row. The defineData() function is a helper function that helps you fulfill these 2 requirements. The id values are meant to be unique amongst the data set.

IMPORTANT: Always bind columns and data. The data view control will mutate properties inside this data, so the best practice is to bind.

<script lang="ts">
    import { WjDataView, defineData } from '@wjfe/dataview';
    import { type MyDataModel } from 'path/to/my-model-types.js';

    type MyColumn = WjDvColumn<MyDataModel>;
    const columns = $state<MyColumn[]>([
        {
            key: 'id',
            text: 'ID'
        },
        {
            key: 'tagName',
            text: 'Tag'
        }
    ]);
    // Obtain the data somehow.  This could be part of the results of the universal or server load() SvelteKit 
    // function, or could be obtained in non-SvelteKit projects with a fetch() call.
    const dataFromApi = getDataSomehow();
    // Now ensure the data fulfills the component requirements using "defineData":
    let data = $state(defineData<MyDataModel>(dataFromApi));
    // The model type here ------^^^^^^^^^^^ may not be needed if you have properly typed the `getDataSomehow()` 
    // function or the `dataFromApi` variable.
</script>

...
<WjDataView bind:columns bind:data>
    <!-- snippets go here -->
</WjDataView>

This example would render the data view with two columns, whose captions will read ID and Tag. The data shown in each column will be extracted from the MyDataModel.id and MyDataModel.tagName properties of each of the data objects in the data array.

The defineData() function mutates the data for performance reasons. It works the items directly as opposed to cloning them. Also, the same array is returned for the same performance reasons.

Theming the Data View

As stated in the overview, the data view's appearance can be customized. The component has been styled using CSS variables with some defaults. If you wish, you may redefine the variables at will (the variables are listed at the end of the section), but it is best to use the theme component WjDataViewTheme that provides a friendlier way than directly defining the CSS variables.

The WjDataViewTheme Component

This component is a mere convenience to setting up themes for data view components. It works by defining the CSS variables in a <div> element with its CSS display attribute set to contents that wraps the target WjDataView component.

TIP: The WjDataViewTheme component doesn't have to be the immediate parent of a WjDataView. It can be placed higher in the hierarchy to, for example, cover more than one WjDataView component.

The theme component has a single theme property of type Theme:

export type ComponentColor = {
    backgroundColor?: string;
    opacity?: number;
    color?: string;
};

export type ResizerColor = {
    backgroundColor?: string;
    borderColor?: string;
};

export type BorderDefinition = {
    width?: string;
    style?: 'dashed' | 'dotted' | 'double' | 'groove' | 'inset' | 'outset' | 'ridge' | 'solid' | 'unset';
    color?: string;
};

export type Theme = {
    table?: ComponentColor;
    stripes?: ComponentColor;
    rowTracking?: ComponentColor;
    rowSelection?: ComponentColor;
    pinnedColumnsDivider?: BorderDefinition,
    resizer?: {
        width?: string;
        overlay?: {
            opacity?: number;
            item?: ResizerColor;
            positiveDelta?: ResizerColor;
            negativeDelta?: ResizerColor;
        }
    };
    gridBorders?: BorderDefinition;
};

While the amount of properties is large, each one of them are optional. Simply set the properties that you wish to customize. The properties that aren't set will take the default value documented in the table further down.

For example, Bootstrap consumers might want to ensure that the data view always uses the body's background color. In this case, we could create the following theme in a dataViewThemes.ts (potential) file:

import { type Theme } from '@wjfe/dataview';

export const bootstrapTheme: Theme = {
    table: {
        backgroundColor: 'var(--bs-body-bg-rgb)'
    },
    stripes: {
        backgroundColor: 'var(--bs-emphasis-color-rgb)'
    },
    rowTracking: {
        backgroundColor: 'var(--bs-primary-rgb)',
        opacity: 0.2
    },
    rowSelection: {
        backgroundColor: 'var(--bs-row-selection-bg-color-rgb)',
    }
};

This is the actual modification set in the demonstration page. The first three variables are provided by Bootstrap, while the last one (--bs-row-selection-bg-color-rgb) is defined inside the demo project.

As seen, one can take advantage of CSS variables to define values. Bootstrap provides light and dark modes, and these variables have different definitions depending on the mode, making the data view's theme immediately responsive to mode selection changes.

This is not perfect, however, because Bootstrap doesn't have -rgb variables for every color, so not everything goes as smoothly. Create CSS variables that adjust to the color mode to perfect the theme. For example, the last one has been defined as:

.theme-def {
    --bs-row-selection-bg-color-rgb: 221, 235, 255;
    
    :global([data-bs-theme="dark"]) & {
        --bs-row-selection-bg-color-rgb: 21, 35, 55;
    }
}

With this technique, we can create fully responsive themes for the data view component.

IMPORTANT: All background colors are composed using the provided color and an opacity value. This is why the color must be specified in RGB format, or with a CSS variable that defines it in RGB format. Formats like #rrggbb simply won't work.

Use the WjDataViewTheme component as a wrapper for any WjDataView components that you may have. This wrapper doesn't have to be the immediate parent, so put it wherever is best according to your needs.

<script lang="ts">
    import { bootstrapTheme } from '../dataViewThemes.js';
</script>

<WjDataViewTheme theme={bootstrapTheme}>
    <WjDataView ...>
        <!-- Snippets go here -->
    </WjDataView>
</WjDataViewTheme>

The complete list of CSS variables that can be set for the data view component are:

| CSS Variable | Light Default | Dark Default | Description | | - | - | - | - | | --wjdv-bg-color-rgb | 255, 255, 255 | 0, 0, 0 | Data view's background color. | | --wjdv-bg-opacity | 1 | 1 | Background's opacity. | | --wjdv-fg-color | inherit | inherit | Foreground (or text) color. Usually this one doesn't need to be set. | | --wjdv-striping-bg-color-rgb | 0, 0, 0 | 255, 255, 255 | Striping background color. Set the opacity as well. | | --wjdv-striping-bg-opacity | 0.04 | 0.07 | Striping background color's opacity. | | --wjdv-striping-fg-color | inherit | inherit | Foreground (or text) color for striped rows. | | --wjdv-rowtracking-bg-color-rgb | 0, 0, 0 | 255, 255, 255 | Background color for row tracking. | | --wjdv-rowtracking-bg-opacity | 0.07 | 0.15 | Opacity for row tracking. Usually set higher than the striping one or the effect doesn't look very good. | | --wjdv-rowtracking-fg-color | inherit | inherit | Foreground (or text) color for tracked rows. | | --wjdv-sticky-divider-width | 0.1em | 0.1em | Width of the border that divides pinned columns from unpinned ones. | | --wjdv-sticky-divider-style | solid | solid | Style of the border that divides pinned columns from unpinned ones. | | --wjdv-sticky-divider-color | darkgray | lightgray | Color of the border that divides pinned columns from unpinned ones. | | --wjdv-resizer-width | 0.4em | 0.4em | Column resizer's width. | | --wjdv-resizer-overlay-opacity | 0.7 | 0.7 | Opacity of the entire resizer overlay. | | --wjdv-resizer-overlay-bg-color | lightblue | #0578ea | Background color of the overlay section that represents the original column's size. | | --wjdv-resizer-overlay-border-color | blue | #13aeff | Border color of the overlay section that represents the original column's size. | | --wjdv-resizer-deltapos-bg-color | lightgreen | lightgreen | Background color of the overlay section that represents the column's size increase. | | --wjdv-resizer-deltapos-border-color | green | green | Border color of the overlay section that represents the column's size increase. | | --wjdv-resizer-deltaneg-bg-color | pink | pink | Background color of the overlay section that represents the column's size reduction. | | --wjdv-resizer-deltaneg-border-color | red | red | Border color of the overlay section that represents the column's size reduction. | | --wjdv-selected-bg-color-rgb | 227, 240, 254 | 15, 25, 74 | Background color of rows that have been selected. | | --wjdv-selected-bgopacity | 1 | 1 | Background opacity of rows that have been selected. | | --wjdv-selected-fg-color | inherit | inherit | Foreground color of rows that have been selected. | | --wjdv-grid-line-width | 0.01em | 0.01em | Width of the table's border lines. | | --wjdv-grid-line-style | solid | solid | Style used in the table's border lines. | | --wjdv-grid-line-color | currentColor | currentColor | Color used in the table's border lines. |

Reference

Props

| Property | Type | Default Value | Bindable | Description | | - | - | - | - | - | | columns | WjDvColumn<TCol, TRow>[] | (none) | Yes | Defines the columns the data view component will create. | | data | WjDvRow<TRow>[] | (none) | Yes | The data that is shown by the data view component. | | get | (row: TRow, key: string) => any | (function) | | Function that retrieves a column's value using the row and provided key for columns that don't provide one. | | defaultWidth | number | 10 | | The width for colums that don't specify its own width, in em's. | | rowTracking | boolean | true | | Turns the row tracking feature on and off. | | rowSelectionBg | boolean | true | | Turns the row-highlighting-on-selection feature on and off. | | striped | boolean | true | | Turns the striping of rows on and off. | | pinnedDivider | boolean | true | | Turns the divider between pinned and unpinned columns on and off. | | class | string | undefined | | Additional CSS classes that are applied to the data view's viewport (the top-level element). | | controlColumn | ControlColumn<TRow, TCol> | undefined | Yes | Specifies the shape of the control column, which an extra column that is always the first pinned column. | | noViewport | boolean | false | | Allows the exclusion of the component's viewport. | propSpreadingTarget | PropSpreadingTarget | root | | Establishes the target for property spreading. |

Snippets

| Name | Parameters | Description | | - | - | - | | headerCell | ColumnContext<TRow, TCol> | Renders header cells' content. The snippet is passed the column definition. | | dataCell | DataCellContext<TRow, TCol> | Renders data cells' content. The snippet is passed the column definition and the data object for the row being rendered. | | rowExpansion | RowContext<TRow> | Renders arbitrary content immediately below the data cells of the row. It is only rendered when WjDvRow<TRow>.wjdv.expanded is true. | | controlHeaderCell | (none) | Renders the contents of the control column's header cell. | | controlDataCell | RowContext<TRow> | Renders the contents of the control column's data cells. | | caption | (none) | Renders the content of the data view's caption. |

Events

None.

Roadmap

  • [x] Scrollable viewport
  • [x] Striped look
  • [x] Row highlighting effect on hover
  • [x] Column alignment
  • [x] Text wrap control
  • [x] Hideable columns
  • [x] Pinnable columns
  • [x] Customizable appearance
  • [x] Theme component
  • [x] headerCell snippet
  • [x] dataCell snippet
  • [x] Resizable columns
  • [x] Expansible rows
  • [x] Row selection
  • [x] Control column
  • [ ] Make cell/row/column padding themeable
  • [ ] dataRow snippet (complex)