Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
59ee4215
Commit
59ee4215
authored
Jul 13, 2023
by
Joel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: entrance struct
parent
da82a11b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
2 deletions
+48
-2
page.tsx
web/app/(commonLayout)/explore/chat/page.tsx
+11
-0
index.tsx
web/app/components/explore/sidebar/index.tsx
+23
-2
index.tsx
web/app/components/explore/universal-chat/index.tsx
+12
-0
explore.en.ts
web/i18n/lang/explore.en.ts
+1
-0
explore.zh.ts
web/i18n/lang/explore.zh.ts
+1
-0
No files found.
web/app/(commonLayout)/explore/chat/page.tsx
0 → 100644
View file @
59ee4215
import
type
{
FC
}
from
'react'
import
React
from
'react'
import
UniversalChat
from
'@/app/components/explore/universal-chat'
const
Chat
:
FC
=
()
=>
{
return
(
<
UniversalChat
/>
)
}
export
default
React
.
memo
(
Chat
)
web/app/components/explore/sidebar/index.tsx
View file @
59ee4215
This diff is collapsed.
Click to expand it.
web/app/components/explore/universal-chat/index.tsx
0 → 100644
View file @
59ee4215
'use client'
import
type
{
FC
}
from
'react'
import
React
from
'react'
const
Chat
:
FC
=
()
=>
{
return
(
<
div
>
chat
</
div
>
)
}
export
default
React
.
memo
(
Chat
)
web/i18n/lang/explore.en.ts
View file @
59ee4215
...
...
@@ -2,6 +2,7 @@ const translation = {
title
:
'My Apps'
,
sidebar
:
{
discovery
:
'Discovery'
,
chat
:
'Chat'
,
workspace
:
'Workspace'
,
action
:
{
pin
:
'Pin'
,
...
...
web/i18n/lang/explore.zh.ts
View file @
59ee4215
...
...
@@ -2,6 +2,7 @@ const translation = {
title
:
'我的应用'
,
sidebar
:
{
discovery
:
'发现'
,
chat
:
'聊天'
,
workspace
:
'工作区'
,
action
:
{
pin
:
'置顶'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment