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

iconfont-spanner

v2.6.0

Published

iconfont 本地管理服务

Downloads

641

Readme

iconfont-spanner

将本地 svg 文件转化为 iconfont 或 svg 组件

安装

npm i -D iconfont-spanner

使用

  1. 根目录创建 iconfont.config.mjs
  2. npx iconfontSVG 转化为 iconfont 或者组件, 或
  3. npx iconfont start 启动本地服务,访问地址将在终端显示,打开地址可对图标进行编辑删除,重新生成 iconfont 操作。

alt text

# 终端转化
npx iconfont
# 启动服务,网页操作,包括增删改查,查询使用情况,转化等功能
npx iconfont start [--port 8080]

功能

  • [x] svg 转化为字体(font),可配置 ttf, woff, woff2 中的任意几种
  • [x] svg 转化为组件,可自定义组件内容
  • [x] 本地执行 cli npx iconfont 转化
  • [x] 本地执行 cli npx iconfont start 启动本地服务
    • [x] 添加,支持多选与文件夹拖入
    • [x] 删除
    • [x] 编辑名称
    • [x] 字体(font)与 svg 实时预览
    • [x] 扫描引用情况

配置说明

  1. 文件名

    • commonjs: iconfont.config.mjs
    • ESModule: iconfont.config.[m]js
  2. 配置内容

以下配置为全部字段,具体是否可选可参考类型定义

import { getSvgTSReactComponentContent, toBigCamelCase } from "iconfont-spanner";

/** @type {import('iconfont-spanner').Config} */
export default {
    // 标题,作为页面标题显示
    title: "Iconfont-Spanner",
    resourceDir: "src/svg",
    output: {
        // 生成和字体
        font: {
            // 输出目录
            dir: "src/font",
            // 字体名称
            name: "iconfont",
            // 生成的字体格式,支持 "ttf", "woff", "woff2"
            types: ["ttf", "woff", "woff2"],
            // 格式化输出内容,type 为 "css" | "typescript"
            format: (content, type) => content, // 可以使用格式化程序处理 content
            // 自定义字体样式,会添加到 iconfont.css中,用来设定大小和颜色等,1em为继承父级的font-size
            style: fontName => {
                return `
                    font-family: "${fontName}" !important; /*默认*/
                    font-style: normal; /* 默认 */
                    -webkit-font-smoothing: antialiased; /* 默认 */
                    -moz-osx-font-smoothing: grayscale; /* 默认 */
                    font-size: 1em; /* 自定义样式 */
                `;
            },
        },
        // 转化为组件,比如 react 组件
        component: {
            // 输出目录
            dir: "src/font/components",
            // 组件文件名,需要带上文件扩展名
            fileFullName: fileName => `${toBigCamelCase(fileName)}.tsx`,
            // 组件名称
            name: fileName => toBigCamelCase(fileName),
            // 组件内容
            content: getSvgTSReactComponentContent,
            // 是否清除颜色,清除后,可通过字体颜色控制色彩
            clearColor: fileName => !fileName.endsWith("_oc"),
        },
    },
    // 扫描引用情况
    scan: {
        includes: ["src/**/*.{ts,tsx,js,jsx}"],
        excludes: ["src/font/**/*", "**/*.d.ts"], // 需要明确排除的文件,这会影响到扫描结果,比如排除掉输出文件夹
    },
};
  1. 可自定义组件代码内容

    1. 内置两个 react 组件生成函数

      • getSvgTSReactComponentContent,
      • getSvgJSReactComponentContent
      export const getSvgTSReactComponentContent = (name, svgString) => {
          return `
      /* eslint-disable */
             
      export interface ${name}Props extends React.SVGAttributes<SVGSVGElement> {}
             
      export const ${name} = (props: ${name}Props) => {
          return (
              ${svgString.replace(/<svg.+?>/gm, item => `${item.slice(0, item.length - 1)} {...props}>`)}
          )
      };
      `;
      };
    2. vue 组件根据自己需要自行编写,如:

      const getSvgJSVueComponentContent = (name, svgString) => {
          return `
      <template>
      ${svgString.replace(/<svg.+?>/gm, item => `${item.slice(0, item.length - 1)} v-bind="$attrs">`)}
      </template>
             
      <script lang="ts">
      import { defineComponent } from 'vue';
             
      export default defineComponent({
          name: '${name}',
          inheritAttrs: false
      });
      </script>
             
      <style scoped>
      </style>
      `;
      };

      可以使用 unplugin-vue-components 来实现输出组件的自动导入

      import { defineConfig } from "vite";
      import vue from "@vitejs/plugin-vue";
      import Components from "unplugin-vue-components/vite";
      
      // https://vitejs.dev/config/
      export default defineConfig({
          plugins: [
              vue(),
              Components({
                  dirs: ["src/font/components"], // <-------- 输出目录
              }),
          ],
      });

输出内容

alt text