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

@advanced-rest-client/idb-store

v1.0.1

Published

Event based access to ARC datastores

Downloads

31

Readme

ARC's IDB data store

Data models for Advanced REST Client application. This module contains the logic used by the application to store and restore data to the UI.

It also provides DOM events based access to the API. Each operation has corresponding event that can be used to access the data. A convenient way of using the events API is to by using the ArcModelEvents and ArcModelEventTypes interfaces. The first provides access to function which call creates and dispatches events on a given node. The later provides the definition of the event types for manual handling.

It is highly recommended to use this models with the support of typescript. The library and each component has types definition with documentation for convenient use. Types are declared in @advanced-rest-client/events module.

Published on NPM

Tests and publishing

Usage

The models are modularized so the ARC application can easily replace each interface depending on the interface. It also allows to extract part of the application logic to the outside the application and use the same models to add storage support.

Installation

npm install --save @advanced-rest-client/idb-store

Working with the events

Each model has a corresponding to (almost) each public method an event that can be used instead of directly accessing the model instance. It is more convenient than direct use of the library in each component as it's easier to manage API changes if the components are using an abstract layer instead of the direct API. This way it's a much simpler task to change the data store implementation that when the components would use the library directly.

Say, you want to list ARC requests data stored in the application. This is supported by the request-model. You can access the data by dispatching the list event:

import { RequestModel } from '@advanced-rest-client/idb-store';
import { ArcModelEvents } '@advanced-rest-client/events';

const store = new RequestModel(window);
store.listen(window);

const result = await ArcModelEvents.Request.list(document.body, 'saved', {
  limit: 25,
});
const { items } = result;

Pagination

All components uses the same interface to list the data. When calling list() function (or the corresponding event) an the model it always accept an object with the limit and nextPageToken property. Both are optional. The limit tells the model how many entities to return with the response. Then next page token is returned with each list result and contains hashed data about the current position in the pagination.

import { RequestModel } from '@advanced-rest-client/idb-store';
import { ArcModelEvents } '@advanced-rest-client/events';

const store = new RequestModel(window);
store.listen(window);

const result = await ArcModelEvents.Request.list(document.body, 'saved', {
  limit: 25,
});
const { items, nextPageToken } = result;

The items array contains a list of ARCSavedRequest entities. The second property returned by the query is the nextPageToken that now can be passed to the next list request to request the next page of the results.

const next = await ArcModelEvents.Request.list(document.body, 'saved', {
  limit: 25,
  nextPageToken,
});

Note that limit has to be defined for each call as the page cursor does not store this information.

Development

git clone https://github.com/@advanced-rest-client/idb-store
cd idb-store
npm install

Running the demo locally

npm start

Running the tests

npm test