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

snabbis

v0.10.0

Published

Opinionated way to use snabbdom together with reactive-lens.

Downloads

15

Readme

snabbis

An opinionated domain specific language for snabbdom.

API overview

  • attach
  • tag
  • module s
    • id
    • classes
    • classed
    • style
    • css
    • attrs
    • key
    • on
    • on_
    • hook
    • hooks
    • props
    • dataset
    • input
    • checkbox
    • button
    • textarea
    • select
  • TagData
  • h
  • VNode
  • VNodeData
  • Patch
  • module tags
    • factory
    • div
    • span
    • p
    • pre
    • em
    • strong
    • b
    • i
    • u
    • strike
    • small
    • table
    • tbody
    • thead
    • tfoot
    • tr
    • td
    • th
    • h1
    • h2
    • h3
    • h4
    • h5
    • h6
    • li
    • ul
    • ol
    • option

Documentation

  • attach: <S>(root: HTMLElement, init_state: S, setup_view: (store: Store<S>) => () => vnode.VNode, patch?: Patch) => (setup_next_view: (store: Store<S>) => () => vnode.VNode) => void

    Attach a view to a reactive lens store initialized at some state.

    Suggested usage:

    import * as App from "./App"
    import * as snabbis from "snabbis"
    const root = document.getElementById('root') as HTMLElement
    const reattach = snabbis.attach(root, App.init(), App.App)
    
    declare const module: any;
    declare const require: any;
    
    if (module.hot) {
      module.hot.accept('./App.ts', (_: any) => {
        try {
          const NextApp = require('./App.ts')
          reattach(NextApp.App)
        } catch (e) {
          console.error(e)
        }
      })
    }

    Returns the reattach function.

  • tag: (tag_name_classes_id: string, ...tag_data: Array<TagData>) => vnode.VNode

    Make a VNode

    toHTML(tag('span#faq.right'))
    // => '<span id="faq" class="right"></span>'
    toHTML(tag('table .grid12 .tiny #mainTable'))
    // => '<table id="mainTable" class="grid12 tiny"></table>'
    toHTML(tag('.green'))
    // => '<div class="green"></div>'

    You can use strings for text:

    toHTML(tag('span', 'Loreen ispun'))
    // => '<span>Loreen ispun</span>'

    You can nest tags:

    toHTML(tag('span', 'Announcement: ', tag('em', 'hello world'), '!')
    // => '<span>Announcement: <em>hello world</em>!</span>'

    You can pass arrays:

    const arr = ['apa', 'bepa']
    toHTML(tag('div', arr.map(e => tag('span', e))))
    // => '<div><span>apa</span><span>bepa</span></div>'

    You may also pass booleans, undefined/null and those will be filtered out:

    const x = 1
    const y = 2
    const largest = [x > y && 'x largest', x < y && 'y largest']
    toHTML(tag('span', largest))
    // => '<span>y largest</span>'
    const d = {b: 3, c: 4}
    toHTML(tag('span', d['a'], d['b']))
    // => '<span>3</span>'

    The other kinds of content to the tag function are documented by their respective function.

    Note: this documentation has imported snabbis like so:

    import { tag, s } from 'snabbis'

    Feel free to rename tag or s to whatever you feel beautiful, example:

    import { tag as h } from 'snabbis'

    The documentation also uses toHTML from the snabbdom-to-html.

module s

  • id: (id: string) => TagData

    Set the id

       toHTML(tag('div', s.id('root')))
       // => '<div id="root"></div>'
  • classes: (classes: Record<string, boolean>) => TagData

    Set some classes

       toHTML(tag('div', s.classes({example: true})))
       // => '<div class="example"></div>'
       toHTML(tag('div', s.classes({nav: true, strip: true}), s.classes({'left-side': true})))
       // => '<div class="nav strip left-side"></div>'
       toHTML(tag('div', s.classes({nav: true}), s.classes({nav: false})))
       // => '<div></div>'
  • classed: (...classnames: Array<string>) => TagData

    Set one or more classes

       toHTML(tag('div', s.classed('navbar')))
       // => '<div class="navbar"></div>'
       toHTML(tag('div', s.classed('colourless', 'green', 'idea', 'sleeping', 'furious')))
       // => '<div class="colourless green idea sleeping furious"></div>'

    Since you cannot have class names with spaces, the string is split on whitespace:

       toHTML(tag('div', s.classed(' colourless green idea sleeping  furious ')))
       // => '<div class="colourless green idea sleeping furious"></div>'

    Whitespace-only strings vanish:

       toHTML(tag('div', s.classed('', ' ')))
       // => '<div></div>'
  • style: (styles: VNodeStyle) => TagData

    Set some styles

       toHTML(tag('div', s.style({display: 'inline-block', textTransform: 'uppercase'})))
       // => '<div style="display: inline-block; text-transform: uppercase"></div>'
  • css: (styles: VNodeStyle) => TagData

  • attrs: (attrs: Record<string, string | number | boolean>) => TagData

    Set some attributes

       toHTML(tag('div', s.attrs({example: 1})))
       // => '<div example="1"></div>'
       toHTML(tag('div', s.attrs({a: 1, b: 2}), s.attrs({c: 3})))
       // => '<div a="1" b="2" c="3"></div>'
       toHTML(tag('div', s.attrs({a: 1}), s.attrs({a: 2})))
       // => '<div a="2"></div>'
  • key: (key: string | number) => TagData

    Set the key, used to identify elements when diffing

       tag('div', s.key('example_key')).key
       // => 'example_key'
  • on: <N extends "abort" | "activate" | "beforeactivate" | "beforecopy" | "beforecut" | "beforedeactivate" | "beforepaste" | "blur" | "canplay" | "canplaythrough" | "change" | "click" | "contextmenu" | "copy" | "cuechange" | "cut" | "dblclick" | "deactivate" | "drag" | "dragend" | "dragenter" | "dragleave" | "dragover" | "dragstart" | "drop" | "durationchange" | "emptied" | "ended" | "error" | "focus" | "input" | "invalid" | "keydown" | "keypress" | "keyup" | "load" | "loadeddata" | "loadedmetadata" | "loadstart" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup" | "mousewheel" | "MSContentZoom" | "MSManipulationStateChanged" | "paste" | "pause" | "play" | "playing" | "progress" | "ratechange" | "reset" | "scroll" | "seeked" | "seeking" | "select" | "selectstart" | "stalled" | "submit" | "suspend" | "timeupdate" | "volumechange" | "waiting" | "ariarequest" | "command" | "gotpointercapture" | "lostpointercapture" | "MSGestureChange" | "MSGestureDoubleTap" | "MSGestureEnd" | "MSGestureHold" | "MSGestureStart" | "MSGestureTap" | "MSGotPointerCapture" | "MSInertiaStart" | "MSLostPointerCapture" | "MSPointerCancel" | "MSPointerDown" | "MSPointerEnter" | "MSPointerLeave" | "MSPointerMove" | "MSPointerOut" | "MSPointerOver" | "MSPointerUp" | "touchcancel" | "touchend" | "touchmove" | "touchstart" | "webkitfullscreenchange" | "webkitfullscreenerror" | "pointercancel" | "pointerdown" | "pointerenter" | "pointerleave" | "pointermove" | "pointerout" | "pointerover" | "pointerup" | "wheel">(event_name: N) => (h: (e: HTMLElementEventMap[N]) => void) => TagData

    Insert an event handler which is in the HTMLElementEventMap

       tag('div',
         s.on('keydown')((e: KeyboardEvent) => {
           console.log('You pressed', e.char)})
       ).data.on.keydown !== undefined
       // => true
  • on_: (event_name: string, h: (e: Event) => void) => TagData

    Insert an event handler with any name

       tag('div',
         s.on_('keydown', (e: Event) => {
           console.log('You pressed', (e as KeyboardEvent).char)})
       ).data.on.keydown !== undefined
       // => true
  • hook: <N extends "pre" | "init" | "create" | "insert" | "prepatch" | "update" | "postpatch" | "destroy" | "remove" | "post">(hook_name: N) => (h: Hooks[N]) => TagData

    Insert a snabbdom hook

       tag('div',
         s.hook('insert')(
           (vn: VNode) =>
             console.log('inserted vnode', vn, 'associated with dom element', vn.elm)})
       ).data.hook.insert !== undefined
       // => true
  • hooks: (hooks: Hooks) => TagData

    Insert snabbdom hooks

       tag('div',
         s.hooks({
           insert: (vn: VNode) =>
             console.log('inserted vnode', vn, 'associated with dom element', vn.elm)})
       ).data.hook.insert !== undefined
       // => true
  • props: (props: Record<string, any>) => TagData

    Set some properties (ambient data attached to dom nodes)

       tag('div', s.props({example: 1})).data.props
       // => {example: 1}
       tag('div', s.props({a: 1, b: 2}), s.props({c: 3})).data.props
       // => {a: 1, b: 2, c: 3}
       tag('div', s.props({a: 1}), s.props({a: 2})).data.props
       // => {a: 2}
  • dataset: (dataset: Record<string, string>) => TagData

    Set data attribute

       tag('div', s.dataset({foo: 'bar'})).data.dataset.foo
       // => 'bar'
  • input: (store: Store<string>, onEnter?: () => void, ...tag_data: Array<TagData>) => vnode.VNode

  • checkbox: (store: Store<boolean>, ...tag_data: Array<TagData>) => vnode.VNode

  • button: (label: string, onClick: () => void, ...tag_data: Array<TagData>) => vnode.VNode

  • textarea: (store: Store<string>, rows?: number, cols?: number, ...tag_data: Array<TagData>) => vnode.VNode

  • select: (stored: Store<string>, keys: Store<Array<string>>, option: (key: string, index: number) => vnode.VNode, ...tag_data: Array<TagData>) => vnode.VNode

  • TagData: undefined

    Content to put in a tag

  • h: { (sel: string): vnode.VNode; (sel: string, data: vnode.VNodeData): vnode.VNode; (sel: string, text: string): vnode.VNode; (sel: string, children: Array<vnode.VNode>): vnode.VNode; (sel: string, data: vnode.VNodeData, text: string): vnode.VNode; (sel: string, data: vnode.VNodeData, children: Array<vnode.VNode>): vnode.VNode; }

  • VNode: undefined

    Convenience reexport of snabbdom's VNode

  • VNodeData: undefined

    Convenience reexport of snabbdom's VNodeData

  • Patch: undefined

    The type of a snabbdom patch, create one with snabbdom.init

module tags

Common tags

Example usage:

import { tags } from "snabbis"
const {div, span, h1} = tags
  • factory: (name: string) => (...tag_data: Array<TagData>) => vnode.VNode

  • div: (...tag_data: Array<TagData>) => vnode.VNode

  • span: (...tag_data: Array<TagData>) => vnode.VNode

  • p: (...tag_data: Array<TagData>) => vnode.VNode

  • pre: (...tag_data: Array<TagData>) => vnode.VNode

  • em: (...tag_data: Array<TagData>) => vnode.VNode

  • strong: (...tag_data: Array<TagData>) => vnode.VNode

  • b: (...tag_data: Array<TagData>) => vnode.VNode

  • i: (...tag_data: Array<TagData>) => vnode.VNode

  • u: (...tag_data: Array<TagData>) => vnode.VNode

  • strike: (...tag_data: Array<TagData>) => vnode.VNode

  • small: (...tag_data: Array<TagData>) => vnode.VNode

  • table: (...tag_data: Array<TagData>) => vnode.VNode

  • tbody: (...tag_data: Array<TagData>) => vnode.VNode

  • thead: (...tag_data: Array<TagData>) => vnode.VNode

  • tfoot: (...tag_data: Array<TagData>) => vnode.VNode

  • tr: (...tag_data: Array<TagData>) => vnode.VNode

  • td: (...tag_data: Array<TagData>) => vnode.VNode

  • th: (...tag_data: Array<TagData>) => vnode.VNode

  • h1: (...tag_data: Array<TagData>) => vnode.VNode

  • h2: (...tag_data: Array<TagData>) => vnode.VNode

  • h3: (...tag_data: Array<TagData>) => vnode.VNode

  • h4: (...tag_data: Array<TagData>) => vnode.VNode

  • h5: (...tag_data: Array<TagData>) => vnode.VNode

  • h6: (...tag_data: Array<TagData>) => vnode.VNode

  • li: (...tag_data: Array<TagData>) => vnode.VNode

  • ul: (...tag_data: Array<TagData>) => vnode.VNode

  • ol: (...tag_data: Array<TagData>) => vnode.VNode

  • option: (...tag_data: Array<TagData>) => vnode.VNode