mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 13:49:45 +08:00
18 lines
479 B
TypeScript
18 lines
479 B
TypeScript
import type { AppMode } from '@/types/app'
|
|
|
|
export const getRedirection = (
|
|
isCurrentWorkspaceEditor: boolean,
|
|
app: { id: string, mode: AppMode },
|
|
redirectionFunc: (href: string) => void,
|
|
) => {
|
|
if (!isCurrentWorkspaceEditor) {
|
|
redirectionFunc(`/app/${app.id}/overview`)
|
|
}
|
|
else {
|
|
if (app.mode === 'workflow' || app.mode === 'advanced-chat')
|
|
redirectionFunc(`/app/${app.id}/workflow`)
|
|
else
|
|
redirectionFunc(`/app/${app.id}/configuration`)
|
|
}
|
|
}
|