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

sophie-view

v1.1.1-beta

Published

Provides basic support to represent Views.

Downloads

16

Readme

Sophie View

Provides basic support to represent Views. Normally we need a View when part of the DOM needs to change dynamically and respond to some events. Extending your Views from this abstract class will give your Views an structured way of defining this common behavior.

Part of the framework Sophie

npm version npm dependencies npm downloads

INSTALLATION

yarn add sophie-view

USAGE

AbstractView

Simple class to represent a DOM element. When defining your View class you will need to pass the DOM element that represents your View and define the events that you want to listen from it. When instantiating the View automatically this one will attach the events.

Having this DOM example

<body>
    <div id="view">
        <div class="foo"></div>
    </div>
</body>

index.ts

import { AbstractView, DomEvent } from "sophie-view";

class MyView extends AbstractView
{
	protected events: DomEvent[] = [
		{ name: 'click', queries: ['#view'], callback: this.onEventCallback },
		{ name: 'click', queries: ['.foo'], callback: this.onEventCallback2 },
	];

	public constructor (el: HTMLElement)
	{
		super(el);
	}

	private onEventCallback (e: MouseEvent): void
	{
		console.log('Click on #view element', e);
	}

	private onEventCallback2 (e: MouseEvent): void
	{
		console.log('Click on .foo element', e);
	}
}

const domElement = document.getElementById('view');

const myView = new MyView(domElement);
// Now:
// a click on the div with id "view" will log 'Click on #view element'
// and a click on the div with class "foo" will log 'Click on .foo element'

setTimeout(() => myView.detachEvents(), 5000);
// After 5 seconds all event listeners are removed

AbstractRenderableView

Simple class that extends the AbstractView and that has the ability to render html dynamically with data. In order to render, you will need to provide an object that extends the interface TemplateEngine. You can use the sophie-mustache-template-engine module that wraps mustache and extends it to make it compatible with this module.

Having this DOM example

<body>
    <div id="view"></div>
    <div id="view2"></div>
</body>

index.ts

import { MustacheHttp, MustacheString } from "sophie-mustache-template-engine";
import { AbstractRenderableView, DomEvent, TemplateEngine } from "sophie-view";

export class MyRenderableView extends AbstractRenderableView
{
	protected events: DomEvent[] = [];

	public constructor (el: HTMLElement, templateEngine: TemplateEngine)
	{
		super(el, templateEngine);
	}
}

const domElementView1 = document.getElementById('view');
const domElementView2 = document.getElementById('view');

// Using from the module sophie-mustache-template-engine the class
// MustacheString we can render a string with HTML into our view
const viewRenderableWithString = new MyRenderableView(
	domElementView1,
	new MustacheString('<div>Hello {{name}}!!</div>'),
);

// Or with MustacheHttp we can simply download a template from the path given
const viewRenderableWithHTMLTemplate = new MyRenderableView(
	domElementView2,
	new MustacheHttp('./template.html'),
);

// The method render returns a Promise so you can control when the
// template has been render

viewRenderableWithString.render({ name: 'world'})
	.then(() => console.log('Render done'))
	.catch((error) => console.log(error));

viewRenderableWithHTMLTemplate.render({ name: 'world'})
	.then(() => console.log('Render done'))
	.catch((error) => console.log(error));

Changelog

Changelog

Contributing

contributions welcome

License

This software is licensed under the terms of the MIT license. See LICENSE for the full license.