You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { consola } from 'consola';
|
|
import { markdownTable } from 'markdown-table';
|
|
|
|
import { DataItem, PLGUIN_URL, PLUGIN_REPO, PLUGIN_SPLIT } from './const';
|
|
import { fetchPluginIndex, genLink, genTags, readReadme, updateReadme, writeReadme } from './utlis';
|
|
|
|
const genPluginTable = (data: DataItem[], lang: string) => {
|
|
const isCN = lang === 'zh-CN';
|
|
const content = data
|
|
.slice(0, 4)
|
|
.map((item) => [
|
|
[
|
|
genLink(item.meta.title.replaceAll('|', ','), PLGUIN_URL),
|
|
`<sup>By **${item.author}** on **${item.createdAt}**</sup>`,
|
|
].join('<br/>'),
|
|
[item.meta.description.replaceAll('|', ','), genTags(item.meta.tags)].join('<br/>'),
|
|
]);
|
|
return markdownTable([
|
|
isCN ? ['最近新增', '插件描述'] : ['Recent Submits', 'Description'],
|
|
...content,
|
|
]);
|
|
};
|
|
|
|
const runPluginTable = async (lang: string) => {
|
|
const data = await fetchPluginIndex(lang);
|
|
const md = readReadme(lang);
|
|
const mdTable = genPluginTable(data, lang);
|
|
const newMd = updateReadme(
|
|
PLUGIN_SPLIT,
|
|
md,
|
|
[mdTable, `> 📊 Total plugins: ${genLink(`<kbd>**${data.length}**</kbd>`, PLUGIN_REPO)}`].join(
|
|
'\n\n',
|
|
),
|
|
);
|
|
writeReadme(newMd, lang);
|
|
consola.success('Sync plugin index success!');
|
|
};
|
|
|
|
export default async () => {
|
|
await runPluginTable('en-US');
|
|
await runPluginTable('zh-CN');
|
|
};
|