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

@liutsing/babel-plugin-auto-i18n

v1.0.1-beta.2

Published

A babel plugin to transform source language to 't' invoke expression

Downloads

25

Readme

@liutsing/babel-plugin-auto-i18n

function

auto transform chinese string to t invoke expression

usage

in babel config file like .babelrc,

{
  "plugins": [["@liutsing/babel-plugin-auto-i18n"]]
}

access i18n in dom

const elements = document.querySelectorAll('[data-i18n]')
const i18nValues = Array.from(elements).map((el) => JSON.parse(el.getAttribute('data-i18n')))
const totalI18nKeys = Array.prototype.concat.apply([], i18nValues)
const uniqiqI18nKeys = [...new Set(totalI18nKeys)]
console.log(uniqiqI18nKeys)

TODO

1.0

  • [x] 支持 jsxText 内的文本转换
  • [x] 支持 stringLiteral 内的文本转换
  • [x] 支持 templateElement 内的文本转换
  • [x] Avoid unnecessary calls to the useTranslation function.
  • [x] unnecessary import will be tree-shaking by webpack
    •   optimization: {
          sideEffects: false,
        }
  • [x] 多个 plugins,含同样的节点遍历逻辑,测试访问顺序
  • [x] i18n-ignore comments
  • [x] 支持 templateLiteral 的文本,文本插槽功能
  • [ ] jsxText/jsxAttribute/jsxExpressionContainer 下的 stringLiteral 注入 data-i18n 属性
    • [x] jsxText
    • [ ] jsxExpressionContainer
    • [ ] jsxAttribute
    • [ ] TemplateLiteral
      • [x] TemplateElement
    • [x] jsxAttribute 注入是否 react render 时会被保留 -> 组件框架或自定义组件处理
    • [x] jsxAttribute 其他属性也需要加入到data-i18n属性上
  • [x] jsxText
  • [ ] templateLiteral
  • [ ] 非 jsx 中的字符串绑定到根元素的 dom 上 -> 简化逻辑实现(平台手动维护辅助)
    • [ ] # 注意条件判断下的场景
  • [ ] jsxText/jsxAttribute/jsxExpressionContainer 下的 stringLiteral 注入 data-i18n 属性,页面上的访问方式:
    • [x] jsxText
    • [ ] jsxAttribute 注入是否 react render 时会被保留
    • [ ] jsxExpressionContainer
    • [ ] jsxAttribute 其他属性也需要加入到data-i18n属性上
    • [ ] jsx 其他的键绑定到根元素的 dom 上?

ideas

  • [ ] templateLiteral 不影响现有的手动处理的t('xx', {count;'xxx'}) 之类的
  • [ ] bench the performance of this plugin
  • [ ] support class component
  • [ ] support option source language
  • [ ] 删除冗余的导入
  • [ ] 其他节点的处理方式呢?
    • 比如 message.info('xx'), 函数改写再注入?