feat: refactor plugin market interaction and migrate to LangBot Space

- Replace plugin detail dialog with hover buttons interaction
- Add "Install" and "View Details" hover buttons on plugin cards
- Remove PluginDetailDialog component
- Update plugin marketplace URL format to /market/{author}/{plugin}
- Redirect all plugin detail views to LangBot Space
- Add i18n support for 4 languages (zh-Hans, en-US, zh-Hant, ja-JP)
- Optimize hover overlay styles for light/dark theme

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Junyan Qin
2025-11-21 14:23:22 +08:00
parent 6c03a1dd31
commit 37296be67e
8 changed files with 83 additions and 464 deletions
+1 -1
View File
@@ -82,6 +82,6 @@ export class CloudServiceClient extends BaseHttpClient {
}
public getPluginMarketplaceURL(author: string, name: string): string {
return `${this.baseURL}/market?author=${author}&plugin=${name}`;
return `https://space.langbot.app/market/${author}/${name}`;
}
}