[PR #1] Web view #1

Open
opened 2025-10-13 00:23:36 +00:00 by franpcode · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/FranP-code/format_twitter_projects_accounts_tweets/pull/1
Author: @FranP-code
Created: 7/13/2025
Status: 🔄 Open

Base: mainHead: web


📝 Commits (10+)

  • d0299ca Init astro app
  • 5872e1b Added package-lock.json
  • 02ce586 Updated pnpm-lock.yaml
  • 2670c92 Fix table alignment and spacing issues
  • 0daa218 Fix table alignment and text overflow issues
  • fd939e1 Updated projects.astro
  • a1620f3 Updated projects.astro
  • 5c43da2 Add function to extract best URL from tweet metadata and include it in project entries
  • 74f550f Refactor ProjectsView to use updated Tabs component and adjust loading strategy
  • ab4fd7f Implement code changes to enhance functionality and improve performance

📊 Changes

28 files changed (+12808 additions, -1 deletions)

View changed files

astro-app/.gitignore (+24 -0)
astro-app/README.md (+13 -0)
astro-app/astro.config.mjs (+14 -0)
astro-app/components.json (+21 -0)
astro-app/package-lock.json (+6867 -0)
astro-app/package.json (+36 -0)
astro-app/pnpm-lock.yaml (+4250 -0)
astro-app/public/favicon.svg (+9 -0)
astro-app/src/components/Button.astro (+19 -0)
astro-app/src/components/ProjectCard.tsx (+152 -0)
astro-app/src/components/ProjectsTable.tsx (+386 -0)
astro-app/src/components/ProjectsView.tsx (+199 -0)
astro-app/src/components/ThemeToggle.tsx (+37 -0)
astro-app/src/components/ui/button.tsx (+54 -0)
astro-app/src/components/ui/input.tsx (+25 -0)
astro-app/src/components/ui/select.tsx (+99 -0)
astro-app/src/components/ui/table.tsx (+104 -0)
astro-app/src/components/ui/tabs.tsx (+115 -0)
astro-app/src/layouts/main.astro (+16 -0)
astro-app/src/lib/csv-loader.ts (+67 -0)

...and 8 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/FranP-code/format_twitter_projects_accounts_tweets/pull/1 **Author:** [@FranP-code](https://github.com/FranP-code) **Created:** 7/13/2025 **Status:** 🔄 Open **Base:** `main` ← **Head:** `web` --- ### 📝 Commits (10+) - [`d0299ca`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/d0299ca1a16a4118cb87ac78aaadcf6f76983a80) Init astro app - [`5872e1b`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/5872e1b686a6c91fc7044a681445cdf5ab0c9d61) Added package-lock.json - [`02ce586`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/02ce586c6978b5c14cf2acf77541674bc58a42fc) Updated pnpm-lock.yaml - [`2670c92`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/2670c9277c8437eb544c1ac774e947d7f38f2fc2) Fix table alignment and spacing issues - [`0daa218`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/0daa2180721edc3ca801597d73b2aa853fdda5f0) Fix table alignment and text overflow issues - [`fd939e1`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/fd939e19c0b23514845816a9011c6bad0090ad02) Updated projects.astro - [`a1620f3`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/a1620f359120deee958fed08532cdee532faa007) Updated projects.astro - [`5c43da2`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/5c43da22e14cad754c72ab8b5a972ed42459e3bf) Add function to extract best URL from tweet metadata and include it in project entries - [`74f550f`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/74f550f3c23a630b75f682d411b282f40b8953f1) Refactor ProjectsView to use updated Tabs component and adjust loading strategy - [`ab4fd7f`](https://github.com/FranP-code/format_twitter_projects_accounts_tweets/commit/ab4fd7f879a7e12f30f1093733d533d7e44b5778) Implement code changes to enhance functionality and improve performance ### 📊 Changes **28 files changed** (+12808 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `astro-app/.gitignore` (+24 -0) ➕ `astro-app/README.md` (+13 -0) ➕ `astro-app/astro.config.mjs` (+14 -0) ➕ `astro-app/components.json` (+21 -0) ➕ `astro-app/package-lock.json` (+6867 -0) ➕ `astro-app/package.json` (+36 -0) ➕ `astro-app/pnpm-lock.yaml` (+4250 -0) ➕ `astro-app/public/favicon.svg` (+9 -0) ➕ `astro-app/src/components/Button.astro` (+19 -0) ➕ `astro-app/src/components/ProjectCard.tsx` (+152 -0) ➕ `astro-app/src/components/ProjectsTable.tsx` (+386 -0) ➕ `astro-app/src/components/ProjectsView.tsx` (+199 -0) ➕ `astro-app/src/components/ThemeToggle.tsx` (+37 -0) ➕ `astro-app/src/components/ui/button.tsx` (+54 -0) ➕ `astro-app/src/components/ui/input.tsx` (+25 -0) ➕ `astro-app/src/components/ui/select.tsx` (+99 -0) ➕ `astro-app/src/components/ui/table.tsx` (+104 -0) ➕ `astro-app/src/components/ui/tabs.tsx` (+115 -0) ➕ `astro-app/src/layouts/main.astro` (+16 -0) ➕ `astro-app/src/lib/csv-loader.ts` (+67 -0) _...and 8 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
franpcode added the
pull-request
label 2025-10-13 00:23:36 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: franpcode/format_twitter_projects_accounts_tweets#1
No description provided.