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

@neighbourhoods/client

v0.0.10

Published

This package provides an API for interacting with a sensemaker-lite instance along with typescript type definitions of sensemaker-lite primitives, IO payloads, other utility types and functions, along with a reactive state objects for declarative binding

Downloads

16

Readme

@neighbourhoods/client

This package provides an API for interacting with a sensemaker-lite instance along with typescript type definitions of sensemaker-lite primitives, IO payloads, other utility types and functions, along with a reactive state objects for declarative binding UI components to the state.

Currently compatible with holochain v0.1.

Sensemaker Store API

The main way to interact with the API is by spawning an instance of SensemakerStore:

const installedAppId = "applet_name"; //this would change to whatever app ID your NH happ is given
const roleName = "nh_role_name"; // this would change to whatever role name your NH happ is given
const appAgentWebsocket: AppAgentWebsocket = await AppAgentWebsocket.connect(``, installedAppId);
const sensemakerService = new SensemakerService(appAgentWebsocket, roleName)
const sensemakerStore = new SensemakerStore(sensemakerService);

Then you can use any of the methods on the sensemakerStore object to interact with the sensemaker-lite instance.

See the API Documentation for implementation details.

Stateful properties use svelte/store to provide a reactive interface to the data. To subscribe to the store, you can use lit-svelte-store to create a reactive property in a lit-element component:

export class ContextSelector extends ScopedElementsMixin(LitElement) {
    @contextProvided({ context: sensemakerStoreContext, subscribe: true })
    @state()
    public  sensemakerStore!: SensemakerStore

    contexts: StoreSubscriber<AppletConfig> = new StoreSubscriber(this, () => this.sensemakerStore.appletConfig());

    render() {
        return html`
            <div class="list-list-container">
                <mwc-list>
                    ${Object.keys(this.contexts?.value?.cultural_contexts).map((contextName) => html`
                        <list-item listName=${contextName}></list-item> 
                    `)}
                <mwc-list>
            </div>
        `
    }
}

In this example, if this.contexts.value changes, the component will re-render. For example, if this.sensemakerStore.createCulturalContext(...) is called, it updates the applet config store, which triggers a re-render of the component with the new value.

Widget Registration

Part of the NH framework is being able to define your own widgets which are used to assess resources and display dimensions. This is the core of enabling the full configurability of your NH applets and exploring various forms of assessing and the cascading feedback-loop effects of those assessments.

There are two main types of widgets:

  • create assessment widgets: used to create an assessment along a specific dimension for a resource
  • display assessment widgets: used to display the value of an assessment along an output dimension of a method (for example, the total "likes" on a resource)

To define your own custom component for each type of widget, there are two abstract classes which you will extend respectively, AssessDimensionWidget and DisplayDimensionWidget. For example,

export class ImportanceDimensionAssessment extends AssessDimensionWidget {

and

export class ImportanceDimensionDisplay extends DisplayDimensionWidget {

Then you would implement the render() function to return the HTML template for your widget.

You can then register these widgets in the widget registry using the registerWidget function, which is used to register a pair of widgets (assessment and display) for a list of dimensions.

Assessing resources

There is a wrapper component sensemake-resource that you can use to wrap your resource components, which will handle rendering dimension and assessment widgets based on the current sensemaker store state. To use it, you can include it in your html code and wrap the resource component, like so:

<sensemake-resource 
    .resourceEh=${task.entry_hash} 
    .resourceDefEh=${get(this.sensemakerStore.appletConfig()).resource_defs["task_item"]}
>
    <task-item 
        .task=${task} 
        .completed=${('Complete' in task.entry.status)} 
    ></task-item>
</sensemake-resource> 

All you need to do is provide the component with the resource entry hash and the resource def entry hash.