feat: 添加枚举字典插件

This commit is contained in:
aring 2021-01-25 16:22:14 +08:00
parent f34fa069a4
commit 39ba4d89ee
10 changed files with 244 additions and 3 deletions

View File

@ -15,6 +15,7 @@ const headPkgs = [
"fes-plugin-layout",
"fes-plugin-icon",
"fes-plugin-locale",
"fes-plugin-enums",
"create-fes-app"
];
const tailPkgs = [];

View File

@ -0,0 +1,3 @@
export default {
disableTypeCheck: false,
};

View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020-present webank
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -0,0 +1,2 @@

View File

@ -0,0 +1,33 @@
{
"name": "@webank/fes-plugin-enums",
"version": "2.0.0-alpha.2",
"description": "@webank/fes-plugin-enums",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-plugin-enums"
},
"keywords": [
"fes"
],
"author": "aringlai",
"license": "MIT",
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@webank/fes": "^2.0.0-alpha.0",
"vue": "^3.0.4"
}
}

View File

@ -0,0 +1,48 @@
import { readFileSync } from 'fs';
import { join } from 'path';
const namespace = 'plugin-enums';
export default (api) => {
const {
utils: { Mustache }
} = api;
api.describe({
key: 'enums',
config: {
schema(joi) {
return joi.object();
},
onChange: api.ConfigChangeType.regenerateTmpFiles
}
});
const absoluteFilePath = join(namespace, 'core.js');
api.onGenerateFiles(() => {
// 文件写出
const enums = api.config.enums || {};
api.writeTmpFile({
path: absoluteFilePath,
content: Mustache.render(
readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'),
{
REPLACE_ENUMS: JSON.stringify(enums)
}
)
});
api.copyTmpFiles({
namespace,
path: join(__dirname, 'runtime'),
ignore: ['.tpl']
});
});
api.addPluginExports(() => [
{
specifiers: ['enums'],
source: absoluteFilePath
}
]);
};

View File

@ -0,0 +1,119 @@
// [[key, value]],默认配置格式
const _ENUMS = {{{REPLACE_ENUMS}}}
const ENUMS = {}
Object.keys(_ENUMS).forEach(key => {
ENUMS[key] = convert(key, _ENUMS[key])
})
/**
* 获取枚举键值如不传key则返回name的枚举数组
* @param {string} name 枚举名称
* @param {string} key 枚举键名称
* @param {string} dir 枚举键值路径默认value格式如value.propName、value.propName[0]
*/
function get(name, key, dir='value') {
let list = ENUMS[name] || []
if (key) {
let value = list.filter(item => item.key === key)[0]
if (!value) return key
return parseValueDir(value, dir)
} else {
return list
}
}
/**
* 移除枚举
* @param {string} name 枚举名称
*/
function remove(name) {
delete ENUMS[name]
}
/**
* 添加一个新的枚举,重复添加会覆盖
* @param {string} name 枚举名称
* @param {Array<Object|Array>} _enum 枚举数组,数组元素可以是数组或者对象
* @param {string} keyName 指定枚举键名称取值属性
* @param {string} valueName 指定枚举键值取值属性
*/
function push(name, _enum, keyName='key', valueName='value') {
if (ENUMS[name]) {
console.warn(`enums warn: the ${name}'s enum already exists, cover!`)
}
ENUMS[name] = convert(name, _enum, keyName, valueName)
return get(name)
}
/**
* 根据dir解析value的属性值
* @param value
* @param dir
*/
function parseValueDir(value, dir='value') {
if (['object', 'function'].indexOf(typeof value) || !value || !dir) return value
if (dir.startsWith('[')) {
let key = dir.slice(1, dir.indexOf(']'))
return parseValueDir(value[key], dir.slice(dir.indexOf(']') + 1))
} else {
if (dir.startsWith('.')) {
dir = dir.slice(1)
}
let index = dir.indexOf('.')
let _index = dir.indexOf('[')
if (index === -1) index = dir.length
if (_index === -1) _index = dir.length
index = Math.min(index, _index)
let key = dir.slice(0, index)
return parseValueDir(value[key], dir.slice(index))
}
}
/**
* 转换传入的枚举数组
* @param {string} name 枚举名称
* @param {Array<Object|Array>} _enum 枚举数组,数组元素可以是数组或者对象
* @param {string} keyName 指定枚举键名称取值属性
* @param {string} valueName 指定枚举键值取值属性
*/
function convert(name, _enum, keyName='key', valueName='value') {
if (!name) {
throw new Error(`enums error: name must not be empty`)
}
if (!Array.isArray(_enum)) {
throw new Error(`enums error: the ${name}'s enum must be array`)
}
let list = []
_enum.forEach((item, index) => {
if (Array.isArray(item)) {
let _item = item[1]
if (Object.prototype.toString.call(_item) !== '[object Object]') {
_item = { value: _item }
}
_item.key = item[0]
list.push(_item)
} else if(Object.prototype.toString.call(item) === '[object Object]') {
list.push({
key: item[keyName],
value: item[valueName],
...item
})
} else {
console.log(`enums warn: the ${name}'s enum item[${index}] must be array or object`)
}
})
return list
}
const $data = new Proxy(ENUMS, {
get: function(target, key) {
return get(key)
}
})
export const enums = {
get,
push,
remove,
$data
}

View File

@ -27,5 +27,8 @@ export default {
},
devServer: {
port: 8080
},
enums: {
status: [['1', '有效的'], ['0', '无效的']]
}
};

View File

@ -48,6 +48,7 @@
"@webank/fes-plugin-layout": "^2.0.0-alpha.0",
"@webank/fes-plugin-locale": "^2.0.0-alpha.0",
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
"@webank/fes-plugin-enums": "^2.0.0-alpha.0",
"ant-design-vue": "2.0.0-rc.3",
"vue": "3.0.4"
},

View File

@ -5,6 +5,11 @@
<access :id="accessId"> accessOnepicess1 <input /> </access>
<div v-access="accessId"> accessOnepicess2 <input /> </div>
<input />
<div>
<div>数据字典</div>
<div v-for="item in status" :key="item.key">{{item.value}}-{{item.key}}</div>
<div v-for="item in coustomStatus" :key="item.key">{{item.value}}-{{item.key}}</div>
</div>
</div>
</template>
<config>
@ -14,9 +19,9 @@
}
</config>
<script>
import { ref, onMounted } from 'vue';
import { ref, onMounted, reactive } from 'vue';
import {
access, useAccess, useRouter, useI18n, locale
access, useAccess, useRouter, useI18n, locale, enums
} from '@webank/fes';
export default {
@ -26,6 +31,9 @@ export default {
const localI18n = useI18n();
const router = useRouter();
const accessId = ref('/onepiece1');
const status = reactive(enums.$data.status);
enums.push('coustomStatus', [{ id: 1, desc: '是' }, { id: 1, desc: '否' }], 'id', 'desc');
const coustomStatus = reactive(enums.$data.coustomStatus);
onMounted(() => {
console.log(router);
setTimeout(() => {
@ -43,7 +51,9 @@ export default {
accessId,
fes,
accessOnepicess,
t: localI18n.t
t: localI18n.t,
status,
coustomStatus
};
}
};