Merge branch 'typescript'
22
.babelrc
|
@ -1,13 +1,15 @@
|
|||
{
|
||||
"presets": [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"targets": {
|
||||
"chrome": "58",
|
||||
"ie": "11"
|
||||
}
|
||||
}
|
||||
]
|
||||
"presets": [[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"useBuiltIns": "entry",
|
||||
"targets": {
|
||||
"esmodules": true
|
||||
}
|
||||
}
|
||||
]],
|
||||
"plugins": [
|
||||
"@babel/plugin-syntax-dynamic-import",
|
||||
"@babel/plugin-proposal-object-rest-spread"
|
||||
]
|
||||
}
|
|
@ -7,4 +7,3 @@ src_import_version
|
|||
docs
|
||||
vuepress/config.js
|
||||
**/*.vue
|
||||
**/*.html
|
31
.eslintrc.js
|
@ -1,15 +1,19 @@
|
|||
module.exports = {
|
||||
"parser": '@typescript-eslint/parser',
|
||||
"plugins": [
|
||||
'@typescript-eslint',
|
||||
],
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es6": true,
|
||||
"node": true,
|
||||
"commonjs": true
|
||||
},
|
||||
"extends": [
|
||||
// "standard",
|
||||
// "plugin:vue",
|
||||
// "plugin:html"
|
||||
],
|
||||
// 接入vue失败 暂且eslint 忽略vue文件
|
||||
// "extends": [
|
||||
// // "standard",
|
||||
// "plugin:vue/essential"
|
||||
// ],
|
||||
"parserOptions": {
|
||||
"parser": "babel-eslint",
|
||||
"ecmaVersion": 2018,
|
||||
|
@ -28,8 +32,18 @@ module.exports = {
|
|||
"globals": {
|
||||
"window": true,
|
||||
"define": true,
|
||||
"console": true,
|
||||
"require": true,
|
||||
"module": true,
|
||||
},
|
||||
"rules": {
|
||||
// 'no-var': "error",
|
||||
// 优先使用 interface 而不是 type
|
||||
'@typescript-eslint/consistent-type-definitions': [
|
||||
"error",
|
||||
"interface"
|
||||
],
|
||||
"@typescript-eslint/no-unused-vars": "error", // 使用 ts 未使用变量的规则 比如枚举类型在es中会报错
|
||||
"no-extend-native": 0,
|
||||
"no-new": 0,
|
||||
"no-useless-escape": 0,
|
||||
|
@ -63,6 +77,13 @@ module.exports = {
|
|||
"comma-spacing": "error",
|
||||
"key-spacing": "error",
|
||||
"no-undef": "error",
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
"prefer-const": ["error", {
|
||||
"destructuring": "any",
|
||||
"ignoreReadBeforeAssign": false
|
||||
}]
|
||||
>>>>>>> typescript
|
||||
// "vue/script-indent": ["warn", 4, {
|
||||
// "baseIndent": 1,
|
||||
// "switchCase": 1
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
*.js linguist-language=JavaScript
|
||||
*.js linguist-language=TypeScript
|
||||
# *.css linguist-language=JavaScript
|
||||
*.html linguist-language=JavaScript
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
node_modules
|
||||
.vscode
|
||||
nodejs
|
||||
src_import_version
|
||||
package-lock.json
|
||||
vuepress/.vuepress/secret.js
|
||||
# package-lock.json
|
||||
vuepress/.vuepress/secret.js
|
||||
helper/local
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
// 使用 IntelliSense 了解相关属性。
|
||||
// 悬停以查看现有属性的描述。
|
||||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "pwa-chrome",
|
||||
"request": "launch",
|
||||
"name": "Launch Chrome against localhost",
|
||||
"url": "http://localhost:8080",
|
||||
"webRoot": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"editor.formatOnSave": false, // 每次保存的时候将代码按eslint格式进行修复
|
||||
"eslint.validate": [
|
||||
//开启对.vue文件中错误的检查
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"html",
|
||||
"vue",
|
||||
{
|
||||
"language": "typescript",
|
||||
"autoFix": true
|
||||
},
|
||||
{
|
||||
"language": "html",
|
||||
"autoFix": true
|
||||
},
|
||||
{
|
||||
"language": "vue",
|
||||
"autoFix": true
|
||||
}
|
||||
],
|
||||
"search.exclude": {
|
||||
"**/node_modules": true,
|
||||
"**/cdn": true,
|
||||
"**/npm": true
|
||||
},
|
||||
"eslint.autoFixOnSave": true,
|
||||
"typescript.validate.enable": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
}
|
||||
|
|
@ -186,7 +186,7 @@ import cnchar from 'cnchar';
|
|||
16. 提供汉字工具方法,方便开发者更便捷高效地 **操作拼音和汉字**
|
||||
17. **体积小**,min 版本仅 46 kb,zip 版本 34 kb (含有大量汉字拼音字典)
|
||||
18. **多端可用**,可用于 **浏览器、nodejs、小程序/小游戏、ReactNative/Weex/Uniapp/Electron、webpack**...,支持所有 js 能运行的环境
|
||||
19. **typescript支持**,支持在typescript中调用
|
||||
19. **typescript**,主库及所有插件库均使用typescript开发
|
||||
20. 丰富的配置,按功能拆分成7个库按需取用
|
||||
21. 支持**自定义**拼音笔画等数据,使用更灵活
|
||||
|
||||
|
@ -1039,13 +1039,13 @@ arg 参数信息如下:
|
|||
| 参数 | 作用 | 是否默认 | 依赖库 | 备注 |
|
||||
| :---------: | :--------: | :------: | :---------: | :---: |
|
||||
| match | 匹配含有笔序中所有笔画的汉字 | 否 | -- | -- |
|
||||
| match-order | 匹配含有笔序中所有笔画的汉字前先后顺序一致 | 否 | -- | -- |
|
||||
| matchorder | 匹配含有笔序中所有笔画的汉字前先后顺序一致 | 否 | -- | -- |
|
||||
| contain | 匹配含有该笔序的汉字 | 否 | -- | -- |
|
||||
| start | 匹配所有以该笔序开头的汉字 | 否 | -- | -- |
|
||||
| array | 返回符合条件的数组,默认返回的是字符串 | 否 | -- | -- |
|
||||
| simple | 禁用繁体字 | 否 | cnchar-trad | 该参数仅在引入了 `cnchar-trad` 后有效 |
|
||||
|
||||
关于匹配参数,优先级为 **match > match-order > contain > start > 默认**
|
||||
关于匹配参数,优先级为 **match > matchorder > contain > start > 默认**
|
||||
|
||||
不含有匹配参数时表示使用全匹配,即汉字笔画数与传入的 orders 完全一致
|
||||
|
||||
|
|
Before Width: | Height: | Size: 12 KiB |
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="12" height="13"><g stroke-width="2" stroke="#aaa" fill="none"><path d="M11.29 11.71l-4-4"/><circle cx="5" cy="5" r="4"/></g></svg>
|
Before Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1,47 +0,0 @@
|
|||
.part {
|
||||
padding: 50px 14%;
|
||||
}
|
||||
|
||||
.bg-gray2 {
|
||||
background-color: #eee!important;
|
||||
}
|
||||
|
||||
#usePart {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#runAPI {
|
||||
position: fixed;
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
top: 10%;
|
||||
left: 10%;
|
||||
box-shadow: 0px 0px 20px 2px #eee;
|
||||
border-radius: 5px;
|
||||
background-color: rgba(255, 255, 255, .95);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.api-use-item {
|
||||
display: inline-block;
|
||||
margin: 5px;
|
||||
padding: 10px 15px;
|
||||
border-radius: 5px;
|
||||
background-color: #444;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
transform: translateY(0px);
|
||||
box-shadow: none;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
|
||||
.api-use-item:hover {
|
||||
transform: translateY(-6px);
|
||||
box-shadow: 0px 5px 10px 3px #777;
|
||||
}
|
||||
|
||||
.api-use-item .glyphicon {
|
||||
color: #aaa;
|
||||
top: 2px;
|
||||
margin: 0 4px;
|
||||
}
|
|
@ -1,229 +0,0 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata></metadata>
|
||||
<defs>
|
||||
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
|
||||
<font-face units-per-em="1200" ascent="960" descent="-240" />
|
||||
<missing-glyph horiz-adv-x="500" />
|
||||
<glyph />
|
||||
<glyph />
|
||||
<glyph unicode="
" />
|
||||
<glyph unicode=" " />
|
||||
<glyph unicode="*" d="M100 500v200h259l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -141l-183 183v-259h-200v259l-183 -183l-141 141l183 183h-259z" />
|
||||
<glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" />
|
||||
<glyph unicode=" " />
|
||||
<glyph unicode=" " horiz-adv-x="652" />
|
||||
<glyph unicode=" " horiz-adv-x="1304" />
|
||||
<glyph unicode=" " horiz-adv-x="652" />
|
||||
<glyph unicode=" " horiz-adv-x="1304" />
|
||||
<glyph unicode=" " horiz-adv-x="434" />
|
||||
<glyph unicode=" " horiz-adv-x="326" />
|
||||
<glyph unicode=" " horiz-adv-x="217" />
|
||||
<glyph unicode=" " horiz-adv-x="217" />
|
||||
<glyph unicode=" " horiz-adv-x="163" />
|
||||
<glyph unicode=" " horiz-adv-x="260" />
|
||||
<glyph unicode=" " horiz-adv-x="72" />
|
||||
<glyph unicode=" " horiz-adv-x="260" />
|
||||
<glyph unicode=" " horiz-adv-x="326" />
|
||||
<glyph unicode="€" d="M100 500l100 100h113q0 47 5 100h-218l100 100h135q37 167 112 257q117 141 297 141q242 0 354 -189q60 -103 66 -209h-181q0 55 -25.5 99t-63.5 68t-75 36.5t-67 12.5q-24 0 -52.5 -10t-62.5 -32t-65.5 -67t-50.5 -107h379l-100 -100h-300q-6 -46 -6 -100h406l-100 -100 h-300q9 -74 33 -132t52.5 -91t62 -54.5t59 -29t46.5 -7.5q29 0 66 13t75 37t63.5 67.5t25.5 96.5h174q-31 -172 -128 -278q-107 -117 -274 -117q-205 0 -324 158q-36 46 -69 131.5t-45 205.5h-217z" />
|
||||
<glyph unicode="−" d="M200 400h900v300h-900v-300z" />
|
||||
<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" />
|
||||
<glyph unicode="☁" d="M-14 494q0 -80 56.5 -137t135.5 -57h750q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5z" />
|
||||
<glyph unicode="✉" d="M0 100l400 400l200 -200l200 200l400 -400h-1200zM0 300v600l300 -300zM0 1100l600 -603l600 603h-1200zM900 600l300 300v-600z" />
|
||||
<glyph unicode="✏" d="M-13 -13l333 112l-223 223zM187 403l214 -214l614 614l-214 214zM887 1103l214 -214l99 92q13 13 13 32.5t-13 33.5l-153 153q-15 13 -33 13t-33 -13z" />
|
||||
<glyph unicode="" d="M0 1200h1200l-500 -550v-550h300v-100h-800v100h300v550z" />
|
||||
<glyph unicode="" d="M14 84q18 -55 86 -75.5t147 5.5q65 21 109 69t44 90v606l600 155v-521q-64 16 -138 -7q-79 -26 -122.5 -83t-25.5 -111q18 -55 86 -75.5t147 4.5q70 23 111.5 63.5t41.5 95.5v881q0 10 -7 15.5t-17 2.5l-752 -193q-10 -3 -17 -12.5t-7 -19.5v-689q-64 17 -138 -7 q-79 -25 -122.5 -82t-25.5 -112z" />
|
||||
<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233z" />
|
||||
<glyph unicode="" d="M100 784q0 64 28 123t73 100.5t104.5 64t119 20.5t120 -38.5t104.5 -104.5q48 69 109.5 105t121.5 38t118.5 -20.5t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-149.5 152.5t-126.5 127.5 t-94 124.5t-33.5 117.5z" />
|
||||
<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1z" />
|
||||
<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1zM237 700l196 -142l-73 -226l192 140l195 -141l-74 229l193 140h-235l-77 211l-78 -211h-239z" />
|
||||
<glyph unicode="" d="M0 0v143l400 257v100q-37 0 -68.5 74.5t-31.5 125.5v200q0 124 88 212t212 88t212 -88t88 -212v-200q0 -51 -31.5 -125.5t-68.5 -74.5v-100l400 -257v-143h-1200z" />
|
||||
<glyph unicode="" d="M0 0v1100h1200v-1100h-1200zM100 100h100v100h-100v-100zM100 300h100v100h-100v-100zM100 500h100v100h-100v-100zM100 700h100v100h-100v-100zM100 900h100v100h-100v-100zM300 100h600v400h-600v-400zM300 600h600v400h-600v-400zM1000 100h100v100h-100v-100z M1000 300h100v100h-100v-100zM1000 500h100v100h-100v-100zM1000 700h100v100h-100v-100zM1000 900h100v100h-100v-100z" />
|
||||
<glyph unicode="" d="M0 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM0 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5zM600 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM600 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5z" />
|
||||
<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 450v200q0 21 14.5 35.5t35.5 14.5h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5z" />
|
||||
<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v200q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5 t-14.5 -35.5v-200zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5z" />
|
||||
<glyph unicode="" d="M29 454l419 -420l818 820l-212 212l-607 -607l-206 207z" />
|
||||
<glyph unicode="" d="M106 318l282 282l-282 282l212 212l282 -282l282 282l212 -212l-282 -282l282 -282l-212 -212l-282 282l-282 -282z" />
|
||||
<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233zM300 600v200h100v100h200v-100h100v-200h-100v-100h-200v100h-100z" />
|
||||
<glyph unicode="" d="M23 694q0 200 142 342t342 142t342 -142t142 -342q0 -141 -78 -262l300 -299q7 -7 7 -18t-7 -18l-109 -109q-8 -8 -18 -8t-18 8l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 694q0 -136 97 -233t234 -97t233.5 97t96.5 233t-96.5 233t-233.5 97t-234 -97 t-97 -233zM300 601h400v200h-400v-200z" />
|
||||
<glyph unicode="" d="M23 600q0 183 105 331t272 210v-166q-103 -55 -165 -155t-62 -220q0 -177 125 -302t302 -125t302 125t125 302q0 120 -62 220t-165 155v166q167 -62 272 -210t105 -331q0 -118 -45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5 zM500 750q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v400q0 21 -14.5 35.5t-35.5 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-400z" />
|
||||
<glyph unicode="" d="M100 1h200v300h-200v-300zM400 1v500h200v-500h-200zM700 1v800h200v-800h-200zM1000 1v1200h200v-1200h-200z" />
|
||||
<glyph unicode="" d="M26 601q0 -33 6 -74l151 -38l2 -6q14 -49 38 -93l3 -5l-80 -134q45 -59 105 -105l133 81l5 -3q45 -26 94 -39l5 -2l38 -151q40 -5 74 -5q27 0 74 5l38 151l6 2q46 13 93 39l5 3l134 -81q56 44 104 105l-80 134l3 5q24 44 39 93l1 6l152 38q5 40 5 74q0 28 -5 73l-152 38 l-1 6q-16 51 -39 93l-3 5l80 134q-44 58 -104 105l-134 -81l-5 3q-45 25 -93 39l-6 1l-38 152q-40 5 -74 5q-27 0 -74 -5l-38 -152l-5 -1q-50 -14 -94 -39l-5 -3l-133 81q-59 -47 -105 -105l80 -134l-3 -5q-25 -47 -38 -93l-2 -6l-151 -38q-6 -48 -6 -73zM385 601 q0 88 63 151t152 63t152 -63t63 -151q0 -89 -63 -152t-152 -63t-152 63t-63 152z" />
|
||||
<glyph unicode="" d="M100 1025v50q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-50q0 -11 -7 -18t-18 -7h-1050q-11 0 -18 7t-7 18zM200 100v800h900v-800q0 -41 -29.5 -71t-70.5 -30h-700q-41 0 -70.5 30 t-29.5 71zM300 100h100v700h-100v-700zM500 100h100v700h-100v-700zM500 1100h300v100h-300v-100zM700 100h100v700h-100v-700zM900 100h100v700h-100v-700z" />
|
||||
<glyph unicode="" d="M1 601l656 644l644 -644h-200v-600h-300v400h-300v-400h-300v600h-200z" />
|
||||
<glyph unicode="" d="M100 25v1150q0 11 7 18t18 7h475v-500h400v-675q0 -11 -7 -18t-18 -7h-850q-11 0 -18 7t-7 18zM700 800v300l300 -300h-300z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 500v400h100 v-300h200v-100h-300z" />
|
||||
<glyph unicode="" d="M-100 0l431 1200h209l-21 -300h162l-20 300h208l431 -1200h-538l-41 400h-242l-40 -400h-539zM488 500h224l-27 300h-170z" />
|
||||
<glyph unicode="" d="M0 0v400h490l-290 300h200v500h300v-500h200l-290 -300h490v-400h-1100zM813 200h175v100h-175v-100z" />
|
||||
<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM188 600q0 -170 121 -291t291 -121t291 121t121 291t-121 291t-291 121 t-291 -121t-121 -291zM350 600h150v300h200v-300h150l-250 -300z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM350 600l250 300 l250 -300h-150v-300h-200v300h-150z" />
|
||||
<glyph unicode="" d="M0 25v475l200 700h800l199 -700l1 -475q0 -11 -7 -18t-18 -7h-1150q-11 0 -18 7t-7 18zM200 500h200l50 -200h300l50 200h200l-97 500h-606z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 397v401 l297 -200z" />
|
||||
<glyph unicode="" d="M23 600q0 -118 45.5 -224.5t123 -184t184 -123t224.5 -45.5t224.5 45.5t184 123t123 184t45.5 224.5h-150q0 -177 -125 -302t-302 -125t-302 125t-125 302t125 302t302 125q136 0 246 -81l-146 -146h400v400l-145 -145q-157 122 -355 122q-118 0 -224.5 -45.5t-184 -123 t-123 -184t-45.5 -224.5z" />
|
||||
<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5q198 0 355 -122l145 145v-400h-400l147 147q-112 80 -247 80q-177 0 -302 -125t-125 -302h-150zM100 0v400h400l-147 -147q112 -80 247 -80q177 0 302 125t125 302h150q0 -118 -45.5 -224.5t-123 -184t-184 -123 t-224.5 -45.5q-198 0 -355 122z" />
|
||||
<glyph unicode="" d="M100 0h1100v1200h-1100v-1200zM200 100v900h900v-900h-900zM300 200v100h100v-100h-100zM300 400v100h100v-100h-100zM300 600v100h100v-100h-100zM300 800v100h100v-100h-100zM500 200h500v100h-500v-100zM500 400v100h500v-100h-500zM500 600v100h500v-100h-500z M500 800v100h500v-100h-500z" />
|
||||
<glyph unicode="" d="M0 100v600q0 41 29.5 70.5t70.5 29.5h100v200q0 82 59 141t141 59h300q82 0 141 -59t59 -141v-200h100q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-900q-41 0 -70.5 29.5t-29.5 70.5zM400 800h300v150q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-150z" />
|
||||
<glyph unicode="" d="M100 0v1100h100v-1100h-100zM300 400q60 60 127.5 84t127.5 17.5t122 -23t119 -30t110 -11t103 42t91 120.5v500q-40 -81 -101.5 -115.5t-127.5 -29.5t-138 25t-139.5 40t-125.5 25t-103 -29.5t-65 -115.5v-500z" />
|
||||
<glyph unicode="" d="M0 275q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 127 70.5 231.5t184.5 161.5t245 57t245 -57t184.5 -161.5t70.5 -231.5v-300q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 116 -49.5 227t-131 192.5t-192.5 131t-227 49.5t-227 -49.5t-192.5 -131t-131 -192.5 t-49.5 -227v-300zM200 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14zM800 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14z" />
|
||||
<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM688 459l141 141l-141 141l71 71l141 -141l141 141l71 -71l-141 -141l141 -141l-71 -71l-141 141l-141 -141z" />
|
||||
<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM700 857l69 53q111 -135 111 -310q0 -169 -106 -302l-67 54q86 110 86 248q0 146 -93 257z" />
|
||||
<glyph unicode="" d="M0 401v400h300l300 200v-800l-300 200h-300zM702 858l69 53q111 -135 111 -310q0 -170 -106 -303l-67 55q86 110 86 248q0 145 -93 257zM889 951l7 -8q123 -151 123 -344q0 -189 -119 -339l-7 -8l81 -66l6 8q142 178 142 405q0 230 -144 408l-6 8z" />
|
||||
<glyph unicode="" d="M0 0h500v500h-200v100h-100v-100h-200v-500zM0 600h100v100h400v100h100v100h-100v300h-500v-600zM100 100v300h300v-300h-300zM100 800v300h300v-300h-300zM200 200v100h100v-100h-100zM200 900h100v100h-100v-100zM500 500v100h300v-300h200v-100h-100v-100h-200v100 h-100v100h100v200h-200zM600 0v100h100v-100h-100zM600 1000h100v-300h200v-300h300v200h-200v100h200v500h-600v-200zM800 800v300h300v-300h-300zM900 0v100h300v-100h-300zM900 900v100h100v-100h-100zM1100 200v100h100v-100h-100z" />
|
||||
<glyph unicode="" d="M0 200h100v1000h-100v-1000zM100 0v100h300v-100h-300zM200 200v1000h100v-1000h-100zM500 0v91h100v-91h-100zM500 200v1000h200v-1000h-200zM700 0v91h100v-91h-100zM800 200v1000h100v-1000h-100zM900 0v91h200v-91h-200zM1000 200v1000h200v-1000h-200z" />
|
||||
<glyph unicode="" d="M0 700l1 475q0 10 7.5 17.5t17.5 7.5h474l700 -700l-500 -500zM148 953q0 -42 29 -71q30 -30 71.5 -30t71.5 30q29 29 29 71t-29 71q-30 30 -71.5 30t-71.5 -30q-29 -29 -29 -71z" />
|
||||
<glyph unicode="" d="M1 700l1 475q0 11 7 18t18 7h474l700 -700l-500 -500zM148 953q0 -42 30 -71q29 -30 71 -30t71 30q30 29 30 71t-30 71q-29 30 -71 30t-71 -30q-30 -29 -30 -71zM701 1200h100l700 -700l-500 -500l-50 50l450 450z" />
|
||||
<glyph unicode="" d="M100 0v1025l175 175h925v-1000l-100 -100v1000h-750l-100 -100h750v-1000h-900z" />
|
||||
<glyph unicode="" d="M200 0l450 444l450 -443v1150q0 20 -14.5 35t-35.5 15h-800q-21 0 -35.5 -15t-14.5 -35v-1151z" />
|
||||
<glyph unicode="" d="M0 100v700h200l100 -200h600l100 200h200v-700h-200v200h-800v-200h-200zM253 829l40 -124h592l62 124l-94 346q-2 11 -10 18t-18 7h-450q-10 0 -18 -7t-10 -18zM281 24l38 152q2 10 11.5 17t19.5 7h500q10 0 19.5 -7t11.5 -17l38 -152q2 -10 -3.5 -17t-15.5 -7h-600 q-10 0 -15.5 7t-3.5 17z" />
|
||||
<glyph unicode="" d="M0 200q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-150q-4 8 -11.5 21.5t-33 48t-53 61t-69 48t-83.5 21.5h-200q-41 0 -82 -20.5t-70 -50t-52 -59t-34 -50.5l-12 -20h-150q-41 0 -70.5 -29.5t-29.5 -70.5v-600z M356 500q0 100 72 172t172 72t172 -72t72 -172t-72 -172t-172 -72t-172 72t-72 172zM494 500q0 -44 31 -75t75 -31t75 31t31 75t-31 75t-75 31t-75 -31t-31 -75zM900 700v100h100v-100h-100z" />
|
||||
<glyph unicode="" d="M53 0h365v66q-41 0 -72 11t-49 38t1 71l92 234h391l82 -222q16 -45 -5.5 -88.5t-74.5 -43.5v-66h417v66q-34 1 -74 43q-18 19 -33 42t-21 37l-6 13l-385 998h-93l-399 -1006q-24 -48 -52 -75q-12 -12 -33 -25t-36 -20l-15 -7v-66zM416 521l178 457l46 -140l116 -317h-340 z" />
|
||||
<glyph unicode="" d="M100 0v89q41 7 70.5 32.5t29.5 65.5v827q0 28 -1 39.5t-5.5 26t-15.5 21t-29 14t-49 14.5v71l471 -1q120 0 213 -88t93 -228q0 -55 -11.5 -101.5t-28 -74t-33.5 -47.5t-28 -28l-12 -7q8 -3 21.5 -9t48 -31.5t60.5 -58t47.5 -91.5t21.5 -129q0 -84 -59 -156.5t-142 -111 t-162 -38.5h-500zM400 200h161q89 0 153 48.5t64 132.5q0 90 -62.5 154.5t-156.5 64.5h-159v-400zM400 700h139q76 0 130 61.5t54 138.5q0 82 -84 130.5t-239 48.5v-379z" />
|
||||
<glyph unicode="" d="M200 0v57q77 7 134.5 40.5t65.5 80.5l173 849q10 56 -10 74t-91 37q-6 1 -10.5 2.5t-9.5 2.5v57h425l2 -57q-33 -8 -62 -25.5t-46 -37t-29.5 -38t-17.5 -30.5l-5 -12l-128 -825q-10 -52 14 -82t95 -36v-57h-500z" />
|
||||
<glyph unicode="" d="M-75 200h75v800h-75l125 167l125 -167h-75v-800h75l-125 -167zM300 900v300h150h700h150v-300h-50q0 29 -8 48.5t-18.5 30t-33.5 15t-39.5 5.5t-50.5 1h-200v-850l100 -50v-100h-400v100l100 50v850h-200q-34 0 -50.5 -1t-40 -5.5t-33.5 -15t-18.5 -30t-8.5 -48.5h-49z " />
|
||||
<glyph unicode="" d="M33 51l167 125v-75h800v75l167 -125l-167 -125v75h-800v-75zM100 901v300h150h700h150v-300h-50q0 29 -8 48.5t-18 30t-33.5 15t-40 5.5t-50.5 1h-200v-650l100 -50v-100h-400v100l100 50v650h-200q-34 0 -50.5 -1t-39.5 -5.5t-33.5 -15t-18.5 -30t-8 -48.5h-50z" />
|
||||
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 350q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM0 650q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1000q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 950q0 -20 14.5 -35t35.5 -15h600q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-600q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
|
||||
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 650q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM200 350q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM200 950q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
|
||||
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1000q-21 0 -35.5 15 t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-600 q-21 0 -35.5 15t-14.5 35z" />
|
||||
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100 q-21 0 -35.5 15t-14.5 35z" />
|
||||
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM300 50v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800 q-21 0 -35.5 15t-14.5 35zM300 650v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 950v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15 h-800q-21 0 -35.5 15t-14.5 35z" />
|
||||
<glyph unicode="" d="M-101 500v100h201v75l166 -125l-166 -125v75h-201zM300 0h100v1100h-100v-1100zM500 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35 v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 650q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100 q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100z" />
|
||||
<glyph unicode="" d="M1 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 650 q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM801 0v1100h100v-1100 h-100zM934 550l167 -125v75h200v100h-200v75z" />
|
||||
<glyph unicode="" d="M0 275v650q0 31 22 53t53 22h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53zM900 600l300 300v-600z" />
|
||||
<glyph unicode="" d="M0 44v1012q0 18 13 31t31 13h1112q19 0 31.5 -13t12.5 -31v-1012q0 -18 -12.5 -31t-31.5 -13h-1112q-18 0 -31 13t-13 31zM100 263l247 182l298 -131l-74 156l293 318l236 -288v500h-1000v-737zM208 750q0 56 39 95t95 39t95 -39t39 -95t-39 -95t-95 -39t-95 39t-39 95z " />
|
||||
<glyph unicode="" d="M148 745q0 124 60.5 231.5t165 172t226.5 64.5q123 0 227 -63t164.5 -169.5t60.5 -229.5t-73 -272q-73 -114 -166.5 -237t-150.5 -189l-57 -66q-10 9 -27 26t-66.5 70.5t-96 109t-104 135.5t-100.5 155q-63 139 -63 262zM342 772q0 -107 75.5 -182.5t181.5 -75.5 q107 0 182.5 75.5t75.5 182.5t-75.5 182t-182.5 75t-182 -75.5t-75 -181.5z" />
|
||||
<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM173 600q0 -177 125.5 -302t301.5 -125v854q-176 0 -301.5 -125 t-125.5 -302z" />
|
||||
<glyph unicode="" d="M117 406q0 94 34 186t88.5 172.5t112 159t115 177t87.5 194.5q21 -71 57.5 -142.5t76 -130.5t83 -118.5t82 -117t70 -116t50 -125.5t18.5 -136q0 -89 -39 -165.5t-102 -126.5t-140 -79.5t-156 -33.5q-114 6 -211.5 53t-161.5 139t-64 210zM243 414q14 -82 59.5 -136 t136.5 -80l16 98q-7 6 -18 17t-34 48t-33 77q-15 73 -14 143.5t10 122.5l9 51q-92 -110 -119.5 -185t-12.5 -156z" />
|
||||
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5q366 -6 397 -14l-186 -186h-311q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v125l200 200v-225q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM436 341l161 50l412 412l-114 113l-405 -405zM995 1015l113 -113l113 113l-21 85l-92 28z" />
|
||||
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h261l2 -80q-133 -32 -218 -120h-145q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-53q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5 zM423 524q30 38 81.5 64t103 35.5t99 14t77.5 3.5l29 -1v-209l360 324l-359 318v-216q-7 0 -19 -1t-48 -8t-69.5 -18.5t-76.5 -37t-76.5 -59t-62 -88t-39.5 -121.5z" />
|
||||
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q61 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-169q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM342 632l283 -284l567 567l-137 137l-430 -431l-146 147z" />
|
||||
<glyph unicode="" d="M0 603l300 296v-198h200v200h-200l300 300l295 -300h-195v-200h200v198l300 -296l-300 -300v198h-200v-200h195l-295 -300l-300 300h200v200h-200v-198z" />
|
||||
<glyph unicode="" d="M200 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-1100l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
||||
<glyph unicode="" d="M0 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-487l500 487v-1100l-500 488v-488l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
||||
<glyph unicode="" d="M136 550l564 550v-487l500 487v-1100l-500 488v-488z" />
|
||||
<glyph unicode="" d="M200 0l900 550l-900 550v-1100z" />
|
||||
<glyph unicode="" d="M200 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5t-14.5 -35.5v-800zM600 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
|
||||
<glyph unicode="" d="M200 150q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v800q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
|
||||
<glyph unicode="" d="M0 0v1100l500 -487v487l564 -550l-564 -550v488z" />
|
||||
<glyph unicode="" d="M0 0v1100l500 -487v487l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-500 -488v488z" />
|
||||
<glyph unicode="" d="M300 0v1100l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438z" />
|
||||
<glyph unicode="" d="M100 250v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5zM100 500h1100l-550 564z" />
|
||||
<glyph unicode="" d="M185 599l592 -592l240 240l-353 353l353 353l-240 240z" />
|
||||
<glyph unicode="" d="M272 194l353 353l-353 353l241 240l572 -571l21 -22l-1 -1v-1l-592 -591z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h200v-200h200v200h200v200h-200v200h-200v-200h-200v-200z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h600v200h-600v-200z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM246 459l213 -213l141 142l141 -142l213 213l-142 141l142 141l-213 212l-141 -141l-141 142l-212 -213l141 -141 z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM270 551l276 -277l411 411l-175 174l-236 -236l-102 102z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM364 700h143q4 0 11.5 -1t11 -1t6.5 3t3 9t1 11t3.5 8.5t3.5 6t5.5 4t6.5 2.5t9 1.5t9 0.5h11.5h12.5 q19 0 30 -10t11 -26q0 -22 -4 -28t-27 -22q-5 -1 -12.5 -3t-27 -13.5t-34 -27t-26.5 -46t-11 -68.5h200q5 3 14 8t31.5 25.5t39.5 45.5t31 69t14 94q0 51 -17.5 89t-42 58t-58.5 32t-58.5 15t-51.5 3q-50 0 -90.5 -12t-75 -38.5t-53.5 -74.5t-19 -114zM500 300h200v100h-200 v-100z" />
|
||||
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM400 300h400v100h-100v300h-300v-100h100v-200h-100v-100zM500 800h200v100h-200v-100z" />
|
||||
<glyph unicode="" d="M0 500v200h195q31 125 98.5 199.5t206.5 100.5v200h200v-200q54 -20 113 -60t112.5 -105.5t71.5 -134.5h203v-200h-203q-25 -102 -116.5 -186t-180.5 -117v-197h-200v197q-140 27 -208 102.5t-98 200.5h-194zM290 500q24 -73 79.5 -127.5t130.5 -78.5v206h200v-206 q149 48 201 206h-201v200h200q-25 74 -75.5 127t-124.5 77v-204h-200v203q-75 -23 -130 -77t-79 -126h209v-200h-210z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM356 465l135 135 l-135 135l109 109l135 -135l135 135l109 -109l-135 -135l135 -135l-109 -109l-135 135l-135 -135z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM322 537l141 141 l87 -87l204 205l142 -142l-346 -345z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -115 62 -215l568 567q-100 62 -216 62q-171 0 -292.5 -121.5t-121.5 -292.5zM391 245q97 -59 209 -59q171 0 292.5 121.5t121.5 292.5 q0 112 -59 209z" />
|
||||
<glyph unicode="" d="M0 547l600 453v-300h600v-300h-600v-301z" />
|
||||
<glyph unicode="" d="M0 400v300h600v300l600 -453l-600 -448v301h-600z" />
|
||||
<glyph unicode="" d="M204 600l450 600l444 -600h-298v-600h-300v600h-296z" />
|
||||
<glyph unicode="" d="M104 600h296v600h300v-600h298l-449 -600z" />
|
||||
<glyph unicode="" d="M0 200q6 132 41 238.5t103.5 193t184 138t271.5 59.5v271l600 -453l-600 -448v301q-95 -2 -183 -20t-170 -52t-147 -92.5t-100 -135.5z" />
|
||||
<glyph unicode="" d="M0 0v400l129 -129l294 294l142 -142l-294 -294l129 -129h-400zM635 777l142 -142l294 294l129 -129v400h-400l129 -129z" />
|
||||
<glyph unicode="" d="M34 176l295 295l-129 129h400v-400l-129 130l-295 -295zM600 600v400l129 -129l295 295l142 -141l-295 -295l129 -130h-400z" />
|
||||
<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5t224.5 -45.5t184 -123t123 -184t45.5 -224.5t-45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5zM456 851l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5 t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5h-207q-21 0 -33 -14.5t-8 -34.5zM500 300h200v100h-200v-100z" />
|
||||
<glyph unicode="" d="M0 800h100v-200h400v300h200v-300h400v200h100v100h-111q1 1 1 6.5t-1.5 15t-3.5 17.5l-34 172q-11 39 -41.5 63t-69.5 24q-32 0 -61 -17l-239 -144q-22 -13 -40 -35q-19 24 -40 36l-238 144q-33 18 -62 18q-39 0 -69.5 -23t-40.5 -61l-35 -177q-2 -8 -3 -18t-1 -15v-6 h-111v-100zM100 0h400v400h-400v-400zM200 900q-3 0 14 48t36 96l18 47l213 -191h-281zM700 0v400h400v-400h-400zM731 900l202 197q5 -12 12 -32.5t23 -64t25 -72t7 -28.5h-269z" />
|
||||
<glyph unicode="" d="M0 -22v143l216 193q-9 53 -13 83t-5.5 94t9 113t38.5 114t74 124q47 60 99.5 102.5t103 68t127.5 48t145.5 37.5t184.5 43.5t220 58.5q0 -189 -22 -343t-59 -258t-89 -181.5t-108.5 -120t-122 -68t-125.5 -30t-121.5 -1.5t-107.5 12.5t-87.5 17t-56.5 7.5l-99 -55z M238.5 300.5q19.5 -6.5 86.5 76.5q55 66 367 234q70 38 118.5 69.5t102 79t99 111.5t86.5 148q22 50 24 60t-6 19q-7 5 -17 5t-26.5 -14.5t-33.5 -39.5q-35 -51 -113.5 -108.5t-139.5 -89.5l-61 -32q-369 -197 -458 -401q-48 -111 -28.5 -117.5z" />
|
||||
<glyph unicode="" d="M111 408q0 -33 5 -63q9 -56 44 -119.5t105 -108.5q31 -21 64 -16t62 23.5t57 49.5t48 61.5t35 60.5q32 66 39 184.5t-13 157.5q79 -80 122 -164t26 -184q-5 -33 -20.5 -69.5t-37.5 -80.5q-10 -19 -14.5 -29t-12 -26t-9 -23.5t-3 -19t2.5 -15.5t11 -9.5t19.5 -5t30.5 2.5 t42 8q57 20 91 34t87.5 44.5t87 64t65.5 88.5t47 122q38 172 -44.5 341.5t-246.5 278.5q22 -44 43 -129q39 -159 -32 -154q-15 2 -33 9q-79 33 -120.5 100t-44 175.5t48.5 257.5q-13 -8 -34 -23.5t-72.5 -66.5t-88.5 -105.5t-60 -138t-8 -166.5q2 -12 8 -41.5t8 -43t6 -39.5 t3.5 -39.5t-1 -33.5t-6 -31.5t-13.5 -24t-21 -20.5t-31 -12q-38 -10 -67 13t-40.5 61.5t-15 81.5t10.5 75q-52 -46 -83.5 -101t-39 -107t-7.5 -85z" />
|
||||
<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5t145.5 -23.5t132.5 -59t116.5 -83.5t97 -90t74.5 -85.5t49 -63.5t20 -30l26 -40l-26 -40q-6 -10 -20 -30t-49 -63.5t-74.5 -85.5t-97 -90t-116.5 -83.5t-132.5 -59t-145.5 -23.5 t-145.5 23.5t-132.5 59t-116.5 83.5t-97 90t-74.5 85.5t-49 63.5t-20 30zM120 600q7 -10 40.5 -58t56 -78.5t68 -77.5t87.5 -75t103 -49.5t125 -21.5t123.5 20t100.5 45.5t85.5 71.5t66.5 75.5t58 81.5t47 66q-1 1 -28.5 37.5t-42 55t-43.5 53t-57.5 63.5t-58.5 54 q49 -74 49 -163q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l105 105q-37 24 -75 72t-57 84l-20 36z" />
|
||||
<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5q61 0 121 -17l37 142h148l-314 -1200h-148l37 143q-82 21 -165 71.5t-140 102t-109.5 112t-72 88.5t-29.5 43zM120 600q210 -282 393 -336l37 141q-107 18 -178.5 101.5t-71.5 193.5 q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l47 47l23 87q-30 28 -59 69t-44 68l-14 26zM780 161l38 145q22 15 44.5 34t46 44t40.5 44t41 50.5t33.5 43.5t33 44t24.5 34q-97 127 -140 175l39 146q67 -54 131.5 -125.5t87.5 -103.5t36 -52l26 -40l-26 -40 q-7 -12 -25.5 -38t-63.5 -79.5t-95.5 -102.5t-124 -100t-146.5 -79z" />
|
||||
<glyph unicode="" d="M-97.5 34q13.5 -34 50.5 -34h1294q37 0 50.5 35.5t-7.5 67.5l-642 1056q-20 34 -48 36.5t-48 -29.5l-642 -1066q-21 -32 -7.5 -66zM155 200l445 723l445 -723h-345v100h-200v-100h-345zM500 600l100 -300l100 300v100h-200v-100z" />
|
||||
<glyph unicode="" d="M100 262v41q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44t106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -91 100 -113v-64q0 -20 -13 -28.5t-32 0.5l-94 78h-222l-94 -78q-19 -9 -32 -0.5t-13 28.5 v64q0 22 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5z" />
|
||||
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v750h-1100v-750zM0 900h1100v150q0 21 -14.5 35.5t-35.5 14.5h-150v100h-100v-100h-500v100h-100v-100h-150q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 100v100h100v-100h-100zM100 300v100h100v-100h-100z M100 500v100h100v-100h-100zM300 100v100h100v-100h-100zM300 300v100h100v-100h-100zM300 500v100h100v-100h-100zM500 100v100h100v-100h-100zM500 300v100h100v-100h-100zM500 500v100h100v-100h-100zM700 100v100h100v-100h-100zM700 300v100h100v-100h-100zM700 500 v100h100v-100h-100zM900 100v100h100v-100h-100zM900 300v100h100v-100h-100zM900 500v100h100v-100h-100z" />
|
||||
<glyph unicode="" d="M0 200v200h259l600 600h241v198l300 -295l-300 -300v197h-159l-600 -600h-341zM0 800h259l122 -122l141 142l-181 180h-341v-200zM678 381l141 142l122 -123h159v198l300 -295l-300 -300v197h-241z" />
|
||||
<glyph unicode="" d="M0 400v600q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5z" />
|
||||
<glyph unicode="" d="M100 600v200h300v-250q0 -113 6 -145q17 -92 102 -117q39 -11 92 -11q37 0 66.5 5.5t50 15.5t36 24t24 31.5t14 37.5t7 42t2.5 45t0 47v25v250h300v-200q0 -42 -3 -83t-15 -104t-31.5 -116t-58 -109.5t-89 -96.5t-129 -65.5t-174.5 -25.5t-174.5 25.5t-129 65.5t-89 96.5 t-58 109.5t-31.5 116t-15 104t-3 83zM100 900v300h300v-300h-300zM800 900v300h300v-300h-300z" />
|
||||
<glyph unicode="" d="M-30 411l227 -227l352 353l353 -353l226 227l-578 579z" />
|
||||
<glyph unicode="" d="M70 797l580 -579l578 579l-226 227l-353 -353l-352 353z" />
|
||||
<glyph unicode="" d="M-198 700l299 283l300 -283h-203v-400h385l215 -200h-800v600h-196zM402 1000l215 -200h381v-400h-198l299 -283l299 283h-200v600h-796z" />
|
||||
<glyph unicode="" d="M18 939q-5 24 10 42q14 19 39 19h896l38 162q5 17 18.5 27.5t30.5 10.5h94q20 0 35 -14.5t15 -35.5t-15 -35.5t-35 -14.5h-54l-201 -961q-2 -4 -6 -10.5t-19 -17.5t-33 -11h-31v-50q0 -20 -14.5 -35t-35.5 -15t-35.5 15t-14.5 35v50h-300v-50q0 -20 -14.5 -35t-35.5 -15 t-35.5 15t-14.5 35v50h-50q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5h535l48 200h-633q-32 0 -54.5 21t-27.5 43z" />
|
||||
<glyph unicode="" d="M0 0v800h1200v-800h-1200zM0 900v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-100h-1200z" />
|
||||
<glyph unicode="" d="M1 0l300 700h1200l-300 -700h-1200zM1 400v600h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-200h-1000z" />
|
||||
<glyph unicode="" d="M302 300h198v600h-198l298 300l298 -300h-198v-600h198l-298 -300z" />
|
||||
<glyph unicode="" d="M0 600l300 298v-198h600v198l300 -298l-300 -297v197h-600v-197z" />
|
||||
<glyph unicode="" d="M0 100v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM31 400l172 739q5 22 23 41.5t38 19.5h672q19 0 37.5 -22.5t23.5 -45.5l172 -732h-1138zM800 100h100v100h-100v-100z M1000 100h100v100h-100v-100z" />
|
||||
<glyph unicode="" d="M-101 600v50q0 24 25 49t50 38l25 13v-250l-11 5.5t-24 14t-30 21.5t-24 27.5t-11 31.5zM100 500v250v8v8v7t0.5 7t1.5 5.5t2 5t3 4t4.5 3.5t6 1.5t7.5 0.5h200l675 250v-850l-675 200h-38l47 -276q2 -12 -3 -17.5t-11 -6t-21 -0.5h-8h-83q-20 0 -34.5 14t-18.5 35 q-55 337 -55 351zM1100 200v850q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5v-850q0 -20 -15 -35t-35 -15q-21 0 -35.5 15t-14.5 35z" />
|
||||
<glyph unicode="" d="M74 350q0 21 13.5 35.5t33.5 14.5h18l117 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3 32t29 13h94q20 0 29 -10.5t3 -29.5q-18 -36 -18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q20 0 33.5 -14.5t13.5 -35.5q0 -20 -13 -40t-31 -27q-8 -3 -23 -8.5 t-65 -20t-103 -25t-132.5 -19.5t-158.5 -9q-125 0 -245.5 20.5t-178.5 40.5l-58 20q-18 7 -31 27.5t-13 40.5zM497 110q12 -49 40 -79.5t63 -30.5t63 30.5t39 79.5q-48 -6 -102 -6t-103 6z" />
|
||||
<glyph unicode="" d="M21 445l233 -45l-78 -224l224 78l45 -233l155 179l155 -179l45 233l224 -78l-78 224l234 45l-180 155l180 156l-234 44l78 225l-224 -78l-45 233l-155 -180l-155 180l-45 -233l-224 78l78 -225l-233 -44l179 -156z" />
|
||||
<glyph unicode="" d="M0 200h200v600h-200v-600zM300 275q0 -75 100 -75h61q124 -100 139 -100h250q46 0 83 57l238 344q29 31 29 74v100q0 44 -30.5 84.5t-69.5 40.5h-328q28 118 28 125v150q0 44 -30.5 84.5t-69.5 40.5h-50q-27 0 -51 -20t-38 -48l-96 -198l-145 -196q-20 -26 -20 -63v-400z M400 300v375l150 213l100 212h50v-175l-50 -225h450v-125l-250 -375h-214l-136 100h-100z" />
|
||||
<glyph unicode="" d="M0 400v600h200v-600h-200zM300 525v400q0 75 100 75h61q124 100 139 100h250q46 0 83 -57l238 -344q29 -31 29 -74v-100q0 -44 -30.5 -84.5t-69.5 -40.5h-328q28 -118 28 -125v-150q0 -44 -30.5 -84.5t-69.5 -40.5h-50q-27 0 -51 20t-38 48l-96 198l-145 196 q-20 26 -20 63zM400 525l150 -212l100 -213h50v175l-50 225h450v125l-250 375h-214l-136 -100h-100v-375z" />
|
||||
<glyph unicode="" d="M8 200v600h200v-600h-200zM308 275v525q0 17 14 35.5t28 28.5l14 9l362 230q14 6 25 6q17 0 29 -12l109 -112q14 -14 14 -34q0 -18 -11 -32l-85 -121h302q85 0 138.5 -38t53.5 -110t-54.5 -111t-138.5 -39h-107l-130 -339q-7 -22 -20.5 -41.5t-28.5 -19.5h-341 q-7 0 -90 81t-83 94zM408 289l100 -89h293l131 339q6 21 19.5 41t28.5 20h203q16 0 25 15t9 36q0 20 -9 34.5t-25 14.5h-457h-6.5h-7.5t-6.5 0.5t-6 1t-5 1.5t-5.5 2.5t-4 4t-4 5.5q-5 12 -5 20q0 14 10 27l147 183l-86 83l-339 -236v-503z" />
|
||||
<glyph unicode="" d="M-101 651q0 72 54 110t139 38l302 -1l-85 121q-11 16 -11 32q0 21 14 34l109 113q13 12 29 12q11 0 25 -6l365 -230q7 -4 17 -10.5t26.5 -26t16.5 -36.5v-526q0 -13 -86 -93.5t-94 -80.5h-341q-16 0 -29.5 20t-19.5 41l-130 339h-107q-84 0 -139 39t-55 111zM-1 601h222 q15 0 28.5 -20.5t19.5 -40.5l131 -339h293l107 89v502l-343 237l-87 -83l145 -184q10 -11 10 -26q0 -11 -5 -20q-1 -3 -3.5 -5.5l-4 -4t-5 -2.5t-5.5 -1.5t-6.5 -1t-6.5 -0.5h-7.5h-6.5h-476v-100zM1000 201v600h200v-600h-200z" />
|
||||
<glyph unicode="" d="M97 719l230 -363q4 -6 10.5 -15.5t26 -25t36.5 -15.5h525q13 0 94 83t81 90v342q0 15 -20 28.5t-41 19.5l-339 131v106q0 84 -39 139t-111 55t-110 -53.5t-38 -138.5v-302l-121 84q-15 12 -33.5 11.5t-32.5 -13.5l-112 -110q-22 -22 -6 -53zM172 739l83 86l183 -146 q22 -18 47 -5q3 1 5.5 3.5l4 4t2.5 5t1.5 5.5t1 6.5t0.5 6.5v7.5v6.5v456q0 22 25 31t50 -0.5t25 -30.5v-202q0 -16 20 -29.5t41 -19.5l339 -130v-294l-89 -100h-503zM400 0v200h600v-200h-600z" />
|
||||
<glyph unicode="" d="M2 585q-16 -31 6 -53l112 -110q13 -13 32 -13.5t34 10.5l121 85q0 -51 -0.5 -153.5t-0.5 -148.5q0 -84 38.5 -138t110.5 -54t111 55t39 139v106l339 131q20 6 40.5 19.5t20.5 28.5v342q0 7 -81 90t-94 83h-525q-17 0 -35.5 -14t-28.5 -28l-10 -15zM77 565l236 339h503 l89 -100v-294l-340 -130q-20 -6 -40 -20t-20 -29v-202q0 -22 -25 -31t-50 0t-25 31v456v14.5t-1.5 11.5t-5 12t-9.5 7q-24 13 -46 -5l-184 -146zM305 1104v200h600v-200h-600z" />
|
||||
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM298 701l2 -201h300l-2 -194l402 294l-402 298v-197h-300z" />
|
||||
<glyph unicode="" d="M0 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t231.5 47.5q122 0 232.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-218 -217.5t-300 -80t-299.5 80t-217.5 217.5t-80 299.5zM200 600l402 -294l-2 194h300l2 201h-300v197z" />
|
||||
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600h200v-300h200v300h200l-300 400z" />
|
||||
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600l300 -400l300 400h-200v300h-200v-300h-200z" />
|
||||
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM254 780q-8 -33 5.5 -92.5t7.5 -87.5q0 -9 17 -44t16 -60 q12 0 23 -5.5t23 -15t20 -13.5q24 -12 108 -42q22 -8 53 -31.5t59.5 -38.5t57.5 -11q8 -18 -15 -55t-20 -57q42 -71 87 -80q0 -6 -3 -15.5t-3.5 -14.5t4.5 -17q104 -3 221 112q30 29 47 47t34.5 49t20.5 62q-14 9 -37 9.5t-36 7.5q-14 7 -49 15t-52 19q-9 0 -39.5 -0.5 t-46.5 -1.5t-39 -6.5t-39 -16.5q-50 -35 -66 -12q-4 2 -3.5 25.5t0.5 25.5q-6 13 -26.5 17t-24.5 7q2 22 -2 41t-16.5 28t-38.5 -20q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q12 -19 32 -37.5t34 -27.5l14 -8q0 3 9.5 39.5t5.5 57.5 q-4 23 14.5 44.5t22.5 31.5q5 14 10 35t8.5 31t15.5 22.5t34 21.5q-6 18 10 37q8 0 23.5 -1.5t24.5 -1.5t20.5 4.5t20.5 15.5q-10 23 -30.5 42.5t-38 30t-49 26.5t-43.5 23q11 39 2 44q31 -13 58 -14.5t39 3.5l11 4q7 36 -16.5 53.5t-64.5 28.5t-56 23q-19 -3 -37 0 q-15 -12 -36.5 -21t-34.5 -12t-44 -8t-39 -6q-15 -3 -45.5 0.5t-45.5 -2.5q-21 -7 -52 -26.5t-34 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -90.5t-29.5 -79.5zM518 916q3 12 16 30t16 25q10 -10 18.5 -10t14 6t14.5 14.5t16 12.5q0 -24 17 -66.5t17 -43.5 q-9 2 -31 5t-36 5t-32 8t-30 14zM692 1003h1h-1z" />
|
||||
<glyph unicode="" d="M0 164.5q0 21.5 15 37.5l600 599q-33 101 6 201.5t135 154.5q164 92 306 -9l-259 -138l145 -232l251 126q13 -175 -151 -267q-123 -70 -253 -23l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5z" />
|
||||
<glyph unicode="" horiz-adv-x="1220" d="M0 196v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 596v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5zM0 996v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM600 596h500v100h-500v-100zM800 196h300v100h-300v-100zM900 996h200v100h-200v-100z" />
|
||||
<glyph unicode="" d="M100 1100v100h1000v-100h-1000zM150 1000h900l-350 -500v-300l-200 -200v500z" />
|
||||
<glyph unicode="" d="M0 200v200h1200v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500z M500 1000h200v100h-200v-100z" />
|
||||
<glyph unicode="" d="M0 0v400l129 -129l200 200l142 -142l-200 -200l129 -129h-400zM0 800l129 129l200 -200l142 142l-200 200l129 129h-400v-400zM729 329l142 142l200 -200l129 129v-400h-400l129 129zM729 871l200 200l-129 129h400v-400l-129 129l-200 -200z" />
|
||||
<glyph unicode="" d="M0 596q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 596q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM291 655 q0 23 15.5 38.5t38.5 15.5t39 -16t16 -38q0 -23 -16 -39t-39 -16q-22 0 -38 16t-16 39zM400 850q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39t-16 -39t-38 -16q-23 0 -39 16.5t-16 38.5zM514 609q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 22 16 38.5t39 16.5 q22 0 38 -16t16 -39t-16 -39t-38 -16q-14 0 -29 10l-55 -145q17 -22 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5zM800 655q0 22 16 38t39 16t38.5 -15.5t15.5 -38.5t-16 -39t-38 -16q-23 0 -39 16t-16 39z" />
|
||||
<glyph unicode="" d="M-40 375q-13 -95 35 -173q35 -57 94 -89t129 -32q63 0 119 28q33 16 65 40.5t52.5 45.5t59.5 64q40 44 57 61l394 394q35 35 47 84t-3 96q-27 87 -117 104q-20 2 -29 2q-46 0 -78.5 -16.5t-67.5 -51.5l-389 -396l-7 -7l69 -67l377 373q20 22 39 38q23 23 50 23 q38 0 53 -36q16 -39 -20 -75l-547 -547q-52 -52 -125 -52q-55 0 -100 33t-54 96q-5 35 2.5 66t31.5 63t42 50t56 54q24 21 44 41l348 348q52 52 82.5 79.5t84 54t107.5 26.5q25 0 48 -4q95 -17 154 -94.5t51 -175.5q-7 -101 -98 -192l-252 -249l-253 -256l7 -7l69 -60 l517 511q67 67 95 157t11 183q-16 87 -67 154t-130 103q-69 33 -152 33q-107 0 -197 -55q-40 -24 -111 -95l-512 -512q-68 -68 -81 -163z" />
|
||||
<glyph unicode="" d="M80 784q0 131 98.5 229.5t230.5 98.5q143 0 241 -129q103 129 246 129q129 0 226 -98.5t97 -229.5q0 -46 -17.5 -91t-61 -99t-77 -89.5t-104.5 -105.5q-197 -191 -293 -322l-17 -23l-16 23q-43 58 -100 122.5t-92 99.5t-101 100q-71 70 -104.5 105.5t-77 89.5t-61 99 t-17.5 91zM250 784q0 -27 30.5 -70t61.5 -75.5t95 -94.5l22 -22q93 -90 190 -201q82 92 195 203l12 12q64 62 97.5 97t64.5 79t31 72q0 71 -48 119.5t-105 48.5q-74 0 -132 -83l-118 -171l-114 174q-51 80 -123 80q-60 0 -109.5 -49.5t-49.5 -118.5z" />
|
||||
<glyph unicode="" d="M57 353q0 -95 66 -159l141 -142q68 -66 159 -66q93 0 159 66l283 283q66 66 66 159t-66 159l-141 141q-8 9 -19 17l-105 -105l212 -212l-389 -389l-247 248l95 95l-18 18q-46 45 -75 101l-55 -55q-66 -66 -66 -159zM269 706q0 -93 66 -159l141 -141q7 -7 19 -17l105 105 l-212 212l389 389l247 -247l-95 -96l18 -17q47 -49 77 -100l29 29q35 35 62.5 88t27.5 96q0 93 -66 159l-141 141q-66 66 -159 66q-95 0 -159 -66l-283 -283q-66 -64 -66 -159z" />
|
||||
<glyph unicode="" d="M200 100v953q0 21 30 46t81 48t129 38t163 15t162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5zM300 300h600v700h-600v-700zM496 150q0 -43 30.5 -73.5t73.5 -30.5t73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5 t-73.5 -30.5t-30.5 -73.5z" />
|
||||
<glyph unicode="" d="M0 0l303 380l207 208l-210 212h300l267 279l-35 36q-15 14 -15 35t15 35q14 15 35 15t35 -15l283 -282q15 -15 15 -36t-15 -35q-14 -15 -35 -15t-35 15l-36 35l-279 -267v-300l-212 210l-208 -207z" />
|
||||
<glyph unicode="" d="M295 433h139q5 -77 48.5 -126.5t117.5 -64.5v335q-6 1 -15.5 4t-11.5 3q-46 14 -79 26.5t-72 36t-62.5 52t-40 72.5t-16.5 99q0 92 44 159.5t109 101t144 40.5v78h100v-79q38 -4 72.5 -13.5t75.5 -31.5t71 -53.5t51.5 -84t24.5 -118.5h-159q-8 72 -35 109.5t-101 50.5 v-307l64 -14q34 -7 64 -16.5t70 -31.5t67.5 -52t47.5 -80.5t20 -112.5q0 -139 -89 -224t-244 -96v-77h-100v78q-152 17 -237 104q-40 40 -52.5 93.5t-15.5 139.5zM466 889q0 -29 8 -51t16.5 -34t29.5 -22.5t31 -13.5t38 -10q7 -2 11 -3v274q-61 -8 -97.5 -37.5t-36.5 -102.5 zM700 237q170 18 170 151q0 64 -44 99.5t-126 60.5v-311z" />
|
||||
<glyph unicode="" d="M100 600v100h166q-24 49 -44 104q-10 26 -14.5 55.5t-3 72.5t25 90t68.5 87q97 88 263 88q129 0 230 -89t101 -208h-153q0 52 -34 89.5t-74 51.5t-76 14q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -28 16.5 -69.5t28 -62.5t41.5 -72h241v-100h-197q8 -50 -2.5 -115 t-31.5 -94q-41 -59 -99 -113q35 11 84 18t70 7q33 1 103 -16t103 -17q76 0 136 30l50 -147q-41 -25 -80.5 -36.5t-59 -13t-61.5 -1.5q-23 0 -128 33t-155 29q-39 -4 -82 -17t-66 -25l-24 -11l-55 145l16.5 11t15.5 10t13.5 9.5t14.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221z" />
|
||||
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM602 900l298 300l298 -300h-198v-900h-200v900h-198z" />
|
||||
<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v200h100v-100h200v-100h-300zM700 400v100h300v-200h-99v-100h-100v100h99v100h-200zM700 700v500h300v-500h-100v100h-100v-100h-100zM801 900h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v500h300v-500h-100v100h-100v-100h-100zM700 700v200h100v-100h200v-100h-300zM700 1100v100h300v-200h-99v-100h-100v100h99v100h-200zM801 200h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 100v400h300v-500h-100v100h-200zM800 1100v100h200v-500h-100v400h-100zM901 200h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 400v100h200v-500h-100v400h-100zM800 800v400h300v-500h-100v100h-200zM901 900h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h500v-200h-500zM700 400v200h400v-200h-400zM700 700v200h300v-200h-300zM700 1000v200h200v-200h-200z" />
|
||||
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h200v-200h-200zM700 400v200h300v-200h-300zM700 700v200h400v-200h-400zM700 1000v200h500v-200h-500z" />
|
||||
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q162 0 281 -118.5t119 -281.5v-300q0 -165 -118.5 -282.5t-281.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500z" />
|
||||
<glyph unicode="" d="M0 400v300q0 163 119 281.5t281 118.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-163 0 -281.5 117.5t-118.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM400 300l333 250l-333 250v-500z" />
|
||||
<glyph unicode="" d="M0 400v300q0 163 117.5 281.5t282.5 118.5h300q163 0 281.5 -119t118.5 -281v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 700l250 -333l250 333h-500z" />
|
||||
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -162 -118.5 -281t-281.5 -119h-300q-165 0 -282.5 118.5t-117.5 281.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 400h500l-250 333z" />
|
||||
<glyph unicode="" d="M0 400v300h300v200l400 -350l-400 -350v200h-300zM500 0v200h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-500v200h400q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-400z" />
|
||||
<glyph unicode="" d="M217 519q8 -19 31 -19h302q-155 -438 -160 -458q-5 -21 4 -32l9 -8h9q14 0 26 15q11 13 274.5 321.5t264.5 308.5q14 19 5 36q-8 17 -31 17l-301 -1q1 4 78 219.5t79 227.5q2 15 -5 27l-9 9h-9q-15 0 -25 -16q-4 -6 -98 -111.5t-228.5 -257t-209.5 -237.5q-16 -19 -6 -41 z" />
|
||||
<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q47 0 100 15v185h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h500v185q-14 4 -114 7.5t-193 5.5l-93 2q-165 0 -282.5 -117.5t-117.5 -282.5v-300zM600 400v300h300v200l400 -350l-400 -350v200h-300z " />
|
||||
<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q163 0 281.5 117.5t118.5 282.5v98l-78 73l-122 -123v-148q0 -41 -29.5 -70.5t-70.5 -29.5h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h156l118 122l-74 78h-100q-165 0 -282.5 -117.5t-117.5 -282.5 v-300zM496 709l353 342l-149 149h500v-500l-149 149l-342 -353z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM406 600 q0 80 57 137t137 57t137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137z" />
|
||||
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 800l445 -500l450 500h-295v400h-300v-400h-300zM900 150h100v50h-100v-50z" />
|
||||
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 700h300v-300h300v300h295l-445 500zM900 150h100v50h-100v-50z" />
|
||||
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 705l305 -305l596 596l-154 155l-442 -442l-150 151zM900 150h100v50h-100v-50z" />
|
||||
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 988l97 -98l212 213l-97 97zM200 400l697 1l3 699l-250 -239l-149 149l-212 -212l149 -149zM900 150h100v50h-100v-50z" />
|
||||
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM200 612l212 -212l98 97l-213 212zM300 1200l239 -250l-149 -149l212 -212l149 148l249 -237l-1 697zM900 150h100v50h-100v-50z" />
|
||||
<glyph unicode="" d="M23 415l1177 784v-1079l-475 272l-310 -393v416h-392zM494 210l672 938l-672 -712v-226z" />
|
||||
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-850q0 -21 -15 -35.5t-35 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-218l-276 -275l-120 120l-126 -127h-378v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM581 306l123 123l120 -120l353 352l123 -123l-475 -476zM600 1000h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-269l-103 -103l-170 170l-298 -298h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200zM700 133l170 170l-170 170l127 127l170 -170l170 170l127 -128l-170 -169l170 -170 l-127 -127l-170 170l-170 -170z" />
|
||||
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-300h-400v-200h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300l300 -300l300 300h-200v300h-200v-300h-200zM600 1000v200h100v-200h-100z" />
|
||||
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-402l-200 200l-298 -298h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300h200v-300h200v300h200l-300 300zM600 1000v200h100v-200h-100z" />
|
||||
<glyph unicode="" d="M0 250q0 -21 14.5 -35.5t35.5 -14.5h1100q21 0 35.5 14.5t14.5 35.5v550h-1200v-550zM0 900h1200v150q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 300v200h400v-200h-400z" />
|
||||
<glyph unicode="" d="M0 400l300 298v-198h400v-200h-400v-198zM100 800v200h100v-200h-100zM300 800v200h100v-200h-100zM500 800v200h400v198l300 -298l-300 -298v198h-400zM800 300v200h100v-200h-100zM1000 300h100v200h-100v-200z" />
|
||||
<glyph unicode="" d="M100 700v400l50 100l50 -100v-300h100v300l50 100l50 -100v-300h100v300l50 100l50 -100v-400l-100 -203v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447zM800 597q0 -29 10.5 -55.5t25 -43t29 -28.5t25.5 -18l10 -5v-397q0 -21 14.5 -35.5 t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v1106q0 31 -18 40.5t-44 -7.5l-276 -116q-25 -17 -43.5 -51.5t-18.5 -65.5v-359z" />
|
||||
<glyph unicode="" d="M100 0h400v56q-75 0 -87.5 6t-12.5 44v394h500v-394q0 -38 -12.5 -44t-87.5 -6v-56h400v56q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v888q0 22 25 34.5t50 13.5l25 2v56h-400v-56q75 0 87.5 -6t12.5 -44v-394h-500v394q0 38 12.5 44t87.5 6v56h-400v-56q4 0 11 -0.5 t24 -3t30 -7t24 -15t11 -24.5v-888q0 -22 -25 -34.5t-50 -13.5l-25 -2v-56z" />
|
||||
<glyph unicode="" d="M0 300q0 -41 29.5 -70.5t70.5 -29.5h300q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-300q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM100 100h400l200 200h105l295 98v-298h-425l-100 -100h-375zM100 300v200h300v-200h-300zM100 600v200h300v-200h-300z M100 1000h400l200 -200v-98l295 98h105v200h-425l-100 100h-375zM700 402v163l400 133v-163z" />
|
||||
<glyph unicode="" d="M16.5 974.5q0.5 -21.5 16 -90t46.5 -140t104 -177.5t175 -208q103 -103 207.5 -176t180 -103.5t137 -47t92.5 -16.5l31 1l163 162q17 18 13.5 41t-22.5 37l-192 136q-19 14 -45 12t-42 -19l-118 -118q-142 101 -268 227t-227 268l118 118q17 17 20 41.5t-11 44.5 l-139 194q-14 19 -36.5 22t-40.5 -14l-162 -162q-1 -11 -0.5 -32.5z" />
|
||||
<glyph unicode="" d="M0 50v212q0 20 10.5 45.5t24.5 39.5l365 303v50q0 4 1 10.5t12 22.5t30 28.5t60 23t97 10.5t97 -10t60 -23.5t30 -27.5t12 -24l1 -10v-50l365 -303q14 -14 24.5 -39.5t10.5 -45.5v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-20 0 -35 14.5t-15 35.5zM0 712 q0 -21 14.5 -33.5t34.5 -8.5l202 33q20 4 34.5 21t14.5 38v146q141 24 300 24t300 -24v-146q0 -21 14.5 -38t34.5 -21l202 -33q20 -4 34.5 8.5t14.5 33.5v200q-6 8 -19 20.5t-63 45t-112 57t-171 45t-235 20.5q-92 0 -175 -10.5t-141.5 -27t-108.5 -36.5t-81.5 -40 t-53.5 -36.5t-31 -27.5l-9 -10v-200z" />
|
||||
<glyph unicode="" d="M100 0v100h1100v-100h-1100zM175 200h950l-125 150v250l100 100v400h-100v-200h-100v200h-200v-200h-100v200h-200v-200h-100v200h-100v-400l100 -100v-250z" />
|
||||
<glyph unicode="" d="M100 0h300v400q0 41 -29.5 70.5t-70.5 29.5h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-400zM500 0v1000q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-1000h-300zM900 0v700q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-700h-300z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h100v200h100v-200h100v500h-100v-200h-100v200h-100v-500zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v100h-200v300h200v100h-300v-500zM600 300h300v100h-200v300h200v100h-300v-500z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 550l300 -150v300zM600 400l300 150l-300 150v-300z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300v500h700v-500h-700zM300 400h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130v-300zM575 549 q0 -65 27 -107t68 -42h130v300h-130q-38 0 -66.5 -43t-28.5 -108z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v400h-200v100h-100v-500zM301 400v200h100v-200h-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
|
||||
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 700v100h300v-300h-99v-100h-100v100h99v200h-200zM201 300v100h100v-100h-100zM601 300v100h100v-100h-100z M700 700v100h200v-500h-100v400h-100z" />
|
||||
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 500v200 l100 100h300v-100h-300v-200h300v-100h-300z" />
|
||||
<glyph unicode="" d="M0 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 400v400h300 l100 -100v-100h-100v100h-200v-100h200v-100h-200v-100h-100zM700 400v100h100v-100h-100z" />
|
||||
<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h222v300h400v-300h128q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200h200v300h200v-300h200 l-300 -300z" />
|
||||
<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h8l414 414l403 -403q94 26 154.5 104.5t60.5 178.5q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200l300 300 l300 -300h-200v-300h-200v300h-200z" />
|
||||
<glyph unicode="" d="M100 200h400v-155l-75 -45h350l-75 45v155h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170z" />
|
||||
<glyph unicode="" d="M121 700q0 -53 28.5 -97t75.5 -65q-4 -16 -4 -38q0 -74 52.5 -126.5t126.5 -52.5q56 0 100 30v-306l-75 -45h350l-75 45v306q46 -30 100 -30q74 0 126.5 52.5t52.5 126.5q0 24 -9 55q50 32 79.5 83t29.5 112q0 90 -61.5 155.5t-150.5 71.5q-26 89 -99.5 145.5 t-167.5 56.5q-116 0 -197.5 -81.5t-81.5 -197.5q0 -4 1 -11.5t1 -11.5q-14 2 -23 2q-74 0 -126.5 -52.5t-52.5 -126.5z" />
|
||||
</font>
|
||||
</defs></svg>
|
Before Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 38 KiB |
|
@ -1,67 +0,0 @@
|
|||
(function (J) {
|
||||
J.ready(function () {
|
||||
checkParam();
|
||||
J.class('func-img').tip([
|
||||
'获取汉字的拼音|音调',
|
||||
'支持多音字词',
|
||||
'获取汉字的笔画数|笔画顺序',
|
||||
'支持繁简体转换|繁体拼音笔画'
|
||||
]);
|
||||
J.id('_year').txt((new Date()).getFullYear());
|
||||
J.id('tryInput').on('input', function () {
|
||||
trans(this.val());
|
||||
});
|
||||
window.initRunJS(J);
|
||||
});
|
||||
function checkParam () {
|
||||
var p = J.urlParam();
|
||||
var str = '';
|
||||
if (typeof p === 'string') {
|
||||
str = p;
|
||||
} else if (typeof p === 'object') {
|
||||
str = p.s;
|
||||
}
|
||||
J.id('tryInput').val(str);
|
||||
trans(str);
|
||||
}
|
||||
function trans (str) {
|
||||
J.id('draw').html('');
|
||||
if (str == '') {
|
||||
J.id('spell').txt('');
|
||||
J.id('stroke').txt('');
|
||||
J.id('strokeOrder').txt('');
|
||||
J.id('trad').txt('');
|
||||
J.id('spark').txt('');
|
||||
} else {
|
||||
J.id('spell').txt(str.spell('array', 'tone').join(' '));
|
||||
J.id('stroke').txt('共 ' + str.stroke() + ' 笔');
|
||||
J.id('strokeOrder').txt('笔画顺序:' + JSON.stringify(str.stroke('order', 'shape')).replace(/"/g, '').replace(/null/g, '无'));
|
||||
J.id('trad').txt('繁体字:' + str.convertSimpleToTrad('trad'));
|
||||
J.id('spark').txt('火星文:' + str.convertSimpleToSpark('spark'));
|
||||
str = pickCnChar(str);
|
||||
if (str !== '') {
|
||||
window.cnchar.draw(str, {el: '#draw'});
|
||||
}
|
||||
}
|
||||
}
|
||||
window.loaded = function () {
|
||||
var input = document.getElementById('tryInput');
|
||||
input.removeAttribute('readonly');
|
||||
input.removeAttribute('class');
|
||||
input.value = '';
|
||||
};
|
||||
function isCnChar (word) {
|
||||
let unicode = word.charCodeAt(0);
|
||||
return unicode >= 19968 && unicode <= 40869;
|
||||
}
|
||||
|
||||
function pickCnChar (text) {
|
||||
let v = '';
|
||||
for (let i = 0; i < text.length; i++) {
|
||||
if (isCnChar(text[i])) {
|
||||
v += text[i];
|
||||
}
|
||||
}
|
||||
return v;
|
||||
}
|
||||
})(window.J);
|
|
@ -1,11 +0,0 @@
|
|||
window.initRunJS = function (J) {
|
||||
J.id('');
|
||||
var input = document.getElementById('tryInput');
|
||||
input.removeAttribute('readonly');
|
||||
input.removeAttribute('class');
|
||||
input.value = '';
|
||||
|
||||
window.runJS = function () {
|
||||
|
||||
};
|
||||
};
|
193
docs/config.js
|
@ -1,193 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
// let version = '@2.1.3';
|
||||
var jsbox_config = {
|
||||
libs: {
|
||||
// jsbox public/lib/lib.js
|
||||
'cnchar': 'jsbox.cnchar',
|
||||
'poly': 'jsbox.cnchar-poly',
|
||||
'order': 'jsbox.cnchar-order',
|
||||
'trad': 'jsbox.cnchar-trad',
|
||||
'draw': 'jsbox.cnchar-draw',
|
||||
'idiom': 'jsbox.cnchar-idiom',
|
||||
'xhy': 'jsbox.cnchar-xhy',
|
||||
'radical': 'jsbox.cnchar-radical'
|
||||
},
|
||||
codes: {
|
||||
//
|
||||
'easy-use': {
|
||||
code: "let spell = cnchar.spell('\u4F60\u597D');\nlet stroke = cnchar.stroke('\u4F60\u597D');\nconsole.log(spell, stroke);",
|
||||
desc: 'spell和stroke简单演示',
|
||||
dep: ['cnchar']
|
||||
},
|
||||
'spell': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var spell1 = cnchar.spell(\"\u4F60\u597D\", \"array\", \"tone\", \"poly\"); // \u6570\u7EC4\u5206\u5272\u3001\u5E26\u97F3\u8C03\u3001\u5019\u9009\u591A\u97F3\u5B57\nvar spell2 = cnchar.spell('\u6C49\u5B57\u62FC\u97F3','first', 'low'); // \u9996\u5B57\u6BCD\u5C0F\u5199\nvar spell3 = cnchar.spell('\u9577\u57CE'); // \u652F\u6301\u7E41\u4F53\u5B57\uFF08\u4F9D\u8D56cnchar-trad\u5E93\uFF09\nvar spell4 = cnchar.spell('\u9577\u57CE','simple'); // \u7981\u7528\u7E41\u4F53\u5B57\u62FC\u97F3\nvar spell5 = \"\u4F60\u597D\".spell(); // string prototype \u8C03\u7528\nconsole.log(spell1);\nconsole.log(spell2);\nconsole.log(spell3);\nconsole.log(spell4);\nconsole.log(spell5);",
|
||||
desc: 'spell方法参数演示',
|
||||
dep: ['trad']
|
||||
},
|
||||
'stroke': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var stroke1 = cnchar.stroke('\u6C49\u5B57\u7B14\u5212', 'array'); // \u6570\u7EC4\u5206\u5272\nvar stroke2 = cnchar.stroke(\"\u4F60\u597D\", \"order\", \"name\"); // \u6570\u7EC4\u5206\u5272\u3001\u542F\u7528\u7B14\u5212\uFF08\u4F9D\u8D56cnchar-order\u5E93\uFF09\nvar stroke3 = cnchar.stroke('\u9577\u57CE', 'array'); // \u652F\u6301\u7E41\u4F53\u5B57\uFF08\u4F9D\u8D56cnchar-trad\u5E93\uFF09\nvar stroke4 = cnchar.stroke('\u9577\u57CE', 'simple', 'array'); // \u7981\u7528\u7E41\u4F53\u5B57\u7B14\u5212\u6570\nvar stroke5 = \"\u4F60\u597D\".stroke(); // string prototype \u8C03\u7528\nconsole.log(stroke1);\nconsole.log(stroke2);\nconsole.log(stroke3);\nconsole.log(stroke4);\nconsole.log(stroke5);",
|
||||
desc: 'stroke方法参数演示',
|
||||
dep: ['order', 'trad']
|
||||
},
|
||||
'type': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var spellArg = cnchar.type.spell;\nvar strokeArg = cnchar.type.stroke;\nvar orderToWordArg = cnchar.type.orderToWord;\nvar spellToWordArg = cnchar.type.spellToWord;\nvar strokeToWordArg = cnchar.type.strokeToWord;\nconsole.log(Object.values(spellArg));\nconsole.log(Object.values(strokeArg));\nconsole.log(Object.values(orderToWordArg));\nconsole.log(Object.values(spellToWordArg));\nconsole.log(Object.values(strokeToWordArg));",
|
||||
dep: ['order'],
|
||||
desc: '所有可用的参数演示'
|
||||
},
|
||||
'version': {
|
||||
code: "var version = cnchar.version; // string \u7C7B\u578B\nconsole.log(version);",
|
||||
dep: ['cnchar'],
|
||||
desc: '版本号演示'
|
||||
},
|
||||
'plugins': {
|
||||
code: "var plugins = cnchar.plugins; // array \u7C7B\u578B\nconsole.log(plugins);",
|
||||
dep: ['cnchar'],
|
||||
desc: '当前使用的功能库列表'
|
||||
},
|
||||
'spellToWord': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var word1 = cnchar.spellToWord('sh\xE0ng'); // \u67E5\u8BE2sh\xE0ng\u7684\u6240\u6709\u6C49\u5B57\nvar word2 = cnchar.spellToWord('lv2');// v\u8868\u793A\xFC\uFF0C\u6570\u5B57\u8868\u793A\u97F3\u8C03\nvar word3 = cnchar.spellToWord('sh\xE0ng', 'alltone'); // \u652F\u6301\u6240\u6709\u97F3\u8C03\nvar word4 = cnchar.spellToWord('shang4', 'alltone', 'trad'); // \u53EA\u8FD4\u56DE\u7E41\u4F53\u5B57\nvar word5 = cnchar.spellToWord('lv2', 'simple'); // \u53EA\u8FD4\u56DE\u7B80\u4F53\u5B57\nconsole.log(word1);\nconsole.log(word2);\nconsole.log(word3);\nconsole.log(word4);\nconsole.log(word5);",
|
||||
dep: ['trad'],
|
||||
desc: '通过拼音查询原汉字'
|
||||
},
|
||||
'strokeToWord': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var word1 = cnchar.strokeToWord(25); // \u67E5\u8BE225\u753B\u7684\u6240\u6709\u6C49\u5B57\nvar word2 = cnchar.strokeToWord(25, 'simple'); // \u53EA\u8FD4\u56DE\u7B80\u4F53\u5B57\nvar word3 = cnchar.strokeToWord(25, 'trad'); // \u53EA\u8FD4\u56DE\u7E41\u4F53\u5B57\nvar word4 = cnchar.strokeToWord(1, 'array'); // \u6570\u7EC4\u5206\u5272\nconsole.log(word1);\nconsole.log(word2);\nconsole.log(word3);\nconsole.log(word4);",
|
||||
dep: ['trad'],
|
||||
desc: '通过笔画数查询原汉字'
|
||||
},
|
||||
'spellInfo': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"cnchar.spellInfo('Sh\xE0ng')",
|
||||
dep: ['cnchar'],
|
||||
desc: '查询拼音信息'
|
||||
},
|
||||
'initials': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var initials = cnchar.spellInfo.initials;\nconsole.log(initials);",
|
||||
dep: ['cnchar'],
|
||||
desc: '获取所有声母'
|
||||
},
|
||||
'tones': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var tones = cnchar.spellInfo.tones;\nconsole.log(tones);",
|
||||
dep: ['cnchar'],
|
||||
desc: '获取所有音调'
|
||||
},
|
||||
'poly': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var spell1 = cnchar.spell('\u957F\u5927\u53BB\u957F\u57CE', 'tone', 'array');\nvar spell2 = cnchar.spell('\u559C\u597D\u7F8E\u597D\u7684\u4E8B\u7269', 'tone', 'array');\nconsole.log(spell1);\nconsole.log(spell2);",
|
||||
dep: ['poly'],
|
||||
desc: '多音词实例'
|
||||
},
|
||||
'order': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var order1 = cnchar.stroke('\u4F60\u597D', 'order'); // \u9ED8\u8BA4\u6A21\u5F0F\u662F letter\nvar order2 = cnchar.stroke('\u4F60\u597D', 'order', 'detail');\nvar order3 = cnchar.stroke('\u4F60\u597D', 'order', 'shape');\nvar order4 = cnchar.stroke('\u4F60\u597D', 'order', 'name');\nvar order5 = cnchar.stroke('\u4F60\u597D', 'order', 'count');\nconsole.log('\u5B57\u6BCD\u6A21\u5F0F\uFF1A', order1);\nconsole.log('\u8BE6\u60C5\u6A21\u5F0F\uFF1A', order2);\nconsole.log('\u7B14\u5212\u5F62\u72B6\u6A21\u5F0F\uFF1A', order3);\nconsole.log('\u7B14\u5212\u540D\u79F0\u6A21\u5F0F\uFF1A', order4);\nconsole.log('\u7B14\u5212\u6570\u6A21\u5F0F\uFF1A', order5);",
|
||||
dep: ['order'],
|
||||
desc: '汉字笔顺演示'
|
||||
},
|
||||
'orderToWord': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var orders = ['\u6A2A', '\u6487', '\u637A'];\nvar char1 = cnchar.orderToWord(orders); // \u9ED8\u8BA4\u4F7F\u7528 \u5168\u5339\u914D\nvar char2 = cnchar.orderToWord(orders, 'array'); // \u6570\u7EC4\u5206\u5272\nvar char3 = cnchar.orderToWord(orders, 'start'); // \u5339\u914D\u5F00\u5934\nvar char4 = cnchar.orderToWord(orders, 'start', 'simple'); // \u53EA\u5339\u914D\u7B80\u4F53\nvar char5 = cnchar.orderToWord(orders, 'start', 'trad'); // \u53EA\u5339\u914D\u7E41\u4F53\nvar char6 = cnchar.orderToWord(orders, 'contain'); // \u5339\u914D\u542B\u6709\u7B14\u5E8F\u4E2D\u6240\u6709\u7B14\u753B\u7684\u6C49\u5B57\nvar char7 = cnchar.orderToWord(orders, 'matchorder'); // \u5339\u914D\u542B\u6709\u7B14\u5E8F\u4E2D\u6240\u6709\u7B14\u753B\u7684\u6C49\u5B57\u4E14\u5148\u540E\u987A\u5E8F\u4E00\u81F4\nvar char8 = cnchar.orderToWord(orders, 'match'); // \u5339\u914D\u542B\u6709\u8BE5\u7B14\u5E8F\u7684\u6C49\u5B57\nconsole.log(char1);\nconsole.log(char2);\nconsole.log(char3);\nconsole.log(char4);\nconsole.log(char5);\nconsole.log(char6);\nconsole.log(char7);\nconsole.log(char8);",
|
||||
dep: ['order', 'trad'],
|
||||
desc: '汉字笔顺演示'
|
||||
},
|
||||
'orders': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var orders = cnchar.orderToWord.orders;\nconsole.log(orders);",
|
||||
dep: ['order'],
|
||||
desc: '汉字所有笔划'
|
||||
},
|
||||
'trad': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var result1 = cnchar.spell('\u9577\u57CE', 'array');\nvar result2 = cnchar.spell('\u9577\u57CE', 'array', 'simple'); // \u53EA\u67E5\u8BE2\u7B80\u4F53\nvar result3 = cnchar.stroke('\u9577\u57CE', 'array');\nvar result4 = cnchar.stroke('\u9577\u57CE', 'array', 'simple');\nconsole.log(result1);\nconsole.log(result2);\nconsole.log(result3);\nconsole.log(result4);",
|
||||
dep: ['trad'],
|
||||
desc: '繁体字支持'
|
||||
},
|
||||
'convert': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var char1 = cnchar.convert.simpleToTrad('\u4E00\u4E2A\u4EBA');// \u7B49\u4EF7\u4E8E '\u4E00\u4E2A\u4EBA'.convertSimpleToTrad()\nvar char2 = cnchar.convert.simpleToSpark('\u4E00\u4E2A\u4EBA');\nvar char3 = cnchar.convert.tradToSimple('\u58F9\u500B\u4EBA');\nvar char4 = cnchar.convert.tradToSpark('\u58F9\u500B\u4EBA');\nvar char5 = cnchar.convert.sparkToSimple('\u2460\u4E2A\u4EBE');\nvar char6 = cnchar.convert.sparkToTrad('\u2460\u4E2A\u4EBE');\nconsole.log(char1);\nconsole.log(char2);\nconsole.log(char3);\nconsole.log(char4);\nconsole.log(char5);\nconsole.log(char6);",
|
||||
dep: ['trad'],
|
||||
desc: '字体转换实例'
|
||||
},
|
||||
'normal-draw': {
|
||||
lang: 'html',
|
||||
code:
|
||||
/* html*/
|
||||
"<div id='drawNormal'></div>\n<script>\n cnchar.draw('\u4F60\u597D',{\n el: '#drawNormal'\n })\n</script>",
|
||||
dep: ['draw'],
|
||||
desc: '常规绘制模式示例'
|
||||
},
|
||||
'stroke-draw': {
|
||||
lang: 'html',
|
||||
code:
|
||||
/* html*/
|
||||
"<div id='drawStroke'></div>\n<script>\n cnchar.draw('\u7B14\u987A',{\n el: '#drawStroke',\n type: cnchar.draw.TYPE.STROKE\n })\n</script>",
|
||||
dep: ['draw'],
|
||||
desc: '笔顺绘制模式示例'
|
||||
},
|
||||
'animation-draw': {
|
||||
lang: 'html',
|
||||
code:
|
||||
/* html*/
|
||||
"<div id='drawAnimation'></div>\n<script>\n cnchar.draw('\u52A8\u753B\u7ED8\u5236',{\n el: '#drawAnimation',\n type: cnchar.draw.TYPE.ANIMATION,\n animation:{\n loopAnimate: true\n }\n })\n</script>",
|
||||
dep: ['draw'],
|
||||
desc: '动画绘制模式示例'
|
||||
},
|
||||
'test-draw': {
|
||||
lang: 'html',
|
||||
code:
|
||||
/* html*/
|
||||
"<div id='drawTest'></div>\n<script>\n cnchar.draw('\u6D4B\u9A8C',{\n el: '#drawTest',\n type: cnchar.draw.TYPE.TEST\n })\n</script>",
|
||||
dep: ['draw'],
|
||||
desc: '测验绘制模式示例'
|
||||
},
|
||||
'idiom': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"// \u6839\u636E\u6C49\u5B57\u67E5\u8BE2\u6210\u8BED\uFF0C\u672B\u5C3E\u7684\u7A7A\u683C\u53EF\u4EE5\u7701\u7565\nvar res1 = cnchar.idiom(['\u4E94', '', '\u5341', '']); // ['\u4E94\u98CE\u5341\u96E8', '\u4E94\u5149\u5341\u8272']\n// \u6839\u636E\u7B14\u753B\u6570\u67E5\u8BE2\u6210\u8BED\uFF0C0\u8868\u793A\u5339\u914D\u4EFB\u610F\u7B14\u753B\uFF0C\u672B\u5C3E\u76840\u53EF\u4EE5\u7701\u7565\nvar res2 = cnchar.idiom([4, 6, 2, 0], 'stroke'); // [\"\u4E0D\u5F53\u4EBA\u5B50\", ... ]\n// \u6839\u636E\u62FC\u97F3\u67E5\u8BE2\u6210\u8BED\nvar res3 = cnchar.idiom('shang', 'spell'); // [\"\u4F24\u98CE\u8D25\u5316\", \"\u4F24\u98CE\u8D25\u4FD7\", ...]\n// \u5E26\u97F3\u8C03\nvar res4 = cnchar.idiom('shang4', 'spell', 'tone'); // [\"\u4E0A\u5175\u4F10\u8C0B\", \"\u4E0A\u4E0D\u7740\u5929\uFF0C\u4E0B\u4E0D\u7740\u5730\", ... ]\nconsole.log(res1, res2, res3, res4)",
|
||||
dep: ['idiom'],
|
||||
desc: '成语查询实例'
|
||||
},
|
||||
'xhy': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"// \u7CBE\u786E\u67E5\u8BE2\nvar res1 = cnchar.xhy('\u5927\u6C34\u51B2\u4E86\u9F99\u738B\u5E99'); // ['\u5927\u6C34\u51B2\u4E86\u9F99\u738B\u5E99-\u81EA\u5BB6\u4EBA\u4E0D\u8BC6\u81EA\u5BB6\u4EBA', '\u5927\u6C34\u51B2\u4E86\u9F99\u738B\u5E99-\u4E00\u5BB6\u4EBA\u4E0D\u8BA4\u4E00\u5BB6\u4EBA'],\n// \u6A21\u7CCA\u67E5\u8BE2\nvar res2 = cnchar.xhy('\u5927\u6C34', 'fuzzy'); // ['\u6C5F\u6CB3\u91CC\u957F\u5927\u6C34-\u6CE5\u6C99\u4FF1\u4E0B', '\u6C5F\u6CB3\u53D1\u5927\u6C34-\u540E\u6D6A\u63A8\u524D\u6D6A', ... ]\n// \u53EA\u8FD4\u56DE\u7B54\u6848\u7ED3\u679C\nvar res3 = cnchar.xhy('\u5927\u6C34', 'fuzzy', 'answer'); // ['\u6CE5\u6C99\u4FF1\u4E0B', '\u540E\u6D6A\u63A8\u524D\u6D6A', ... ]\n// \u6839\u636E\u6B47\u540E\u8BED\u540E\u4E00\u53E5\u67E5\u8BE2\nvar res4 = cnchar.xhy('\u4E0A\u6643\u4E0B\u6447', 'fuzzy', 'answer', 'second'); // ['\u9189\u6C49\u8FC7\u94C1\u7D22\u6865', '\u6276\u7740\u9189\u6C49\u8FC7\u7834\u6865']\nconsole.log(res1, res2, res3, res4)",
|
||||
dep: ['xhy'],
|
||||
desc: '歇后语查询'
|
||||
},
|
||||
'radical': {
|
||||
code:
|
||||
/* javascript*/
|
||||
"var res1 = cnchar.radical('\u4F60'); // \"\u4EBB\",\nvar res2 = cnchar.radical('\u4F60\u597D\u5440'); // \"\u4EBB\u5973\u53E3\"\n// \u8FD4\u56DE\u6570\u7EC4\nvar res3 = cnchar.radical('\u4F60\u597D\u5440', 'array'); // [\"\u4EBB\", \"\u5973\", \"\u53E3\"]\n// \u4F20\u5165\u6570\u7EC4\u4F1A\u9ED8\u8BA4\u8FD4\u56DE\u6570\u7EC4\nvar res4 = cnchar.radical([\"\u4F60\", \"\u597D\", \"\u5440\"]); // [\"\u4EBB\", \"\u5973\", \"\u53E3\"]\nconsole.log(res1, res2, res3, res4)",
|
||||
dep: ['radical'],
|
||||
desc: '偏旁部首查询'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if ((typeof window === "undefined" ? "undefined" : _typeof(window)) === 'object') {
|
||||
window.jsbox_config = jsbox_config;
|
||||
} else {
|
||||
module.exports = jsbox_config;
|
||||
}
|
240
docs/v1.html
|
@ -1,240 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||||
<meta name="keywords" content="汉字,拼音,笔画数">
|
||||
<meta name="description" content="获取汉字的拼音和笔画数的js库">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=8">
|
||||
|
||||
<title>cnchar.js by theajack</title>
|
||||
<link rel="icon" href="./assets/v1/images/i.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" type="text/css" href="./assets/v1/css/index.css" />
|
||||
<link rel="stylesheet" type="text/css" href="./assets/v1/css/use-part.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--header-->
|
||||
<div id="header">
|
||||
<div id="title">cnchar.js</div>
|
||||
<div id="smallTitle">功能全面、多端支持的汉字繁体字拼音笔画js库</div>
|
||||
<a id='viewProjectLink' target="_blank" href="https://github.com/theajack/cnchar">
|
||||
<div id="viewProject" class="border-btn">View project on github</div>
|
||||
</a>
|
||||
<div>
|
||||
<input placeholder="请输入汉字尝试一下" id='tryInput' value='正在加载cnchar...' readonly class='unloaded' type="text">
|
||||
</div>
|
||||
<div id='tryResult'>
|
||||
<div id='spell'></div>
|
||||
<div id='stroke'></div>
|
||||
<div id='trad'></div>
|
||||
<div id='spark'></div>
|
||||
<div id='strokeOrder'></div>
|
||||
<div id='draw'></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div id="usePart" class="bg-gray2 text-black part clearfix">
|
||||
<div class="part-title">快速使用</div>
|
||||
<div id='useList'>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
<span class='api-use-item'>汉字<span class="glyphicon glyphicon-arrow-right"></span>拼音</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='runAPI'>
|
||||
</div> -->
|
||||
<!--intro-->
|
||||
<div id="introPart" class="bg-gray text-black part clearfix">
|
||||
<div class="part-title">功能</div>
|
||||
<div class="func-item">
|
||||
<img class="func-img" src="./assets/v1/images/pin.png" />
|
||||
<div class="func-text">拼音|音调</div>
|
||||
</div>
|
||||
<div class="func-item">
|
||||
<img class="func-img" src="./assets/v1/images/duo.png" />
|
||||
<div class="func-text">多音字|词</div>
|
||||
</div>
|
||||
<div class="func-item">
|
||||
<img class="func-img" src="./assets/v1/images/bi.png" />
|
||||
<div class="func-text">笔画数|笔序</div>
|
||||
</div>
|
||||
<div class="func-item">
|
||||
<img class="func-img" src="./assets/v1/images/fan.png" />
|
||||
<div class="func-text">繁体字|火星文</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--download-->
|
||||
<div id="downloadPart" class="bg-dark text-white part">
|
||||
<div class="part-title">安装使用</div>
|
||||
<pre class='demo-code'>import cnchar from 'cnchar';
|
||||
'汉字'.spell();
|
||||
'汉字'.stroke();</pre>
|
||||
<pre class='demo-code'><script src="https://cdn.jsdelivr.net/gh/theajack/cnchar/dist/cnchar.latest.min.js"></script>
|
||||
<script>
|
||||
'汉字'.spell();
|
||||
'汉字'.stroke();
|
||||
</script></pre>
|
||||
<!-- <div class="part-title small font-size-bigger">1.script 标签方式引入</div>
|
||||
<div class="part-title small">引用: <script src="https://www.theajack.com/cnchar/cnchar.min.js"></script></div>
|
||||
<div class="part-title small font-size-bigger">2.npm 方式安装</div>
|
||||
<div class="part-title small">安装: npm install cnchar</div>
|
||||
<div class="part-title small">使用: import CnChar from 'cnchar' 或 const CnChar = require('cnchar')</div> -->
|
||||
<!-- <div id="copyBtn" class="border-btn mb-install" onclick="J.open('cnchar.2.0.4.min.js')">复制源码</div> -->
|
||||
<div id="copyBtn" class="border-btn mb-install"
|
||||
onclick="J.open('https://github.com/theajack/cnchar#user-content-cnchar')">点我查看详细</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--api-->
|
||||
<div id="apiPart" class="bg-gray part clearfix">
|
||||
<div class="part-title text-black relative">简单使用</div>
|
||||
<div class="api-item">
|
||||
<div class="api-item-title">.spell()</div>
|
||||
<div class="api-item-text">获取汉字完整拼音</div>
|
||||
<div class="api-content-wrapper">
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell()
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell())">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell("up")
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('up'))">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell("low")
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('low'))">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell("array")
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('array'))">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell("array","up")
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('array','up'))">查看</span>
|
||||
</div>
|
||||
<div class="api-item-text">非汉字会返回原字符串</div>
|
||||
</div>
|
||||
<div class="api-test-wrapper">
|
||||
<div class="api-item-ltitle">尝试一下</div>
|
||||
<input type="text" class="api-test-input" placeholder="请输入汉字" />
|
||||
<span class="api-test-btn" onclick="this.prev().val(this.prev().val().spell())">获取</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="api-item">
|
||||
<div class="api-item-title">.spell('first')</div>
|
||||
<div class="api-item-text">获取汉字拼音首字母</div>
|
||||
<div class="api-content-wrapper">
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell('first')
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('first'))">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell('first','low')
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('first','low'))">查看</span>
|
||||
</div>
|
||||
<div class="api-content clearfix">
|
||||
"测试".spell("array",'first',"up")
|
||||
<span class="api-content-result" onclick="this.txt('测试'.spell('array','first','up'))">查看</span>
|
||||
</div>
|
||||
<div style="height:1px"></div>
|
||||
<div class="api-item-text">非汉字会返回原字符串</div>
|
||||
</div>
|
||||
<div class="api-test-wrapper">
|
||||
<div class="api-item-ltitle">尝试一下</div>
|
||||
<input type="text" class="api-test-input" placeholder="请输入汉字" />
|
||||
<span class="api-test-btn" onclick="this.prev().val(this.prev().val().spell('first'))">获取</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="api-item">
|
||||
<div class="api-item-title">.stroke()</div>
|
||||
<div class="api-item-text">获取汉字笔画数</div>
|
||||
|
||||
<div class="api-content-wrapper">
|
||||
<!-- <div class="api-item-ltitle">如何使用</div> -->
|
||||
<div class="api-content clearfix">
|
||||
"测试".stroke()
|
||||
<span class="api-content-result" onclick="this.txt('测试'.stroke())">查看</span>
|
||||
</div>
|
||||
<div class="api-item-text">非汉字会返回原字符串长度</div>
|
||||
</div>
|
||||
<div class="api-test-wrapper">
|
||||
<div class="api-item-ltitle">尝试一下</div>
|
||||
<input type="text" class="api-test-input" placeholder="请输入汉字" />
|
||||
<span class="api-test-btn" onclick="this.prev().val(this.prev().val().stroke())">获取</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--relate-->
|
||||
<div id="relatePart" class="bg-dark text-white part ">
|
||||
<div class="part-title hassmall">友情链接</div>
|
||||
<div class="part-title small">(欢迎访问)</div>
|
||||
<div id="tjLinks">
|
||||
</div>
|
||||
</div>
|
||||
<!--footer-->
|
||||
<div id="footer" class="bg-black text-white part">
|
||||
<div id="footerLink">
|
||||
<span class="link" onclick="J.open('https://github.com/theajack')">GitHub</span>
|
||||
<span class="split-icon">|</span>
|
||||
<span class="link"
|
||||
onclick="J.open('http://weibo.com/p/1005055304330572/home?from=page_100505&mod=TAB&is_all=1')">Sina
|
||||
Micro-blog</span>
|
||||
<span class="split-icon">|</span>
|
||||
|
||||
<span class="wechat-public d-hide" onclick="this.child(0).fadeToggle()">
|
||||
WeChat Official Accounts
|
||||
<img class="wechat-img" src="./assets/v1/images/wechat_qrcode.jpg" />
|
||||
</span>
|
||||
<span class="split-icon d-hide">|</span>
|
||||
|
||||
Email:theajack@qq.com
|
||||
<span class="split-icon d-hide">|</span>
|
||||
<span class="link d-hide" onclick="J.open('https://www.theajack.com')">theajack.com</span>
|
||||
<div class=" d-show">
|
||||
<span class="wechat-public" onclick="this.child(0).fadeToggle()">
|
||||
WeChat Official Accounts
|
||||
<img class="wechat-img" src="./assets/v1/images/wechat_qrcode.jpg" />
|
||||
</span>
|
||||
<span class="split-icon">|</span>
|
||||
<span class="link" onclick="J.open('https://www.theajack.com')">theajack.com</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="copyright">
|
||||
<span class="glyphicon glyphicon-copyright-mark"></span> <span id='_year'>20xx</span> TheaJack All rights reserved
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/gh/theajack/theajack.github.com/assets/js/jetter.min.js"></script>
|
||||
<script src="./assets/v1/js/index.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/cnchar-all/cnchar.all.min.js" onload='loaded()'></script>
|
||||
<!-- <script src="https://www.theajack.com/cnchar/dist/cnchar.latest.min.js"></script>
|
||||
<script src="https://www.theajack.com/cnchar/dist/cnchar.order.latest.min.js"></script>
|
||||
<script src="https://www.theajack.com/cnchar/dist/cnchar.poly.latest.min.js"></script>
|
||||
<script src="https://www.theajack.com/cnchar/dist/cnchar.trad.latest.min.js" onload='loaded()'></script> -->
|
||||
<script src="./assets/v1/js/run.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/gh/theajack/theajack.github.com/assets/js/link.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/gh/theajack/theajack.github.com/assets/js/logo.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/gh/theajack/theajack.github.com/assets/js/log.js"></script>
|
||||
<!--<script type="text/javascript" name="cnchar.js" src="https://www.theajack.com/assets/js/stat.js"></script>-->
|
||||
<script>
|
||||
var _mtac = {};
|
||||
(function () {
|
||||
var mta = document.createElement("script");
|
||||
mta.src = "//pingjs.qq.com/h5/stats.js?v2.0.4";
|
||||
mta.setAttribute("name", "MTAH5");
|
||||
mta.setAttribute("sid", "500700068");
|
||||
var s = document.getElementsByTagName("script")[0];
|
||||
s.parentNode.insertBefore(mta, s);
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -91,7 +91,7 @@ Use the script tag to use:
|
|||
16. Support **Range radicals** query function
|
||||
17. **Small size**, min version is only 46 kb, zip version is 34 kb(contains a large number of Chinese Pinyin dictionaries)
|
||||
18. **Multi-end available**, can be used in**browser, nodejs, applet / mini-game, ReactNative / Weex / Uniapp / Electron, webpack**..., supports all environments where js can run
|
||||
19. **typescript support**, support calling in typescript
|
||||
19. **typescript**, the main library and all plug-in libraries are developed using typescript
|
||||
20. Rich configuration, split into 7 libraries according to function
|
||||
21. Support **custom** pinyin strokes and other data, use more flexible
|
||||
|
||||
|
@ -948,13 +948,13 @@ The arg parameter information is as follows:
|
|||
| Parameter|Function|Whether Default|Dependency Library|Remarks |
|
||||
|:---------: |:--------: |:------: |:---------: |:---: |
|
||||
| match|Match Chinese characters with all strokes in the stroke order|No |--|--|
|
||||
| match-order|Match Chinese characters containing all strokes in the stroke order in the same order|No |--|--|
|
||||
| matchorder|Match Chinese characters containing all strokes in the stroke order in the same order|No |--|--|
|
||||
| contain|Match the Chinese characters containing the stroke order|No |--|--|
|
||||
| start|matches all Chinese characters starting with this stroke order|No |--|--|
|
||||
| array|Returns an array that meets the conditions, the default is to return a string|No |--|--|
|
||||
simple|Disable Traditional Chinese|No|cnchar-trad|This parameter is only valid after the introduction of `cnchar-trad` |
|
||||
|
||||
Regarding the matching parameters, the priority is**match> match-order> contain> start> default**
|
||||
Regarding the matching parameters, the priority is**match> matchorder> contain> start> default**
|
||||
|
||||
When there is no matching parameter, it means using full match, that is, the number of strokes of Chinese characters is exactly the same as the orders
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ import cnchar from 'cnchar';
|
|||
16. 提供汉字工具方法,方便开发者更便捷高效地 **操作拼音和汉字**
|
||||
17. **体积小**,min 版本仅 46 kb,zip 版本 34 kb (含有大量汉字拼音字典)
|
||||
18. **多端可用**,可用于 **浏览器、nodejs、小程序/小游戏、ReactNative/Weex/Uniapp/Electron、webpack**...,支持所有 js 能运行的环境
|
||||
19. **typescript支持**,支持在typescript中调用
|
||||
19. **typescript**,主库及所有插件库均使用typescript开发
|
||||
20. 丰富的配置,按功能拆分成7个库按需取用
|
||||
21. 支持**自定义**拼音笔画等数据,使用更灵活
|
||||
|
||||
|
@ -950,13 +950,13 @@ arg 参数信息如下:
|
|||
| 参数 | 作用 | 是否默认 | 依赖库 | 备注 |
|
||||
| :---------: | :--------: | :------: | :---------: | :---: |
|
||||
| match | 匹配含有笔序中所有笔画的汉字 | 否 | -- | -- |
|
||||
| match-order | 匹配含有笔序中所有笔画的汉字前先后顺序一致 | 否 | -- | -- |
|
||||
| matchorder | 匹配含有笔序中所有笔画的汉字前先后顺序一致 | 否 | -- | -- |
|
||||
| contain | 匹配含有该笔序的汉字 | 否 | -- | -- |
|
||||
| start | 匹配所有以该笔序开头的汉字 | 否 | -- | -- |
|
||||
| array | 返回符合条件的数组,默认返回的是字符串 | 否 | -- | -- |
|
||||
| simple | 禁用繁体字 | 否 | cnchar-trad | 该参数仅在引入了 `cnchar-trad` 后有效 |
|
||||
|
||||
关于匹配参数,优先级为 **match > match-order > contain > start > 默认**
|
||||
关于匹配参数,优先级为 **match > matchorder > contain > start > 默认**
|
||||
|
||||
不含有匹配参数时表示使用全匹配,即汉字笔画数与传入的 orders 完全一致
|
||||
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
declare type spellArgs = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArgs = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
|
||||
interface String {
|
||||
spell(...args: Array<spellArgs>): string | Array<any>;
|
||||
stroke(...args: Array<strokeArgs>): number | Array<any>;
|
||||
convertSimpleToTrad(): string;
|
||||
convertSimpleToSpark(): string;
|
||||
convertTradToSimple(): string;
|
||||
convertTradToSpark(): string;
|
||||
convertSparkToSimple(): string;
|
||||
convertSparkToTrad(): string;
|
||||
}
|
|
@ -1,189 +0,0 @@
|
|||
// all库的声明文件
|
||||
import './extend';
|
||||
|
||||
// draw
|
||||
declare type DrawType = 'normal' | 'animation' | 'stroke' | 'test';
|
||||
declare type TestStatusType = 'mistake' | 'correct' | 'complete';
|
||||
declare class Writer {
|
||||
constructor();
|
||||
option: object;
|
||||
el: HTMLElement;
|
||||
type: DrawType;
|
||||
text: Array<string>;
|
||||
writer: Array<object>;
|
||||
animateStart():void;
|
||||
}
|
||||
|
||||
declare interface TestStatus {
|
||||
index: number,
|
||||
status: TestStatusType,
|
||||
data: {
|
||||
character: string;
|
||||
totalMistakes: number;// 到目前为止在测验期间犯的总错误。
|
||||
strokeNum?: number;// 当前笔画数。
|
||||
mistakesOnStroke?: number;// 到目前为止用户绘制此笔划所犯的错误数。
|
||||
strokesRemaining?: number;// 测验完成前剩余的笔画数。
|
||||
drawnPath?: {
|
||||
pathString: string;
|
||||
points: Array<{x:number;y:number}>
|
||||
};// 对象包含用户绘制的 pathString ,用于评分的分数。
|
||||
}
|
||||
}
|
||||
|
||||
declare interface DrawOption {
|
||||
el?: string | HTMLElement; // 绘制的容器,支持选择器或dom,若是不填,会在body后append一个dom作为容器
|
||||
type?: DrawType; // 绘制模式,默认为normal
|
||||
clear?: boolean; // 绘制前是否清空容器 默认为true
|
||||
style?: { // 样式类
|
||||
backgroundColor?: string, // 默认为#fff
|
||||
showOutline?: boolean;//: true,
|
||||
showCharacter?: boolean;//: true,
|
||||
currentColor?: string;//: '#b44', // 仅在stroke模式下有效
|
||||
length?: number;//: 60,
|
||||
padding?: number;//: 5, // 数值, 默认 20。 画布的汉字和边缘之间的填充
|
||||
outlineColor?: string;//: '#ddd', // 十六进制字符, 默认 '#DDD'。
|
||||
strokeColor?: string;//: '#555', // 十六进制字符, 默认 '#555'。绘制每个笔划的颜色。
|
||||
radicalColor?: string;//: null, // 十六进制字符, 默认 null。 如果存在偏旁部首数据,则在笔划中绘制偏旁部首的颜色。 如果没有设置,激光将绘制与其他笔划相同的颜色。
|
||||
strokeFadeDuration?: number; //400
|
||||
},
|
||||
line?: { // 背景线条类
|
||||
lineStraight?: boolean;// : true,
|
||||
lineCross?: boolean;// : true,
|
||||
lineWidth?: number;// : 1,
|
||||
lineColor?: string;// : '#ddd',
|
||||
lineDash?: boolean;// : true,
|
||||
border?: boolean;// : true,
|
||||
borderWidth?: number;// : 1,
|
||||
borderColor?: string;// : '#ccc',
|
||||
borderDash?: boolean;// : false,
|
||||
},
|
||||
animation?: {
|
||||
strokeAnimationSpeed?: number;// : 1, // 数值, 默认 1。 绘制每个笔划的速度必须大于0。增加此数字可以更快地绘制笔划,减少绘制笔划的速度更慢。
|
||||
delayBetweenStrokes?: number;// : 1000, // 数值, 默认 1000。 动画进行中每个笔画之间的间隔时间(以毫秒为单位)。
|
||||
delayBetweenLoops?: number;// : 200, // 数值, 默认 2000。 循环动画时每个动画循环之间的时间(以毫秒为单位)。
|
||||
autoAnimate?: boolean;// : true,
|
||||
animateComplete?: Function;// : () => {},
|
||||
stepByStep?: boolean;// : true,
|
||||
loopAnimate?: boolean;// : false,
|
||||
},
|
||||
test?: {
|
||||
strokeHighlightSpeed?: number;// : 20, // 数值, 默认 20。 在测验中给出提示时突出显示每个笔划的速度必须大于0。增加此数字以突出显示更快,减少以突出显示更慢。
|
||||
highlightColor?: number;// : '#aaf', // 十六进制字符, 默认 '#AAF'。 用于在测验中突出显示的颜色。
|
||||
drawingColor?: number;// : '#333', // 十六进制字符, 默认 '#333'。 测验期间绘制的线条颜色。
|
||||
drawingWidth?: number;// : 4, // 数值, 默认 4。 进行测验时绘制的线条宽度。
|
||||
showHintAfterMisses?: number;// : 3, // 整数, 默认 3 中风高亮提示之前的未命中数被给予用户。 设置为 false 以禁用。 创建测验时也可以设置此项。
|
||||
highlightOnComplete?: number;// : true, // 布尔值, 默认 true。 控制当用户完成绘制整个字符时,测验是否会短暂突出显示字符。 创建测验时也可以设置此项。
|
||||
highlightCompleteColor?: number;// : null, // 十六进制字符, 默认 null。 在测验中突出显示字符时使用的颜色。 如果未设置,则将使用highlightColor。 仅当highlightOnComplete为true时才相关。
|
||||
onTestStatus?(args: TestStatus):void;// : null, // ({index, status, data})=>{}
|
||||
}
|
||||
}
|
||||
|
||||
export declare interface Draw {
|
||||
(text:string, option?:DrawOption):Writer;
|
||||
TYPE: {
|
||||
ANIMATION: 'animation',
|
||||
NORMAL: 'normal',
|
||||
STROKE: 'stroke',
|
||||
TEST: 'test'
|
||||
},
|
||||
TEST_STATUS: {
|
||||
MISTAKE: 'mistake',
|
||||
CORRECT: 'correct',
|
||||
COMPLETE: 'complete'
|
||||
}
|
||||
}
|
||||
|
||||
// idiom
|
||||
|
||||
declare type idiomArg = 'char' | 'stroke' | 'spell' | 'tone';
|
||||
|
||||
export declare interface Idiom {
|
||||
(text:string | Array<string|number>, ...idiomArgs: Array<idiomArg>):Array<string>;
|
||||
}
|
||||
|
||||
// order
|
||||
|
||||
declare type orderToWordArg = 'match' | 'matchorder' | 'contain' | 'start' | 'array' | 'simple' | 'trad';
|
||||
|
||||
declare type orderName = '横折折撇' | '竖弯' | '横折' | '撇点' | '横斜钩' | '横' | '捺' | '横折钩' | '竖' | '竖钩' | '点' | '撇' | '撇折' | '竖折撇' | '横折折折钩' | '竖折折钩' | '提' | '弯钩' | '斜钩' | '横折折' | '横撇' | '横折提' | '横折折折' | '竖提' | '竖弯钩'
|
||||
| '竖折折' | '横撇弯钩' | '卧钩' | '横折弯' | '横钩';
|
||||
|
||||
// xhy
|
||||
|
||||
declare type xhyArg = 'fuzzy' | 'answer' | 'second';
|
||||
|
||||
export declare interface XHY {
|
||||
(text:string, ...xhyArgs: Array<xhyArg>):Array<string>;
|
||||
}
|
||||
|
||||
|
||||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
declare type spellToWordArg = 'poly' | 'alltone' | 'array' | 'simple' | 'trad';
|
||||
declare type strokeToWordArg = 'array' | 'simple' | 'trad';
|
||||
declare type pluginArg = 'order' | 'trad' | 'poly' | 'draw' | 'idiom' | 'xhy';
|
||||
declare type toneType = 0 | 1 | 2 | 3 | 4;
|
||||
declare type compareType = 'more' | 'less' | 'even';
|
||||
|
||||
declare interface spellInfoReturnStatic {
|
||||
spell: string;
|
||||
initial: string;
|
||||
final: string;
|
||||
tone: number;
|
||||
index: number;
|
||||
}
|
||||
export declare interface CnCharStatic {
|
||||
spell(sentence: string, ...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(sentence: string, ...args: Array<strokeArg>): number | Array<any>;
|
||||
use(...plugins: Array<Function>): void;
|
||||
spellToWord(spell: string, ...args: Array<spellToWordArg>): string | Array<string>;
|
||||
strokeToWord(stroke: number, ...args: Array<strokeToWordArg>): string | Array<string>;
|
||||
spellInfo: {
|
||||
(spell: string): spellInfoReturnStatic;
|
||||
tones: Array<string>;
|
||||
initials: Array<string>;
|
||||
};
|
||||
plugins: Array<pluginArg>;
|
||||
type: {
|
||||
spell: object;
|
||||
stroke: object;
|
||||
spellToWord: object;
|
||||
strokeToWord: object;
|
||||
orderToWord?: object;
|
||||
idiom?: object;
|
||||
xhy?: object;
|
||||
};
|
||||
check: boolean;
|
||||
readonly version: string;
|
||||
|
||||
transformTone(spell: string, tone?: boolean, type?: 'low' | 'up'): {
|
||||
spell: string;
|
||||
tone: toneType;
|
||||
index: number;
|
||||
isTrans: boolean;
|
||||
};
|
||||
isCnChar(word: string): boolean;
|
||||
compareSpell(spell1: string, spell2: string, tone?: boolean): compareType;
|
||||
compareStroke(stroke1: string | number, stroke2: string | number): compareType;
|
||||
sortSpell(spells:Array<string> | string, ...args: Array<'tone'|'desc'>): Array<string> | string;
|
||||
sortStroke(strokes:Array<string|number> | string, desc?: 'desc'): Array<string> | string;
|
||||
draw: Draw;
|
||||
idiom: Idiom;
|
||||
orderToWord: {
|
||||
(orders: string | Array<orderName>, ...args: Array<orderToWordArg>): string | Array<string>;
|
||||
orders: object;
|
||||
};
|
||||
convert: {
|
||||
simpleToSpark(sentence: string): string;
|
||||
simpleToTrad(sentence: string): string;
|
||||
sparkToSimple(sentence: string): string;
|
||||
sparkToTrad(sentence: string): string;
|
||||
tradToSimple(sentence: string): string;
|
||||
tradToSpark(sentence: string): string;
|
||||
};
|
||||
xhy: XHY;
|
||||
}
|
||||
|
||||
declare const cnchar: CnCharStatic;
|
||||
|
||||
export default cnchar;
|
|
@ -16,7 +16,7 @@ function main () {
|
|||
}
|
||||
|
||||
function addMta () {
|
||||
let mta = /* html*/`<script>
|
||||
const mta = /* html*/`<script>
|
||||
var _mtac = {};
|
||||
(function () {
|
||||
var mta = document.createElement("script");
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# 确保脚本抛出遇到的错误
|
||||
set -e
|
||||
|
||||
vuepress build vuepress
|
||||
|
||||
node ./helper/build-docs.js
|
||||
|
||||
# 进入生成的文件夹
|
||||
# cd docs/.vuepress/dist
|
||||
|
||||
# 如果是发布到自定义域名
|
||||
# echo 'www.example.com' > CNAME
|
||||
|
||||
# git init
|
||||
# git add -A
|
||||
# git commit -m 'deploy'
|
||||
|
||||
# 如果发布到 https://<USERNAME>.github.io
|
||||
|
||||
# git push -f git@github.com:1011cat/1011cat.github.io.git master
|
||||
|
||||
# 如果发布到 https://<USERNAME>.github.io/<REPO>
|
||||
# git push -f git@github.com:<USERNAME>/<REPO>.git master:gh-pages
|
||||
|
||||
# cd -
|
||||
|
||||
# bash a.sh
|
||||
|
||||
# vuepress build docs && npm run build:config
|
|
@ -1,43 +1,43 @@
|
|||
const gulp = require('gulp');
|
||||
const rename = require('gulp-rename');
|
||||
const fs = require('fs');
|
||||
const babel = require('gulp-babel');
|
||||
const toc = require('gulp-markdown-toc');
|
||||
let version = require('../package.json').version;
|
||||
let files = [
|
||||
'../npm/order/package.json',
|
||||
'../npm/poly/package.json',
|
||||
'../npm/trad/package.json',
|
||||
'../npm/draw/package.json',
|
||||
'../npm/idiom/package.json',
|
||||
'../npm/xhy/package.json',
|
||||
'../npm/radical/package.json',
|
||||
'../npm/cnchar/package.json',
|
||||
'../npm/all/package.json',
|
||||
'../npm/hanzi-util/package.json',
|
||||
'../npm/hanzi-util-base/package.json',
|
||||
const version = require('../package.json').version;
|
||||
|
||||
const plugins = ['order', 'poly', 'trad', 'draw', 'idiom', 'xhy', 'radical'];
|
||||
|
||||
const alias = ['cnchar-all', 'hanzi-util', 'hanzi-util-base'];
|
||||
|
||||
const depFiles = alias.map(alia => `../src/cnchar/alias/${alia}/package.json`);
|
||||
|
||||
const files = [
|
||||
'../src/cnchar-types/package.json',
|
||||
'../src/cnchar/main/package.json',
|
||||
...plugins.map(plugin => `../src/cnchar/plugin/${plugin}/package.json`),
|
||||
...depFiles,
|
||||
];
|
||||
|
||||
function modVersion () {
|
||||
files.forEach(file => {
|
||||
let pkg = require(file);
|
||||
const pkg = require(file);
|
||||
pkg.version = version;
|
||||
if (file.indexOf('cnchar-types') === -1) {
|
||||
if (!pkg.dependencies) {
|
||||
pkg.dependencies = {};
|
||||
}
|
||||
pkg.dependencies['cnchar-types'] = `^${version}`;
|
||||
}
|
||||
fs.writeFile(file.substr(1), JSON.stringify(pkg, null, 4), 'utf8', (err) => {
|
||||
if (err) throw err;
|
||||
});
|
||||
});
|
||||
}
|
||||
let depFiles = [
|
||||
'../npm/all/package.json',
|
||||
'../npm/hanzi-util/package.json',
|
||||
'../npm/hanzi-util-base/package.json'
|
||||
];
|
||||
|
||||
function modDep () {
|
||||
depFiles.forEach(file => {
|
||||
let pkg = require(file);
|
||||
let dep = pkg.dependencies;
|
||||
for (let key in dep) {
|
||||
const pkg = require(file);
|
||||
const dep = pkg.dependencies;
|
||||
for (const key in dep) {
|
||||
if (key.substr(0, 6) === 'cnchar') {
|
||||
dep[key] = '^' + version;
|
||||
}
|
||||
|
@ -53,53 +53,50 @@ function task () {
|
|||
modDep();
|
||||
copyToNPM();
|
||||
copyLatest();
|
||||
transEs6ByBabel();
|
||||
}
|
||||
|
||||
function buildPluginGulpFiles (plugin) {
|
||||
const path = `src/cnchar/plugin/${plugin}/`;
|
||||
return [`${path}index.d.ts`, `${path}package.json`];
|
||||
}
|
||||
|
||||
function gulpPlugin (plugin) {
|
||||
gulp.src(buildPluginGulpFiles(plugin))
|
||||
.pipe(gulp.dest(`npm/packages/${plugin}`));
|
||||
}
|
||||
|
||||
function copyToNPM () {
|
||||
gulp.src('helper/README.md')
|
||||
let gulpReadme = gulp.src(['helper/README.md', 'LICENSE'])
|
||||
.pipe(toc())
|
||||
.pipe(gulp.dest('.'))
|
||||
.pipe(gulp.dest('npm/cnchar'))
|
||||
.pipe(gulp.dest('npm/order'))
|
||||
.pipe(gulp.dest('npm/poly'))
|
||||
.pipe(gulp.dest('npm/trad'))
|
||||
.pipe(gulp.dest('npm/draw'))
|
||||
.pipe(gulp.dest('npm/idiom'))
|
||||
.pipe(gulp.dest('npm/radical'))
|
||||
.pipe(gulp.dest('npm/xhy'));
|
||||
.pipe(gulp.dest('npm/packages/cnchar'));
|
||||
|
||||
gulp.src(['src/main/*.json', 'src/main/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/cnchar'));
|
||||
plugins.forEach(plugin => {
|
||||
gulpReadme = gulpReadme.pipe(gulp.dest(`npm/packages/${plugin}`));
|
||||
});
|
||||
alias.forEach(alia => {
|
||||
gulpReadme = gulpReadme.pipe(gulp.dest(`npm/packages/${alia}`));
|
||||
});
|
||||
|
||||
gulp.src(['src/plugin/order/*.json', 'src/plugin/order/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/order'));
|
||||
gulp.src(['src/cnchar/main/index.d.ts'])
|
||||
.pipe(gulp.dest('npm/packages/cnchar'))
|
||||
.pipe(gulp.dest('npm/packages/hanzi-util-base'))
|
||||
.pipe(gulp.dest('npm/packages/cnchar-all'))
|
||||
.pipe(gulp.dest('npm/packages/hanzi-util'));
|
||||
|
||||
gulp.src(['src/plugin/poly/*.json', 'src/plugin/poly/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/poly'));
|
||||
|
||||
gulp.src(['src/plugin/trad/*.json', 'src/plugin/trad/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/trad'));
|
||||
|
||||
gulp.src(['src/plugin/draw/*.json', 'src/plugin/draw/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/draw'));
|
||||
|
||||
gulp.src(['src/plugin/idiom/*.json', 'src/plugin/idiom/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/idiom'));
|
||||
|
||||
gulp.src(['src/plugin/radical/*.json', 'src/plugin/radical/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/radical'));
|
||||
gulp.src(['src/cnchar/main/package.json'])
|
||||
.pipe(gulp.dest('npm/packages/cnchar'));
|
||||
|
||||
alias.forEach(alia => {
|
||||
gulp.src(`src/cnchar/alias/${alia}/package.json`)
|
||||
.pipe(gulp.dest(`npm/packages/${alia}`));
|
||||
});
|
||||
|
||||
gulp.src(['src/plugin/xhy/*.json', 'src/plugin/xhy/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/xhy'));
|
||||
|
||||
gulp.src(['src/main/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/hanzi-util-base'));
|
||||
|
||||
gulp.src(['helper/all/*.d.ts', 'LICENSE'])
|
||||
.pipe(gulp.dest('npm/all'))
|
||||
.pipe(gulp.dest('npm/hanzi-util'));
|
||||
plugins.forEach(plugin => {
|
||||
gulpPlugin(plugin);
|
||||
});
|
||||
}
|
||||
|
||||
function copyLatest () {
|
||||
// gulp.src(`dist/*.${version}.min.js`)
|
||||
// .pipe(rename(function (path) {
|
||||
|
@ -113,57 +110,20 @@ function copyLatest () {
|
|||
// path.basename = path.basename.replace(version + '.', '');
|
||||
// return path;
|
||||
// }))
|
||||
// .pipe(gulp.dest('npm/' + name));
|
||||
// .pipe(gulp.dest('npm/packages/' + name));
|
||||
// });
|
||||
gulp.src(`npm/all/cnchar.all.min.js`)
|
||||
gulp.src(`npm/packages/cnchar-all/cnchar.all.min.js`)
|
||||
.pipe(rename(function (path) {
|
||||
path.basename = path.basename.replace('cnchar.all.min', 'hanzi.util.min');
|
||||
return path;
|
||||
}))
|
||||
.pipe(gulp.dest('npm/hanzi-util'));
|
||||
gulp.src(`npm/cnchar/cnchar.min.js`)
|
||||
.pipe(gulp.dest('npm/packages/hanzi-util'));
|
||||
gulp.src(`npm/packages/cnchar/cnchar.min.js`)
|
||||
.pipe(rename(function (path) {
|
||||
path.basename = path.basename.replace('cnchar.min', 'hanzi.base.min');
|
||||
return path;
|
||||
}))
|
||||
.pipe(gulp.dest('npm/hanzi-util-base'));
|
||||
}
|
||||
function transEs6ByBabel () {
|
||||
gulp.src('src/main/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/cnchar'));
|
||||
|
||||
gulp.src('src/plugin/order/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/order'));
|
||||
|
||||
gulp.src('src/plugin/poly/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/poly'));
|
||||
|
||||
gulp.src('src/plugin/trad/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/trad'));
|
||||
|
||||
gulp.src('src/plugin/draw/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/draw'));
|
||||
|
||||
gulp.src('src/plugin/idiom/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/idiom'));
|
||||
|
||||
gulp.src('src/plugin/xhy/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/xhy'));
|
||||
|
||||
gulp.src('src/plugin/radical/*.js')
|
||||
.pipe(babel({presets: ['@babel/env']}))
|
||||
.pipe(gulp.dest('npm/radical'));
|
||||
|
||||
// gulp.src('src/plugin/all/*.js')
|
||||
// .pipe(babel({presets: ['@babel/env']}))
|
||||
// .pipe(gulp.dest('npm/all'));
|
||||
.pipe(gulp.dest('npm/packages/hanzi-util-base'));
|
||||
}
|
||||
|
||||
task();
|
|
@ -1,23 +0,0 @@
|
|||
let dict = require('../src/main/spell-dict-jian.json');
|
||||
const {isCnChar} = require('../src/main/tool');
|
||||
const tool = require('./tool');
|
||||
|
||||
let polyArr = []; ;
|
||||
let words = [];
|
||||
|
||||
for (let k in dict) {
|
||||
for (let i = 0; i < dict[k].length; i++) {
|
||||
let word = dict[k][i];
|
||||
if (isCnChar(word)) {
|
||||
if (words.indexOf(word) === -1) {
|
||||
words.push(word);
|
||||
} else {
|
||||
if (polyArr.indexOf(word) === -1) {
|
||||
polyArr.push(word);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tool.write('helper/polyword.txt', polyArr.join(''));
|
|
@ -0,0 +1,52 @@
|
|||
|
||||
const {exec, Packages} = require('./tool');
|
||||
const {plugins, allPackage, mainPackage, npmPackage} = Packages;
|
||||
|
||||
// plugins 'main' 'npm' 可选
|
||||
// npm run build: 默认build 全部
|
||||
// npm run build main poly npm: build三个
|
||||
|
||||
async function main () {
|
||||
const webpack = 'node ./node_modules/webpack/bin/webpack.js --config ';
|
||||
const buildPlugin = 'webpack-config/build.plugin.js --env.pluginname=';
|
||||
const buildMain = `${webpack}webpack-config/build.js`;
|
||||
const buildNpm = `node ./helper/build-npm.js`;
|
||||
let cmds = [];
|
||||
let cmdConsole = [];
|
||||
const packages = process.argv.slice(2);
|
||||
|
||||
packages.forEach(package => {
|
||||
if (plugins.includes(package) || package === allPackage) {
|
||||
cmds.push(`${webpack} ${buildPlugin}${package}`);
|
||||
cmdConsole.push(package);
|
||||
} else if (package === mainPackage) {
|
||||
cmds.push(buildMain);
|
||||
cmdConsole.push(mainPackage);
|
||||
} else if (package === npmPackage) {
|
||||
cmds.push(buildNpm);
|
||||
cmdConsole.push(npmPackage);
|
||||
}
|
||||
});
|
||||
if (cmds.length === 0) {
|
||||
cmds = [
|
||||
buildMain,
|
||||
...plugins.map(plugin => `${webpack} ${buildPlugin}${plugin}`),
|
||||
`${webpack} ${buildPlugin}${allPackage}`,
|
||||
buildNpm
|
||||
];
|
||||
cmdConsole = [
|
||||
mainPackage,
|
||||
...plugins,
|
||||
allPackage,
|
||||
npmPackage
|
||||
];
|
||||
}
|
||||
console.log(`Start Building... [0/${cmds.length}]`);
|
||||
for (let i = 0; i < cmds.length; i++) {
|
||||
await exec(cmds[i]);
|
||||
console.log(`${cmdConsole[i]} build success. [${i + 1}/${cmds.length}]`);
|
||||
}
|
||||
console.log('Finished!');
|
||||
}
|
||||
|
||||
main();
|
|
@ -0,0 +1,18 @@
|
|||
### 本地运行注意事项
|
||||
|
||||
1. 进入 src/cnchar-types 目录 运行 npm link 命令
|
||||
2. 进入 src/cnchar 目录 运行 npm link cnchar-types 命令
|
||||
|
||||
### npm run test
|
||||
1. npm run test: 需要先build之后测试 npm 包
|
||||
|
||||
### 分支
|
||||
1. 从master新建版本号分支作为开发分支
|
||||
2. gh-pages 分支作为 github pages发布分支
|
||||
3. gitee-pages 分支作为 gitee pages发布分支
|
||||
|
||||
gh-pages 分支中的 vuepress/.vuepress/config.js 文件中 base需要设置为 /
|
||||
gitee-pages 分支中的 vuepress/.vuepress/config.js 文件中 base需要设置为 /cnchar/
|
||||
|
||||
版本号分支开发完成之后 合到master分支
|
||||
dev:docs 完成之后 分别合到gh-pages和gitee-pages分支进行build:docs
|
|
@ -1,27 +0,0 @@
|
|||
const dict = require('../../src/plugin/idiom/idiom.json');
|
||||
const cnchar = require('../../src/plugin/all/index');
|
||||
const fs = require('fs');
|
||||
|
||||
let last = '';
|
||||
let lastNoTone = '';
|
||||
|
||||
let spellDict = [], spellDictNoTone = [];
|
||||
|
||||
dict.forEach((d, index) => {
|
||||
let spell = cnchar.spell(d[0], 'tone', 'low');
|
||||
let spellNoTone = cnchar._.removeTone(spell).spell;
|
||||
|
||||
if (last !== spell) {
|
||||
spellDict.push(spell + ':' + index);
|
||||
}
|
||||
|
||||
if (lastNoTone !== spellNoTone) {
|
||||
spellDictNoTone.push(spellNoTone + ':' + index);
|
||||
}
|
||||
|
||||
last = spell;
|
||||
lastNoTone = spellNoTone;
|
||||
});
|
||||
|
||||
fs.writeFileSync('./helper/idiom/spell.json', JSON.stringify(spellDict, null, 4), 'utf8');
|
||||
fs.writeFileSync('./helper/idiom/spell.notone.json', JSON.stringify(spellDictNoTone, null, 4), 'utf8');
|
|
@ -1,598 +0,0 @@
|
|||
[
|
||||
"a:0",
|
||||
"ai:21",
|
||||
"an:103",
|
||||
"ang:245",
|
||||
"ao:261",
|
||||
"ba:305",
|
||||
"pa:351",
|
||||
"ba:353",
|
||||
"bai:420",
|
||||
"bo:697",
|
||||
"bai:699",
|
||||
"ban:728",
|
||||
"bang:810",
|
||||
"bao:828",
|
||||
"po:938",
|
||||
"bei:939",
|
||||
"pi:1051",
|
||||
"ben:1064",
|
||||
"beng:1087",
|
||||
"bi:1090",
|
||||
"bian:1330",
|
||||
"biao:1395",
|
||||
"bie:1421",
|
||||
"bin:1466",
|
||||
"bing:1478",
|
||||
"bo:1607",
|
||||
"bu:1703",
|
||||
"bo:1706",
|
||||
"bu:1708",
|
||||
"ca:2338",
|
||||
"cai:2342",
|
||||
"can:2431",
|
||||
"cang:2515",
|
||||
"cao:2556",
|
||||
"ze:2604",
|
||||
"si:2606",
|
||||
"ce:2608",
|
||||
"cen:2615",
|
||||
"ceng:2616",
|
||||
"cha:2625",
|
||||
"chai:2653",
|
||||
"zhai:2660",
|
||||
"chai:2667",
|
||||
"chan:2677",
|
||||
"shan:2681",
|
||||
"chan:2683",
|
||||
"chang:2705",
|
||||
"chao:2812",
|
||||
"che:2923",
|
||||
"tian:2956",
|
||||
"chen:2958",
|
||||
"chuang:3024",
|
||||
"cheng:3026",
|
||||
"chen:3043",
|
||||
"cheng:3055",
|
||||
"sheng:3134",
|
||||
"cheng:3172",
|
||||
"chi:3210",
|
||||
"che:3298",
|
||||
"chi:3326",
|
||||
"chong:3381",
|
||||
"hui:3404",
|
||||
"chong:3407",
|
||||
"chou:3420",
|
||||
"chu:3481",
|
||||
"chuai:3703",
|
||||
"chuan:3710",
|
||||
"chuang:3753",
|
||||
"chui:3775",
|
||||
"chun:3847",
|
||||
"chuo:3926",
|
||||
"chao:3932",
|
||||
"chuo:3936",
|
||||
"ci:3937",
|
||||
"cong:4004",
|
||||
"cu:4051",
|
||||
"cuan:4070",
|
||||
"cui:4076",
|
||||
"cun:4101",
|
||||
"cuo:4159",
|
||||
"zuo:4161",
|
||||
"cuo:4166",
|
||||
"da:4183",
|
||||
"dai:4447",
|
||||
"dan:4501",
|
||||
"da:4605",
|
||||
"dan:4606",
|
||||
"dang:4621",
|
||||
"dao:4675",
|
||||
"de:4824",
|
||||
"deng:4898",
|
||||
"di:4936",
|
||||
"dian:5047",
|
||||
"tian:5106",
|
||||
"dian:5107",
|
||||
"diao:5109",
|
||||
"die:5201",
|
||||
"zha:5215",
|
||||
"die:5216",
|
||||
"ding:5223",
|
||||
"diu:5268",
|
||||
"dong:5280",
|
||||
"dou:5508",
|
||||
"du:5560",
|
||||
"dou:5567",
|
||||
"du:5575",
|
||||
"duan:5703",
|
||||
"dui:5780",
|
||||
"tun:5808",
|
||||
"dun:5809",
|
||||
"duo:5854",
|
||||
"hui:5922",
|
||||
"e:5925",
|
||||
"yi:5936",
|
||||
"e:5938",
|
||||
"wu:5953",
|
||||
"e:5984",
|
||||
"en:6003",
|
||||
"er:6024",
|
||||
"fa:6092",
|
||||
"fan:6160",
|
||||
"fang:6309",
|
||||
"fei:6405",
|
||||
"fen:6535",
|
||||
"feng:6689",
|
||||
"fu:7048",
|
||||
"pi:7059",
|
||||
"fu:7066",
|
||||
"fei:7124",
|
||||
"fu:7126",
|
||||
"gai:7410",
|
||||
"ge:7463",
|
||||
"gai:7471",
|
||||
"gan:7473",
|
||||
"gang:7574",
|
||||
"gao:7591",
|
||||
"ge:7750",
|
||||
"ji:7773",
|
||||
"ge:7794",
|
||||
"gen:7857",
|
||||
"geng:7886",
|
||||
"bing:7910",
|
||||
"geng:7912",
|
||||
"gong:7919",
|
||||
"gou:8041",
|
||||
"gu:8116",
|
||||
"hu:8177",
|
||||
"gu:8179",
|
||||
"yu:8194",
|
||||
"gu:8197",
|
||||
"he:8219",
|
||||
"gu:8224",
|
||||
"gua:8301",
|
||||
"gu:8326",
|
||||
"gua:8328",
|
||||
"guai:8350",
|
||||
"guan:8362",
|
||||
"guang:8451",
|
||||
"kui:8488",
|
||||
"gui:8509",
|
||||
"qiu:8512",
|
||||
"gui:8526",
|
||||
"gun:8635",
|
||||
"guo:8638",
|
||||
"hai:8698",
|
||||
"he:8748",
|
||||
"han:8750",
|
||||
"hang:8874",
|
||||
"hao:8876",
|
||||
"he:8981",
|
||||
"ge:8988",
|
||||
"he:8999",
|
||||
"hei:9119",
|
||||
"hen:9137",
|
||||
"heng:9145",
|
||||
"hong:9220",
|
||||
"gong:9235",
|
||||
"hong:9252",
|
||||
"hou:9315",
|
||||
"hu:9361",
|
||||
"hua:9518",
|
||||
"huai:9652",
|
||||
"huan:9687",
|
||||
"hai:9701",
|
||||
"huan:9717",
|
||||
"huang:9748",
|
||||
"hui:9842",
|
||||
"hun:9982",
|
||||
"huo:10075",
|
||||
"ji:10173",
|
||||
"qi:10357",
|
||||
"ji:10360",
|
||||
"qi:10426",
|
||||
"ji:10427",
|
||||
"jia:10665",
|
||||
"jie:10690",
|
||||
"xia:10747",
|
||||
"jia:10748",
|
||||
"jie:10764",
|
||||
"jia:10768",
|
||||
"xia:10780",
|
||||
"jia:10802",
|
||||
"gan:10809",
|
||||
"jian:10812",
|
||||
"xian:11043",
|
||||
"jian:11045",
|
||||
"kan:11053",
|
||||
"jian:11054",
|
||||
"jiang:11058",
|
||||
"qiang:11089",
|
||||
"jiang:11122",
|
||||
"xiang:11138",
|
||||
"jiao:11151",
|
||||
"jue:11212",
|
||||
"jiao:11216",
|
||||
"jue:11251",
|
||||
"jiao:11258",
|
||||
"jie:11276",
|
||||
"ji:11431",
|
||||
"jin:11432",
|
||||
"gong:11452",
|
||||
"jin:11455",
|
||||
"jing:11781",
|
||||
"jiong:12011",
|
||||
"jiu:12016",
|
||||
"ju:12186",
|
||||
"gou:12286",
|
||||
"ju:12289",
|
||||
"juan:12322",
|
||||
"jue:12359",
|
||||
"jiao:12405",
|
||||
"jue:12406",
|
||||
"jun:12422",
|
||||
"kai:12447",
|
||||
"kan:12502",
|
||||
"kang:12528",
|
||||
"kao:12553",
|
||||
"ke:12559",
|
||||
"ken:12637",
|
||||
"keng:12639",
|
||||
"kong:12647",
|
||||
"kou:12679",
|
||||
"ku:12749",
|
||||
"gu:12792",
|
||||
"kua:12812",
|
||||
"kuai:12825",
|
||||
"kuan:12840",
|
||||
"kuang:12858",
|
||||
"kui:12910",
|
||||
"kun:12933",
|
||||
"kuo:12944",
|
||||
"la:12948",
|
||||
"xi:12958",
|
||||
"lai:12959",
|
||||
"la:12986",
|
||||
"lan:12987",
|
||||
"lang:13022",
|
||||
"lao:13089",
|
||||
"liao:13156",
|
||||
"le:13157",
|
||||
"lei:13205",
|
||||
"leng:13253",
|
||||
"li:13278",
|
||||
"lian:13494",
|
||||
"liang:13610",
|
||||
"liao:13689",
|
||||
"le:13715",
|
||||
"liao:13725",
|
||||
"lie:13730",
|
||||
"lin:13756",
|
||||
"ling:13828",
|
||||
"liu:13888",
|
||||
"long:14020",
|
||||
"lou:14152",
|
||||
"lu:14186",
|
||||
"liu:14223",
|
||||
"lu:14227",
|
||||
"liu:14235",
|
||||
"lu:14240",
|
||||
"lü:14259",
|
||||
"shuai:14298",
|
||||
"lu:14309",
|
||||
"luan:14330",
|
||||
"lüe:14378",
|
||||
"lun:14394",
|
||||
"lü:14422",
|
||||
"luo:14424",
|
||||
"lao:14437",
|
||||
"luo:14438",
|
||||
"la:14442",
|
||||
"ma:14467",
|
||||
"mai:14533",
|
||||
"mo:14601",
|
||||
"man:14603",
|
||||
"wan:14687",
|
||||
"mang:14690",
|
||||
"mao:14724",
|
||||
"mo:14753",
|
||||
"mao:14757",
|
||||
"mei:14768",
|
||||
"men:14845",
|
||||
"meng:14878",
|
||||
"mi:14904",
|
||||
"mei:14939",
|
||||
"mi:14940",
|
||||
"bi:14964",
|
||||
"mi:14967",
|
||||
"mian:14973",
|
||||
"wen:14988",
|
||||
"min:14990",
|
||||
"mian:14991",
|
||||
"miao:15053",
|
||||
"mie:15089",
|
||||
"min:15097",
|
||||
"ming:15131",
|
||||
"miu:15308",
|
||||
"mou:15315",
|
||||
"mo:15316",
|
||||
"ma:15366",
|
||||
"mo:15370",
|
||||
"mou:15417",
|
||||
"mu:15433",
|
||||
"na:15580",
|
||||
"nai:15619",
|
||||
"nan:15625",
|
||||
"na:15640",
|
||||
"nan:15671",
|
||||
"nang:15696",
|
||||
"nu:15706",
|
||||
"nao:15707",
|
||||
"ne:15714",
|
||||
"ni:15716",
|
||||
"neng:15717",
|
||||
"ni:15737",
|
||||
"nian:15787",
|
||||
"nie:15831",
|
||||
"nian:15834",
|
||||
"niao:15837",
|
||||
"nie:15870",
|
||||
"ning:15900",
|
||||
"niu:15914",
|
||||
"nong:15958",
|
||||
"nu:15994",
|
||||
"nü:16019",
|
||||
"nüe:16032",
|
||||
"nuan:16033",
|
||||
"nuo:16034",
|
||||
"ou:16038",
|
||||
"pa:16053",
|
||||
"pai:16064",
|
||||
"pan:16082",
|
||||
"pang:16125",
|
||||
"pao:16157",
|
||||
"pei:16175",
|
||||
"pen:16182",
|
||||
"peng:16188",
|
||||
"pi:16222",
|
||||
"bi:16311",
|
||||
"pi:16312",
|
||||
"pian:16313",
|
||||
"piao:16366",
|
||||
"pie:16390",
|
||||
"pin:16391",
|
||||
"ping:16427",
|
||||
"po:16488",
|
||||
"pou:16567",
|
||||
"pu:16583",
|
||||
"po:16606",
|
||||
"pu:16610",
|
||||
"bao:16621",
|
||||
"qi:16624",
|
||||
"qia:16996",
|
||||
"qian:17002",
|
||||
"qiang:17325",
|
||||
"qiao:17384",
|
||||
"shao:17455",
|
||||
"qie:17456",
|
||||
"qing:17492",
|
||||
"qin:17506",
|
||||
"qing:17557",
|
||||
"qiong:17818",
|
||||
"qiu:17874",
|
||||
"ou:17939",
|
||||
"qu:17943",
|
||||
"juan:18027",
|
||||
"quan:18028",
|
||||
"que:18094",
|
||||
"qiao:18105",
|
||||
"que:18112",
|
||||
"jue:18117",
|
||||
"que:18118",
|
||||
"qun:18129",
|
||||
"ran:18148",
|
||||
"rang:18167",
|
||||
"rao:18182",
|
||||
"re:18186",
|
||||
"ren:18210",
|
||||
"reng:18448",
|
||||
"ri:18449",
|
||||
"rong:18582",
|
||||
"rou:18608",
|
||||
"ru:18646",
|
||||
"ruan:18818",
|
||||
"rui:18828",
|
||||
"run:18836",
|
||||
"re:18837",
|
||||
"ruo:18862",
|
||||
"sa:18868",
|
||||
"sai:18882",
|
||||
"san:18893",
|
||||
"sang:19089",
|
||||
"sao:19128",
|
||||
"se:19155",
|
||||
"sen:19170",
|
||||
"seng:19172",
|
||||
"sha:19173",
|
||||
"shai:19218",
|
||||
"shan:19219",
|
||||
"shang:19335",
|
||||
"shao:19415",
|
||||
"she:19442",
|
||||
"yi:19451",
|
||||
"she:19460",
|
||||
"shen:19499",
|
||||
"sheng:19780",
|
||||
"shi:19906",
|
||||
"shen:20054",
|
||||
"shi:20059",
|
||||
"shou:20473",
|
||||
"shu:20583",
|
||||
"shua:20768",
|
||||
"shuai:20770",
|
||||
"shuan:20771",
|
||||
"shuang:20772",
|
||||
"shui:20795",
|
||||
"shun:20879",
|
||||
"shuo:20923",
|
||||
"si:20970",
|
||||
"ci:21111",
|
||||
"shi:21115",
|
||||
"si:21125",
|
||||
"qi:21136",
|
||||
"si:21137",
|
||||
"song:21143",
|
||||
"sou:21184",
|
||||
"su:21194",
|
||||
"suan:21236",
|
||||
"sui:21240",
|
||||
"sun:21333",
|
||||
"suo:21348",
|
||||
"su:21349",
|
||||
"suo:21356",
|
||||
"ta:21374",
|
||||
"dai:21384",
|
||||
"tai:21385",
|
||||
"tan:21413",
|
||||
"shang:21510",
|
||||
"tang:21514",
|
||||
"chang:21536",
|
||||
"tang:21537",
|
||||
"tao:21538",
|
||||
"te:21610",
|
||||
"teng:21612",
|
||||
"ti:21619",
|
||||
"di:21633",
|
||||
"ti:21640",
|
||||
"tian:21677",
|
||||
"mian:21888",
|
||||
"tiao:21890",
|
||||
"tie:21922",
|
||||
"ting:21961",
|
||||
"ding:21984",
|
||||
"tong:21986",
|
||||
"tou:22195",
|
||||
"tu:22292",
|
||||
"tuan:22371",
|
||||
"tui:22380",
|
||||
"tun:22428",
|
||||
"tuo:22452",
|
||||
"wa:22495",
|
||||
"wai:22511",
|
||||
"wan:22533",
|
||||
"wang:22662",
|
||||
"wei:22814",
|
||||
"yi:22964",
|
||||
"wei:22968",
|
||||
"wen:23028",
|
||||
"weng:23176",
|
||||
"wo:23185",
|
||||
"wu:23226",
|
||||
"xi:23747",
|
||||
"xia:23921",
|
||||
"xian:23992",
|
||||
"qian:24039",
|
||||
"xian:24044",
|
||||
"xiang:24147",
|
||||
"xiao:24277",
|
||||
"xie:24422",
|
||||
"ye:24428",
|
||||
"xie:24439",
|
||||
"xin:24477",
|
||||
"xing:24720",
|
||||
"xiong:24882",
|
||||
"xiu:24946",
|
||||
"xu:25002",
|
||||
"shi:25033",
|
||||
"xu:25035",
|
||||
"chu:25042",
|
||||
"xu:25043",
|
||||
"xuan:25052",
|
||||
"huan:25143",
|
||||
"xue:25146",
|
||||
"xie:25195",
|
||||
"xue:25217",
|
||||
"xun:25220",
|
||||
"ya:25285",
|
||||
"ye:25326",
|
||||
"yan:25328",
|
||||
"ya:25598",
|
||||
"yan:25601",
|
||||
"yang:25677",
|
||||
"yao:25798",
|
||||
"ye:25901",
|
||||
"yi:25946",
|
||||
"qi:26707",
|
||||
"yi:26708",
|
||||
"yin:27307",
|
||||
"ying:27501",
|
||||
"yong:27649",
|
||||
"you:27720",
|
||||
"yu:27981",
|
||||
"yuan:28367",
|
||||
"yao:28489",
|
||||
"yue:28491",
|
||||
"yun:28548",
|
||||
"za:28688",
|
||||
"zai:28696",
|
||||
"zan:28736",
|
||||
"cuan:28738",
|
||||
"zan:28744",
|
||||
"zang:28749",
|
||||
"cang:28759",
|
||||
"zang:28762",
|
||||
"zao:28764",
|
||||
"ze:28829",
|
||||
"zei:28848",
|
||||
"zen:28862",
|
||||
"ceng:28863",
|
||||
"zeng:28869",
|
||||
"zha:28873",
|
||||
"zhai:28882",
|
||||
"zhan:28895",
|
||||
"nian:28906",
|
||||
"zhan:28908",
|
||||
"nian:28933",
|
||||
"zhan:28934",
|
||||
"zhang:28950",
|
||||
"zhao:29008",
|
||||
"zhe:29047",
|
||||
"zhen:29084",
|
||||
"zheng:29190",
|
||||
"zhi:29300",
|
||||
"zi:29321",
|
||||
"zhi:29322",
|
||||
"zhong:29668",
|
||||
"zhou:29877",
|
||||
"yu:29890",
|
||||
"zhou:29892",
|
||||
"zhu:29918",
|
||||
"shu:30058",
|
||||
"zhu:30063",
|
||||
"chu:30069",
|
||||
"zhu:30078",
|
||||
"zhe:30097",
|
||||
"zhu:30101",
|
||||
"zhua:30113",
|
||||
"ye:30120",
|
||||
"zhuan:30127",
|
||||
"zhuang:30158",
|
||||
"zhui:30190",
|
||||
"chui:30222",
|
||||
"zhui:30241",
|
||||
"zhun:30248",
|
||||
"zhuo:30254",
|
||||
"zhe:30306",
|
||||
"zhuo:30310",
|
||||
"zi:30316",
|
||||
"ci:30325",
|
||||
"zi:30326",
|
||||
"zong:30475",
|
||||
"zou:30494",
|
||||
"zu:30515",
|
||||
"zuan:30545",
|
||||
"zui:30567",
|
||||
"zun:30601",
|
||||
"zuo:30622"
|
||||
]
|
|
@ -1,49 +0,0 @@
|
|||
const spellDict = require('./spell.json');
|
||||
const cnchar = require('../../src/plugin/all/index');
|
||||
const spellDictNoTone = require('./spell.notone.json');
|
||||
const fs = require('fs');
|
||||
|
||||
let spellDictArr = spellDict.map(spell => {
|
||||
let arr = spell.split(':');
|
||||
arr[0] = cnchar._.removeTone(arr[0]).spell;
|
||||
return [arr[0], arr[1]];
|
||||
});
|
||||
|
||||
|
||||
let uselessIndexes = [];
|
||||
|
||||
for (let i = 1; i < spellDictArr.length - 1; i++) {
|
||||
let prevSpell = spellDictArr[i - 1][0][0];
|
||||
let nextSpell = spellDictArr[i + 1][0][0];
|
||||
let spell = spellDictArr[i + 1][0][0];
|
||||
if (prevSpell === nextSpell && prevSpell !== spell) {
|
||||
uselessIndexes.push(i);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let spellDictArrNoTone = spellDictNoTone.map(spell => {
|
||||
return spell.split(':');
|
||||
});
|
||||
|
||||
let uselessIndexesNoTone = [];
|
||||
|
||||
for (let i = 1; i < spellDictArrNoTone.length - 1; i++) {
|
||||
let prevSpell = spellDictArrNoTone[i - 1][0][0];
|
||||
let nextSpell = spellDictArrNoTone[i + 1][0][0];
|
||||
let spell = spellDictArrNoTone[i + 1][0][0];
|
||||
if (prevSpell === nextSpell && prevSpell !== spell) {
|
||||
uselessIndexesNoTone.push(i);
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = uselessIndexes.length - 1; i >= 0; i--) {
|
||||
spellDict.splice(uselessIndexes[i], 1);
|
||||
}
|
||||
for (let i = uselessIndexesNoTone.length - 1; i >= 0; i--) {
|
||||
spellDictNoTone.splice(uselessIndexesNoTone[i], 1);
|
||||
}
|
||||
fs.writeFileSync('./helper/idiom/spell2.json', JSON.stringify(spellDict, null, 4), 'utf8');
|
||||
fs.writeFileSync('./helper/idiom/spell2.notone.json', JSON.stringify(spellDictNoTone, null, 4), 'utf8');
|
||||
fs.writeFileSync('./helper/idiom/spell2.min.json', JSON.stringify(spellDict), 'utf8');
|
||||
fs.writeFileSync('./helper/idiom/spell2.min.notone.json', JSON.stringify(spellDictNoTone), 'utf8');
|
|
@ -1,598 +0,0 @@
|
|||
[
|
||||
"a:0",
|
||||
"ai:21",
|
||||
"an:103",
|
||||
"ang:245",
|
||||
"ao:261",
|
||||
"ba:305",
|
||||
"pa:351",
|
||||
"ba:353",
|
||||
"bai:420",
|
||||
"bo:697",
|
||||
"bai:699",
|
||||
"ban:728",
|
||||
"bang:810",
|
||||
"bao:828",
|
||||
"po:938",
|
||||
"bei:939",
|
||||
"pi:1051",
|
||||
"ben:1064",
|
||||
"beng:1087",
|
||||
"bi:1090",
|
||||
"bian:1330",
|
||||
"biao:1395",
|
||||
"bie:1421",
|
||||
"bin:1466",
|
||||
"bing:1478",
|
||||
"bo:1607",
|
||||
"bu:1703",
|
||||
"bo:1706",
|
||||
"bu:1708",
|
||||
"ca:2338",
|
||||
"cai:2342",
|
||||
"can:2431",
|
||||
"cang:2515",
|
||||
"cao:2556",
|
||||
"ze:2604",
|
||||
"si:2606",
|
||||
"ce:2608",
|
||||
"cen:2615",
|
||||
"ceng:2616",
|
||||
"cha:2625",
|
||||
"chai:2653",
|
||||
"zhai:2660",
|
||||
"chai:2667",
|
||||
"chan:2677",
|
||||
"shan:2681",
|
||||
"chan:2683",
|
||||
"chang:2705",
|
||||
"chao:2812",
|
||||
"che:2923",
|
||||
"tian:2956",
|
||||
"chen:2958",
|
||||
"chuang:3024",
|
||||
"cheng:3026",
|
||||
"chen:3043",
|
||||
"cheng:3055",
|
||||
"sheng:3134",
|
||||
"cheng:3172",
|
||||
"chi:3210",
|
||||
"che:3298",
|
||||
"chi:3326",
|
||||
"chong:3381",
|
||||
"hui:3404",
|
||||
"chong:3407",
|
||||
"chou:3420",
|
||||
"chu:3481",
|
||||
"chuai:3703",
|
||||
"chuan:3710",
|
||||
"chuang:3753",
|
||||
"chui:3775",
|
||||
"chun:3847",
|
||||
"chuo:3926",
|
||||
"chao:3932",
|
||||
"chuo:3936",
|
||||
"ci:3937",
|
||||
"cong:4004",
|
||||
"cu:4051",
|
||||
"cuan:4070",
|
||||
"cui:4076",
|
||||
"cun:4101",
|
||||
"cuo:4159",
|
||||
"zuo:4161",
|
||||
"cuo:4166",
|
||||
"da:4183",
|
||||
"dai:4447",
|
||||
"dan:4501",
|
||||
"da:4605",
|
||||
"dan:4606",
|
||||
"dang:4621",
|
||||
"dao:4675",
|
||||
"de:4824",
|
||||
"deng:4898",
|
||||
"di:4936",
|
||||
"dian:5047",
|
||||
"tian:5106",
|
||||
"dian:5107",
|
||||
"diao:5109",
|
||||
"die:5201",
|
||||
"zha:5215",
|
||||
"die:5216",
|
||||
"ding:5223",
|
||||
"diu:5268",
|
||||
"dong:5280",
|
||||
"dou:5508",
|
||||
"du:5560",
|
||||
"dou:5567",
|
||||
"du:5575",
|
||||
"duan:5703",
|
||||
"dui:5780",
|
||||
"tun:5808",
|
||||
"dun:5809",
|
||||
"duo:5854",
|
||||
"hui:5922",
|
||||
"e:5925",
|
||||
"yi:5936",
|
||||
"e:5938",
|
||||
"wu:5953",
|
||||
"e:5984",
|
||||
"en:6003",
|
||||
"er:6024",
|
||||
"fa:6092",
|
||||
"fan:6160",
|
||||
"fang:6309",
|
||||
"fei:6405",
|
||||
"fen:6535",
|
||||
"feng:6689",
|
||||
"fu:7048",
|
||||
"pi:7059",
|
||||
"fu:7066",
|
||||
"fei:7124",
|
||||
"fu:7126",
|
||||
"gai:7410",
|
||||
"ge:7463",
|
||||
"gai:7471",
|
||||
"gan:7473",
|
||||
"gang:7574",
|
||||
"gao:7591",
|
||||
"ge:7750",
|
||||
"ji:7773",
|
||||
"ge:7794",
|
||||
"gen:7857",
|
||||
"geng:7886",
|
||||
"bing:7910",
|
||||
"geng:7912",
|
||||
"gong:7919",
|
||||
"gou:8041",
|
||||
"gu:8116",
|
||||
"hu:8177",
|
||||
"gu:8179",
|
||||
"yu:8194",
|
||||
"gu:8197",
|
||||
"he:8219",
|
||||
"gu:8224",
|
||||
"gua:8301",
|
||||
"gu:8326",
|
||||
"gua:8328",
|
||||
"guai:8350",
|
||||
"guan:8362",
|
||||
"guang:8451",
|
||||
"kui:8488",
|
||||
"gui:8509",
|
||||
"qiu:8512",
|
||||
"gui:8526",
|
||||
"gun:8635",
|
||||
"guo:8638",
|
||||
"hai:8698",
|
||||
"he:8748",
|
||||
"han:8750",
|
||||
"hang:8874",
|
||||
"hao:8876",
|
||||
"he:8981",
|
||||
"ge:8988",
|
||||
"he:8999",
|
||||
"hei:9119",
|
||||
"hen:9137",
|
||||
"heng:9145",
|
||||
"hong:9220",
|
||||
"gong:9235",
|
||||
"hong:9252",
|
||||
"hou:9315",
|
||||
"hu:9361",
|
||||
"hua:9518",
|
||||
"huai:9652",
|
||||
"huan:9687",
|
||||
"hai:9701",
|
||||
"huan:9717",
|
||||
"huang:9748",
|
||||
"hui:9842",
|
||||
"hun:9982",
|
||||
"huo:10075",
|
||||
"ji:10173",
|
||||
"qi:10357",
|
||||
"ji:10360",
|
||||
"qi:10426",
|
||||
"ji:10427",
|
||||
"jia:10665",
|
||||
"jie:10690",
|
||||
"xia:10747",
|
||||
"jia:10748",
|
||||
"jie:10764",
|
||||
"jia:10768",
|
||||
"xia:10780",
|
||||
"jia:10802",
|
||||
"gan:10809",
|
||||
"jian:10812",
|
||||
"xian:11043",
|
||||
"jian:11045",
|
||||
"kan:11053",
|
||||
"jian:11054",
|
||||
"jiang:11058",
|
||||
"qiang:11089",
|
||||
"jiang:11122",
|
||||
"xiang:11138",
|
||||
"jiao:11151",
|
||||
"jue:11212",
|
||||
"jiao:11216",
|
||||
"jue:11251",
|
||||
"jiao:11258",
|
||||
"jie:11276",
|
||||
"ji:11431",
|
||||
"jin:11432",
|
||||
"gong:11452",
|
||||
"jin:11455",
|
||||
"jing:11781",
|
||||
"jiong:12011",
|
||||
"jiu:12016",
|
||||
"ju:12186",
|
||||
"gou:12286",
|
||||
"ju:12289",
|
||||
"juan:12322",
|
||||
"jue:12359",
|
||||
"jiao:12405",
|
||||
"jue:12406",
|
||||
"jun:12422",
|
||||
"kai:12447",
|
||||
"kan:12502",
|
||||
"kang:12528",
|
||||
"kao:12553",
|
||||
"ke:12559",
|
||||
"ken:12637",
|
||||
"keng:12639",
|
||||
"kong:12647",
|
||||
"kou:12679",
|
||||
"ku:12749",
|
||||
"gu:12792",
|
||||
"kua:12812",
|
||||
"kuai:12825",
|
||||
"kuan:12840",
|
||||
"kuang:12858",
|
||||
"kui:12910",
|
||||
"kun:12933",
|
||||
"kuo:12944",
|
||||
"la:12948",
|
||||
"xi:12958",
|
||||
"lai:12959",
|
||||
"la:12986",
|
||||
"lan:12987",
|
||||
"lang:13022",
|
||||
"lao:13089",
|
||||
"liao:13156",
|
||||
"le:13157",
|
||||
"lei:13205",
|
||||
"leng:13253",
|
||||
"li:13278",
|
||||
"lian:13494",
|
||||
"liang:13610",
|
||||
"liao:13689",
|
||||
"le:13715",
|
||||
"liao:13725",
|
||||
"lie:13730",
|
||||
"lin:13756",
|
||||
"ling:13828",
|
||||
"liu:13888",
|
||||
"long:14020",
|
||||
"lou:14152",
|
||||
"lu:14186",
|
||||
"liu:14223",
|
||||
"lu:14227",
|
||||
"liu:14235",
|
||||
"lu:14240",
|
||||
"lü:14259",
|
||||
"shuai:14298",
|
||||
"lu:14309",
|
||||
"luan:14330",
|
||||
"lüe:14378",
|
||||
"lun:14394",
|
||||
"lü:14422",
|
||||
"luo:14424",
|
||||
"lao:14437",
|
||||
"luo:14438",
|
||||
"la:14442",
|
||||
"ma:14467",
|
||||
"mai:14533",
|
||||
"mo:14601",
|
||||
"man:14603",
|
||||
"wan:14687",
|
||||
"mang:14690",
|
||||
"mao:14724",
|
||||
"mo:14753",
|
||||
"mao:14757",
|
||||
"mei:14768",
|
||||
"men:14845",
|
||||
"meng:14878",
|
||||
"mi:14904",
|
||||
"mei:14939",
|
||||
"mi:14940",
|
||||
"bi:14964",
|
||||
"mi:14967",
|
||||
"mian:14973",
|
||||
"wen:14988",
|
||||
"min:14990",
|
||||
"mian:14991",
|
||||
"miao:15053",
|
||||
"mie:15089",
|
||||
"min:15097",
|
||||
"ming:15131",
|
||||
"miu:15308",
|
||||
"mou:15315",
|
||||
"mo:15316",
|
||||
"ma:15366",
|
||||
"mo:15370",
|
||||
"mou:15417",
|
||||
"mu:15433",
|
||||
"na:15580",
|
||||
"nai:15619",
|
||||
"nan:15625",
|
||||
"na:15640",
|
||||
"nan:15671",
|
||||
"nang:15696",
|
||||
"nu:15706",
|
||||
"nao:15707",
|
||||
"ne:15714",
|
||||
"ni:15716",
|
||||
"neng:15717",
|
||||
"ni:15737",
|
||||
"nian:15787",
|
||||
"nie:15831",
|
||||
"nian:15834",
|
||||
"niao:15837",
|
||||
"nie:15870",
|
||||
"ning:15900",
|
||||
"niu:15914",
|
||||
"nong:15958",
|
||||
"nu:15994",
|
||||
"nü:16019",
|
||||
"nüe:16032",
|
||||
"nuan:16033",
|
||||
"nuo:16034",
|
||||
"ou:16038",
|
||||
"pa:16053",
|
||||
"pai:16064",
|
||||
"pan:16082",
|
||||
"pang:16125",
|
||||
"pao:16157",
|
||||
"pei:16175",
|
||||
"pen:16182",
|
||||
"peng:16188",
|
||||
"pi:16222",
|
||||
"bi:16311",
|
||||
"pi:16312",
|
||||
"pian:16313",
|
||||
"piao:16366",
|
||||
"pie:16390",
|
||||
"pin:16391",
|
||||
"ping:16427",
|
||||
"po:16488",
|
||||
"pou:16567",
|
||||
"pu:16583",
|
||||
"po:16606",
|
||||
"pu:16610",
|
||||
"bao:16621",
|
||||
"qi:16624",
|
||||
"qia:16996",
|
||||
"qian:17002",
|
||||
"qiang:17325",
|
||||
"qiao:17384",
|
||||
"shao:17455",
|
||||
"qie:17456",
|
||||
"qing:17492",
|
||||
"qin:17506",
|
||||
"qing:17557",
|
||||
"qiong:17818",
|
||||
"qiu:17874",
|
||||
"ou:17939",
|
||||
"qu:17943",
|
||||
"juan:18027",
|
||||
"quan:18028",
|
||||
"que:18094",
|
||||
"qiao:18105",
|
||||
"que:18112",
|
||||
"jue:18117",
|
||||
"que:18118",
|
||||
"qun:18129",
|
||||
"ran:18148",
|
||||
"rang:18167",
|
||||
"rao:18182",
|
||||
"re:18186",
|
||||
"ren:18210",
|
||||
"reng:18448",
|
||||
"ri:18449",
|
||||
"rong:18582",
|
||||
"rou:18608",
|
||||
"ru:18646",
|
||||
"ruan:18818",
|
||||
"rui:18828",
|
||||
"run:18836",
|
||||
"re:18837",
|
||||
"ruo:18862",
|
||||
"sa:18868",
|
||||
"sai:18882",
|
||||
"san:18893",
|
||||
"sang:19089",
|
||||
"sao:19128",
|
||||
"se:19155",
|
||||
"sen:19170",
|
||||
"seng:19172",
|
||||
"sha:19173",
|
||||
"shai:19218",
|
||||
"shan:19219",
|
||||
"shang:19335",
|
||||
"shao:19415",
|
||||
"she:19442",
|
||||
"yi:19451",
|
||||
"she:19460",
|
||||
"shen:19499",
|
||||
"sheng:19780",
|
||||
"shi:19906",
|
||||
"shen:20054",
|
||||
"shi:20059",
|
||||
"shou:20473",
|
||||
"shu:20583",
|
||||
"shua:20768",
|
||||
"shuai:20770",
|
||||
"shuan:20771",
|
||||
"shuang:20772",
|
||||
"shui:20795",
|
||||
"shun:20879",
|
||||
"shuo:20923",
|
||||
"si:20970",
|
||||
"ci:21111",
|
||||
"shi:21115",
|
||||
"si:21125",
|
||||
"qi:21136",
|
||||
"si:21137",
|
||||
"song:21143",
|
||||
"sou:21184",
|
||||
"su:21194",
|
||||
"suan:21236",
|
||||
"sui:21240",
|
||||
"sun:21333",
|
||||
"suo:21348",
|
||||
"su:21349",
|
||||
"suo:21356",
|
||||
"ta:21374",
|
||||
"dai:21384",
|
||||
"tai:21385",
|
||||
"tan:21413",
|
||||
"shang:21510",
|
||||
"tang:21514",
|
||||
"chang:21536",
|
||||
"tang:21537",
|
||||
"tao:21538",
|
||||
"te:21610",
|
||||
"teng:21612",
|
||||
"ti:21619",
|
||||
"di:21633",
|
||||
"ti:21640",
|
||||
"tian:21677",
|
||||
"mian:21888",
|
||||
"tiao:21890",
|
||||
"tie:21922",
|
||||
"ting:21961",
|
||||
"ding:21984",
|
||||
"tong:21986",
|
||||
"tou:22195",
|
||||
"tu:22292",
|
||||
"tuan:22371",
|
||||
"tui:22380",
|
||||
"tun:22428",
|
||||
"tuo:22452",
|
||||
"wa:22495",
|
||||
"wai:22511",
|
||||
"wan:22533",
|
||||
"wang:22662",
|
||||
"wei:22814",
|
||||
"yi:22964",
|
||||
"wei:22968",
|
||||
"wen:23028",
|
||||
"weng:23176",
|
||||
"wo:23185",
|
||||
"wu:23226",
|
||||
"xi:23747",
|
||||
"xia:23921",
|
||||
"xian:23992",
|
||||
"qian:24039",
|
||||
"xian:24044",
|
||||
"xiang:24147",
|
||||
"xiao:24277",
|
||||
"xie:24422",
|
||||
"ye:24428",
|
||||
"xie:24439",
|
||||
"xin:24477",
|
||||
"xing:24720",
|
||||
"xiong:24882",
|
||||
"xiu:24946",
|
||||
"xu:25002",
|
||||
"shi:25033",
|
||||
"xu:25035",
|
||||
"chu:25042",
|
||||
"xu:25043",
|
||||
"xuan:25052",
|
||||
"huan:25143",
|
||||
"xue:25146",
|
||||
"xie:25195",
|
||||
"xue:25217",
|
||||
"xun:25220",
|
||||
"ya:25285",
|
||||
"ye:25326",
|
||||
"yan:25328",
|
||||
"ya:25598",
|
||||
"yan:25601",
|
||||
"yang:25677",
|
||||
"yao:25798",
|
||||
"ye:25901",
|
||||
"yi:25946",
|
||||
"qi:26707",
|
||||
"yi:26708",
|
||||
"yin:27307",
|
||||
"ying:27501",
|
||||
"yong:27649",
|
||||
"you:27720",
|
||||
"yu:27981",
|
||||
"yuan:28367",
|
||||
"yao:28489",
|
||||
"yue:28491",
|
||||
"yun:28548",
|
||||
"za:28688",
|
||||
"zai:28696",
|
||||
"zan:28736",
|
||||
"cuan:28738",
|
||||
"zan:28744",
|
||||
"zang:28749",
|
||||
"cang:28759",
|
||||
"zang:28762",
|
||||
"zao:28764",
|
||||
"ze:28829",
|
||||
"zei:28848",
|
||||
"zen:28862",
|
||||
"ceng:28863",
|
||||
"zeng:28869",
|
||||
"zha:28873",
|
||||
"zhai:28882",
|
||||
"zhan:28895",
|
||||
"nian:28906",
|
||||
"zhan:28908",
|
||||
"nian:28933",
|
||||
"zhan:28934",
|
||||
"zhang:28950",
|
||||
"zhao:29008",
|
||||
"zhe:29047",
|
||||
"zhen:29084",
|
||||
"zheng:29190",
|
||||
"zhi:29300",
|
||||
"zi:29321",
|
||||
"zhi:29322",
|
||||
"zhong:29668",
|
||||
"zhou:29877",
|
||||
"yu:29890",
|
||||
"zhou:29892",
|
||||
"zhu:29918",
|
||||
"shu:30058",
|
||||
"zhu:30063",
|
||||
"chu:30069",
|
||||
"zhu:30078",
|
||||
"zhe:30097",
|
||||
"zhu:30101",
|
||||
"zhua:30113",
|
||||
"ye:30120",
|
||||
"zhuan:30127",
|
||||
"zhuang:30158",
|
||||
"zhui:30190",
|
||||
"chui:30222",
|
||||
"zhui:30241",
|
||||
"zhun:30248",
|
||||
"zhuo:30254",
|
||||
"zhe:30306",
|
||||
"zhuo:30310",
|
||||
"zi:30316",
|
||||
"ci:30325",
|
||||
"zi:30326",
|
||||
"zong:30475",
|
||||
"zou:30494",
|
||||
"zu:30515",
|
||||
"zuan:30545",
|
||||
"zui:30567",
|
||||
"zun:30601",
|
||||
"zuo:30622"
|
||||
]
|
|
@ -0,0 +1,59 @@
|
|||
|
||||
const {exec, Packages} = require('./tool');
|
||||
const {plugins, allPackage, mainPackage, types, utils} = Packages;
|
||||
|
||||
// plugins 'main' 'npm' 'types' 可选
|
||||
// npm run publish: 默认build 全部
|
||||
// npm run publish main poly npm: build三个
|
||||
|
||||
async function main () {
|
||||
const publish = 'npm publish ';
|
||||
const publishPackage = `${publish}npm/packages/`;
|
||||
const publishAll = `${publishPackage}cnchar-all`;
|
||||
const publishTypes = `${publish}src/cnchar-types`;
|
||||
const publishMain = `${publishPackage}cnchar`;
|
||||
let cmds = [];
|
||||
let cmdConsole = [];
|
||||
const packages = process.argv.slice(2);
|
||||
|
||||
packages.forEach(package => {
|
||||
if (plugins.includes(package) || utils.includes(package)) {
|
||||
cmds.push(`${publishPackage}${package}`);
|
||||
cmdConsole.push(package);
|
||||
} else if (package === mainPackage) {
|
||||
cmds.push(publishMain);
|
||||
cmdConsole.push(mainPackage);
|
||||
} else if (package === allPackage) {
|
||||
cmds.push(publishAll);
|
||||
cmdConsole.push(allPackage);
|
||||
} else if (package === types) {
|
||||
cmds.push(publishTypes);
|
||||
cmdConsole.push(types);
|
||||
}
|
||||
});
|
||||
|
||||
if (cmds.length === 0) {
|
||||
cmds = [
|
||||
publishTypes,
|
||||
publishMain,
|
||||
...plugins.map(plugin => `${publishPackage}${plugin}`),
|
||||
publishAll,
|
||||
...utils.map(util => `${publishPackage}${util}`)
|
||||
];
|
||||
cmdConsole = [
|
||||
types,
|
||||
mainPackage,
|
||||
...plugins,
|
||||
allPackage,
|
||||
...utils
|
||||
];
|
||||
}
|
||||
console.log(`Start Publish... [0/${cmds.length}]`);
|
||||
for (let i = 0; i < cmds.length; i++) {
|
||||
await exec(cmds[i]);
|
||||
console.log(`${cmdConsole[i]} publish success. [${i + 1}/${cmds.length}]`);
|
||||
}
|
||||
console.log('Finished!');
|
||||
}
|
||||
|
||||
main();
|
|
@ -7,15 +7,15 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id='drawArea'></div>
|
||||
<!-- <script src="../npm/all/cnchar.all.min.js"></script> -->
|
||||
<script src="../npm/cnchar/cnchar.min.js"></script>
|
||||
<script src="../npm/order/cnchar.order.min.js"></script>
|
||||
<script src="../npm/trad/cnchar.trad.min.js"></script>
|
||||
<script src="../npm/poly/cnchar.poly.min.js"></script>
|
||||
<script src="../npm/draw/cnchar.draw.min.js"></script>
|
||||
<script src="../npm/idiom/cnchar.idiom.min.js"></script>
|
||||
<script src="../npm/xhy/cnchar.xhy.min.js"></script>
|
||||
<script src="../npm/radical/cnchar.radical.min.js"></script>
|
||||
<!-- <script src="../npm/packages/cnchar-all/cnchar.all.min.js"></script> -->
|
||||
<script src="../npm/packages/cnchar/cnchar.min.js"></script>
|
||||
<script src="../npm/packages/order/cnchar.order.min.js"></script>
|
||||
<script src="../npm/packages/trad/cnchar.trad.min.js"></script>
|
||||
<script src="../npm/packages/poly/cnchar.poly.min.js"></script>
|
||||
<script src="../npm/packages/draw/cnchar.draw.min.js"></script>
|
||||
<script src="../npm/packages/idiom/cnchar.idiom.min.js"></script>
|
||||
<script src="../npm/packages/xhy/cnchar.xhy.min.js"></script>
|
||||
<script src="../npm/packages/radical/cnchar.radical.min.js"></script>
|
||||
<script>
|
||||
console.log(cnchar);
|
||||
console.log(cnchar.stroke('一个', 'order'));
|
||||
|
|
|
@ -1,9 +1,71 @@
|
|||
let fs = require('fs');
|
||||
module.exports = {
|
||||
write: function (file, txt, cb) {
|
||||
fs.writeFile(file, txt, 'utf8', (err) => {
|
||||
if (err) throw err;
|
||||
if (cb)cb();
|
||||
const fs = require('fs');
|
||||
const childProcess = require('child_process');
|
||||
|
||||
const plugins = [
|
||||
'poly',
|
||||
'order',
|
||||
'trad',
|
||||
'draw',
|
||||
'idiom',
|
||||
'xhy',
|
||||
'radical',
|
||||
];
|
||||
|
||||
const allPackage = 'all';
|
||||
const mainPackage = 'main';
|
||||
const npmPackage = 'npm';
|
||||
const types = 'types';
|
||||
const utils = ['hanzi-util', 'hanzi-util-base'];
|
||||
|
||||
function read (file, cb) {
|
||||
fs.readFile(file, 'utf8', (err, code) => {
|
||||
if (err) throw err;
|
||||
cb(code);
|
||||
});
|
||||
}
|
||||
|
||||
function write (file, txt, cb) {
|
||||
fs.writeFile(file, txt, 'utf8', (err) => {
|
||||
if (err) throw err;
|
||||
if (cb)cb();
|
||||
});
|
||||
}
|
||||
|
||||
function pick ({data = {}, target, attrs}) {
|
||||
if (!attrs) {
|
||||
attrs = Object.keys(target);
|
||||
}
|
||||
attrs.forEach(name => {
|
||||
if (typeof target[name] !== 'undefined')
|
||||
data[name] = target[name];
|
||||
});
|
||||
return data;
|
||||
}
|
||||
async function exec (cmd) {
|
||||
return new Promise(resolve => {
|
||||
childProcess.exec(cmd, function (error, stdout, stderr) {
|
||||
if (error) {
|
||||
throw new Error('publish error');
|
||||
}
|
||||
resolve({
|
||||
success: true,
|
||||
stdout,
|
||||
stderr
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
module.exports = {
|
||||
read,
|
||||
write,
|
||||
pick,
|
||||
exec,
|
||||
Packages: {
|
||||
plugins,
|
||||
mainPackage,
|
||||
npmPackage,
|
||||
allPackage,
|
||||
types,
|
||||
utils,
|
||||
}
|
||||
};
|
|
@ -125,6 +125,7 @@
|
|||
6. 歇后语没有查询到默认返回空数组
|
||||
7. 修复小程序下json文件为数组加载不到的问题
|
||||
|
||||
## 2.2.9
|
||||
1. 增加 免 和 倘 的默认读音
|
||||
2. 增加 重来 词组
|
||||
## 3.0.0
|
||||
1. typescript 重写,主库及所有插件库使用ts重写
|
||||
2. 增加 免 和 倘 的默认读音
|
||||
3. 增加 重来 词组
|
|
@ -1,3 +0,0 @@
|
|||
"单折喝着蕃量沓烊载曝宁和省拗臭度哄丧差扎埋盛伧创伯疟看行艾把传荷涨奇炮给冠干巷薄拓恶便宿号藏轧卡调模没舍殷还系假降脯间石劲茄刨弹颤扒散数参会簸吓胖耙伺好咳处囤缝澄扇得屏几卷乐了吭粘畜称弄俩露重率空泊朝膀校强塞辟倒都匙"
|
||||
|
||||
"暴辟裨背艾拗乐累量绿处据壳扛横哄遗济贾觉禁冠给分便参称落难胖屏迫仆强浅卡悄曲塞属数说宿伺沓汤提帖"
|
|
@ -1,36 +0,0 @@
|
|||
# [cnchar-all](https://github.com/theajack/cnchar)
|
||||
#### [theajack](https://www.theajack.com/)
|
||||
### 功能全面、多端支持的汉字拼音笔画js库
|
||||
[api详细文档地址](https://www.theajack.com/cnchar/)
|
||||
|
||||
----
|
||||
|
||||
[TOC]
|
||||
|
||||
----
|
||||
|
||||
注:词库为cnchar的完整功能版本
|
||||
|
||||
```
|
||||
npm i cnchar-all
|
||||
```
|
||||
|
||||
### 1.功能
|
||||
|
||||
1. 获取 **汉字拼音** ,支持首字母、大小写、数组分割、备选 **多音字** 等功能
|
||||
2. 支持 **多音词**
|
||||
3. 支持 **拼音音调**
|
||||
4. 获取汉字 **笔画数** 、支持数组分割
|
||||
5. 获取汉字 **笔画顺序** 、笔画详细名称、通过笔画顺序推出原汉字等
|
||||
6. 支持 **简体字** 、 **繁体字** 、 **火星文** 互转
|
||||
7. 支持 **查找** 某拼音的所有 **汉字** ,繁体字,多音字
|
||||
8. 支持 **查找** 指定笔画数的所有 **汉字** ,繁体字
|
||||
9. 支持 **查询拼音的信息**,包含声母、韵母、音调、音调位置的等
|
||||
10. 支持 **繁体字** 拼音、笔画数及以上所有功能,实现和简体字一样的功能
|
||||
11. **体积小**,min 版本仅 46 kb,zip 版本 34 kb (含有大量汉字拼音字典)
|
||||
12. **多端可用**,可用于 原生浏览器环境、webpack 环境、nodejs 环境...,几乎支持所有 js 能运行的环境
|
||||
13. 丰富的配置,按需取用
|
||||
|
||||
### 2.详细文档
|
||||
|
||||
[cnchar](https://github.com/theajack/cnchar/blob/master/README.md#cnchar)
|
|
@ -1,13 +0,0 @@
|
|||
declare type spellArgs = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArgs = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
|
||||
interface String {
|
||||
spell(...args: Array<spellArgs>): string | Array<any>;
|
||||
stroke(...args: Array<strokeArgs>): number | Array<any>;
|
||||
convertSimpleToTrad(): string;
|
||||
convertSimpleToSpark(): string;
|
||||
convertTradToSimple(): string;
|
||||
convertTradToSpark(): string;
|
||||
convertSparkToSimple(): string;
|
||||
convertSparkToTrad(): string;
|
||||
}
|
|
@ -1,189 +0,0 @@
|
|||
// all库的声明文件
|
||||
import './extend';
|
||||
|
||||
// draw
|
||||
declare type DrawType = 'normal' | 'animation' | 'stroke' | 'test';
|
||||
declare type TestStatusType = 'mistake' | 'correct' | 'complete';
|
||||
declare class Writer {
|
||||
constructor();
|
||||
option: object;
|
||||
el: HTMLElement;
|
||||
type: DrawType;
|
||||
text: Array<string>;
|
||||
writer: Array<object>;
|
||||
animateStart():void;
|
||||
}
|
||||
|
||||
declare interface TestStatus {
|
||||
index: number,
|
||||
status: TestStatusType,
|
||||
data: {
|
||||
character: string;
|
||||
totalMistakes: number;// 到目前为止在测验期间犯的总错误。
|
||||
strokeNum?: number;// 当前笔画数。
|
||||
mistakesOnStroke?: number;// 到目前为止用户绘制此笔划所犯的错误数。
|
||||
strokesRemaining?: number;// 测验完成前剩余的笔画数。
|
||||
drawnPath?: {
|
||||
pathString: string;
|
||||
points: Array<{x:number;y:number}>
|
||||
};// 对象包含用户绘制的 pathString ,用于评分的分数。
|
||||
}
|
||||
}
|
||||
|
||||
declare interface DrawOption {
|
||||
el?: string | HTMLElement; // 绘制的容器,支持选择器或dom,若是不填,会在body后append一个dom作为容器
|
||||
type?: DrawType; // 绘制模式,默认为normal
|
||||
clear?: boolean; // 绘制前是否清空容器 默认为true
|
||||
style?: { // 样式类
|
||||
backgroundColor?: string, // 默认为#fff
|
||||
showOutline?: boolean;//: true,
|
||||
showCharacter?: boolean;//: true,
|
||||
currentColor?: string;//: '#b44', // 仅在stroke模式下有效
|
||||
length?: number;//: 60,
|
||||
padding?: number;//: 5, // 数值, 默认 20。 画布的汉字和边缘之间的填充
|
||||
outlineColor?: string;//: '#ddd', // 十六进制字符, 默认 '#DDD'。
|
||||
strokeColor?: string;//: '#555', // 十六进制字符, 默认 '#555'。绘制每个笔划的颜色。
|
||||
radicalColor?: string;//: null, // 十六进制字符, 默认 null。 如果存在偏旁部首数据,则在笔划中绘制偏旁部首的颜色。 如果没有设置,激光将绘制与其他笔划相同的颜色。
|
||||
strokeFadeDuration?: number; //400
|
||||
},
|
||||
line?: { // 背景线条类
|
||||
lineStraight?: boolean;// : true,
|
||||
lineCross?: boolean;// : true,
|
||||
lineWidth?: number;// : 1,
|
||||
lineColor?: string;// : '#ddd',
|
||||
lineDash?: boolean;// : true,
|
||||
border?: boolean;// : true,
|
||||
borderWidth?: number;// : 1,
|
||||
borderColor?: string;// : '#ccc',
|
||||
borderDash?: boolean;// : false,
|
||||
},
|
||||
animation?: {
|
||||
strokeAnimationSpeed?: number;// : 1, // 数值, 默认 1。 绘制每个笔划的速度必须大于0。增加此数字可以更快地绘制笔划,减少绘制笔划的速度更慢。
|
||||
delayBetweenStrokes?: number;// : 1000, // 数值, 默认 1000。 动画进行中每个笔画之间的间隔时间(以毫秒为单位)。
|
||||
delayBetweenLoops?: number;// : 200, // 数值, 默认 2000。 循环动画时每个动画循环之间的时间(以毫秒为单位)。
|
||||
autoAnimate?: boolean;// : true,
|
||||
animateComplete?: Function;// : () => {},
|
||||
stepByStep?: boolean;// : true,
|
||||
loopAnimate?: boolean;// : false,
|
||||
},
|
||||
test?: {
|
||||
strokeHighlightSpeed?: number;// : 20, // 数值, 默认 20。 在测验中给出提示时突出显示每个笔划的速度必须大于0。增加此数字以突出显示更快,减少以突出显示更慢。
|
||||
highlightColor?: number;// : '#aaf', // 十六进制字符, 默认 '#AAF'。 用于在测验中突出显示的颜色。
|
||||
drawingColor?: number;// : '#333', // 十六进制字符, 默认 '#333'。 测验期间绘制的线条颜色。
|
||||
drawingWidth?: number;// : 4, // 数值, 默认 4。 进行测验时绘制的线条宽度。
|
||||
showHintAfterMisses?: number;// : 3, // 整数, 默认 3 中风高亮提示之前的未命中数被给予用户。 设置为 false 以禁用。 创建测验时也可以设置此项。
|
||||
highlightOnComplete?: number;// : true, // 布尔值, 默认 true。 控制当用户完成绘制整个字符时,测验是否会短暂突出显示字符。 创建测验时也可以设置此项。
|
||||
highlightCompleteColor?: number;// : null, // 十六进制字符, 默认 null。 在测验中突出显示字符时使用的颜色。 如果未设置,则将使用highlightColor。 仅当highlightOnComplete为true时才相关。
|
||||
onTestStatus?(args: TestStatus):void;// : null, // ({index, status, data})=>{}
|
||||
}
|
||||
}
|
||||
|
||||
export declare interface Draw {
|
||||
(text:string, option?:DrawOption):Writer;
|
||||
TYPE: {
|
||||
ANIMATION: 'animation',
|
||||
NORMAL: 'normal',
|
||||
STROKE: 'stroke',
|
||||
TEST: 'test'
|
||||
},
|
||||
TEST_STATUS: {
|
||||
MISTAKE: 'mistake',
|
||||
CORRECT: 'correct',
|
||||
COMPLETE: 'complete'
|
||||
}
|
||||
}
|
||||
|
||||
// idiom
|
||||
|
||||
declare type idiomArg = 'char' | 'stroke' | 'spell' | 'tone';
|
||||
|
||||
export declare interface Idiom {
|
||||
(text:string | Array<string|number>, ...idiomArgs: Array<idiomArg>):Array<string>;
|
||||
}
|
||||
|
||||
// order
|
||||
|
||||
declare type orderToWordArg = 'match' | 'matchorder' | 'contain' | 'start' | 'array' | 'simple' | 'trad';
|
||||
|
||||
declare type orderName = '横折折撇' | '竖弯' | '横折' | '撇点' | '横斜钩' | '横' | '捺' | '横折钩' | '竖' | '竖钩' | '点' | '撇' | '撇折' | '竖折撇' | '横折折折钩' | '竖折折钩' | '提' | '弯钩' | '斜钩' | '横折折' | '横撇' | '横折提' | '横折折折' | '竖提' | '竖弯钩'
|
||||
| '竖折折' | '横撇弯钩' | '卧钩' | '横折弯' | '横钩';
|
||||
|
||||
// xhy
|
||||
|
||||
declare type xhyArg = 'fuzzy' | 'answer' | 'second';
|
||||
|
||||
export declare interface XHY {
|
||||
(text:string, ...xhyArgs: Array<xhyArg>):Array<string>;
|
||||
}
|
||||
|
||||
|
||||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
declare type spellToWordArg = 'poly' | 'alltone' | 'array' | 'simple' | 'trad';
|
||||
declare type strokeToWordArg = 'array' | 'simple' | 'trad';
|
||||
declare type pluginArg = 'order' | 'trad' | 'poly' | 'draw' | 'idiom' | 'xhy';
|
||||
declare type toneType = 0 | 1 | 2 | 3 | 4;
|
||||
declare type compareType = 'more' | 'less' | 'even';
|
||||
|
||||
declare interface spellInfoReturnStatic {
|
||||
spell: string;
|
||||
initial: string;
|
||||
final: string;
|
||||
tone: number;
|
||||
index: number;
|
||||
}
|
||||
export declare interface CnCharStatic {
|
||||
spell(sentence: string, ...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(sentence: string, ...args: Array<strokeArg>): number | Array<any>;
|
||||
use(...plugins: Array<Function>): void;
|
||||
spellToWord(spell: string, ...args: Array<spellToWordArg>): string | Array<string>;
|
||||
strokeToWord(stroke: number, ...args: Array<strokeToWordArg>): string | Array<string>;
|
||||
spellInfo: {
|
||||
(spell: string): spellInfoReturnStatic;
|
||||
tones: Array<string>;
|
||||
initials: Array<string>;
|
||||
};
|
||||
plugins: Array<pluginArg>;
|
||||
type: {
|
||||
spell: object;
|
||||
stroke: object;
|
||||
spellToWord: object;
|
||||
strokeToWord: object;
|
||||
orderToWord?: object;
|
||||
idiom?: object;
|
||||
xhy?: object;
|
||||
};
|
||||
check: boolean;
|
||||
readonly version: string;
|
||||
|
||||
transformTone(spell: string, tone?: boolean, type?: 'low' | 'up'): {
|
||||
spell: string;
|
||||
tone: toneType;
|
||||
index: number;
|
||||
isTrans: boolean;
|
||||
};
|
||||
isCnChar(word: string): boolean;
|
||||
compareSpell(spell1: string, spell2: string, tone?: boolean): compareType;
|
||||
compareStroke(stroke1: string | number, stroke2: string | number): compareType;
|
||||
sortSpell(spells:Array<string> | string, ...args: Array<'tone'|'desc'>): Array<string> | string;
|
||||
sortStroke(strokes:Array<string|number> | string, desc?: 'desc'): Array<string> | string;
|
||||
draw: Draw;
|
||||
idiom: Idiom;
|
||||
orderToWord: {
|
||||
(orders: string | Array<orderName>, ...args: Array<orderToWordArg>): string | Array<string>;
|
||||
orders: object;
|
||||
};
|
||||
convert: {
|
||||
simpleToSpark(sentence: string): string;
|
||||
simpleToTrad(sentence: string): string;
|
||||
sparkToSimple(sentence: string): string;
|
||||
sparkToTrad(sentence: string): string;
|
||||
tradToSimple(sentence: string): string;
|
||||
tradToSpark(sentence: string): string;
|
||||
};
|
||||
xhy: XHY;
|
||||
}
|
||||
|
||||
declare const cnchar: CnCharStatic;
|
||||
|
||||
export default cnchar;
|
|
@ -1,20 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var cnchar = require('./cnchar.all.min.js');
|
||||
|
||||
// var order = require('../order');
|
||||
|
||||
// var trad = require('../trad');
|
||||
|
||||
// var poly = require('../poly');
|
||||
|
||||
// var draw = require('../draw');
|
||||
|
||||
// var idiom = require('../idiom');
|
||||
|
||||
// var xhy = require('../xhy');
|
||||
|
||||
// var radical = require('../radical');
|
||||
|
||||
// cnchar.use(order, trad, poly, draw, idiom, xhy, radical);
|
||||
module.exports = cnchar;
|
|
@ -1,48 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var _cnchar = null;
|
||||
var toneCodes = [];
|
||||
initToneCodes();
|
||||
|
||||
function initToneCodes(__cnchar) {
|
||||
_cnchar = __cnchar;
|
||||
'aoeiuvn'.split('').forEach(function (item) {
|
||||
var code = item.charCodeAt(0);
|
||||
|
||||
for (var i = 1; i <= 4; i++) {
|
||||
toneCodes.push(code + i * 0.1);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getToneCodes(_char) {
|
||||
var index = _cnchar._.tones.indexOf(_char);
|
||||
|
||||
if (index === -1) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return toneCodes[index];
|
||||
}
|
||||
|
||||
function getCharCode(_char2) {
|
||||
var tone = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
||||
|
||||
if (!tone) {
|
||||
return _char2.charCodeAt(0);
|
||||
}
|
||||
|
||||
var code = getToneCodes(_char2);
|
||||
|
||||
if (code === -1) {
|
||||
return _char2.charCodeAt(0);
|
||||
}
|
||||
|
||||
return code;
|
||||
} // 比较拼音大小的方法考虑移到cnchar工具方法中
|
||||
|
||||
|
||||
module.exports = {
|
||||
initToneCodes: initToneCodes,
|
||||
getCharCode: getCharCode
|
||||
};
|
|
@ -1,167 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
var defDict = require('./spell-default.json');
|
||||
|
||||
var spellDict = require('./spell-dict-jian.json');
|
||||
|
||||
var strokeDict = require('./stroke-count-jian.json');
|
||||
|
||||
var infoDict = require('./info-dict.json');
|
||||
|
||||
var _require = require('./util'),
|
||||
mapJson = _require.mapJson;
|
||||
|
||||
var _require2 = require('./tool'),
|
||||
transformTone = _require2.transformTone,
|
||||
spell = _require2.spell,
|
||||
arg = _require2.arg,
|
||||
shapeSpell = _require2.shapeSpell,
|
||||
stroke = _require2.stroke; // 设置多音字默认拼音
|
||||
|
||||
|
||||
function setSpellDefault(word, spell) {
|
||||
setIntoJson({
|
||||
target: defDict,
|
||||
key: word,
|
||||
value: spell,
|
||||
isSpell: true
|
||||
});
|
||||
}
|
||||
|
||||
function setIntoJson(_ref) {
|
||||
var target = _ref.target,
|
||||
key = _ref.key,
|
||||
value = _ref.value,
|
||||
_ref$isSpell = _ref.isSpell,
|
||||
isSpell = _ref$isSpell === void 0 ? false : _ref$isSpell;
|
||||
mapJson(key, value, function (k, v) {
|
||||
if (k && v) {
|
||||
target[k] = isSpell ? shapeSpell(v) : v;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function setIntoSpellBase(dict, currentSpell, word, spells) {
|
||||
var isPoly = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
|
||||
|
||||
if (_typeof(word) === 'object') {
|
||||
for (var k in word) {
|
||||
setIntoSpellBase(dict, currentSpell[k], k, word[k]);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (spells instanceof Array) {
|
||||
spells.forEach(function (spell) {
|
||||
setIntoSpellBase(dict, currentSpell, word, spell, true);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
var info = transformTone(spells);
|
||||
var str = dict[info.spell];
|
||||
|
||||
if (currentSpell.length >= 1) {
|
||||
for (var i = 0; i < currentSpell.length; i++) {
|
||||
if (currentSpell[i].spell === info.spell && currentSpell[i].tone === info.tone) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isPoly) isPoly = true;
|
||||
}
|
||||
|
||||
var appendStr = "".concat(word).concat(info.tone + (isPoly ? 5 : 0));
|
||||
|
||||
if (!str) {
|
||||
dict[info.spell] = "".concat(info.index, ":") + appendStr;
|
||||
} else {
|
||||
dict[info.spell] = str + appendStr;
|
||||
} // 修改之前的拼音
|
||||
|
||||
|
||||
if (currentSpell.length === 1) {
|
||||
var cinfo = currentSpell[0];
|
||||
dict[cinfo.spell] = dict[cinfo.spell].replace("".concat(word).concat(cinfo.tone), "".concat(word).concat(cinfo.tone + 5));
|
||||
}
|
||||
|
||||
if (isPoly) {
|
||||
addPolyWord(word);
|
||||
}
|
||||
}
|
||||
|
||||
function setIntoSpell(dict, word, spells) {
|
||||
var currentSpell;
|
||||
|
||||
if (_typeof(word) === 'object') {
|
||||
currentSpell = {};
|
||||
|
||||
for (var k in word) {
|
||||
currentSpell[k] = _getCurrentSpellInfo(dict, k);
|
||||
}
|
||||
} else {
|
||||
currentSpell = _getCurrentSpellInfo(dict, word);
|
||||
}
|
||||
|
||||
setIntoSpellBase(dict, currentSpell, word, spells);
|
||||
}
|
||||
|
||||
function _getCurrentSpellInfo(dict, word) {
|
||||
var s = spell(dict, [word, arg.tone, arg.poly]);
|
||||
|
||||
if (s === word) {
|
||||
return [];
|
||||
}
|
||||
|
||||
if (s.indexOf('|') !== -1) {
|
||||
s = s.substring(1, s.length - 1).split('|');
|
||||
} else {
|
||||
s = [s];
|
||||
}
|
||||
|
||||
return s.map(function (sp) {
|
||||
return transformTone(sp);
|
||||
});
|
||||
}
|
||||
|
||||
function setSpell(word, spells) {
|
||||
setIntoSpell(spellDict, word, spells);
|
||||
}
|
||||
|
||||
function setStrokeCount(word, count) {
|
||||
mapJson(word, count, function (k, v) {
|
||||
var oldCount = stroke(strokeDict, [k]);
|
||||
|
||||
if (oldCount === count) {
|
||||
return;
|
||||
} // 去除旧笔画数
|
||||
|
||||
|
||||
if (oldCount !== 0) {
|
||||
strokeDict[oldCount] = strokeDict[oldCount].replace(k, '');
|
||||
}
|
||||
|
||||
if (strokeDict[v]) {
|
||||
strokeDict[v] += k;
|
||||
} else {
|
||||
strokeDict[v] = k;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function addPolyWord(word) {
|
||||
if (infoDict.polyWord.indexOf(word) === -1) {
|
||||
infoDict.polyWord += word;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
setSpellDefault: setSpellDefault,
|
||||
setIntoJson: setIntoJson,
|
||||
setSpell: setSpell,
|
||||
setIntoSpell: setIntoSpell,
|
||||
setStrokeCount: setStrokeCount
|
||||
};
|
|
@ -1,10 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var spell = require('./spell-dict-jian.json');
|
||||
|
||||
var stroke = require('./stroke-count-jian.json');
|
||||
|
||||
module.exports = {
|
||||
spell: spell,
|
||||
stroke: stroke
|
||||
};
|
|
@ -1,8 +0,0 @@
|
|||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
|
||||
interface String {
|
||||
spell(...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(...args: Array<strokeArg>): number | Array<any>;
|
||||
}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
import './extend';
|
||||
|
||||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
declare type spellToWordArg = 'poly' | 'alltone' | 'array' | 'simple' | 'trad';
|
||||
declare type strokeToWordArg = 'array' | 'simple' | 'trad';
|
||||
declare type pluginArg = 'order' | 'trad' | 'poly' | 'draw' | 'idiom' | 'xhy' | 'radical';
|
||||
declare type toneType = 0 | 1 | 2 | 3 | 4;
|
||||
declare type compareType = 'more' | 'less' | 'even';
|
||||
|
||||
declare interface spellInfoReturnStatic {
|
||||
spell: string;
|
||||
initial: string;
|
||||
final: string;
|
||||
tone: number;
|
||||
index: number;
|
||||
}
|
||||
export declare interface CnCharStatic {
|
||||
spell(sentence: string, ...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(sentence: string, ...args: Array<strokeArg>): number | Array<any>;
|
||||
use(...plugins: Array<Function>): void;
|
||||
spellToWord(spell: string, ...args: Array<spellToWordArg>): string | Array<string>;
|
||||
strokeToWord(stroke: number, ...args: Array<strokeToWordArg>): string | Array<string>;
|
||||
spellInfo: {
|
||||
(spell: string): spellInfoReturnStatic;
|
||||
tones: Array<string>;
|
||||
initials: Array<string>;
|
||||
};
|
||||
plugins: Array<pluginArg>;
|
||||
type: {
|
||||
spell: object;
|
||||
stroke: object;
|
||||
spellToWord: object;
|
||||
strokeToWord: object;
|
||||
orderToWord?: object;
|
||||
idiom?: object;
|
||||
xhy?: object;
|
||||
radical?: object;
|
||||
};
|
||||
check: boolean;
|
||||
readonly version: string;
|
||||
|
||||
transformTone(spell: string, tone?: boolean, type?: 'low' | 'up'): {
|
||||
spell: string;
|
||||
tone: toneType;
|
||||
index: number;
|
||||
isTrans: boolean;
|
||||
};
|
||||
isCnChar(word: string): boolean;
|
||||
isPolyWord(word: string): boolean;
|
||||
compareSpell(spell1: string, spell2: string, tone?: boolean): compareType;
|
||||
compareStroke(stroke1: string | number, stroke2: string | number): compareType;
|
||||
sortSpell(spells:Array<string> | string, ...args: Array<'tone'|'desc'>): Array<string> | string;
|
||||
sortStroke(strokes:Array<string|number> | string, desc?: 'desc'): Array<string> | string;
|
||||
setSpellDefault(word: string, spell: string): void;
|
||||
setSpellDefault(json: {[key: string]: string}): void;
|
||||
setSpell(word: string, spell: string): void;
|
||||
setSpell(json: {[key: string]: string}): void;
|
||||
setStrokeCount(word: string, count: number): void;
|
||||
setStrokeCount(json: {[key: string]: number}): void;
|
||||
shapeSpell(spell: string): string;
|
||||
}
|
||||
|
||||
declare const cnchar: CnCharStatic;
|
||||
|
||||
export default cnchar;
|
|
@ -1,156 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var version = require('./version');
|
||||
|
||||
var _require = require('./tool'),
|
||||
spell = _require.spell,
|
||||
tones = _require.tones,
|
||||
stroke = _require.stroke,
|
||||
arg = _require.arg,
|
||||
dealUpLowFirst = _require.dealUpLowFirst,
|
||||
removeTone = _require.removeTone,
|
||||
sumStroke = _require.sumStroke,
|
||||
checkArgs = _require.checkArgs,
|
||||
initCnchar = _require.initCnchar,
|
||||
transformTone = _require.transformTone,
|
||||
shapeSpell = _require.shapeSpell;
|
||||
|
||||
var _require2 = require('./util'),
|
||||
has = _require2.has,
|
||||
_throw = _require2._throw,
|
||||
_warn = _require2._warn,
|
||||
isCnChar = _require2.isCnChar,
|
||||
isPolyWord = _require2.isPolyWord,
|
||||
mapJson = _require2.mapJson;
|
||||
|
||||
var dict = require('./dict');
|
||||
|
||||
var _require3 = require('./config'),
|
||||
setSpellDefault = _require3.setSpellDefault,
|
||||
setIntoJson = _require3.setIntoJson,
|
||||
setSpell = _require3.setSpell,
|
||||
setStrokeCount = _require3.setStrokeCount;
|
||||
|
||||
var _require4 = require('./spellToWord'),
|
||||
initSpellToWord = _require4.initSpellToWord;
|
||||
|
||||
var initStrokeToWord = require('./strokeToWord');
|
||||
|
||||
var _require5 = require('./sort'),
|
||||
compareSpell = _require5.compareSpell,
|
||||
sortSpell = _require5.sortSpell,
|
||||
compareStroke = _require5.compareStroke,
|
||||
sortStroke = _require5.sortStroke,
|
||||
initSort = _require5.initSort;
|
||||
|
||||
function _spell() {
|
||||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
|
||||
return spell(dict.spell, args);
|
||||
}
|
||||
|
||||
function _stroke() {
|
||||
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
||||
args[_key2] = arguments[_key2];
|
||||
}
|
||||
|
||||
return stroke(dict.stroke, args);
|
||||
}
|
||||
|
||||
function initStrProto() {
|
||||
String.prototype.spell = function () {
|
||||
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
||||
args[_key3] = arguments[_key3];
|
||||
}
|
||||
|
||||
return _spell.apply(void 0, [this].concat(args));
|
||||
};
|
||||
|
||||
String.prototype.stroke = function () {
|
||||
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
||||
args[_key4] = arguments[_key4];
|
||||
}
|
||||
|
||||
return _stroke.apply(void 0, [this].concat(args));
|
||||
};
|
||||
}
|
||||
|
||||
function use() {
|
||||
for (var _len5 = arguments.length, plugins = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
||||
plugins[_key5] = arguments[_key5];
|
||||
}
|
||||
|
||||
plugins.forEach(function (f) {
|
||||
if (typeof f === 'function') {
|
||||
if (typeof f.init === 'function') {
|
||||
f.init(cnchar);
|
||||
} else {
|
||||
f(cnchar);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var cnchar = {
|
||||
version: version,
|
||||
spell: _spell,
|
||||
stroke: _stroke,
|
||||
check: true,
|
||||
_origin: {
|
||||
spell: _spell,
|
||||
stroke: _stroke
|
||||
},
|
||||
plugins: [],
|
||||
use: use,
|
||||
_: {
|
||||
arg: arg,
|
||||
has: has,
|
||||
_throw: _throw,
|
||||
tones: tones,
|
||||
setIntoJson: setIntoJson,
|
||||
_warn: _warn,
|
||||
dealUpLowFirst: dealUpLowFirst,
|
||||
removeTone: removeTone,
|
||||
sumStroke: sumStroke,
|
||||
isCnChar: isCnChar,
|
||||
checkArgs: checkArgs,
|
||||
transformTone: transformTone,
|
||||
dict: {},
|
||||
mapJson: mapJson
|
||||
},
|
||||
type: {
|
||||
spell: arg,
|
||||
stroke: {
|
||||
array: arg.array
|
||||
}
|
||||
},
|
||||
// 工具方法
|
||||
transformTone: transformTone,
|
||||
isCnChar: isCnChar,
|
||||
compareSpell: compareSpell,
|
||||
compareStroke: compareStroke,
|
||||
sortSpell: sortSpell,
|
||||
sortStroke: sortStroke,
|
||||
setSpellDefault: setSpellDefault,
|
||||
setSpell: setSpell,
|
||||
setStrokeCount: setStrokeCount,
|
||||
isPolyWord: isPolyWord,
|
||||
shapeSpell: shapeSpell
|
||||
};
|
||||
|
||||
function init() {
|
||||
initStrProto();
|
||||
initCnchar(cnchar);
|
||||
initSpellToWord(cnchar);
|
||||
initStrokeToWord(cnchar);
|
||||
initSort(cnchar);
|
||||
|
||||
if (typeof window !== 'undefined') {
|
||||
window.cnchar = window.CnChar = cnchar;
|
||||
}
|
||||
}
|
||||
|
||||
init();
|
||||
module.exports = cnchar;
|
|
@ -1 +0,0 @@
|
|||
["b", "p", "m", "f", "d", "t", "n", "l", "g", "k", "h", "j", "q", "x", "zh", "ch", "sh", "r", "z", "c", "s", "y", "w"]
|
|
@ -1,174 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var _require = require('./compareSpell'),
|
||||
initToneCodes = _require.initToneCodes,
|
||||
getCharCode = _require.getCharCode;
|
||||
|
||||
var _cnchar = null;
|
||||
var arg = {
|
||||
'tone': 'tone',
|
||||
'desc': 'desc',
|
||||
'array': 'array'
|
||||
};
|
||||
|
||||
function initSort(__cnchar) {
|
||||
_cnchar = __cnchar;
|
||||
initToneCodes(__cnchar);
|
||||
}
|
||||
|
||||
var TYPE = {
|
||||
MORE: 'more',
|
||||
// 大于
|
||||
LESS: 'less',
|
||||
// 小于
|
||||
EVEN: 'even',
|
||||
// 等于
|
||||
ERROR: 'error'
|
||||
};
|
||||
|
||||
function pretreat(spell, tone) {
|
||||
var arr = ['low'];
|
||||
|
||||
if (tone) {
|
||||
arr.push('tone');
|
||||
}
|
||||
|
||||
if (_cnchar.isCnChar(spell)) {
|
||||
var _cnchar2;
|
||||
|
||||
return (_cnchar2 = _cnchar).spell.apply(_cnchar2, [spell].concat(arr));
|
||||
}
|
||||
|
||||
return _cnchar._.transformTone(spell, tone).spell;
|
||||
}
|
||||
|
||||
function compareSpell(spell1, spell2) {
|
||||
var tone = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
||||
spell1 = pretreat(spell1, tone);
|
||||
spell2 = pretreat(spell2, tone);
|
||||
|
||||
for (var i = 0; i < spell1.length; i++) {
|
||||
if (!spell2[i]) {
|
||||
// spell1与spell2值前面拼音一样,但是spell1长度大于spell2 说明 spell1 > spell2
|
||||
return TYPE.MORE;
|
||||
}
|
||||
|
||||
var code = getCharCode(spell1[i], tone);
|
||||
var code2 = getCharCode(spell2[i], tone);
|
||||
|
||||
if (code > code2) {
|
||||
// spell1 > spell2
|
||||
return TYPE.MORE;
|
||||
} else if (code < code2) {
|
||||
// spell1 < spell2
|
||||
return TYPE.LESS;
|
||||
}
|
||||
}
|
||||
|
||||
if (spell1.length === spell2.length) {
|
||||
return TYPE.EVEN;
|
||||
}
|
||||
|
||||
return TYPE.LESS; // spell1与spell2值前面拼音一样,但是spell1长度小于spell2 说明 中 < spell2
|
||||
}
|
||||
|
||||
function sortSpell(spells) {
|
||||
var isString = false;
|
||||
|
||||
if (typeof spells === 'string') {
|
||||
spells = spells.split('');
|
||||
isString = true;
|
||||
}
|
||||
|
||||
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
args[_key - 1] = arguments[_key];
|
||||
}
|
||||
|
||||
var tone = args.indexOf(arg.tone) !== -1;
|
||||
var desc = args.indexOf(arg.desc) !== -1;
|
||||
var more = desc ? -1 : 1;
|
||||
var less = more * -1;
|
||||
var result = spells.sort(function (a, b) {
|
||||
var res = compareSpell(a, b, tone);
|
||||
|
||||
if (res === TYPE.MORE) {
|
||||
return more;
|
||||
}
|
||||
|
||||
if (res === TYPE.LESS) {
|
||||
return less;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
|
||||
if (isString) {
|
||||
return result.join('');
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function compareStroke(stroke1, stroke2) {
|
||||
if (typeof stroke1 === 'string') {
|
||||
stroke1 = _cnchar.stroke(stroke1);
|
||||
}
|
||||
|
||||
if (typeof stroke2 === 'string') {
|
||||
stroke2 = _cnchar.stroke(stroke2);
|
||||
}
|
||||
|
||||
if (stroke1 > stroke2) {
|
||||
return TYPE.MORE;
|
||||
}
|
||||
|
||||
if (stroke1 < stroke2) {
|
||||
return TYPE.LESS;
|
||||
}
|
||||
|
||||
return TYPE.EVEN;
|
||||
}
|
||||
|
||||
function sortStroke(strokes) {
|
||||
var isString = false;
|
||||
|
||||
if (typeof strokes === 'string') {
|
||||
strokes = strokes.split('');
|
||||
isString = true;
|
||||
}
|
||||
|
||||
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||||
args[_key2 - 1] = arguments[_key2];
|
||||
}
|
||||
|
||||
var desc = args.indexOf(arg.desc) !== -1;
|
||||
var more = desc ? -1 : 1;
|
||||
var less = more * -1;
|
||||
var result = strokes.sort(function (a, b) {
|
||||
var res = compareStroke(a, b);
|
||||
|
||||
if (res === TYPE.MORE) {
|
||||
return more;
|
||||
}
|
||||
|
||||
if (res === TYPE.LESS) {
|
||||
return less;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
|
||||
if (isString) {
|
||||
return result.join('');
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
sortSpell: sortSpell,
|
||||
sortStroke: sortStroke,
|
||||
initSort: initSort,
|
||||
compareSpell: compareSpell,
|
||||
compareStroke: compareStroke
|
||||
};
|
|
@ -1,43 +0,0 @@
|
|||
{
|
||||
"的": "de",
|
||||
"咳": "ké",
|
||||
"长": "cháng",
|
||||
"广": "guǎng",
|
||||
"厂": "chǎng",
|
||||
"卜": "bo",
|
||||
"无": "wú",
|
||||
"蔚": "wèi",
|
||||
"压": "yā",
|
||||
"扎": "zhā",
|
||||
"教": "jiāo",
|
||||
"觉": "jiào",
|
||||
"虎": "hǔ",
|
||||
"熏": "xūn",
|
||||
"陶": "táo",
|
||||
"子": "zǐ",
|
||||
"脯": "fǔ",
|
||||
"抹": "mā",
|
||||
"食": "shí",
|
||||
"鸟": "niǎo",
|
||||
"任": "rèn",
|
||||
"假": "jiǎ",
|
||||
"得": "de",
|
||||
"膀": "bǎng",
|
||||
"塞": "sāi",
|
||||
"红": "hóng",
|
||||
"区": "qū",
|
||||
"帖": "tiē",
|
||||
"提": "tí",
|
||||
"汤": "tāng",
|
||||
"沓": "tà",
|
||||
"悄": "qiāo",
|
||||
"落": "luò",
|
||||
"分": "fēn",
|
||||
"处": "chù",
|
||||
"绿": "lǜ",
|
||||
"累": "lèi",
|
||||
"辟": "bì",
|
||||
"苦": "kǔ",
|
||||
"被": "bèi",
|
||||
"厕": "cè"
|
||||
}
|
|
@ -1,130 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var dict = require('./spell-dict-jian.json');
|
||||
|
||||
var initialDict = require('./info-dict.json').initial;
|
||||
|
||||
var arg = {
|
||||
simple: 'simple',
|
||||
trad: 'trad',
|
||||
poly: 'poly',
|
||||
alltone: 'alltone',
|
||||
array: 'array'
|
||||
};
|
||||
var _ = {}; // 工具方法
|
||||
|
||||
function initSpellToWord(cnchar) {
|
||||
_ = cnchar._;
|
||||
cnchar.spellToWord = spellToWord;
|
||||
spellInfo.tones = _.tones.split('');
|
||||
spellInfo.initials = initialDict;
|
||||
cnchar.spellInfo = spellInfo;
|
||||
cnchar.type.spellToWord = arg;
|
||||
} // 获取拼音信息 spell,tone,index,initial,final
|
||||
|
||||
|
||||
function spellInfo(spell) {
|
||||
spell = spell.toLowerCase();
|
||||
|
||||
var info = _.removeTone(spell, false);
|
||||
|
||||
if (info.index === -1) {
|
||||
if (!dict[info.spell]) {
|
||||
throw new Error('【spellInfo】错误的拼音: ' + spell);
|
||||
}
|
||||
|
||||
info.index = parseInt(dict[info.spell][0]) + 1;
|
||||
}
|
||||
|
||||
var initial = '';
|
||||
var _final = info.spell;
|
||||
|
||||
for (var i = 0; i < initialDict.length; i++) {
|
||||
if (info.spell.indexOf(initialDict[i]) === 0) {
|
||||
initial = initialDict[i];
|
||||
_final = info.spell.substr(initial.length);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
info.initial = initial;
|
||||
info["final"] = _final;
|
||||
return info;
|
||||
}
|
||||
|
||||
function spellToWord() {
|
||||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
|
||||
var spell = args[0].toLowerCase();
|
||||
|
||||
if (typeof spell !== 'string') {
|
||||
throw new Error('spellToWord: 输入必须是字符串');
|
||||
}
|
||||
|
||||
var info = _.transformTone(spell, false);
|
||||
|
||||
args = args.splice(1);
|
||||
|
||||
_.checkArgs('spellToWord', args);
|
||||
|
||||
var argRes = {
|
||||
simple: _.has(args, arg.simple),
|
||||
trad: _.has(args, arg.trad),
|
||||
poly: _.has(args, arg.poly),
|
||||
alltone: _.has(args, arg.alltone)
|
||||
};
|
||||
|
||||
if (!argRes.simple && !argRes.trad) {
|
||||
argRes.simple = argRes.trad = true;
|
||||
}
|
||||
|
||||
var res = '';
|
||||
var str = dict[info.spell].substr(2);
|
||||
|
||||
for (var i = 0; i < str.length; i += 2) {
|
||||
var word = str[i];
|
||||
var tone = parseInt(str[i + 1]);
|
||||
var isPoly = tone > 4;
|
||||
|
||||
if (isPoly) {
|
||||
tone = tone - 5;
|
||||
}
|
||||
|
||||
if (res.indexOf(word) === -1 && (argRes.alltone || tone === info.tone)) {
|
||||
if (!argRes.poly || isPoly) {
|
||||
res += word;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (argRes.trad && _.convert) {
|
||||
var tradRes = '';
|
||||
|
||||
for (var _i = 0; _i < res.length; _i++) {
|
||||
var trad = _.convert.simpleToTrad(res[_i]);
|
||||
|
||||
if (trad !== res[_i]) {
|
||||
tradRes += trad;
|
||||
}
|
||||
}
|
||||
|
||||
if (!argRes.simple) {
|
||||
res = tradRes;
|
||||
} else {
|
||||
res += tradRes;
|
||||
}
|
||||
}
|
||||
|
||||
if (_.has(args, arg.array)) {
|
||||
return res.split('');
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
initSpellToWord: initSpellToWord,
|
||||
spellInfo: spellInfo
|
||||
};
|
|
@ -1,63 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var dict = require('./stroke-count-jian.json');
|
||||
|
||||
var arg = {
|
||||
simple: 'simple',
|
||||
trad: 'trad',
|
||||
array: 'array'
|
||||
};
|
||||
var _ = {}; // 工具方法
|
||||
|
||||
function initStrokeToWord(cnchar) {
|
||||
cnchar.strokeToWord = strokeToWord;
|
||||
cnchar.type.strokeToWord = arg;
|
||||
_ = cnchar._;
|
||||
}
|
||||
|
||||
function strokeToWord() {
|
||||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
|
||||
var count = args[0];
|
||||
|
||||
if (typeof count !== 'number' || parseInt(count) !== count || count <= 0) {
|
||||
throw new Error('strokeToWord: 输入必须是正整数');
|
||||
}
|
||||
|
||||
args = args.splice(1);
|
||||
|
||||
_.checkArgs('strokeToWord', args);
|
||||
|
||||
var res = '';
|
||||
var argRes = {
|
||||
simple: _.has(args, arg.simple),
|
||||
trad: _.has(args, arg.trad)
|
||||
};
|
||||
|
||||
if (!argRes.simple && !argRes.trad) {
|
||||
argRes.simple = argRes.trad = true;
|
||||
}
|
||||
|
||||
if (argRes.simple) {
|
||||
res += base(count, dict); // 简体
|
||||
}
|
||||
|
||||
if (argRes.trad && _.dict.getTradCount) {
|
||||
res += base(count, _.dict.getTradCount()); // 繁体
|
||||
}
|
||||
|
||||
if (_.has(args, arg.array)) {
|
||||
return res.split('');
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
function base(count, dict) {
|
||||
if (typeof dict[count] === 'undefined') return '';
|
||||
return dict[count];
|
||||
}
|
||||
|
||||
module.exports = initStrokeToWord;
|
|
@ -1,464 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
var _require = require('./spellToWord'),
|
||||
spellInfo = _require.spellInfo;
|
||||
|
||||
var _require2 = require('./util'),
|
||||
_warn = _require2._warn,
|
||||
isCnChar = _require2.isCnChar,
|
||||
has = _require2.has;
|
||||
|
||||
var defDict = require('./spell-default.json');
|
||||
|
||||
var tones = 'āáǎàōóǒòēéěèīíǐìūúǔùǖǘǚǜ*ńňǹ'; // * 表示n的一声
|
||||
|
||||
var noTones = 'aoeiuün';
|
||||
var arg = {
|
||||
array: 'array',
|
||||
low: 'low',
|
||||
up: 'up',
|
||||
first: 'first',
|
||||
poly: 'poly',
|
||||
tone: 'tone'
|
||||
};
|
||||
var _cnchar = null;
|
||||
|
||||
function initCnchar(cnchar) {
|
||||
_cnchar = cnchar;
|
||||
}
|
||||
|
||||
function spell(dict, args) {
|
||||
var strs = args[0].split('');
|
||||
args = args.splice(1);
|
||||
checkArgs('spell', args);
|
||||
var poly = has(args, arg.poly);
|
||||
var tone = has(args, arg.tone);
|
||||
var res = [];
|
||||
|
||||
for (var sp in dict) {
|
||||
// 遍历拼音
|
||||
var ds = dict[sp];
|
||||
var pos = ds[0];
|
||||
|
||||
for (var i = 0; i < strs.length; i++) {
|
||||
// 遍历字符数组
|
||||
var ch = strs[i];
|
||||
|
||||
if (isCnChar(ch)) {
|
||||
// 如果是汉字
|
||||
var index = ds.indexOf(ch);
|
||||
|
||||
if (index !== -1) {
|
||||
var ssp = getSpell(sp, ds, index, poly, tone, pos); // single spell
|
||||
|
||||
if (ssp.poly) {
|
||||
// 多音字模式 且 当前汉字是多音字
|
||||
if (!res[i]) {
|
||||
res[i] = [];
|
||||
}
|
||||
|
||||
res[i].push(ssp.res);
|
||||
var dsNew = ds;
|
||||
var n = dsNew.match(new RegExp(ch, 'g')).length;
|
||||
|
||||
for (var k = 1; k < n; k++) {
|
||||
dsNew = dsNew.substr(index + 2);
|
||||
index = dsNew.indexOf(ch);
|
||||
res[i].push(getSpell(sp, dsNew, index, poly, tone, pos).res);
|
||||
}
|
||||
} else {
|
||||
if (ssp.isPolyWord) {
|
||||
// 是多音字 不是多音字模式
|
||||
if (defDict[ch]) {
|
||||
// 设置了多音字的默认拼音
|
||||
ssp.res = removeTone(defDict[ch], tone).spell; // 默认有音调
|
||||
}
|
||||
}
|
||||
|
||||
res[i] = ssp.res;
|
||||
strs[i] = '';
|
||||
}
|
||||
}
|
||||
} else if (ch !== '') {
|
||||
// 如果不是汉字
|
||||
res[i] = ':' + ch;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dealUpLowFirst(res, args);
|
||||
|
||||
for (var _i = 0; _i < strs.length; _i++) {
|
||||
var item = res[_i];
|
||||
|
||||
if (typeof item === 'undefined') {
|
||||
res[_i] = strs[_i]; // 查不到的汉字返回原字
|
||||
} else if (typeof item !== 'string') {
|
||||
res[_i] = "(".concat(res[_i].join('|'), ")");
|
||||
} else if (item[0] === ':') {
|
||||
res[_i] = item.substr(1); // 非汉字返回原字符
|
||||
}
|
||||
}
|
||||
|
||||
if (!has(args, arg.array)) {
|
||||
res = res.join('');
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
function dealUpLowFirst(res, args) {
|
||||
if (_cnchar._.poly) {
|
||||
dealResCase(res, low); // 当启用了 多音词时 需要强制默认小写
|
||||
// 因为会被覆盖
|
||||
}
|
||||
|
||||
if (has(args, arg.first)) {
|
||||
dealResCase(res, first);
|
||||
}
|
||||
|
||||
if (has(args, arg.up)) {
|
||||
dealResCase(res, up);
|
||||
} else if (!has(args, arg.low)) {
|
||||
dealResCase(res, upFirst);
|
||||
}
|
||||
}
|
||||
|
||||
function dealResCase(res, func) {
|
||||
res.forEach(function (item, i) {
|
||||
if (typeof item !== 'string') {
|
||||
item.forEach(function (s, j) {
|
||||
item[j] = func(s);
|
||||
});
|
||||
} else {
|
||||
if (item[0] !== ':') res[i] = func(item);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function first(s) {
|
||||
return s[0];
|
||||
}
|
||||
|
||||
function up(s) {
|
||||
return s.toUpperCase();
|
||||
}
|
||||
|
||||
function upFirst(s) {
|
||||
return up(s[0]) + s.substr(1);
|
||||
}
|
||||
|
||||
function low(s) {
|
||||
return s.toLowerCase();
|
||||
}
|
||||
|
||||
function getSpell(spell, str, index, isPoly, isTone, pos) {
|
||||
var res = {
|
||||
res: spell,
|
||||
poly: false
|
||||
};
|
||||
var tone = parseInt(str[index + 1]);
|
||||
res.isPolyWord = tone >= 5;
|
||||
|
||||
if (!isPoly && !isTone) {
|
||||
return res;
|
||||
}
|
||||
|
||||
if (res.isPolyWord) {
|
||||
// 是多音字
|
||||
tone -= 5; // 正确的音调
|
||||
|
||||
if (isPoly) {
|
||||
// 既是多音字模式 又是 多音字
|
||||
res.poly = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (isTone) {
|
||||
res.res = setTone(spell, pos, tone);
|
||||
}
|
||||
|
||||
return res;
|
||||
} // tone=false : 根据有音调的拼音获得无音调的拼音和音调
|
||||
// tone=true : 返回原拼音
|
||||
|
||||
|
||||
function removeTone(spell, tone) {
|
||||
if (tone) {
|
||||
return {
|
||||
spell: spell
|
||||
};
|
||||
}
|
||||
|
||||
for (var i = 0; i < spell.length; i++) {
|
||||
var index = tones.indexOf(spell[i]);
|
||||
|
||||
if (index !== -1) {
|
||||
// 命中
|
||||
return {
|
||||
spell: spell.substr(0, i) + noTones[Math.floor(index / 4)] + spell.substr(i + 1),
|
||||
tone: index % 4 + 1,
|
||||
index: i + 1
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
spell: spell,
|
||||
tone: 0,
|
||||
index: -1
|
||||
};
|
||||
}
|
||||
|
||||
function setTone(spell, index, tone) {
|
||||
if (tone === 0) {
|
||||
// 轻声
|
||||
return spell;
|
||||
}
|
||||
|
||||
var p = spell[index];
|
||||
var toneP = tones[noTones.indexOf(p) * 4 + (tone - 1)];
|
||||
|
||||
if (p !== toneP) {
|
||||
return spell.replace(p, toneP);
|
||||
}
|
||||
} // 笔画数
|
||||
|
||||
|
||||
function stroke(dict, args) {
|
||||
var strs = args[0].split('');
|
||||
args = args.splice(1);
|
||||
checkArgs('stroke', args);
|
||||
|
||||
for (var i in dict) {
|
||||
for (var j = 0; j < strs.length; j++) {
|
||||
if (typeof strs[j] === 'string') {
|
||||
if (dict[i].indexOf(strs[j]) !== -1) {
|
||||
strs[j] = parseInt(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
strs.forEach(function (c, i) {
|
||||
if (typeof c === 'string') {
|
||||
strs[i] = 0;
|
||||
}
|
||||
});
|
||||
|
||||
if (!has(args, arg.array)) {
|
||||
return sumStroke(strs);
|
||||
}
|
||||
|
||||
return strs;
|
||||
}
|
||||
|
||||
function sumStroke(strs) {
|
||||
var sum = 0;
|
||||
strs.forEach(function (c) {
|
||||
sum += c;
|
||||
});
|
||||
return sum;
|
||||
} // spell 所有参数 ["array", "low", "up", "first", "poly", "tone", "simple"]
|
||||
// simple 禁用繁体字
|
||||
// stroke 所有参数 ["letter", "shape", "count", "name", "detail", "array", "order", "simple"]
|
||||
//
|
||||
|
||||
|
||||
var _hasCheck = false;
|
||||
|
||||
function checkArgs(type, args, jumpNext) {
|
||||
if (!_cnchar.check) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (_hasCheck) {
|
||||
_hasCheck = false;
|
||||
return;
|
||||
}
|
||||
|
||||
if (jumpNext) {
|
||||
_hasCheck = true;
|
||||
}
|
||||
|
||||
var useless = [];
|
||||
var t = _cnchar.type;
|
||||
|
||||
for (var i = args.length - 1; i >= 0; i--) {
|
||||
var _arg = args[i];
|
||||
|
||||
if (!t[type][_arg]) {
|
||||
useless.push(_arg);
|
||||
args.splice(i, 1);
|
||||
}
|
||||
}
|
||||
|
||||
var ignore = [];
|
||||
var redunt = [];
|
||||
|
||||
var check = function check(name, arr) {
|
||||
if (_typeof(name) === 'object') {
|
||||
name.forEach(function (item) {
|
||||
check(item, arr);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
arr = arr || ignore;
|
||||
|
||||
if (has(args, name)) {
|
||||
arr.push(name);
|
||||
}
|
||||
};
|
||||
|
||||
if (_cnchar.plugins.indexOf('trad') === -1) {
|
||||
if (has(args, 'simple')) ignore.push('simple');
|
||||
if (has(args, 'trad')) ignore.push('trad');
|
||||
}
|
||||
|
||||
if (type === 'spell') {
|
||||
if (has(args, 'up') && has(args, 'low')) {
|
||||
ignore.push('low');
|
||||
} // t.spell.origin 表示启用了多音词
|
||||
// !has(args,'origin') 表示没有禁用多音词
|
||||
// 此时的 poly 就会被忽略
|
||||
// if(t.spell.origin && !has(args,'origin') && has(args,'poly')){
|
||||
// ignore.push('poly');
|
||||
// }
|
||||
|
||||
} else if (type === 'stroke') {
|
||||
// stroke
|
||||
if (has(args, 'order')) {
|
||||
// 笔画顺序模式
|
||||
check('array', redunt); // detail > shape > name > count > letter 默认值是 letter
|
||||
|
||||
if (has(args, 'letter')) {
|
||||
check(['detail', 'shape', 'name', 'count']);
|
||||
check('letter', redunt);
|
||||
} else if (has(args, 'detail')) {
|
||||
check(['shape', 'name', 'count']);
|
||||
} else if (has(args, 'shape')) {
|
||||
check(['name', 'count']);
|
||||
} else if (has(args, 'name')) {
|
||||
check(['count']);
|
||||
}
|
||||
} else {
|
||||
// 笔画数模式
|
||||
check(['detail', 'shape', 'name', 'letter']);
|
||||
check('count', redunt);
|
||||
}
|
||||
} else if (type === 'orderToWord') {
|
||||
if (has(args, 'match')) {
|
||||
check(['match-order', 'contain', 'start']);
|
||||
} else if (has(args, 'match-order')) {
|
||||
check(['contain', 'start']);
|
||||
} else if (has(args, 'contain')) {
|
||||
check(['start']);
|
||||
}
|
||||
} else if (type === 'strokeToWord') {} else if (type === 'spellToWord') {} else if (type === 'idiom') {
|
||||
if (has(args, 'spell')) {
|
||||
check(['stroke', 'char']);
|
||||
} else if (has(args, 'stroke')) {
|
||||
check(['tone', 'char']);
|
||||
} else {
|
||||
check(['tone']);
|
||||
}
|
||||
} else if (type === 'xhy') {} else if (type === 'radical') {}
|
||||
|
||||
warnArgs(useless, '无效', type, args);
|
||||
warnArgs(ignore, '被忽略', type, args);
|
||||
warnArgs(redunt, '冗余', type, args);
|
||||
}
|
||||
|
||||
function warnArgs(arr, txt, type, args) {
|
||||
if (arr.length > 0) {
|
||||
var mes = "\u4EE5\u4E0B\u53C2\u6570".concat(txt, ":").concat(JSON.stringify(arr), ";");
|
||||
|
||||
if (txt === '被忽略' && type === 'stroke' && !has(args, 'order')) {
|
||||
mes += ' 要启用笔顺模式必须使用 order 参数';
|
||||
} else {
|
||||
mes += " \u53EF\u9009\u503C\uFF1A[".concat(Object.keys(_cnchar.type[type]), "]");
|
||||
}
|
||||
|
||||
_warn(mes);
|
||||
}
|
||||
} // lv2 => lǘ
|
||||
|
||||
|
||||
function shapeSpell(spell) {
|
||||
var tones = '01234';
|
||||
|
||||
if (tones.indexOf(spell[spell.length - 1]) === -1) {
|
||||
return spell;
|
||||
}
|
||||
|
||||
return transformTone(spell, true, 'low').spell;
|
||||
} // lv2 => {spell:'lü', tone: 2, index: 2, isTrans: true}
|
||||
// lǘ => {spell:'lü', tone: 2, index: 2, isTrans: false}
|
||||
// needTone = true: lv2 => {spell:'lǘ', tone: 2, index: 2, isTrans: true}
|
||||
|
||||
|
||||
function transformTone(spell, needTone) {
|
||||
var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'low';
|
||||
|
||||
if (spell.indexOf('v') !== -1) {
|
||||
spell = spell.replace('v', 'ü');
|
||||
}
|
||||
|
||||
var tone = spell[spell.length - 1];
|
||||
var index = -1;
|
||||
var isTrans = false;
|
||||
|
||||
if (parseInt(tone).toString() === tone) {
|
||||
// lv2
|
||||
spell = spell.substr(0, spell.length - 1);
|
||||
var info = spellInfo(spell);
|
||||
index = info.index;
|
||||
tone = parseInt(tone);
|
||||
isTrans = true;
|
||||
|
||||
if (needTone) {
|
||||
spell = setTone(spell, index - 1, tone);
|
||||
}
|
||||
} else {
|
||||
// lǘ
|
||||
var _info = spellInfo(spell);
|
||||
|
||||
index = _info.index;
|
||||
tone = _info.tone; // 声调已经带好了的情况
|
||||
|
||||
if (!needTone && tone !== 0) {
|
||||
// 需要去除音调并且有音调
|
||||
spell = _info.spell;
|
||||
}
|
||||
}
|
||||
|
||||
if (type === 'low') {
|
||||
spell = spell.toLowerCase();
|
||||
} else if (type === 'up') {
|
||||
spell = spell.toUpperCase();
|
||||
}
|
||||
|
||||
return {
|
||||
spell: spell,
|
||||
tone: tone,
|
||||
index: index,
|
||||
isTrans: isTrans
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
shapeSpell: shapeSpell,
|
||||
arg: arg,
|
||||
spell: spell,
|
||||
stroke: stroke,
|
||||
dealUpLowFirst: dealUpLowFirst,
|
||||
removeTone: removeTone,
|
||||
sumStroke: sumStroke,
|
||||
checkArgs: checkArgs,
|
||||
initCnchar: initCnchar,
|
||||
tones: tones,
|
||||
transformTone: transformTone
|
||||
};
|
|
@ -1,59 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
var infoDict = require('./info-dict.json');
|
||||
|
||||
function mapJson(key, value, cb) {
|
||||
if (_typeof(key) === 'object') {
|
||||
for (var k in key) {
|
||||
cb(k, key[k]);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
cb(key, value);
|
||||
}
|
||||
|
||||
function isCnChar(word) {
|
||||
var unicode = word.charCodeAt(0);
|
||||
return unicode >= 19968 && unicode <= 40869;
|
||||
}
|
||||
|
||||
function has(args, name) {
|
||||
return args.indexOf(name) !== -1;
|
||||
}
|
||||
|
||||
function isPolyWord(word) {
|
||||
if (!word) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (word.length > 1) {
|
||||
word = word[0];
|
||||
}
|
||||
|
||||
if (!isCnChar(word)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return infoDict.polyWord.indexOf(word) !== -1;
|
||||
}
|
||||
|
||||
function _throw(err) {
|
||||
throw new Error('CnChar Error:' + err);
|
||||
}
|
||||
|
||||
function _warn(err) {
|
||||
console.warn('CnChar Warning:' + err);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
mapJson: mapJson,
|
||||
isCnChar: isCnChar,
|
||||
has: has,
|
||||
isPolyWord: isPolyWord,
|
||||
_throw: _throw,
|
||||
_warn: _warn
|
||||
};
|
|
@ -1,3 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = '2.2.8';
|
|
@ -1,123 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var TYPE = {
|
||||
NORMAL: 'normal',
|
||||
ANIMATION: 'animation',
|
||||
STROKE: 'stroke',
|
||||
TEST: 'test'
|
||||
};
|
||||
var TEST_STATUS = {
|
||||
MISTAKE: 'mistake',
|
||||
CORRECT: 'correct',
|
||||
COMPLETE: 'complete'
|
||||
};
|
||||
var Option = {
|
||||
showOutline: true,
|
||||
showCharacter: true,
|
||||
currentColor: '#b44',
|
||||
clear: true,
|
||||
length: 60,
|
||||
padding: 5,
|
||||
// 数值, 默认 20。 画布的汉字和边缘之间的填充
|
||||
outlineColor: '#ddd',
|
||||
// 十六进制字符, 默认 '#DDD'。
|
||||
backgroundColor: '#fff',
|
||||
strokeColor: '#555',
|
||||
// 十六进制字符, 默认 '#555'。绘制每个笔划的颜色。
|
||||
radicalColor: null,
|
||||
// 十六进制字符, 默认 null。 如果存在偏旁部首数据,则在笔划中绘制偏旁部首的颜色。 如果没有设置,激光将绘制与其他笔划相同的颜色。
|
||||
strokeFadeDuration: 400,
|
||||
// 数值, 默认 400。 调用 writer.show() 和 writer.hide() 时在显示和隐藏笔划之间转换的时间(以毫秒为单位)
|
||||
// 背景line
|
||||
lineStraight: true,
|
||||
lineCross: true,
|
||||
lineWidth: 1,
|
||||
lineColor: '#ddd',
|
||||
lineDash: true,
|
||||
border: true,
|
||||
borderWidth: 1,
|
||||
borderColor: '#ccc',
|
||||
borderDash: false,
|
||||
// animation
|
||||
strokeAnimationSpeed: 1,
|
||||
// 数值, 默认 1。 绘制每个笔划的速度必须大于0。增加此数字可以更快地绘制笔划,减少绘制笔划的速度更慢。
|
||||
delayBetweenStrokes: 1000,
|
||||
// 数值, 默认 1000。 动画进行中每个笔画之间的间隔时间(以毫秒为单位)。
|
||||
delayBetweenLoops: 200,
|
||||
// 数值, 默认 2000。 循环动画时每个动画循环之间的时间(以毫秒为单位)。
|
||||
autoAnimate: true,
|
||||
animateComplete: function animateComplete() {},
|
||||
stepByStep: true,
|
||||
loopAnimate: false,
|
||||
// charDataLoader: (a) => {console.log(a);}, // 函数。 自定义函数 加载字符数据 。 有关使用的更多信息,请参阅加载字符数据部分。
|
||||
// onLoadCharDataSuccess: null, // 函数。 成功加载字符数据时的回调。 使用已加载的数据调用此函数。 这可以用于实现加载微调器。
|
||||
// onLoadCharDataError: null, // 函数。 字符数据加载失败时的回调。
|
||||
// test
|
||||
strokeHighlightSpeed: 20,
|
||||
// 数值, 默认 20。 在测验中给出提示时突出显示每个笔划的速度必须大于0。增加此数字以突出显示更快,减少以突出显示更慢。
|
||||
highlightColor: '#aaf',
|
||||
// 十六进制字符, 默认 '#AAF'。 用于在测验中突出显示的颜色。
|
||||
drawingColor: '#333',
|
||||
// 十六进制字符, 默认 '#333'。 测验期间绘制的线条颜色。
|
||||
drawingWidth: 4,
|
||||
// 数值, 默认 4。 进行测验时绘制的线条宽度。
|
||||
showHintAfterMisses: 3,
|
||||
// 整数, 默认 3 中风高亮提示之前的未命中数被给予用户。 设置为 false 以禁用。 创建测验时也可以设置此项。
|
||||
highlightOnComplete: true,
|
||||
// 布尔值, 默认 true。 控制当用户完成绘制整个字符时,测验是否会短暂突出显示字符。 创建测验时也可以设置此项。
|
||||
highlightCompleteColor: null,
|
||||
// 十六进制字符, 默认 null。 在测验中突出显示字符时使用的颜色。 如果未设置,则将使用highlightColor。 仅当highlightOnComplete为true时才相关。
|
||||
onTestStatus: null // {index, status, data}
|
||||
|
||||
};
|
||||
|
||||
function isUd(v) {
|
||||
return typeof v === 'undefined';
|
||||
}
|
||||
|
||||
function merge(type, args) {
|
||||
var json = {};
|
||||
|
||||
for (var key in args) {
|
||||
var arg = args[key];
|
||||
|
||||
for (var k in arg) {
|
||||
if (!isUd(arg[k])) {
|
||||
json[k] = arg[k];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
check(json);
|
||||
json.width = json.length;
|
||||
json.height = json.length;
|
||||
checkTypeDefault(type, args, json);
|
||||
return json;
|
||||
}
|
||||
|
||||
function checkTypeDefault(type, args, json) {
|
||||
if (type === TYPE.ANIMATION) {
|
||||
if (!args.animation || isUd(args.animation.showCharacter)) {
|
||||
json.showCharacter = false;
|
||||
}
|
||||
} else if (type === TYPE.STROKE) {
|
||||
json.showCharacter = false;
|
||||
}
|
||||
}
|
||||
|
||||
function check(json, attrs) {
|
||||
attrs = attrs || Object.keys(Option);
|
||||
attrs.forEach(function (attr) {
|
||||
if (isUd(json[attr])) {
|
||||
json[attr] = Option[attr];
|
||||
}
|
||||
});
|
||||
return json;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
TYPE: TYPE,
|
||||
Option: Option,
|
||||
merge: merge,
|
||||
TEST_STATUS: TEST_STATUS
|
||||
};
|
|
@ -1,100 +0,0 @@
|
|||
declare type DrawType = 'normal' | 'animation' | 'stroke' | 'test';
|
||||
declare type TestStatusType = 'mistake' | 'correct' | 'complete';
|
||||
declare class Writer {
|
||||
constructor();
|
||||
option: object;
|
||||
el: HTMLElement;
|
||||
type: DrawType;
|
||||
text: Array<string>;
|
||||
writer: Array<object>;
|
||||
animateStart():void;
|
||||
}
|
||||
|
||||
declare interface TestStatus {
|
||||
index: number,
|
||||
status: TestStatusType,
|
||||
data: {
|
||||
character: string;
|
||||
totalMistakes: number;// 到目前为止在测验期间犯的总错误。
|
||||
strokeNum?: number;// 当前笔画数。
|
||||
mistakesOnStroke?: number;// 到目前为止用户绘制此笔划所犯的错误数。
|
||||
strokesRemaining?: number;// 测验完成前剩余的笔画数。
|
||||
drawnPath?: {
|
||||
pathString: string;
|
||||
points: Array<{x:number;y:number}>
|
||||
};// 对象包含用户绘制的 pathString ,用于评分的分数。
|
||||
}
|
||||
}
|
||||
|
||||
declare interface DrawOption {
|
||||
el?: string | HTMLElement; // 绘制的容器,支持选择器或dom,若是不填,会在body后append一个dom作为容器
|
||||
type?: DrawType; // 绘制模式,默认为normal
|
||||
clear?: boolean; // 绘制前是否清空容器 默认为true
|
||||
style?: { // 样式类
|
||||
backgroundColor?: string, // 默认为#fff
|
||||
showOutline?: boolean;//: true,
|
||||
showCharacter?: boolean;//: true,
|
||||
currentColor?: string;//: '#b44', // 仅在stroke模式下有效
|
||||
length?: number;//: 60,
|
||||
padding?: number;//: 5, // 数值, 默认 20。 画布的汉字和边缘之间的填充
|
||||
outlineColor?: string;//: '#ddd', // 十六进制字符, 默认 '#DDD'。
|
||||
strokeColor?: string;//: '#555', // 十六进制字符, 默认 '#555'。绘制每个笔划的颜色。
|
||||
radicalColor?: string;//: null, // 十六进制字符, 默认 null。 如果存在偏旁部首数据,则在笔划中绘制偏旁部首的颜色。 如果没有设置,激光将绘制与其他笔划相同的颜色。
|
||||
strokeFadeDuration?: number; //400
|
||||
},
|
||||
line?: { // 背景线条类
|
||||
lineStraight?: boolean;// : true,
|
||||
lineCross?: boolean;// : true,
|
||||
lineWidth?: number;// : 1,
|
||||
lineColor?: string;// : '#ddd',
|
||||
lineDash?: boolean;// : true,
|
||||
border?: boolean;// : true,
|
||||
borderWidth?: number;// : 1,
|
||||
borderColor?: string;// : '#ccc',
|
||||
borderDash?: boolean;// : false,
|
||||
},
|
||||
animation?: {
|
||||
strokeAnimationSpeed?: number;// : 1, // 数值, 默认 1。 绘制每个笔划的速度必须大于0。增加此数字可以更快地绘制笔划,减少绘制笔划的速度更慢。
|
||||
delayBetweenStrokes?: number;// : 1000, // 数值, 默认 1000。 动画进行中每个笔画之间的间隔时间(以毫秒为单位)。
|
||||
delayBetweenLoops?: number;// : 200, // 数值, 默认 2000。 循环动画时每个动画循环之间的时间(以毫秒为单位)。
|
||||
autoAnimate?: boolean;// : true,
|
||||
animateComplete?: Function;// : () => {},
|
||||
stepByStep?: boolean;// : true,
|
||||
loopAnimate?: boolean;// : false,
|
||||
},
|
||||
test?: {
|
||||
strokeHighlightSpeed?: number;// : 20, // 数值, 默认 20。 在测验中给出提示时突出显示每个笔划的速度必须大于0。增加此数字以突出显示更快,减少以突出显示更慢。
|
||||
highlightColor?: number;// : '#aaf', // 十六进制字符, 默认 '#AAF'。 用于在测验中突出显示的颜色。
|
||||
drawingColor?: number;// : '#333', // 十六进制字符, 默认 '#333'。 测验期间绘制的线条颜色。
|
||||
drawingWidth?: number;// : 4, // 数值, 默认 4。 进行测验时绘制的线条宽度。
|
||||
showHintAfterMisses?: number;// : 3, // 整数, 默认 3 中风高亮提示之前的未命中数被给予用户。 设置为 false 以禁用。 创建测验时也可以设置此项。
|
||||
highlightOnComplete?: number;// : true, // 布尔值, 默认 true。 控制当用户完成绘制整个字符时,测验是否会短暂突出显示字符。 创建测验时也可以设置此项。
|
||||
highlightCompleteColor?: number;// : null, // 十六进制字符, 默认 null。 在测验中突出显示字符时使用的颜色。 如果未设置,则将使用highlightColor。 仅当highlightOnComplete为true时才相关。
|
||||
onTestStatus?(args: TestStatus):void;// : null, // ({index, status, data})=>{}
|
||||
}
|
||||
}
|
||||
|
||||
export declare interface Draw {
|
||||
(text:string, option?:DrawOption):Writer;
|
||||
TYPE: {
|
||||
ANIMATION: 'animation',
|
||||
NORMAL: 'normal',
|
||||
STROKE: 'stroke',
|
||||
TEST: 'test'
|
||||
},
|
||||
TEST_STATUS: {
|
||||
MISTAKE: 'mistake',
|
||||
CORRECT: 'correct',
|
||||
COMPLETE: 'complete'
|
||||
}
|
||||
}
|
||||
|
||||
declare const draw: Draw;
|
||||
|
||||
declare module 'cnchar' {
|
||||
interface CnCharStatic {
|
||||
draw: Draw;
|
||||
}
|
||||
}
|
||||
|
||||
export default draw;
|
|
@ -1,33 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
// powerd by hanzi-writer v2.2.2
|
||||
require('./promise-polyfill');
|
||||
|
||||
var draw = require('./writer');
|
||||
|
||||
function main(cnchar) {
|
||||
if (cnchar.plugins.indexOf('draw') !== -1) {
|
||||
return;
|
||||
}
|
||||
|
||||
cnchar.plugins.push('draw');
|
||||
cnchar.draw = draw;
|
||||
}
|
||||
|
||||
function init(cnchar) {
|
||||
if ((typeof window === "undefined" ? "undefined" : _typeof(window)) === 'object') {
|
||||
window.CncharDraw = draw;
|
||||
}
|
||||
|
||||
if ((typeof window === "undefined" ? "undefined" : _typeof(window)) === 'object' && window.CnChar) {
|
||||
main(window.CnChar);
|
||||
} else if (typeof cnchar !== 'undefined') {
|
||||
main(cnchar);
|
||||
}
|
||||
}
|
||||
|
||||
draw.init = init;
|
||||
init();
|
||||
module.exports = draw;
|
|
@ -1,49 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
/* eslint-disable no-unused-vars */
|
||||
function buildLinesStr(_ref) {
|
||||
var width = _ref.width,
|
||||
lineStraight = _ref.lineStraight,
|
||||
lineCross = _ref.lineCross,
|
||||
lineWidth = _ref.lineWidth,
|
||||
lineColor = _ref.lineColor,
|
||||
lineDash = _ref.lineDash,
|
||||
border = _ref.border,
|
||||
borderWidth = _ref.borderWidth,
|
||||
borderColor = _ref.borderColor,
|
||||
borderDash = _ref.borderDash;
|
||||
var str = '';
|
||||
var attr = '';
|
||||
|
||||
if (lineDash) {
|
||||
attr += 'stroke-dasharray="8"';
|
||||
}
|
||||
|
||||
if (lineWidth > 1) {
|
||||
attr += "stroke-width=\"".concat(lineWidth, "\"");
|
||||
}
|
||||
|
||||
if (lineStraight) {
|
||||
var half = width / 2;
|
||||
str += "<line x1=\"".concat(half, "\" y1=\"0\" x2=\"").concat(half, "\" y2=\"").concat(width, "\" ").concat(attr, " stroke=\"").concat(lineColor, "\" />\n <line x1=\"0\" y1=\"").concat(half, "\" x2=\"").concat(width, "\" y2=\"").concat(half, "\" ").concat(attr, " stroke=\"").concat(lineColor, "\" />");
|
||||
}
|
||||
|
||||
if (lineCross) {
|
||||
str += "<line x1=\"0\" y1=\"0\" x2=\"".concat(width, "\" y2=\"").concat(width, "\" ").concat(attr, " stroke=\"").concat(lineColor, "\" />\n <line x1=\"").concat(width, "\" y1=\"0\" x2=\"0\" y2=\"").concat(width, "\" ").concat(attr, " stroke=\"").concat(lineColor, "\" />");
|
||||
}
|
||||
|
||||
var _border = '';
|
||||
|
||||
if (border) {
|
||||
_border = "".concat(borderWidth, "px ").concat(borderDash ? 'dashed' : 'solid', " ").concat(borderColor);
|
||||
}
|
||||
|
||||
return {
|
||||
lineHTML: str,
|
||||
border: _border
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
buildLinesStr: buildLinesStr
|
||||
};
|
|
@ -1,176 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
/**
|
||||
* Promise-pollfill 兼容ie低版本
|
||||
*/
|
||||
!function (e, n) {
|
||||
'object' == (typeof exports === "undefined" ? "undefined" : _typeof(exports)) && 'undefined' != typeof module ? n() : 'function' == typeof define && define.amd ? define(n) : n();
|
||||
}(0, function () {
|
||||
'use strict';
|
||||
|
||||
function e(e) {
|
||||
var n = this.constructor;
|
||||
return this.then(function (t) {
|
||||
return n.resolve(e()).then(function () {
|
||||
return t;
|
||||
});
|
||||
}, function (t) {
|
||||
return n.resolve(e()).then(function () {
|
||||
return n.reject(t);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function n(e) {
|
||||
return !(!e || 'undefined' == typeof e.length);
|
||||
}
|
||||
|
||||
function t() {}
|
||||
|
||||
function o(e) {
|
||||
if (!(this instanceof o)) throw new TypeError('Promises must be constructed via new');
|
||||
if ('function' != typeof e) throw new TypeError('not a function');
|
||||
this._state = 0, this._handled = !1, this._value = undefined, this._deferreds = [], c(e, this);
|
||||
}
|
||||
|
||||
function r(e, n) {
|
||||
for (; 3 === e._state;) {
|
||||
e = e._value;
|
||||
}
|
||||
|
||||
0 !== e._state ? (e._handled = !0, o._immediateFn(function () {
|
||||
var t = 1 === e._state ? n.onFulfilled : n.onRejected;
|
||||
|
||||
if (null !== t) {
|
||||
var o;
|
||||
|
||||
try {
|
||||
o = t(e._value);
|
||||
} catch (r) {
|
||||
return void f(n.promise, r);
|
||||
}
|
||||
|
||||
i(n.promise, o);
|
||||
} else (1 === e._state ? i : f)(n.promise, e._value);
|
||||
})) : e._deferreds.push(n);
|
||||
}
|
||||
|
||||
function i(e, n) {
|
||||
try {
|
||||
if (n === e) throw new TypeError('A promise cannot be resolved with itself.');
|
||||
|
||||
if (n && ('object' == _typeof(n) || 'function' == typeof n)) {
|
||||
var t = n.then;
|
||||
if (n instanceof o) return e._state = 3, e._value = n, void u(e);
|
||||
if ('function' == typeof t) return void c(function (e, n) {
|
||||
return function () {
|
||||
e.apply(n, arguments);
|
||||
};
|
||||
}(t, n), e);
|
||||
}
|
||||
|
||||
e._state = 1, e._value = n, u(e);
|
||||
} catch (r) {
|
||||
f(e, r);
|
||||
}
|
||||
}
|
||||
|
||||
function f(e, n) {
|
||||
e._state = 2, e._value = n, u(e);
|
||||
}
|
||||
|
||||
function u(e) {
|
||||
2 === e._state && 0 === e._deferreds.length && o._immediateFn(function () {
|
||||
e._handled || o._unhandledRejectionFn(e._value);
|
||||
});
|
||||
|
||||
for (var n = 0, t = e._deferreds.length; t > n; n++) {
|
||||
r(e, e._deferreds[n]);
|
||||
}
|
||||
|
||||
e._deferreds = null;
|
||||
}
|
||||
|
||||
function c(e, n) {
|
||||
var t = !1;
|
||||
|
||||
try {
|
||||
e(function (e) {
|
||||
t || (t = !0, i(n, e));
|
||||
}, function (e) {
|
||||
t || (t = !0, f(n, e));
|
||||
});
|
||||
} catch (o) {
|
||||
if (t) return;
|
||||
t = !0, f(n, o);
|
||||
}
|
||||
}
|
||||
|
||||
var a = setTimeout;
|
||||
o.prototype['catch'] = function (e) {
|
||||
return this.then(null, e);
|
||||
}, o.prototype.then = function (e, n) {
|
||||
var o = new this.constructor(t);
|
||||
return r(this, new function (e, n, t) {
|
||||
this.onFulfilled = 'function' == typeof e ? e : null, this.onRejected = 'function' == typeof n ? n : null, this.promise = t;
|
||||
}(e, n, o)), o;
|
||||
}, o.prototype['finally'] = e, o.all = function (e) {
|
||||
return new o(function (t, o) {
|
||||
function r(e, n) {
|
||||
try {
|
||||
if (n && ('object' == _typeof(n) || 'function' == typeof n)) {
|
||||
var u = n.then;
|
||||
if ('function' == typeof u) return void u.call(n, function (n) {
|
||||
r(e, n);
|
||||
}, o);
|
||||
}
|
||||
|
||||
i[e] = n, 0 == --f && t(i);
|
||||
} catch (c) {
|
||||
o(c);
|
||||
}
|
||||
}
|
||||
|
||||
if (!n(e)) return o(new TypeError('Promise.all accepts an array'));
|
||||
var i = Array.prototype.slice.call(e);
|
||||
if (0 === i.length) return t([]);
|
||||
|
||||
for (var f = i.length, u = 0; i.length > u; u++) {
|
||||
r(u, i[u]);
|
||||
}
|
||||
});
|
||||
}, o.resolve = function (e) {
|
||||
return e && 'object' == _typeof(e) && e.constructor === o ? e : new o(function (n) {
|
||||
n(e);
|
||||
});
|
||||
}, o.reject = function (e) {
|
||||
return new o(function (n, t) {
|
||||
t(e);
|
||||
});
|
||||
}, o.race = function (e) {
|
||||
return new o(function (t, r) {
|
||||
if (!n(e)) return r(new TypeError('Promise.race accepts an array'));
|
||||
|
||||
for (var i = 0, f = e.length; f > i; i++) {
|
||||
o.resolve(e[i]).then(t, r);
|
||||
}
|
||||
});
|
||||
}, o._immediateFn = 'function' == typeof setImmediate && function (e) {
|
||||
setImmediate(e);
|
||||
} || function (e) {
|
||||
a(e, 0);
|
||||
}, o._unhandledRejectionFn = function (e) {
|
||||
void 0 !== console && console && console.warn('Possible Unhandled Promise Rejection:', e);
|
||||
};
|
||||
|
||||
var l = function () {
|
||||
if ('undefined' != typeof self) return self;
|
||||
if ('undefined' != typeof window) return window;
|
||||
if ('undefined' != typeof global) return global;
|
||||
throw Error('unable to locate global object');
|
||||
}();
|
||||
|
||||
'Promise' in l ? l.Promise.prototype['finally'] || (l.Promise.prototype['finally'] = e) : l.Promise = o;
|
||||
});
|
|
@ -1,70 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
var HanziWriter = require('./hanzi-writer');
|
||||
|
||||
function stroke(writer, cloneSvg) {
|
||||
writer.text.forEach(function (s) {
|
||||
var target = document.createElement('div');
|
||||
writer.el.appendChild(target);
|
||||
HanziWriter.loadCharacterData(s).then(function (charData) {
|
||||
for (var i = 0; i < charData.strokes.length; i++) {
|
||||
renderFanningStrokes({
|
||||
option: writer.option,
|
||||
target: target,
|
||||
strokes: charData.strokes,
|
||||
radStrokes: charData.radStrokes || [],
|
||||
current: i,
|
||||
cloneSvg: cloneSvg,
|
||||
width: writer.option.width
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function renderFanningStrokes(_ref) {
|
||||
var option = _ref.option,
|
||||
target = _ref.target,
|
||||
strokes = _ref.strokes,
|
||||
radStrokes = _ref.radStrokes,
|
||||
cloneSvg = _ref.cloneSvg,
|
||||
current = _ref.current,
|
||||
width = _ref.width;
|
||||
var radicalColor = radStrokes.length > 0 && option.radicalColor ? option.radicalColor : null;
|
||||
var svg = cloneSvg(option);
|
||||
target.appendChild(svg);
|
||||
var group = document.createElementNS('http://www.w3.org/2000/svg', 'g');
|
||||
var transformData = HanziWriter.getScalingTransform(width, width, option.padding);
|
||||
group.setAttributeNS(null, 'transform', transformData.transform);
|
||||
svg.appendChild(group);
|
||||
|
||||
for (var i = 0; i <= current; i++) {
|
||||
var color = option.strokeColor;
|
||||
|
||||
if (i === current && option.currentColor) {
|
||||
color = option.currentColor;
|
||||
} else if (radicalColor && radStrokes.indexOf(i) !== -1) {
|
||||
color = radicalColor;
|
||||
}
|
||||
|
||||
renderPath(strokes[i], group, color);
|
||||
}
|
||||
|
||||
if (option.showOutline && current + 1 <= strokes.length) {
|
||||
for (var _i = current + 1; _i < strokes.length; _i++) {
|
||||
renderPath(strokes[_i], group, option.outlineColor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function renderPath(strokePath, group, color) {
|
||||
var path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
|
||||
path.setAttributeNS(null, 'd', strokePath); // style the character paths
|
||||
|
||||
path.style.fill = color;
|
||||
group.appendChild(path);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
stroke: stroke
|
||||
};
|
|
@ -1,23 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function isCnChar(word) {
|
||||
var unicode = word.charCodeAt(0);
|
||||
return unicode >= 19968 && unicode <= 40869;
|
||||
}
|
||||
|
||||
function pickCnChar(text) {
|
||||
var v = '';
|
||||
|
||||
for (var i = 0; i < text.length; i++) {
|
||||
if (isCnChar(text[i])) {
|
||||
v += text[i];
|
||||
}
|
||||
}
|
||||
|
||||
return v;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isCnChar: isCnChar,
|
||||
pickCnChar: pickCnChar
|
||||
};
|
|
@ -1,310 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
var HanziWriter = require('./hanzi-writer');
|
||||
|
||||
var _require = require('./default-option'),
|
||||
TYPE = _require.TYPE,
|
||||
merge = _require.merge,
|
||||
TEST_STATUS = _require.TEST_STATUS;
|
||||
|
||||
var _require2 = require('./util'),
|
||||
pickCnChar = _require2.pickCnChar;
|
||||
|
||||
var _require3 = require('./line'),
|
||||
buildLinesStr = _require3.buildLinesStr;
|
||||
|
||||
var _require4 = require('./stroke'),
|
||||
stroke = _require4.stroke;
|
||||
|
||||
var document = (typeof window === "undefined" ? "undefined" : _typeof(window)) === 'object' ? window.document || null : null;
|
||||
|
||||
var svg = function () {
|
||||
if (!document) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
||||
}();
|
||||
|
||||
var Writer = /*#__PURE__*/function () {
|
||||
function Writer(_ref) {
|
||||
var _ref$el = _ref.el,
|
||||
el = _ref$el === void 0 ? 'cnchar-draw' : _ref$el,
|
||||
_ref$text = _ref.text,
|
||||
text = _ref$text === void 0 ? '' : _ref$text,
|
||||
_ref$clear = _ref.clear,
|
||||
clear = _ref$clear === void 0 ? true : _ref$clear,
|
||||
_ref$type = _ref.type,
|
||||
type = _ref$type === void 0 ? TYPE.NORMAL : _ref$type,
|
||||
_ref$style = _ref.style,
|
||||
style = _ref$style === void 0 ? {} : _ref$style,
|
||||
_ref$line = _ref.line,
|
||||
line = _ref$line === void 0 ? {} : _ref$line,
|
||||
_ref$animation = _ref.animation,
|
||||
animation = _ref$animation === void 0 ? {} : _ref$animation,
|
||||
_ref$stroke = _ref.stroke,
|
||||
stroke = _ref$stroke === void 0 ? {} : _ref$stroke,
|
||||
_ref$test = _ref.test,
|
||||
test = _ref$test === void 0 ? {} : _ref$test;
|
||||
|
||||
_classCallCheck(this, Writer);
|
||||
|
||||
this.type = type;
|
||||
this.writers = [];
|
||||
this.text = text.split('');
|
||||
var opts = {
|
||||
style: style,
|
||||
line: line
|
||||
};
|
||||
|
||||
switch (type) {
|
||||
case TYPE.ANIMATION:
|
||||
opts.animation = animation;
|
||||
break;
|
||||
|
||||
case TYPE.STROKE:
|
||||
opts.stroke = stroke;
|
||||
break;
|
||||
|
||||
case TYPE.TEST:
|
||||
opts.test = test;
|
||||
break;
|
||||
}
|
||||
|
||||
this.option = merge(type, opts);
|
||||
this.el = typeof el === 'string' ? document.querySelector(el) : el;
|
||||
|
||||
if (this.el && clear) {
|
||||
this.el.innerHTML = '';
|
||||
}
|
||||
|
||||
if (!this.el) {
|
||||
this.el = document.createElement('div');
|
||||
document.body.appendChild(this.el);
|
||||
}
|
||||
|
||||
this.init();
|
||||
}
|
||||
|
||||
_createClass(Writer, [{
|
||||
key: "init",
|
||||
value: function init() {
|
||||
var _this = this;
|
||||
|
||||
var _buildLinesStr = buildLinesStr(this.option),
|
||||
lineHTML = _buildLinesStr.lineHTML,
|
||||
border = _buildLinesStr.border;
|
||||
|
||||
var cloneSvg = function cloneSvg(option) {
|
||||
var node = svg.cloneNode();
|
||||
node.setAttribute('width', _this.option.width);
|
||||
node.setAttribute('height', _this.option.height);
|
||||
|
||||
if (border) {
|
||||
node.style.border = border;
|
||||
}
|
||||
|
||||
if (lineHTML) {
|
||||
node.innerHTML = lineHTML;
|
||||
}
|
||||
|
||||
if (option.backgroundColor) {
|
||||
node.style.backgroundColor = option.backgroundColor;
|
||||
}
|
||||
|
||||
return node;
|
||||
};
|
||||
|
||||
if (this.type === TYPE.STROKE) {
|
||||
stroke(this, cloneSvg);
|
||||
} else {
|
||||
this.text.forEach(function (v) {
|
||||
var node = cloneSvg(_this.option);
|
||||
|
||||
_this.writers.push(HanziWriter.create(node, v, _this.option));
|
||||
|
||||
_this.el.appendChild(node);
|
||||
});
|
||||
|
||||
if (this.type === TYPE.ANIMATION) {
|
||||
var isStart = false;
|
||||
|
||||
this.animateStart = function () {
|
||||
if (isStart) {
|
||||
return;
|
||||
}
|
||||
|
||||
isStart = true;
|
||||
|
||||
if (_this.option.loopAnimate) {
|
||||
_this.loopAnimate();
|
||||
} else {
|
||||
_this.animate(_this.option.animateComplete);
|
||||
}
|
||||
};
|
||||
|
||||
if (this.option.autoAnimate) {
|
||||
this.animateStart();
|
||||
} else {
|
||||
var start = function start() {
|
||||
_this.animateStart();
|
||||
|
||||
_this.el.removeEventListener('click', start, false);
|
||||
};
|
||||
|
||||
this.el.addEventListener('click', start, false);
|
||||
}
|
||||
} else if (this.type === TYPE.TEST) {
|
||||
var opt = function opt() {
|
||||
return {};
|
||||
};
|
||||
|
||||
var fn = this.option.onTestStatus;
|
||||
|
||||
if (typeof fn === 'function') {
|
||||
opt = function opt(index) {
|
||||
return {
|
||||
onMistake: function onMistake(strokeData) {
|
||||
fn({
|
||||
index: index,
|
||||
status: TEST_STATUS.MISTAKE,
|
||||
data: strokeData
|
||||
});
|
||||
},
|
||||
onCorrectStroke: function onCorrectStroke(strokeData) {
|
||||
fn({
|
||||
index: index,
|
||||
status: TEST_STATUS.CORRECT,
|
||||
data: strokeData
|
||||
});
|
||||
},
|
||||
onComplete: function onComplete(summaryData) {
|
||||
fn({
|
||||
index: index,
|
||||
status: TEST_STATUS.COMPLETE,
|
||||
data: summaryData
|
||||
});
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
this.writers.forEach(function (writer, index) {
|
||||
writer.quiz(opt(index));
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "animate",
|
||||
value: function animate(complete) {
|
||||
var _this2 = this;
|
||||
|
||||
var opt = this.option;
|
||||
|
||||
if (opt.stepByStep) {
|
||||
// 汉字之间连续绘制
|
||||
if (opt.showCharacter === false) {
|
||||
this.writers.forEach(function (writer) {
|
||||
writer.hideCharacter();
|
||||
});
|
||||
}
|
||||
|
||||
this._animateStep(0, complete);
|
||||
} else {
|
||||
(function () {
|
||||
// 汉字一起绘制,笔画最多的绘制完成才算全部绘制完成
|
||||
var index = 0;
|
||||
|
||||
for (var i = 0; i < _this2.writers.length; i++) {
|
||||
_this2._animateSingle(i, function () {
|
||||
index++;
|
||||
|
||||
if (index === _this2.writers.length) {
|
||||
complete();
|
||||
}
|
||||
});
|
||||
}
|
||||
})();
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "loopAnimate",
|
||||
value: function loopAnimate() {
|
||||
var _this3 = this;
|
||||
|
||||
var opt = this.option;
|
||||
this.animate(function () {
|
||||
opt.animateComplete();
|
||||
setTimeout(function () {
|
||||
_this3.loopAnimate();
|
||||
}, opt.delayBetweenStrokes);
|
||||
});
|
||||
} // animate单个汉字
|
||||
|
||||
}, {
|
||||
key: "_animateSingle",
|
||||
value: function _animateSingle(i, complete) {
|
||||
if (i >= this.writers.length) {
|
||||
complete(true);
|
||||
return;
|
||||
}
|
||||
|
||||
this.writers[i].animateCharacter({
|
||||
onComplete: function onComplete() {
|
||||
complete(false);
|
||||
}
|
||||
});
|
||||
}
|
||||
}, {
|
||||
key: "_animateStep",
|
||||
value: function _animateStep(index, complete) {
|
||||
var _this4 = this;
|
||||
|
||||
this._animateSingle(index, function (end) {
|
||||
if (!end) {
|
||||
setTimeout(function () {
|
||||
_this4._animateStep(index + 1, complete);
|
||||
}, _this4.option.delayBetweenStrokes);
|
||||
} else {
|
||||
complete();
|
||||
}
|
||||
});
|
||||
}
|
||||
}]);
|
||||
|
||||
return Writer;
|
||||
}(); // eslint-disable-next-line no-unused-vars
|
||||
|
||||
|
||||
function draw() {
|
||||
var text = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
||||
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
|
||||
if (typeof window === 'undefined') {
|
||||
console.error('Draw 方法仅支持在浏览器环境下使用');
|
||||
return null;
|
||||
}
|
||||
|
||||
text = pickCnChar(text);
|
||||
|
||||
if (!text) {
|
||||
throw new Error('Draw 方法text必须含有中文');
|
||||
}
|
||||
|
||||
options.text = text;
|
||||
return new Writer(options);
|
||||
}
|
||||
|
||||
;
|
||||
draw.TYPE = TYPE;
|
||||
draw.TEST_STATUS = TEST_STATUS;
|
||||
module.exports = draw;
|
|
@ -1,36 +0,0 @@
|
|||
# [hanzi-util-base](https://github.com/theajack/cnchar)
|
||||
#### [theajack](https://www.theajack.com/)
|
||||
### 功能全面、多端支持的汉字拼音笔画js库
|
||||
[api详细文档地址](https://www.theajack.com/cnchar/)
|
||||
|
||||
----
|
||||
|
||||
[TOC]
|
||||
|
||||
----
|
||||
|
||||
注:词库为cnchar的基础功能版本
|
||||
|
||||
```
|
||||
npm i hanzi-util-base
|
||||
```
|
||||
|
||||
### 1.功能
|
||||
|
||||
1. 获取 **汉字拼音** ,支持首字母、大小写、数组分割、备选 **多音字** 等功能
|
||||
2. 支持 **多音词**
|
||||
3. 支持 **拼音音调**
|
||||
4. 获取汉字 **笔画数** 、支持数组分割
|
||||
5. 获取汉字 **笔画顺序** 、笔画详细名称、通过笔画顺序推出原汉字等
|
||||
6. 支持 **简体字** 、 **繁体字** 、 **火星文** 互转
|
||||
7. 支持 **查找** 某拼音的所有 **汉字** ,繁体字,多音字
|
||||
8. 支持 **查找** 指定笔画数的所有 **汉字** ,繁体字
|
||||
9. 支持 **查询拼音的信息**,包含声母、韵母、音调、音调位置的等
|
||||
10. 支持 **繁体字** 拼音、笔画数及以上所有功能,实现和简体字一样的功能
|
||||
11. **体积小**,min 版本仅 46 kb,zip 版本 34 kb (含有大量汉字拼音字典)
|
||||
12. **多端可用**,可用于 原生浏览器环境、webpack 环境、nodejs 环境...,几乎支持所有 js 能运行的环境
|
||||
13. 丰富的配置,按需取用
|
||||
|
||||
### 2.详细文档
|
||||
|
||||
[cnchar](https://github.com/theajack/cnchar/blob/master/README.md#cnchar)
|
|
@ -1,8 +0,0 @@
|
|||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
|
||||
interface String {
|
||||
spell(...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(...args: Array<strokeArg>): number | Array<any>;
|
||||
}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
import './extend';
|
||||
|
||||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
declare type spellToWordArg = 'poly' | 'alltone' | 'array' | 'simple' | 'trad';
|
||||
declare type strokeToWordArg = 'array' | 'simple' | 'trad';
|
||||
declare type pluginArg = 'order' | 'trad' | 'poly' | 'draw' | 'idiom' | 'xhy' | 'radical';
|
||||
declare type toneType = 0 | 1 | 2 | 3 | 4;
|
||||
declare type compareType = 'more' | 'less' | 'even';
|
||||
|
||||
declare interface spellInfoReturnStatic {
|
||||
spell: string;
|
||||
initial: string;
|
||||
final: string;
|
||||
tone: number;
|
||||
index: number;
|
||||
}
|
||||
export declare interface CnCharStatic {
|
||||
spell(sentence: string, ...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(sentence: string, ...args: Array<strokeArg>): number | Array<any>;
|
||||
use(...plugins: Array<Function>): void;
|
||||
spellToWord(spell: string, ...args: Array<spellToWordArg>): string | Array<string>;
|
||||
strokeToWord(stroke: number, ...args: Array<strokeToWordArg>): string | Array<string>;
|
||||
spellInfo: {
|
||||
(spell: string): spellInfoReturnStatic;
|
||||
tones: Array<string>;
|
||||
initials: Array<string>;
|
||||
};
|
||||
plugins: Array<pluginArg>;
|
||||
type: {
|
||||
spell: object;
|
||||
stroke: object;
|
||||
spellToWord: object;
|
||||
strokeToWord: object;
|
||||
orderToWord?: object;
|
||||
idiom?: object;
|
||||
xhy?: object;
|
||||
radical?: object;
|
||||
};
|
||||
check: boolean;
|
||||
readonly version: string;
|
||||
|
||||
transformTone(spell: string, tone?: boolean, type?: 'low' | 'up'): {
|
||||
spell: string;
|
||||
tone: toneType;
|
||||
index: number;
|
||||
isTrans: boolean;
|
||||
};
|
||||
isCnChar(word: string): boolean;
|
||||
isPolyWord(word: string): boolean;
|
||||
compareSpell(spell1: string, spell2: string, tone?: boolean): compareType;
|
||||
compareStroke(stroke1: string | number, stroke2: string | number): compareType;
|
||||
sortSpell(spells:Array<string> | string, ...args: Array<'tone'|'desc'>): Array<string> | string;
|
||||
sortStroke(strokes:Array<string|number> | string, desc?: 'desc'): Array<string> | string;
|
||||
setSpellDefault(word: string, spell: string): void;
|
||||
setSpellDefault(json: {[key: string]: string}): void;
|
||||
setSpell(word: string, spell: string): void;
|
||||
setSpell(json: {[key: string]: string}): void;
|
||||
setStrokeCount(word: string, count: number): void;
|
||||
setStrokeCount(json: {[key: string]: number}): void;
|
||||
shapeSpell(spell: string): string;
|
||||
}
|
||||
|
||||
declare const cnchar: CnCharStatic;
|
||||
|
||||
export default cnchar;
|
|
@ -1,2 +0,0 @@
|
|||
var cnchar = require('cnchar');
|
||||
module.exports = cnchar;
|
|
@ -1,36 +0,0 @@
|
|||
# [hanzi-util](https://github.com/theajack/cnchar)
|
||||
#### [theajack](https://www.theajack.com/)
|
||||
### 功能全面、多端支持的汉字拼音笔画js库
|
||||
[api详细文档地址](https://www.theajack.com/cnchar/)
|
||||
|
||||
----
|
||||
|
||||
[TOC]
|
||||
|
||||
----
|
||||
|
||||
注:词库为cnchar的完整功能版本
|
||||
|
||||
```
|
||||
npm i hanzi-util
|
||||
```
|
||||
|
||||
### 1.功能
|
||||
|
||||
1. 获取 **汉字拼音** ,支持首字母、大小写、数组分割、备选 **多音字** 等功能
|
||||
2. 支持 **多音词**
|
||||
3. 支持 **拼音音调**
|
||||
4. 获取汉字 **笔画数** 、支持数组分割
|
||||
5. 获取汉字 **笔画顺序** 、笔画详细名称、通过笔画顺序推出原汉字等
|
||||
6. 支持 **简体字** 、 **繁体字** 、 **火星文** 互转
|
||||
7. 支持 **查找** 某拼音的所有 **汉字** ,繁体字,多音字
|
||||
8. 支持 **查找** 指定笔画数的所有 **汉字** ,繁体字
|
||||
9. 支持 **查询拼音的信息**,包含声母、韵母、音调、音调位置的等
|
||||
10. 支持 **繁体字** 拼音、笔画数及以上所有功能,实现和简体字一样的功能
|
||||
11. **体积小**,min 版本仅 46 kb,zip 版本 34 kb (含有大量汉字拼音字典)
|
||||
12. **多端可用**,可用于 原生浏览器环境、webpack 环境、nodejs 环境...,几乎支持所有 js 能运行的环境
|
||||
13. 丰富的配置,按需取用
|
||||
|
||||
### 2.详细文档
|
||||
|
||||
[cnchar](https://github.com/theajack/cnchar/blob/master/README.md#cnchar)
|
|
@ -1,13 +0,0 @@
|
|||
declare type spellArgs = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArgs = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
|
||||
interface String {
|
||||
spell(...args: Array<spellArgs>): string | Array<any>;
|
||||
stroke(...args: Array<strokeArgs>): number | Array<any>;
|
||||
convertSimpleToTrad(): string;
|
||||
convertSimpleToSpark(): string;
|
||||
convertTradToSimple(): string;
|
||||
convertTradToSpark(): string;
|
||||
convertSparkToSimple(): string;
|
||||
convertSparkToTrad(): string;
|
||||
}
|
|
@ -1,189 +0,0 @@
|
|||
// all库的声明文件
|
||||
import './extend';
|
||||
|
||||
// draw
|
||||
declare type DrawType = 'normal' | 'animation' | 'stroke' | 'test';
|
||||
declare type TestStatusType = 'mistake' | 'correct' | 'complete';
|
||||
declare class Writer {
|
||||
constructor();
|
||||
option: object;
|
||||
el: HTMLElement;
|
||||
type: DrawType;
|
||||
text: Array<string>;
|
||||
writer: Array<object>;
|
||||
animateStart():void;
|
||||
}
|
||||
|
||||
declare interface TestStatus {
|
||||
index: number,
|
||||
status: TestStatusType,
|
||||
data: {
|
||||
character: string;
|
||||
totalMistakes: number;// 到目前为止在测验期间犯的总错误。
|
||||
strokeNum?: number;// 当前笔画数。
|
||||
mistakesOnStroke?: number;// 到目前为止用户绘制此笔划所犯的错误数。
|
||||
strokesRemaining?: number;// 测验完成前剩余的笔画数。
|
||||
drawnPath?: {
|
||||
pathString: string;
|
||||
points: Array<{x:number;y:number}>
|
||||
};// 对象包含用户绘制的 pathString ,用于评分的分数。
|
||||
}
|
||||
}
|
||||
|
||||
declare interface DrawOption {
|
||||
el?: string | HTMLElement; // 绘制的容器,支持选择器或dom,若是不填,会在body后append一个dom作为容器
|
||||
type?: DrawType; // 绘制模式,默认为normal
|
||||
clear?: boolean; // 绘制前是否清空容器 默认为true
|
||||
style?: { // 样式类
|
||||
backgroundColor?: string, // 默认为#fff
|
||||
showOutline?: boolean;//: true,
|
||||
showCharacter?: boolean;//: true,
|
||||
currentColor?: string;//: '#b44', // 仅在stroke模式下有效
|
||||
length?: number;//: 60,
|
||||
padding?: number;//: 5, // 数值, 默认 20。 画布的汉字和边缘之间的填充
|
||||
outlineColor?: string;//: '#ddd', // 十六进制字符, 默认 '#DDD'。
|
||||
strokeColor?: string;//: '#555', // 十六进制字符, 默认 '#555'。绘制每个笔划的颜色。
|
||||
radicalColor?: string;//: null, // 十六进制字符, 默认 null。 如果存在偏旁部首数据,则在笔划中绘制偏旁部首的颜色。 如果没有设置,激光将绘制与其他笔划相同的颜色。
|
||||
strokeFadeDuration?: number; //400
|
||||
},
|
||||
line?: { // 背景线条类
|
||||
lineStraight?: boolean;// : true,
|
||||
lineCross?: boolean;// : true,
|
||||
lineWidth?: number;// : 1,
|
||||
lineColor?: string;// : '#ddd',
|
||||
lineDash?: boolean;// : true,
|
||||
border?: boolean;// : true,
|
||||
borderWidth?: number;// : 1,
|
||||
borderColor?: string;// : '#ccc',
|
||||
borderDash?: boolean;// : false,
|
||||
},
|
||||
animation?: {
|
||||
strokeAnimationSpeed?: number;// : 1, // 数值, 默认 1。 绘制每个笔划的速度必须大于0。增加此数字可以更快地绘制笔划,减少绘制笔划的速度更慢。
|
||||
delayBetweenStrokes?: number;// : 1000, // 数值, 默认 1000。 动画进行中每个笔画之间的间隔时间(以毫秒为单位)。
|
||||
delayBetweenLoops?: number;// : 200, // 数值, 默认 2000。 循环动画时每个动画循环之间的时间(以毫秒为单位)。
|
||||
autoAnimate?: boolean;// : true,
|
||||
animateComplete?: Function;// : () => {},
|
||||
stepByStep?: boolean;// : true,
|
||||
loopAnimate?: boolean;// : false,
|
||||
},
|
||||
test?: {
|
||||
strokeHighlightSpeed?: number;// : 20, // 数值, 默认 20。 在测验中给出提示时突出显示每个笔划的速度必须大于0。增加此数字以突出显示更快,减少以突出显示更慢。
|
||||
highlightColor?: number;// : '#aaf', // 十六进制字符, 默认 '#AAF'。 用于在测验中突出显示的颜色。
|
||||
drawingColor?: number;// : '#333', // 十六进制字符, 默认 '#333'。 测验期间绘制的线条颜色。
|
||||
drawingWidth?: number;// : 4, // 数值, 默认 4。 进行测验时绘制的线条宽度。
|
||||
showHintAfterMisses?: number;// : 3, // 整数, 默认 3 中风高亮提示之前的未命中数被给予用户。 设置为 false 以禁用。 创建测验时也可以设置此项。
|
||||
highlightOnComplete?: number;// : true, // 布尔值, 默认 true。 控制当用户完成绘制整个字符时,测验是否会短暂突出显示字符。 创建测验时也可以设置此项。
|
||||
highlightCompleteColor?: number;// : null, // 十六进制字符, 默认 null。 在测验中突出显示字符时使用的颜色。 如果未设置,则将使用highlightColor。 仅当highlightOnComplete为true时才相关。
|
||||
onTestStatus?(args: TestStatus):void;// : null, // ({index, status, data})=>{}
|
||||
}
|
||||
}
|
||||
|
||||
export declare interface Draw {
|
||||
(text:string, option?:DrawOption):Writer;
|
||||
TYPE: {
|
||||
ANIMATION: 'animation',
|
||||
NORMAL: 'normal',
|
||||
STROKE: 'stroke',
|
||||
TEST: 'test'
|
||||
},
|
||||
TEST_STATUS: {
|
||||
MISTAKE: 'mistake',
|
||||
CORRECT: 'correct',
|
||||
COMPLETE: 'complete'
|
||||
}
|
||||
}
|
||||
|
||||
// idiom
|
||||
|
||||
declare type idiomArg = 'char' | 'stroke' | 'spell' | 'tone';
|
||||
|
||||
export declare interface Idiom {
|
||||
(text:string | Array<string|number>, ...idiomArgs: Array<idiomArg>):Array<string>;
|
||||
}
|
||||
|
||||
// order
|
||||
|
||||
declare type orderToWordArg = 'match' | 'matchorder' | 'contain' | 'start' | 'array' | 'simple' | 'trad';
|
||||
|
||||
declare type orderName = '横折折撇' | '竖弯' | '横折' | '撇点' | '横斜钩' | '横' | '捺' | '横折钩' | '竖' | '竖钩' | '点' | '撇' | '撇折' | '竖折撇' | '横折折折钩' | '竖折折钩' | '提' | '弯钩' | '斜钩' | '横折折' | '横撇' | '横折提' | '横折折折' | '竖提' | '竖弯钩'
|
||||
| '竖折折' | '横撇弯钩' | '卧钩' | '横折弯' | '横钩';
|
||||
|
||||
// xhy
|
||||
|
||||
declare type xhyArg = 'fuzzy' | 'answer' | 'second';
|
||||
|
||||
export declare interface XHY {
|
||||
(text:string, ...xhyArgs: Array<xhyArg>):Array<string>;
|
||||
}
|
||||
|
||||
|
||||
declare type spellArg = 'array' | 'low' | 'up' | 'first' | 'poly' | 'tone' | 'simple' | 'trad';
|
||||
declare type strokeArg = 'letter' | 'shape' | 'count' | 'name' | 'detail' | 'array' | 'order' | 'simple' | 'trad';
|
||||
declare type spellToWordArg = 'poly' | 'alltone' | 'array' | 'simple' | 'trad';
|
||||
declare type strokeToWordArg = 'array' | 'simple' | 'trad';
|
||||
declare type pluginArg = 'order' | 'trad' | 'poly' | 'draw' | 'idiom' | 'xhy';
|
||||
declare type toneType = 0 | 1 | 2 | 3 | 4;
|
||||
declare type compareType = 'more' | 'less' | 'even';
|
||||
|
||||
declare interface spellInfoReturnStatic {
|
||||
spell: string;
|
||||
initial: string;
|
||||
final: string;
|
||||
tone: number;
|
||||
index: number;
|
||||
}
|
||||
export declare interface CnCharStatic {
|
||||
spell(sentence: string, ...args: Array<spellArg>): string | Array<any>;
|
||||
stroke(sentence: string, ...args: Array<strokeArg>): number | Array<any>;
|
||||
use(...plugins: Array<Function>): void;
|
||||
spellToWord(spell: string, ...args: Array<spellToWordArg>): string | Array<string>;
|
||||
strokeToWord(stroke: number, ...args: Array<strokeToWordArg>): string | Array<string>;
|
||||
spellInfo: {
|
||||
(spell: string): spellInfoReturnStatic;
|
||||
tones: Array<string>;
|
||||
initials: Array<string>;
|
||||
};
|
||||
plugins: Array<pluginArg>;
|
||||
type: {
|
||||
spell: object;
|
||||
stroke: object;
|
||||
spellToWord: object;
|
||||
strokeToWord: object;
|
||||
orderToWord?: object;
|
||||
idiom?: object;
|
||||
xhy?: object;
|
||||
};
|
||||
check: boolean;
|
||||
readonly version: string;
|
||||
|
||||
transformTone(spell: string, tone?: boolean, type?: 'low' | 'up'): {
|
||||
spell: string;
|
||||
tone: toneType;
|
||||
index: number;
|
||||
isTrans: boolean;
|
||||
};
|
||||
isCnChar(word: string): boolean;
|
||||
compareSpell(spell1: string, spell2: string, tone?: boolean): compareType;
|
||||
compareStroke(stroke1: string | number, stroke2: string | number): compareType;
|
||||
sortSpell(spells:Array<string> | string, ...args: Array<'tone'|'desc'>): Array<string> | string;
|
||||
sortStroke(strokes:Array<string|number> | string, desc?: 'desc'): Array<string> | string;
|
||||
draw: Draw;
|
||||
idiom: Idiom;
|
||||
orderToWord: {
|
||||
(orders: string | Array<orderName>, ...args: Array<orderToWordArg>): string | Array<string>;
|
||||
orders: object;
|
||||
};
|
||||
convert: {
|
||||
simpleToSpark(sentence: string): string;
|
||||
simpleToTrad(sentence: string): string;
|
||||
sparkToSimple(sentence: string): string;
|
||||
sparkToTrad(sentence: string): string;
|
||||
tradToSimple(sentence: string): string;
|
||||
tradToSpark(sentence: string): string;
|
||||
};
|
||||
xhy: XHY;
|
||||
}
|
||||
|
||||
declare const cnchar: CnCharStatic;
|
||||
|
||||
export default cnchar;
|
|
@ -1,2 +0,0 @@
|
|||
var cnchar = require('cnchar-all');
|
||||
module.exports = cnchar;
|
|
@ -1,218 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
/**
|
||||
* 汉字 ['a','','c','']
|
||||
* 笔画 [1,0,1,0]
|
||||
* 拼音 ['shi', '']
|
||||
*/
|
||||
// 小程序中json直接放一个数组会有异常,所以包一个key
|
||||
var dict = require('./idiom.json').idiom; // const {initToneCodes, getCharCode} = require('./tone');
|
||||
|
||||
|
||||
var spellDict = require('./spell.json').spell;
|
||||
|
||||
var spellNoToneDict = require('./spell.notone.json').spell;
|
||||
|
||||
var _cnchar = null;
|
||||
var arg = {
|
||||
"char": 'char',
|
||||
stroke: 'stroke',
|
||||
spell: 'spell',
|
||||
tone: 'tone'
|
||||
}; // spell > stroke > char
|
||||
// spell 和 stroke 仅在 引入cnchar之后才可用
|
||||
|
||||
function idiom() {
|
||||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
|
||||
if (args.length === 0) {
|
||||
console.warn('idiom: 请输入搜索项');
|
||||
return;
|
||||
}
|
||||
|
||||
var input = args[0];
|
||||
args = args.slice(1);
|
||||
|
||||
if (args.indexOf(arg.spell) !== -1 && typeof input !== 'string') {
|
||||
console.warn('idiom spell 模式下仅支持查询首个汉字的拼音');
|
||||
return;
|
||||
}
|
||||
|
||||
if (!(input instanceof Array || args.indexOf(arg.spell) !== -1 || typeof input === 'number' && args.indexOf(arg.stroke) !== -1)) {
|
||||
console.warn('idiom 输入参数仅支持数组 或 stroke模式下的数字');
|
||||
return;
|
||||
}
|
||||
|
||||
var res = null;
|
||||
|
||||
if (!_cnchar) {
|
||||
// 单独使用的idiom 只支持汉字查询方式
|
||||
checkArg(args, arg.stroke);
|
||||
checkArg(args, arg.spell);
|
||||
res = idiomWithChar(input);
|
||||
} else {
|
||||
_cnchar._.checkArgs('idiom', args);
|
||||
|
||||
if (_cnchar._.has(args, arg.spell)) {
|
||||
res = idiomWithSpell(input, _cnchar._.has(args, arg.tone));
|
||||
} else if (_cnchar._.has(args, arg.stroke)) {
|
||||
res = idiomWithStroke(input);
|
||||
} else {
|
||||
res = idiomWithChar(input);
|
||||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
function idiomWithChar(input) {
|
||||
return dict.filter(function (item) {
|
||||
return compareCommon(input, item.split(''));
|
||||
});
|
||||
} // needTone:是否需要匹配音调
|
||||
|
||||
|
||||
function idiomWithSpell(input, tone) {
|
||||
// console.log(input, tone);
|
||||
var total = dict.length;
|
||||
|
||||
var _dict = tone ? spellDict : spellNoToneDict;
|
||||
|
||||
if (tone) {
|
||||
input = _cnchar._.transformTone(input, true).spell;
|
||||
}
|
||||
|
||||
var filter = _dict.filter(function (item) {
|
||||
return input === item.split(':')[0];
|
||||
});
|
||||
|
||||
if (filter.length === 0) {
|
||||
return [];
|
||||
}
|
||||
|
||||
var res = [];
|
||||
var n = _dict.length - 1;
|
||||
filter.forEach(function (item) {
|
||||
var index = _dict.indexOf(item);
|
||||
|
||||
var curDIndex = item.split(':')[1];
|
||||
var nextDIndex = index === n ? total : _dict[index + 1].split(':')[1];
|
||||
res = res.concat(dict.slice(curDIndex, nextDIndex));
|
||||
});
|
||||
return res; // let low = 0;
|
||||
// let high = total;
|
||||
// input = input.toLowerCase();
|
||||
// if (tone) {
|
||||
// input = _cnchar._.transformTone(input, 'tone').spell;
|
||||
// }
|
||||
// let target = input.split('').map(c => getCharCode(c, tone));
|
||||
// let area = step1FindArea(low, high, target, tone);
|
||||
// if (area === TYPE.ERROR) {
|
||||
// return [];
|
||||
// }
|
||||
// let floor = step2FindFloor(area.low, area.mid, target, tone).mid;
|
||||
// let ceil = step3FindCeil(area.mid, area.high, target, tone).mid;
|
||||
// return dict.slice(floor, ceil + 1);
|
||||
} // 二分查找拼音依赖拼音准确率,可能会不准确,故放弃
|
||||
// function binarySearch (low, high, condition) {
|
||||
// if (low > high) {
|
||||
// return TYPE.ERROR;
|
||||
// }
|
||||
// let mid = Math.floor((low + high) / 2);
|
||||
// let res = condition(mid);
|
||||
// if (res === TYPE.MORE) {
|
||||
// return binarySearch(low, mid - 1, condition);
|
||||
// } else if (res === TYPE.LESS) {
|
||||
// return binarySearch(mid + 1, high, condition);
|
||||
// } else {
|
||||
// return {low, high, mid};
|
||||
// }
|
||||
// }
|
||||
// function step1FindArea (low, high, target, tone) { // 找到一个区间,该区间包含所有拼音,且中值为该拼音
|
||||
// return binarySearch(low, high, (mid) => {
|
||||
// return _cnchar._.compareSpell(mid, target, tone);
|
||||
// });
|
||||
// }
|
||||
// function step2FindFloor (low, high, target, tone) { // 查找下界
|
||||
// return binarySearch(low, high, (mid) => {
|
||||
// return compareBoundary(mid, target, TYPE.MORE, TYPE.LESS, -1, tone);
|
||||
// });
|
||||
// }
|
||||
// function step3FindCeil (low, high, target, tone) { // 查找上界
|
||||
// return binarySearch(low, high, (mid) => {
|
||||
// return compareBoundary(mid, target, TYPE.LESS, TYPE.MORE, 1, tone);
|
||||
// });
|
||||
// }
|
||||
// typeCenter 朝区域中心的大小type; typeSide 朝区域两端的大小type
|
||||
// function compareBoundary (mid, target, typeCenter, typeSide, neighborPlus, tone) {
|
||||
// let res = _cnchar._.compareSpell(mid, target, tone);
|
||||
// if (res === typeSide) {
|
||||
// return res;
|
||||
// }
|
||||
// if (res === TYPE.EVEN) {
|
||||
// let neighborIndex = mid + neighborPlus;
|
||||
// if (neighborIndex < 0 || neighbor >= total) {
|
||||
// return TYPE.EVEN;
|
||||
// }
|
||||
// let neighbor = _cnchar._.compareSpell(neighborIndex, target, tone); // + 1
|
||||
// if (neighbor === TYPE.EVEN) {
|
||||
// return typeCenter;
|
||||
// } else if (neighbor === typeSide) {
|
||||
// return TYPE.EVEN;
|
||||
// } else {
|
||||
// console.error(neighbor);
|
||||
// throw new Error('idoim Error');
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
function idiomWithStroke(input) {
|
||||
if (typeof input === 'number') {
|
||||
// 总笔画数为多少
|
||||
return dict.filter(function (item) {
|
||||
return input === _cnchar.stroke(item);
|
||||
});
|
||||
}
|
||||
|
||||
return dict.filter(function (item) {
|
||||
return compareCommon(input, _cnchar.stroke(item, 'array'));
|
||||
});
|
||||
}
|
||||
/**
|
||||
* ['五','','十',''],['五','光','十','色'] => true
|
||||
* ['wu','','shi',''],['wu','guang','shi','se'] => true
|
||||
* [4, 0, 2, 0],[4, 6, 2, 6] => true
|
||||
*/
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
function compareCommon(input, target) {
|
||||
for (var i = 0; i < input.length; i++) {
|
||||
if (input[i] && input[i] !== target[i]) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function checkArg(args, name) {
|
||||
if (args.indexOf(name) !== -1) {
|
||||
console.warn("\u672A\u5F15\u5165cnchar,idiom\u4E0D\u652F\u6301".concat(name, "\u53C2\u6570"));
|
||||
}
|
||||
}
|
||||
|
||||
function setCnchar(cnchar) {
|
||||
_cnchar = cnchar; // initToneCodes(cnchar);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
idiom: idiom,
|
||||
arg: arg,
|
||||
setCnchar: setCnchar
|
||||
};
|
|
@ -1,15 +0,0 @@
|
|||
declare type idiomArg = 'char' | 'stroke' | 'spell' | 'tone';
|
||||
|
||||
export declare interface Idiom {
|
||||
(text:string | Array<string|number>, ...idiomArgs: Array<idiomArg>):Array<string>;
|
||||
}
|
||||
|
||||
declare const idiom: Idiom;
|
||||
|
||||
declare module 'cnchar' {
|
||||
interface CnCharStatic {
|
||||
idiom: Idiom;
|
||||
}
|
||||
}
|
||||
|
||||
export default idiom;
|