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

@imgcook/dsl-h5-standard

v0.0.1

Published

在使用 imgcook 转换视觉稿生成代码的过程中,我们在不同的业务中会有自己的需求和想法,生成一套满足自己诉求的代码。为了满足用户定义自己诉求的代码,我们提供了开放的代码模板机制,在这套开放体系下,开发者可以根据达芬奇提供的数据和能力生成自己所需的代码,不再局限于官方所提供的代码。

Downloads

3

Readme

在使用 imgcook 转换视觉稿生成代码的过程中,我们在不同的业务中会有自己的需求和想法,生成一套满足自己诉求的代码。为了满足用户定义自己诉求的代码,我们提供了开放的代码模板机制,在这套开放体系下,开发者可以根据达芬奇提供的数据和能力生成自己所需的代码,不再局限于官方所提供的代码。

运行机制

我们会提供开发者一些数据和能力(lint等),开发者可以运用这些数据和能力在我们所提供的虚拟容器里执行自己的动态脚本代码,我们会拿到这段代码运行后返回的模板渲染所需的数据,最后渲染开发者编写的 xtemplate 模板得到输出代码返回给开发者。整个运行环境是在 Node 虚拟机里,我们使用 vm2 来实现这个环境,这里面没有内置的 node 模块和三方包可以调用,具体的开发文档见下面动态代码章节。

用户操作流程

|500x400

文件目录

imgcook-dsl-example
    |----package.json         // 测试所需要的包安装描述
    |----README.md
    |----src
    |      |----index.js      // Node 虚拟机里运行的动态代码,需要返回模板渲染数据
    |      |----template.xtpl // 模板渲染文件
    |
    |----test
    |      |----index.js // 可以直接在仓库执行 node 命令进行代码模板输出测试

动态代码

在动态代码运行的虚拟机里,没有内置的 node 模块和三方包可以调用。我们提供给开发者一个传参变量 layoutData,里面描述了imgcook还原后的模块结构组成和 UI 细节。我们规定动态代码是 CommonJS 规范,返回一个可执行的函数返回模板渲染数据,包括完整的渲染模板所需要的数据(一般由样式、类XML(JSX/HTML)、自定义部分等组成),其中 XML 和 Style 部分会在编辑器中进行预览。

// 动态代码
module.exports = function(layoutData, options) {
  console.log(layoutData); // UI 模块结构组成和样式描述等
  const renderData = {};
  return {
    renderData: renderData,
    xml: '',
    style: '',
    prettierOpt: {} // 非必须,用于执行模板渲染后代码格式化配置
  };
}

传参变量

我们提供给开发者两个传参变量layoutData和options。

layoutData

layoutData 是描述imgcook还原后的模块结构组成和 UI 细节的一个 JSON,默认我们会对每个 DOM 节点生成一个 JSON,最后根据布局结构将这些单独的 JSON 组装成一个大 JSON,即 layoutData。每个节点都有以下属性:

  • id,String类型,节点 id
  • componentType,String类型, 节点类型,有 view/text/picture 三种类型,对应容器、文本和图片
  • children,Array类型, 节点下的子节点,一般为 view 类型的节点才具有这个属性
  • attrs,Object类型, 节点属性,里面一般有imgcook转换后的类名 className 以及图片地址
  • style,节点样式对于文本类型和图片类型还有额外的字段来描述:
  • text文本类型会有一个 innerText 属性描述文本直接值,且会在 style 里有一个行数字段 lines 标注有几行。
{
  "id": "id_3456",
  "componentType": "text",
  "style": {
    "fontSize": "28",
    "lines": 1,
    "fontWeight": "500",
    "width": 84,
    "height": 40
  },
  "attrs": {
    "className": "shopRedmanName"
  },
  "innerText": "韩凯特"
}
  • picture图片类型会在 attrs 属性里有一个 src 属性描述图片来源链接。
{
  "id": "id_4567",
  "componentType": "picture",
  "style": {
    "width": 630,
    "height": 840
  },
  "attrs": {
    "src": "https://gw.alicdn.com/tfs/TB11j1dbmCWBuNjy0FhXXb6EVXa-630-840.png",
    "className": "bg"
  }
}

下面是包含三种类型的一个 layoutData 例子:

{
  "id": "id_1234",
  "componentType": "view",
  "children": [
    {
      "id": "id_3456",
      "componentType": "text",
      "style": {
        "fontSize": "28",
        "lines": 1,
        "fontWeight": "500",
        "width": 84,
        "height": 40
      },
      "attrs": {
        "className": "shopRedmanName"
      },
      "innerText": "韩凯特"
    },
    {
      "id": "id_4567",
      "componentType": "picture",
      "style": {
        "width": 630,
        "height": 840
      },
      "attrs": {
        "src": "https://gw.alicdn.com/tfs/TB11j1dbmCWBuNjy0FhXXb6EVXa-630-840.png",
        "className": "bg"
      }
    }
  ],
  "attrs": {
    "className": "viewGroup"
  },
  "style": {
    "width": 750,
    "height": 1334
  }
}

除此外,各个节点如果有绑定过数据字段,会有个 tpl 字段,标记绑定的 Schema 值,比如:

{
  "id": "id_3456",
  "componentType": "text",
  "style": {
    "fontSize": "28",
    "lines": 1,
    "fontWeight": "500",
    "width": 84,
    "height": 40
  },
  "attrs": {
    "className": "shopRedmanName"
  },
  "innerText": "韩凯特",
  "tpl": "item_title"
}

当然还存在字段嵌套在某一个字段中绑定的情况:

{
  "id": "id_3456",
  "componentType": "text",
  "style": {
    "fontSize": "28",
    "lines": 1,
    "fontWeight": "500",
    "width": 84,
    "height": 40
  },
  "attrs": {
    "className": "shopRedmanName"
  },
  "innerText": "韩凯特",
  "tpl": "shop_items[0].item_title"
}

我们比较推荐的做法是能再生成代码阶段直接用这些字段以传值的形式替换掉原来的直接值:

const mockData = {
    item_title: '韩凯特'
};
render(<Mod dataSource={mockData} />);

options

为了开发者的方便,我们在 options 里包含了两个比较方便的库供开发者使用,一个是当下比较流行的 format 类库 prettier,支持比较多语言的代码格式化优化;另一个是通用比较多的 lodash 库。

  • prettier
  • _

模板文件

模板文件使用 xtemplate

Test

你可以在本地模拟imgcook提供的虚拟机环境调试生成的代码。npm run test