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

icat_tag

v1.0.9

Published

a tool to help create virtual dom.

Downloads

582

Readme

basic useage

方法介绍

方法总览

t().to() t().view() t().tag() t().attr() t().child() t().children() t().param() t().style() t().inject() t().draw() t().redraw() t().mount() t.parent

t()

创建一个虚拟节点,调用new Tag()

t().to((self)=>{})

通过回调函数的self将自己暴露给外部,可以卸载渲染函数外,也可以写在渲染函数里

t().view((self)=>{})

渲染函数,控制内部的render方法,每次重绘都会从新构建虚拟节点(内部的vnode属性)

t().tag(tagName)

定义虚拟标签的tagName 例如 div button input等 √必须写在渲染函数里

t().style({margin:"10px"})

定义虚拟标签的style属性 √必须写在渲染函数里

t().attr({onclick:=>})

定义虚拟标签的attribute,即属性,例如 class,onclick,onmouseover,type 对应标签的<div class="" type="" onclick="" onmouseover=""></div> √必须写在渲染函数里

t().children([tag1,tag2,t(),t(),"text"])

定义虚拟标签的子节点,是一个数组,每个元素必须是字符串,或者是Tag的实例 √必须写在渲染函数里

t().child

内部方法 √必须写在渲染函数里

t().param(()=>{return {a:12,b:5}})

当t()作为组件的时候,通过该方法给组件传参数 x 必须写在渲染函数外部

t().inject()

用法类似t().view(),在调用组件的时候使用,顾名思义,在组件原有view的基础上,给组件注入新的view 和view不同的是,view会直接覆盖内部的render方法,而inject是在原有的基础上追加 范例里通过该方法修改了comp1的background x 必须写在渲染函数外部,约等于渲染函数

t().draw()

内部方法 立即通过虚拟dom重新生成新的真实dom x 必须写在渲染函数外

t().redraw()

递归根据自身及其子节点的渲染函数重绘画面 会重新生成虚拟dom 会根据生成的虚拟dom调用其draw()方法生成真实dom x必须写在渲染函数外

t().mount(dom)

将组件挂载到html的dom标签里 x必须写在渲染函数外

import {t} from icat_tag

let comp1 = ()=>{
  let num = 0
  return t()
    .view((self)=>{
      self
        .tag("div")
        .style({
          width:"100px",
          height:"100px",
          background:"red"
        })
        .children([
          self.params.content || "comp1"
        ])
    })
}

let root = document.quertSelecotr("#root")

let num = 0
let vdom = null


t()
  .view((self)=>{
    self.children([
      comp1(),
      comp1()
        .to((self)=> vdom = self)
        .inject((self)=>{
          self
            .style({
              background:"#eee"
            })
            .attr({
              onclick:()=>{
                num++
                vdom.redraw() //update dom by hand
              },
              oncreate:(dom)=>{
                //dom operation
              }
            })
        .param ()=>{
          content:"click"+num
        }
          
        })
    ])
  })
  .mount(root)