mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-15 06:04:17 +08:00
8aea1e3c35
* 🚀 Prettier config * 🚀 hide_border for Repo Card * fix: wrong total commits (#490) * chore: run prettier on all files * chore: lol lets add the trailing commas Co-authored-by: Anurag Hazra <hazru.anurag@gmail.com>
116 lines
3.4 KiB
JavaScript
116 lines
3.4 KiB
JavaScript
const theme = require("../themes/index");
|
|
const fs = require("fs");
|
|
|
|
const TARGET_FILE = "./themes/README.md";
|
|
const REPO_CARD_LINKS_FLAG = "<!-- REPO_CARD_LINKS -->";
|
|
const STAT_CARD_LINKS_FLAG = "<!-- STATS_CARD_LINKS -->";
|
|
|
|
const STAT_CARD_TABLE_FLAG = "<!-- STATS_CARD_TABLE -->";
|
|
const REPO_CARD_TABLE_FLAG = "<!-- REPO_CARD_TABLE -->";
|
|
|
|
const THEME_TEMPLATE = `## Available Themes
|
|
|
|
<!-- DO NOT EDIT THIS FILE DIRECTLY -->
|
|
|
|
With inbuilt themes you can customize the look of the card without doing any manual customization.
|
|
|
|
Use \`?theme=THEME_NAME\` parameter like so :-
|
|
|
|
\`\`\`md
|
|
![Anurag's github stats](https://github-readme-stats.vercel.app/api?username=anuraghazra&theme=dark&show_icons=true)
|
|
\`\`\`
|
|
|
|
## Stats
|
|
|
|
> These themes work both for the Stats Card and Repo Card.
|
|
|
|
| | | |
|
|
| :--: | :--: | :--: |
|
|
${STAT_CARD_TABLE_FLAG}
|
|
|
|
## Repo Card
|
|
|
|
> These themes work both for the Stats Card and Repo Card.
|
|
|
|
| | | |
|
|
| :--: | :--: | :--: |
|
|
${REPO_CARD_TABLE_FLAG}
|
|
|
|
${STAT_CARD_LINKS_FLAG}
|
|
|
|
${REPO_CARD_LINKS_FLAG}
|
|
|
|
|
|
[add-theme]: https://github.com/anuraghazra/github-readme-stats/edit/master/themes/index.js
|
|
|
|
Wanted to add a new theme? Consider reading the [contribution guidelines](../CONTRIBUTING.md#themes-contribution) :D
|
|
`;
|
|
|
|
const createRepoMdLink = (theme) => {
|
|
return `\n[${theme}_repo]: https://github-readme-stats.vercel.app/api/pin/?username=anuraghazra&repo=github-readme-stats&cache_seconds=86400&theme=${theme}`;
|
|
};
|
|
const createStatMdLink = (theme) => {
|
|
return `\n[${theme}]: https://github-readme-stats.vercel.app/api?username=anuraghazra&show_icons=true&hide=contribs,prs&cache_seconds=86400&theme=${theme}`;
|
|
};
|
|
|
|
const generateLinks = (fn) => {
|
|
return Object.keys(theme)
|
|
.map((name) => fn(name))
|
|
.join("");
|
|
};
|
|
|
|
const createTableItem = ({ link, label, isRepoCard }) => {
|
|
if (!link || !label) return "";
|
|
return `\`${label}\` ![${link}][${link}${isRepoCard ? "_repo" : ""}]`;
|
|
};
|
|
const generateTable = ({ isRepoCard }) => {
|
|
const rows = [];
|
|
const themes = Object.keys(theme).filter(
|
|
(name) => name !== (!isRepoCard ? "default_repocard" : "default"),
|
|
);
|
|
|
|
for (let i = 0; i < themes.length; i += 3) {
|
|
const one = themes[i];
|
|
const two = themes[i + 1];
|
|
const three = themes[i + 2];
|
|
|
|
let tableItem1 = createTableItem({ link: one, label: one, isRepoCard });
|
|
let tableItem2 = createTableItem({ link: two, label: two, isRepoCard });
|
|
let tableItem3 = createTableItem({ link: three, label: three, isRepoCard });
|
|
|
|
if (three === undefined) {
|
|
tableItem3 = `[Add your theme][add-theme]`;
|
|
}
|
|
rows.push(`| ${tableItem1} | ${tableItem2} | ${tableItem3} |`);
|
|
|
|
// if it's the last row & the row has no empty space push a new row
|
|
if (three && i + 3 === themes.length) {
|
|
rows.push(`| [Add your theme][add-theme] | | |`);
|
|
}
|
|
}
|
|
|
|
return rows.join("\n");
|
|
};
|
|
|
|
const buildReadme = () => {
|
|
return THEME_TEMPLATE.split("\n")
|
|
.map((line) => {
|
|
if (line.includes(REPO_CARD_LINKS_FLAG)) {
|
|
return generateLinks(createRepoMdLink);
|
|
}
|
|
if (line.includes(STAT_CARD_LINKS_FLAG)) {
|
|
return generateLinks(createStatMdLink);
|
|
}
|
|
if (line.includes(REPO_CARD_TABLE_FLAG)) {
|
|
return generateTable({ isRepoCard: true });
|
|
}
|
|
if (line.includes(STAT_CARD_TABLE_FLAG)) {
|
|
return generateTable({ isRepoCard: false });
|
|
}
|
|
return line;
|
|
})
|
|
.join("\n");
|
|
};
|
|
|
|
fs.writeFileSync(TARGET_FILE, buildReadme());
|