Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Netlify badge #2065

Merged
merged 3 commits into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import zh from "./zh";
import ja from "./ja";
import shared from "./shared";
import { transformerTwoslash } from "@shikijs/vitepress-twoslash";
import { ModuleKind, ModuleResolutionKind } from "typescript";
import { ModuleResolutionKind } from "typescript";

// https://vitepress.dev/reference/site-config
export default defineConfig({
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default defineConfig({
],
footer: {
message:
'Released under the <a href="https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT License</a>.',
'Released under the <a href="https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT License</a>. Powered by <a href="https://netlify.com">Netlify</a>.',
},
},
});
2 changes: 1 addition & 1 deletion docs/.vitepress/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const shared: UserConfig = {
themeConfig: {
siteTitle: false,
logo: "/assets/openapi-ts.svg",
outline: 'deep',
outline: "deep",
search: {
provider: "algolia",
options: {
Expand Down
24 changes: 23 additions & 1 deletion docs/.vitepress/theme/CustomLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const { Layout } = DefaultTheme;
</a></template
>

<!-- Silver sponsor logos -->
<!-- Sidebar sponsors -->
<template #sidebar-nav-after>
<div class="sidenav-sponsors">
<h5>Gold Sponsors</h5>
Expand All @@ -58,6 +58,9 @@ const { Layout } = DefaultTheme;
</a>
</li>
</ul>
<p class="sidebar-hosting">
Powered by <a href="https://netlify.com">Netlify</a>
</p>
</div>
</template>
</Layout>
Expand Down Expand Up @@ -147,6 +150,25 @@ const { Layout } = DefaultTheme;
height: 3rem;
width: auto;
}

.sidebar-hosting {
color: var(--vp-c-text-3);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.0625em;
margin-block-start: 2rem;
text-transform: uppercase;

a {
color: var(--vp-c-brand-1);
text-decoration: underline;

&:hover,
&:focus-visible {
color: var(--vp-c-brand-2);
}
}
}
</style>

<style>
Expand Down
29 changes: 12 additions & 17 deletions docs/scripts/update-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ const data = JSON.parse(fs.readFileSync(CONTRIBUTORS_JSON, "utf8"));

const ONE_WEEK = 1000 * 60 * 60 * 24;

const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
if (!GITHUB_TOKEN) {
throw new Error(
'GITHUB_TOKEN not set! Create a token with "read:user" scope and set as an environment variable.\nhttps://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic',
);
function getGitHubToken() {
const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
if (!GITHUB_TOKEN) {
throw new Error(
'GITHUB_TOKEN not set! Create a token with "read:user" scope and set as an environment variable.\nhttps://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic',
);
}
return GITHUB_TOKEN;
}

class UserFetchError extends Error {
Expand All @@ -37,7 +40,7 @@ async function fetchUserInfo(username) {
const res = await fetch(`https://api.github.com/users/${username}`, {
headers: {
Accept: "application/vnd.github+json",
Authorization: `Bearer ${GITHUB_TOKEN}`,
Authorization: `Bearer ${getGitHubToken()}`,
"X-GitHub-Api-Version": "2022-11-28",
},
});
Expand Down Expand Up @@ -189,19 +192,14 @@ const CONTRIBUTORS = {

async function main() {
let i = 0;
const total = Object.values(CONTRIBUTORS).reduce(
(total, next) => total + next.size,
0,
);
const total = Object.values(CONTRIBUTORS).reduce((total, next) => total + next.size, 0);
await Promise.all(
Object.entries(CONTRIBUTORS).map(async ([repo, contributors]) => {
data[repo] ??= [];
for (const username of [...contributors]) {
i++;
// skip profiles that have been updated within the past week
const { lastFetch } = data[repo].find(
(u) => u.username === username,
) ?? { lastFetch: 0 };
const { lastFetch } = data[repo].find((u) => u.username === username) ?? { lastFetch: 0 };
if (Date.now() - lastFetch < ONE_WEEK) {
// biome-ignore lint/suspicious/noConsoleLog: this is a script
console.log(`[${i}/${total}] (Skipped ${username})`);
Expand All @@ -219,10 +217,7 @@ async function main() {
upsert(data[repo], userData);
// biome-ignore lint/suspicious/noConsoleLog: this is a script
console.log(`[${i}/${total}] Updated for ${username}`);
fs.writeFileSync(
new URL("../data/contributors.json", import.meta.url),
JSON.stringify(data),
); // update file while fetching (sync happens safely in between fetches)
fs.writeFileSync(new URL("../data/contributors.json", import.meta.url), JSON.stringify(data)); // update file while fetching (sync happens safely in between fetches)
} catch (err) {
if (err instanceof UserFetchError && err.notFound) {
console.warn(`[${i}/${total}] (Skipped ${username}, not found)`);
Expand Down
Loading