Skip to content

Add institutions, contributions, and third party information to the About window#229

Open
alexanderbock wants to merge 6 commits into
masterfrom
feature/about-page
Open

Add institutions, contributions, and third party information to the About window#229
alexanderbock wants to merge 6 commits into
masterfrom
feature/about-page

Conversation

@alexanderbock

Copy link
Copy Markdown
Member

Adds additional information into the About window. Stewarding institutions are now mentioned as well as contributors to the main repos (OpenSpace/OpenSpace, OpenSpace/Ghoul, and OpenSpace-WebGui). The contributors are sorted by numbre of contributions and contain the GitHub logo and a link to the GitHub page.
Also adds a new script that parses OpenSpace's THIRD_PARTY_LIBRARIES file to add that information to the About panel as well.

Before:

image

After:
image
image
image

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR expands the About modal to include stewarding institutions, GitHub contributors (across OpenSpace/OpenSpace, OpenSpace/Ghoul, and OpenSpace/OpenSpace-WebGui), and a third-party licenses section backed by a generated TypeScript data file.

Changes:

  • Adds a new Redux slice + async thunk to fetch and aggregate GitHub contributors across multiple repos.
  • Extends the About modal UI to render contributor avatars/links and third-party license details via collapsible sections.
  • Introduces a scripts/generateThirdParty.ts generator and its generated output (src/data/ThirdPartyDependencies.ts) plus new i18n strings.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 10 comments.

Show a summary per file
File Description
src/redux/store.ts Registers the new contributors reducer in the Redux store.
src/redux/contributors/contributorsSlice.ts Adds contributors slice state (contributors, status) wired to thunk lifecycle.
src/redux/contributors/contributorsMiddleware.ts Implements GitHub API fetching, pagination, and contribution aggregation.
src/components/About/About.tsx Updates About modal layout, triggers contributor fetch, and renders contributors + third-party licenses.
src/data/ThirdPartyDependencies.ts Adds generated third-party dependency metadata including full license texts.
scripts/generateThirdParty.ts Adds generator script to parse a markdown license file and emit ThirdPartyDependencies.ts.
public/locales/en/components.json Adds new About modal translation strings (institutions, contributors, third-party labels).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread src/redux/contributors/contributorsMiddleware.ts
Comment thread src/components/About/About.tsx
Comment thread src/components/About/About.tsx
Comment thread src/components/About/About.tsx Outdated
@@ -55,6 +80,66 @@ export function About({ opened, close }: Props) {
<Anchor href={'https://www.openspaceproject.com/'} target={'_blank'}>
Comment on lines +23 to +24
import fs from 'fs';
import path from 'path';
Comment thread scripts/generateThirdParty.ts Outdated
Comment on lines +126 to +130
const output = generateTypeScript(dependencies);

fs.mkdirSync(path.dirname(outputPath), { recursive: true });
fs.writeFileSync(outputPath, output, 'utf-8');

Comment on lines +1 to +4
// This file is auto-generated. Do not edit manually.
// To regenerate, run:
// npx tsx scripts/generateThirdParty.ts <path-to-license.md>

Comment on lines +17 to +20
import { Collapsable } from '@/components/Collapsable/Collapsable';
import { ThirdPartyDependencies } from '@/data/ThirdPartyDependencies';
import { getContributors } from '@/redux/contributors/contributorsMiddleware';
import { useAppDispatch, useAppSelector } from '@/redux/hooks';

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ehm.. Help?

alexanderbock and others added 5 commits June 25, 2026 01:39
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants