mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 19:18:07 +08:00
2ee3d43534
* style: affix & util * feat(alert): add customIcon slot * feat(anchor): ts type * style: auto-complete * feat: avatar add crossOrigin & maxPopoverTrigger * style(backTop): v-show instead v-if * style: badge * style: breadcrumb * feat: button add global size * feat: update i18n * feat: picker add disabledTime * test: update snap * doc: update img url * style: fix Card tabs of left position * doc: update cascader doc * feat: collapse * style: comment * style: configprovider * feat: date-picker add soem icon slot * style: update descriptions style * feat: add divider orientationMargin * doc: update drawer * feat: dropdown add destroyPopupOnHide & loading * style: update empty * feat: form add labelWrap * style: update grid * test: update grid snap * fix: image ts error * fix: mentions cannot select, close #5233 * doc: update pagination change info, close #5293 * fix: table dynamic expand error, close #5295 * style: remove not use * release 3.0.0-beta.11 * doc: update typo * feat: input add showCount * feat: inputNumber add prefix slot * style: update layout * style: update list * feat: add locale i18 * style: update locale ts * style: update mentions * feat: menu divider add dashed * perf: menu * perf: menu animate * feat: modal method add wrapClassName * style: update pageheader * feat: update pagination ts * feat: confirm add showCancel & promise * doc: update popover * style: update progress * style: radio * style: update rate、result、row * feat: select add fieldNames * feat: add skeleton button & input * feat: spin tip support slot * style: slider & space * stype: update steps ts type * style: update switch * feat: table add tree filter * test: update input sanp * feat: table add filterMode... * fix: tree autoExpandParent bug * test: update input snap * doc: tabs add destroyInactiveTabPane * style: update tag * style: update timeline & time-picker * fix: Tooltip arrowPointAtCenter 1px shift bug * feat: typography add enterEnterIcon triggerType * doc: update tree-select * fix: deps and TypeScript types * style: udpate transfer * style: update style * doc: add colorScheme * chore: add css var builg * doc: sort api * style: lint code * doc: add css var * test: update snap * chore: add pre script * chore: update lint * perf: collapse animate * perf: collapse tree * perf: typography shaking when edit * doc: update auto-complete demo * fix: table tree not have animate * feat: deprecated dropdown center placement * feat: deprecated dropdown center placement * test: update snap
166 lines
4.3 KiB
JavaScript
166 lines
4.3 KiB
JavaScript
const program = require('commander');
|
|
const majo = require('majo');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const chalk = require('chalk');
|
|
|
|
const unified = require('unified');
|
|
const parse = require('remark-parse');
|
|
const stringify = require('remark-stringify');
|
|
|
|
const yamlConfig = require('remark-yaml-config');
|
|
const frontmatter = require('remark-frontmatter');
|
|
|
|
let fileAPIs = {};
|
|
const remarkWithYaml = unified()
|
|
.use(parse)
|
|
.use(stringify, {
|
|
paddedTable: false,
|
|
listItemIndent: 1,
|
|
stringLength: () => 3,
|
|
})
|
|
.use(frontmatter)
|
|
.use(yamlConfig);
|
|
|
|
const stream = majo.majo();
|
|
|
|
function getCellValue(node) {
|
|
return node.children[0].children[0].value;
|
|
}
|
|
|
|
// from small to large
|
|
const sizeBreakPoints = ['xs', 'sm', 'md', 'lg', 'xl', 'xxl'];
|
|
|
|
const whiteMethodList = ['afterChange', 'beforeChange'];
|
|
|
|
const groups = {
|
|
isDynamic: val => /^on[A-Z]/.test(val) || whiteMethodList.indexOf(val) > -1,
|
|
isSize: val => sizeBreakPoints.indexOf(val) > -1,
|
|
};
|
|
|
|
function asciiSort(prev, next) {
|
|
if (prev > next) {
|
|
return 1;
|
|
}
|
|
|
|
if (prev < next) {
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// follow the alphabet order
|
|
function alphabetSort(nodes) {
|
|
// use toLowerCase to keep `case insensitive`
|
|
return nodes.sort((...comparison) =>
|
|
asciiSort(...comparison.map(val => getCellValue(val).toLowerCase())),
|
|
);
|
|
}
|
|
|
|
function sizeSort(nodes) {
|
|
return nodes.sort((...comparison) =>
|
|
asciiSort(...comparison.map(val => sizeBreakPoints.indexOf(getCellValue(val).toLowerCase()))),
|
|
);
|
|
}
|
|
|
|
function sort(ast, filename) {
|
|
const nameMatch = filename.match(/^components\/([^/]*)\//);
|
|
const componentName = nameMatch[1];
|
|
fileAPIs[componentName] = fileAPIs[componentName] || {
|
|
static: new Set(),
|
|
size: new Set(),
|
|
dynamic: new Set(),
|
|
};
|
|
|
|
ast.children.forEach(child => {
|
|
const staticProps = [];
|
|
// prefix with `on`
|
|
const dynamicProps = [];
|
|
// one of ['xs', 'sm', 'md', 'lg', 'xl']
|
|
const sizeProps = [];
|
|
|
|
// find table markdown type
|
|
if (child.type === 'table') {
|
|
// slice will create new array, so sort can affect the original array.
|
|
// slice(1) cut down the thead
|
|
child.children.slice(1).forEach(node => {
|
|
const value = getCellValue(node);
|
|
if (groups.isDynamic(value)) {
|
|
dynamicProps.push(node);
|
|
fileAPIs[componentName].dynamic.add(value);
|
|
} else if (groups.isSize(value)) {
|
|
sizeProps.push(node);
|
|
fileAPIs[componentName].size.add(value);
|
|
} else {
|
|
staticProps.push(node);
|
|
fileAPIs[componentName].static.add(value);
|
|
}
|
|
});
|
|
|
|
// eslint-disable-next-line
|
|
child.children = [
|
|
child.children[0],
|
|
...alphabetSort(staticProps),
|
|
...sizeSort(sizeProps),
|
|
...alphabetSort(dynamicProps),
|
|
];
|
|
}
|
|
});
|
|
|
|
return ast;
|
|
}
|
|
|
|
function sortAPI(md, filename) {
|
|
return remarkWithYaml.stringify(sort(remarkWithYaml.parse(md), filename));
|
|
}
|
|
|
|
function sortMiddleware(ctx) {
|
|
Object.keys(ctx.files).forEach(filename => {
|
|
const content = ctx.fileContents(filename);
|
|
ctx.writeContents(filename, sortAPI(content, filename));
|
|
});
|
|
}
|
|
|
|
module.exports = () => {
|
|
fileAPIs = {};
|
|
|
|
program
|
|
.version('0.1.0')
|
|
.option(
|
|
'-f, --file [file]',
|
|
'Specify which file to be transformed',
|
|
// default value
|
|
'components/**/index.+(zh-CN|en-US).md',
|
|
)
|
|
.option('-o, --output [output]', 'Specify component api output path', '~component-api.json')
|
|
.parse(process.argv);
|
|
// Get the markdown file all need to be transformed
|
|
|
|
/* eslint-disable no-console */
|
|
stream
|
|
.source(program.file)
|
|
.use(sortMiddleware)
|
|
.dest('.')
|
|
.then(() => {
|
|
if (program.output) {
|
|
const data = {};
|
|
Object.keys(fileAPIs).forEach(componentName => {
|
|
data[componentName] = {
|
|
static: [...fileAPIs[componentName].static],
|
|
size: [...fileAPIs[componentName].size],
|
|
dynamic: [...fileAPIs[componentName].dynamic],
|
|
};
|
|
});
|
|
|
|
const reportPath = path.resolve(program.output);
|
|
fs.writeFileSync(reportPath, JSON.stringify(data, null, 2), 'utf8');
|
|
console.log(chalk.cyan(`API list file: ${reportPath}`));
|
|
}
|
|
})
|
|
.then(() => {
|
|
console.log(chalk.green(`sort ant-design-vue api successfully!`));
|
|
});
|
|
/* eslint-enable no-console */
|
|
};
|