https://github.com/xyzdata/git/issues/3
# todo
ant design
https://ant.design/docs/react/introduce-cn
https://github.com/nuysoft/Mock/wiki/Getting-Started
'roleId|1': [1, 2, 3],
'roleName|1': function() {
return ["管理员", "教师", "学生"][this.roleId - 1]
},
const arr = ["管理员", "教师", "学生"];
arr[0];
arr[1];
arr[2];
https://gist.github.com/xgqfrms-GitHub/94607b60e14b998eab87ca8ab86588e4#gistcomment-2141365
// 使用 Mock
import Mock from 'mockjs';
let data = Mock.mock({
// 属性 list 的值是一个数组,其中含有 1 到 10 个元素
'users|1-100': [{
// 属性 id 是一个自增数,起始值为 1,每次增 1
'id|+1': 101
}]
});
// 输出结果
console.log(
JSON.stringify(data, null, 4)
);
// JSON.stringify(value[, replacer[, space]]);
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
phone: /^1[34578]\d{9}$/
https://regexper.com/#%2F%5E1%5B34578%5D%5Cd%7B9%7D%24%2Fg
let usersListData = Mock.mock({
'data|80-100': [
{
id: '@id',
name: '@name',
nickName: '@last',
phone: /^1[34578]\d{9}$/,
'age|11-99': 1,
address: '@county(true)',
isMale: '@boolean',
email: '@email',
createTime: '@datetime',
avatar () {
return Mock.Random.image('100x100', Mock.Random.color(), '#ccc', 'png', this.nickName.substr(0, 1));
}
}
]
});
@
占位符。https://github.com/nuysoft/Mock/wiki/Syntax-Specification
isMale: '@boolean',
// 'isMale|1': ['Man', 'Woman'],
// shit api
'bm': '@boolean',
'isMale|1': function() {
return ["Man", "Woman"][this.bm + 0]
},
// 连字符转驼峰
String.prototype.hyphenToHump = function() {
return this.replace(/-(\w)/g, function() {
return arguments[1].toUpperCase()
});
};
// 驼峰转连字符
String.prototype.humpToHyphen = function() {
return this.replace(/([A-Z])/g, '-$1').toLowerCase();
};
jsx-eslint/eslint-plugin-react#447
// redux constants
export const PAGE_SIZE = 3;
// [eslint] Parsing error: The keyword 'export' is reserved
.eslintrc
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"experimentalObjectRestSpread": true
}
},
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"rules": {
"comma-dangle": 0
},
"settings": {
"react": {
"pragma": "React",
"version": "15.4.2"
}
}
}
https://ant.design/components/form-cn/#components-form-demo-layout
inline
// Form
mode="inine" ???
Select
https://ant.design/components/select-cn/
https://ant.design/components/input-cn/#API
Radio
https://ant.design/components/radio-cn/