diff --git a/apps/jingrow/frontend/src/app/router/index.ts b/apps/jingrow/frontend/src/app/router/index.ts index 88d434d..34463b0 100644 --- a/apps/jingrow/frontend/src/app/router/index.ts +++ b/apps/jingrow/frontend/src/app/router/index.ts @@ -20,26 +20,6 @@ const router = createRouter({ name: 'Dashboard', component: () => import('../../views/Dashboard.vue') }, - { - path: 'agents', - name: 'AgentList', - component: () => import('../../views/agents/AgentList.vue') - }, - { - path: 'agents/:id', - name: 'AgentDetail', - component: () => import('../../views/agents/AgentDetail.vue') - }, - { - path: 'nodes', - name: 'NodeList', - component: () => import('../../views/nodes/NodeList.vue') - }, - { - path: 'nodes/:name', - name: 'NodeDetail', - component: () => import('../../views/nodes/NodeDetail.vue') - }, { path: 'local-jobs', name: 'LocalJobList', diff --git a/apps/jingrow/frontend/src/views/agents/AgentDetail.vue b/apps/jingrow/frontend/src/views/agents/AgentDetail.vue deleted file mode 100644 index 548c9ee..0000000 --- a/apps/jingrow/frontend/src/views/agents/AgentDetail.vue +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - {{ isNew ? t('Create Agent') : (agent?.agent_name || t('Agent Detail')) }} - {{ isNew ? t('Create a new AI agent') : t('View and manage agent settings') }} - - - - - - - {{ executing ? t('Executing...') : t('Execute') }} - - - - - - {{ t('Flow Builder') }} - - - - - - {{ t('Save') }} - - - - - - - - - - - - - - - {{ t('Name') }} - - - - {{ t('Status') }} - - - - {{ t('Enabled') }} - - - - {{ t('Progress') }} - - - - - - {{ t('Executions') }} - - - - {{ t('Trigger Mode') }} - - - - {{ t('Trigger Time') }} - - - - {{ t('Created At') }} - - - - {{ t('Updated At') }} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/jingrow/frontend/src/views/agents/AgentList.vue b/apps/jingrow/frontend/src/views/agents/AgentList.vue deleted file mode 100644 index cddcf6e..0000000 --- a/apps/jingrow/frontend/src/views/agents/AgentList.vue +++ /dev/null @@ -1,933 +0,0 @@ - - - - - {{ t('AI Agents') }} - {{ t('Manage and configure your AI agents workflows') }} - - - - - - - - - - - - - - - - - - - - {{ t('Create Agent') }} - - - - {{ t('Delete Selected') }} ({{ selectedAgents.length }}) - - - - - - - {{ t('Loading...') }} - - - - - - - - - - - {{ agent.agent_name || agent.name }} - {{ agent.name }} - - {{ t('Enabled') }} - {{ t('Disabled') }} - {{ t(agent.trigger_mode) }} - {{ t(agent.status) }} - - - - - - - - - - - - - - - - - - {{ t('Name') }} - {{ t('Enabled') }} - {{ t('Trigger Mode') }} - {{ t('Status') }} - {{ t('Actions') }} - - - - - - - - {{ agent.agent_name || agent.name }} - {{ agent.name }} - - - {{ t('Enabled') }} - {{ t('Disabled') }} - - - {{ t(agent.trigger_mode || '—') }} - - - {{ t(agent.status) }} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ t('Cancel') }} - {{ t('Update') }} - - - - - - - - \ No newline at end of file diff --git a/apps/jingrow/frontend/src/views/nodes/NodeDetail.vue b/apps/jingrow/frontend/src/views/nodes/NodeDetail.vue deleted file mode 100644 index e4aaf56..0000000 --- a/apps/jingrow/frontend/src/views/nodes/NodeDetail.vue +++ /dev/null @@ -1,721 +0,0 @@ - - - - - - - {{ t('Edit Schema') }} - - - {{ t('Save') }} - - - - - - - - - {{ t('Loading...') }} - - - - - {{ t('Node Metadata') }} - - - - {{ t('Node Type') }} - - - - {{ t('Node Label') }} - - - - {{ t('Node Icon') }} - - - - {{ t('Node Color') }} - - - - - - - - - {{ t('Status') }} - - - - {{ t('Node Group') }} - - - - {{ t('Node Component') }} - - - - {{ t('Node Description') }} - - - - - - - - - - {{ t('Node Schema') }} - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/jingrow/frontend/src/views/nodes/NodeList.vue b/apps/jingrow/frontend/src/views/nodes/NodeList.vue deleted file mode 100644 index 59a9456..0000000 --- a/apps/jingrow/frontend/src/views/nodes/NodeList.vue +++ /dev/null @@ -1,902 +0,0 @@ - - - - - {{ t('Node Management') }} - {{ t('Manage and configure your AI node components') }} - - - - - - - - - - - - - - - - - - - - - - - - - - {{ t('Create Node') }} - - - - {{ t('Delete Selected') }} ({{ selectedNodes.length }}) - - - - - - - {{ t('Loading...') }} - - - - - - - - - - - - - - {{ node.title || node.type }} - {{ node.description || '—' }} - - {{ node.category }} - {{ t(node.status) }} - - - - - - - - - - - - - - - - - - {{ t('Icon') }} - {{ t('Name') }} - {{ t('Type') }} - {{ t('Category') }} - {{ t('Status') }} - {{ t('Actions') }} - - - - - - - - - - - - - {{ node.title || node.type }} - {{ node.description || '—' }} - - {{ node.type }} - - {{ node.category }} - - - {{ t(node.status) }} - - - - - - - - - - - - - - - - - - - - - -
{{ isNew ? t('Create a new AI agent') : t('View and manage agent settings') }}
{{ t('Manage and configure your AI agents workflows') }}
{{ t('Manage and configure your AI node components') }}