[PR #198] [MERGED] Feat/explore #22366

Closed
opened 2026-02-21 20:18:48 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/198
Author: @iamjoel
Created: 5/25/2023
Status: Merged
Merged: 5/25/2023
Merged by: @iamjoel

Base: mainHead: feat/explore


📝 Commits (10+)

📊 Changes

38 files changed (+1312 additions, -97 deletions)

View changed files

📝 web/app/(commonLayout)/apps/Apps.tsx (+8 -0)
web/app/(commonLayout)/explore/apps/page.tsx (+8 -0)
web/app/(commonLayout)/explore/installed/[appId]/page.tsx (+15 -0)
web/app/(commonLayout)/explore/layout.tsx (+16 -0)
📝 web/app/(shareLayout)/chat/[token]/page.tsx (+2 -4)
📝 web/app/components/app/text-generate/item/index.tsx (+11 -5)
web/app/components/explore/app-card/index.tsx (+65 -0)
web/app/components/explore/app-card/style.module.css (+20 -0)
web/app/components/explore/app-list/index.tsx (+130 -0)
web/app/components/explore/app-list/style.module.css (+17 -0)
web/app/components/explore/category.tsx (+48 -0)
web/app/components/explore/create-app-modal/index.tsx (+86 -0)
web/app/components/explore/create-app-modal/style.module.css (+36 -0)
web/app/components/explore/index.tsx (+51 -0)
web/app/components/explore/installed-app/index.tsx (+37 -0)
web/app/components/explore/item-operation/index.tsx (+60 -0)
web/app/components/explore/item-operation/style.module.css (+31 -0)
web/app/components/explore/sidebar/app-nav-item/index.tsx (+73 -0)
web/app/components/explore/sidebar/app-nav-item/style.module.css (+17 -0)
web/app/components/explore/sidebar/index.tsx (+128 -0)

...and 18 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/langgenius/dify/pull/198 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 5/25/2023 **Status:** ✅ Merged **Merged:** 5/25/2023 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/explore` --- ### 📝 Commits (10+) - [`878ee6e`](https://github.com/langgenius/dify/commit/878ee6ef226fdcdaf38ad2fa52a720b2923a5dda) chore: temp - [`32d2888`](https://github.com/langgenius/dify/commit/32d2888628ce02557d9fd05434b5d8d2ea4afc46) feat: explore sidebar - [`6fdb1ee`](https://github.com/langgenius/dify/commit/6fdb1ee902dee0bb1670670be4a063b467f266a0) feat: explore app list ui - [`899159c`](https://github.com/langgenius/dify/commit/899159c92a12299e03293b44400fd6ed579fdf5b) feat: categroy list - [`392a66b`](https://github.com/langgenius/dify/commit/392a66be98301bf5fbe5126f1c3e926710fe350a) feat: explore i18n - [`fe1caa2`](https://github.com/langgenius/dify/commit/fe1caa2644d79cd6b9f66970c4e10bb67038e488) feat: sidebar navs highlight - [`0790ee5`](https://github.com/langgenius/dify/commit/0790ee532d7fc876f288238929e47bcbf25f3a06) feat: top nav add explore - [`2558a61`](https://github.com/langgenius/dify/commit/2558a61b28f6427e9acbcaeb2b9ed4425342cae5) Merge branch 'main' into feat/explore - [`b46f67e`](https://github.com/langgenius/dify/commit/b46f67ed672f572cbaeb5a0b9c88d9ede002ce5d) feat: option btn - [`4ad1bb7`](https://github.com/langgenius/dify/commit/4ad1bb7c83d98827f32c4e479d396bc6e246f887) feat: handle add to workspace and customize ### 📊 Changes **38 files changed** (+1312 additions, -97 deletions) <details> <summary>View changed files</summary> 📝 `web/app/(commonLayout)/apps/Apps.tsx` (+8 -0) ➕ `web/app/(commonLayout)/explore/apps/page.tsx` (+8 -0) ➕ `web/app/(commonLayout)/explore/installed/[appId]/page.tsx` (+15 -0) ➕ `web/app/(commonLayout)/explore/layout.tsx` (+16 -0) 📝 `web/app/(shareLayout)/chat/[token]/page.tsx` (+2 -4) 📝 `web/app/components/app/text-generate/item/index.tsx` (+11 -5) ➕ `web/app/components/explore/app-card/index.tsx` (+65 -0) ➕ `web/app/components/explore/app-card/style.module.css` (+20 -0) ➕ `web/app/components/explore/app-list/index.tsx` (+130 -0) ➕ `web/app/components/explore/app-list/style.module.css` (+17 -0) ➕ `web/app/components/explore/category.tsx` (+48 -0) ➕ `web/app/components/explore/create-app-modal/index.tsx` (+86 -0) ➕ `web/app/components/explore/create-app-modal/style.module.css` (+36 -0) ➕ `web/app/components/explore/index.tsx` (+51 -0) ➕ `web/app/components/explore/installed-app/index.tsx` (+37 -0) ➕ `web/app/components/explore/item-operation/index.tsx` (+60 -0) ➕ `web/app/components/explore/item-operation/style.module.css` (+31 -0) ➕ `web/app/components/explore/sidebar/app-nav-item/index.tsx` (+73 -0) ➕ `web/app/components/explore/sidebar/app-nav-item/style.module.css` (+17 -0) ➕ `web/app/components/explore/sidebar/index.tsx` (+128 -0) _...and 18 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>
yindo added the pull-request label 2026-02-21 20:18:48 -05:00
yindo closed this issue 2026-02-21 20:18:48 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22366