1
0
Commit Graph

27 Commits

Author SHA1 Message Date
f8c37a1f73 rm claude 2025-07-18 15:38:09 +09:00
3e3244c852 fix gh-actions 2025-07-18 15:36:48 +09:00
syui
416a71d3f0 Merge pull request #1 from aisyui/react-migration
React migration
2025-07-18 15:34:17 +09:00
c050a639af Fix GitHub Actions warning for setup-node inputs
- Move 'ref' and 'fetch-depth' parameters from setup-node to checkout action
- These parameters belong to actions/checkout, not actions/setup-node
- Resolves "Unexpected input(s)" warnings in workflow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:28:56 +09:00
2cd1a62e5d Fix SPA routing for GitHub Pages deployment
- Update 404.html with React content instead of Vue
- Add automatic 404.html copy to build script
- Fix URL typo in og:url meta tag
- Ensure client-side routing works for user pages

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:26:05 +09:00
510899a0dd Update README.md for React migration
- Update tech stack information (Vue2 → React 18)
- Add comprehensive project overview
- Include new features list
- Update development commands (yarn → npm)
- Add build instructions
- Document Node.js 20+ recommendation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:20:28 +09:00
56fa9c3ab6 Fix TypeScript errors for GitHub Actions build
- Add 'normal' skill type to SKILL_ICONS constant
- Fix parseInt undefined error in UserPage by providing default value
- Ensure type safety for Card skill property
- API URL correctly configured for production (https://api.syui.ai/)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:19:26 +09:00
8b27c8e829 Remove Vue-related files and empty directories
- Delete vue.config.js
- Delete src/App.vue
- Delete src/main.js (old Vue entry point)
- Remove empty directories: src/bin, src/context
- Complete cleanup after React migration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:18:08 +09:00
8aec22cc86 Fix page width overflow issue and remove Favorite Card heading
- Reduce excessive scale values in animations (scale(50) → scale(3), scale(8) → scale(2.5))
- Add overflow: hidden to card-wrapper to prevent animation overflow
- Remove "Favorite Card" heading from user page
- Fix page width expanding issue caused by large-scale animations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:12:31 +09:00
4862afe8d6 Move favorite card display to user page only
- Remove favorite cards section from homepage
- Add favorite card display to individual user pages
- Display user's favorite card at the top of their card grid
- Center the favorite card with "Favorite Card" heading
- Skip display when fav is '0' or card not found

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:07:31 +09:00
0d745e2174 Add favorite cards display on homepage
- Fetch and display users' favorite cards at the top of homepage
- Filter users with fav \!== '0' to avoid empty display
- Use useQueries to fetch multiple users' cards in parallel
- Display cards in grid layout with owner username below
- Cards are shown above the user list section

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:06:21 +09:00
00b4b8f21e Add user ID button before username on homepage
- Display user ID in small button format before username
- Layout: [1] syui format with proper spacing
- Use flex layout with gap for alignment

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:01:50 +09:00
b4ed1951d0 Remove user info display section from homepage
- Remove model icon, fav star, git link, and ID buttons from user listings
- Keep only username links for cleaner appearance
- Simplify homepage user display

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:58:47 +09:00
a5a12a4310 Fix didEnable reference error
- Remove remaining didEnable condition and DID display functionality
- Fixes ReferenceError: didEnable is not defined

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:58:09 +09:00
251984d1e7 Simplify navigation to show only help button
- Remove en, fav, ten, did, all, seven buttons that showed same content
- Keep only help button for documentation access
- Remove unused didEnable state and useState import

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:54:05 +09:00
2f1f881ce1 Fix button styling to restore proper appearance
- Remove overly aggressive CSS reset that was making buttons invisible
- Keep font inheritance but preserve .btn class background and border styling
- Fix 'did' button appearing white/invisible

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:49:37 +09:00
2029720006 Fix holographic card effects by removing Tailwind CSS overrides
- Replace CARD_STATUS_COLORS Tailwind classes with CSS pattern/color effects in CardGrid.tsx
- Add card-effects.css import to CardGrid component
- Remove unused CARD_STATUS_COLORS constant
- Now special status cards display proper holographic effects instead of solid gradients

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:46:02 +09:00
3ebc0c8aef Complete React migration improvements and fixes
- Fix button styling inconsistency for 'did' button using proper CSS reset
- Replace Font Awesome spinners with yellow color (#fff700) for consistency
- Implement holographic card effects for special status cards (yui, first, etc.)
- Add cached user data loading from /json/users.json for faster initial load
- Fix loading states to show spinners instead of "User not found" messages
- Clean up debug console logs for production readiness
- Add proper error handling for API calls
- Update CSS imports to use local files from /pkg/ directory

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 14:43:38 +09:00
e7f39a1894 Migrate from Vue2 to React with modern tech stack
- Replace Vue2 + Vue CLI with Vite + React 18 + TypeScript
- Add Tailwind CSS for efficient styling
- Implement clean component architecture:
  - Split 1000+ line Vue component into focused React components
  - Add proper type safety with TypeScript
  - Use React Query for efficient data fetching
- Update GitHub Actions for React build pipeline
- Maintain existing functionality and design
- Support Node.js 23 with .nvmrc

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 13:44:54 +09:00
980e9c1259 Convert public directory from submodule to normal directory
- Remove public from git submodule tracking
- Add all public directory contents as regular files
- Fixes GitHub Actions error: "No url found for submodule path 'public' in .gitmodules"

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 13:04:46 +09:00
8f27cbb77b fix site 2025-07-18 12:57:37 +09:00
c4d225e643 add img 2025-07-18 12:55:06 +09:00
bc712a933b iframe load 2025-07-18 12:55:06 +09:00
dc0ec301e7 add planet 2024-08-03 18:58:40 +09:00
a1a7ddd202 add seven 2024-04-23 17:38:19 +09:00
1b34aa294c add file 2024-04-11 07:53:10 +09:00
ad8daeb7d1 first 2023-04-01 04:51:52 +09:00