1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/plugin-repo-cli/lib/updateReadme.ts

68 lines
1.8 KiB
TypeScript

import * as fs from 'fs-extra';
import markdownUtils, { MarkdownTableHeader, MarkdownTableRow } from '@joplin/lib/markdownUtils';
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
export default async function(readmePath: string, manifests: any) {
let rows: MarkdownTableRow[] = [];
for (const pluginId in manifests) {
rows.push(manifests[pluginId]);
}
rows = rows.map(row => {
return {
...row,
download_url: `https://github.com/joplin/plugins/raw/master/plugins/${row.id}/plugin.jpl`,
};
});
const headers: MarkdownTableHeader[] = [
{
name: 'homepage_url',
label: ' ',
filter: (value: string) => {
if (!value) return '-';
return `[🏠](${markdownUtils.escapeLinkUrl(value)})`;
},
},
{
name: 'download_url',
label: ' ',
filter: (value: string) => {
if (!value) return '-';
return `[⬇️](${markdownUtils.escapeLinkUrl(value)})`;
},
},
{
name: 'name',
label: 'Name',
},
{
name: 'version',
label: 'Version',
},
{
name: 'description',
label: 'Description',
},
{
name: 'author',
label: 'Author',
},
];
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
rows.sort((a: any, b: any) => {
return a.name.toLowerCase() < b.name.toLowerCase() ? -1 : +1;
});
const mdTable = markdownUtils.createMarkdownTable(headers, rows);
const tableRegex = /<!-- PLUGIN_LIST -->([^]*)<!-- PLUGIN_LIST -->/;
const content = await fs.pathExists(readmePath) ? await fs.readFile(readmePath, 'utf8') : '<!-- PLUGIN_LIST -->\n<!-- PLUGIN_LIST -->';
const newContent = content.replace(tableRegex, `<!-- PLUGIN_LIST -->\n${mdTable}\n<!-- PLUGIN_LIST -->`);
await fs.writeFile(readmePath, newContent, 'utf8');
}