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

taro-svg-icon-vue-cli

v1.0.4

Published

在 Taro 框架中使用 svg 图片生成图标组件,不依赖字体,支持多色彩和大小。

Downloads

8

Readme

taro-svg-icon-cli

在 Taro 框架中使用 svg 图片生成图标组件,不依赖字体,支持多色彩和大小。

支持平台

  • 微信小程序
  • 支付宝小程序

特性

1、一键生成标准组件,多端支持 2、使用方便,import 即可 3、支持自定义颜色和大小 4、支持 es6 和 typescript 两种模式

Step 1

安装插件

# Yarn
yarn add taro-svg-icon-cli --dev

# Npm
npm install taro-svg-icon-cli --save-dev

Step 2

生成配置文件

npx iconfont-init

# 可传入配置输出路径
# npx iconfont-init --output iconfont.json

此时项目根目录会生成一个iconfont.json的文件,内容如下:

{
  "local_svgs": "请参考README.md,本地svg文件夹,使用本地svg图标时配置",
  "save_dir": "./src/components/iconfont",
  "use_typescript": false,
  "platforms": "*",
  "use_rpx": true,
  "trim_icon_prefix": "icon",
  "default_icon_size": 18
}

配置参数说明:

local_svgs

本地 svg 图标文件夹。

save_dir

生成的图标组件存放的位置。每次生成组件之前,该文件夹都会被清空。

use_typescript

如果您的项目使用 Typescript 编写,请设置为 true。这个选项将决定生成的图标组件是.tsx还是.js后缀。

当该值为 false 时,我们会为您的图标生成.js.d.ts两个文件,以便您能享受到最好的开发体验。

platforms

选择需要支持的平台,默认是*,意味着所有平台都需要支持(如果有)。如果你只想支持部分平台,也可以设置成数组:

{
  // 选择你需要的平台
  // 说明 =>  weapp: 微信   |  alipay: 支付宝和钉钉
  platforms: ['weapp', 'alipay'],
}

use_rpx

是否使用尺寸单位 rpx还是普通的像素单位px。默认值为 true,与 Taro 保持一致的缩放。您也可以设置为 false,强制使用px

trim_icon_prefix

如果你的图标有通用的前缀,而你在使用的时候又不想重复去写,那么可以通过这种配置这个选项把前缀统一去掉。

default_icon_size

我们将为每个生成的图标组件加入默认的字体大小,当然,你也可以通过传入 props 的方式改变这个 size 值。

Step 3

开始生成 Taro 标准组件

npx iconfont-taro

生成后查看您设置的保存目录中是否含有所有的图标


在生成代码之前,你可以顺便参考 snapshots 目录自动生成的快照文件。

Step 4

需要在src/app.config.js下填写usingComponents

// src/app.config.js
// 如果是钉钉小程序,由于他的限制,需要在每个page的config添加usingComponents
export default {
  usingComponents: {
    iconfont: '@/components/iconfont/weapp/weapp',
  },
};

使用

在 Page 中使用图标

import React, { Component } from 'react';
import IconFont from 'yourpath_xx/components/iconfont';

class App extends Component {
  render() {
    return <IconFont name="alipay" />;
  }
}

export default App;

更多用法:

// 原色彩
<IconFont name="alipay" />

// 单色:红色
<IconFont name="alipay" color="red" />

// 大小
<IconFont name="alipay" size="16" />

// 与文字对齐
<View style={{ display: 'flex', alignItems: 'center' }}>
  <Text>Hello</text>
  <IconFont name="alipay" />
</View>

更新图标

将 svg 图片添加到文件夹,再次执行生成命令


npx iconfont-taro

感谢taro-svg-icon-cli 提供灵感和部分代码