2025-12-27 14:50:32 +08:00
|
|
|
<template>
|
|
|
|
|
<BaseToolCall :tool-call="toolCall" hide-params>
|
2025-12-28 01:00:12 +08:00
|
|
|
<template #header>
|
|
|
|
|
<div class="sep-header">
|
|
|
|
|
<span class="note">todo</span>
|
|
|
|
|
<span class="separator" v-if="query">|</span>
|
|
|
|
|
<span class="description">{{ query }}</span>
|
|
|
|
|
</div>
|
2025-12-27 14:50:32 +08:00
|
|
|
</template>
|
|
|
|
|
<template #result="{ resultContent }">
|
|
|
|
|
<div class="todo-list-result">
|
|
|
|
|
<div class="todo-list">
|
|
|
|
|
<div
|
|
|
|
|
v-for="(todo, index) in todoListData(resultContent)"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="todo-item"
|
|
|
|
|
>
|
|
|
|
|
<div class="todo-status">
|
|
|
|
|
<CheckCircleOutlined v-if="todo.status === 'completed'" class="icon completed" />
|
|
|
|
|
<SyncOutlined v-else-if="todo.status === 'in_progress'" class="icon in-progress" spin />
|
|
|
|
|
<ClockCircleOutlined v-else-if="todo.status === 'pending'" class="icon pending" />
|
|
|
|
|
<CloseCircleOutlined v-else-if="todo.status === 'cancelled'" class="icon cancelled" />
|
|
|
|
|
<QuestionCircleOutlined v-else class="icon unknown" />
|
|
|
|
|
</div>
|
|
|
|
|
<span class="todo-text">{{ todo.content }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="todoListData(resultContent).length === 0" class="no-results">
|
|
|
|
|
<p>暂无待办事项</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</BaseToolCall>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-12-28 01:00:12 +08:00
|
|
|
import { computed } from 'vue';
|
2025-12-27 14:50:32 +08:00
|
|
|
import BaseToolCall from '../BaseToolCall.vue';
|
|
|
|
|
import {
|
|
|
|
|
CheckCircleOutlined,
|
|
|
|
|
SyncOutlined,
|
|
|
|
|
ClockCircleOutlined,
|
|
|
|
|
CloseCircleOutlined,
|
|
|
|
|
QuestionCircleOutlined
|
|
|
|
|
} from '@ant-design/icons-vue';
|
|
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
toolCall: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-12-28 01:00:12 +08:00
|
|
|
const query = computed(() => {
|
|
|
|
|
// 1. Try to get status from result content (Priority)
|
|
|
|
|
const content = props.toolCall.tool_call_result?.content;
|
|
|
|
|
if (content) {
|
|
|
|
|
const list = todoListData(content);
|
|
|
|
|
if (list && list.length > 0) {
|
|
|
|
|
// 1. In Progress
|
|
|
|
|
const inProgress = list.find(item => item.status === 'in_progress');
|
|
|
|
|
if (inProgress) return `进行中: ${inProgress.content}`;
|
|
|
|
|
|
|
|
|
|
// 2. Pending
|
|
|
|
|
const pending = list.find(item => item.status === 'pending');
|
|
|
|
|
if (pending) return `待处理: ${pending.content}`;
|
|
|
|
|
|
|
|
|
|
// 3. Last item fallback
|
|
|
|
|
const last = list[list.length - 1];
|
|
|
|
|
return `更新: ${last.content}`;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 2. Fallback to args
|
|
|
|
|
const args = props.toolCall.args || props.toolCall.function?.arguments;
|
|
|
|
|
if (!args) return '';
|
|
|
|
|
let parsedArgs = args;
|
|
|
|
|
if (typeof args === 'string') {
|
|
|
|
|
try {
|
|
|
|
|
parsedArgs = JSON.parse(args);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (typeof parsedArgs === 'object') {
|
|
|
|
|
return parsedArgs.content || parsedArgs.action || parsedArgs.todo || '';
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
});
|
|
|
|
|
|
2025-12-27 14:50:32 +08:00
|
|
|
const parseData = (content) => {
|
|
|
|
|
if (typeof content === 'string') {
|
|
|
|
|
try {
|
|
|
|
|
return JSON.parse(content);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return content;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const todoListData = (content) => {
|
|
|
|
|
if (!content) return [];
|
|
|
|
|
const data = parseData(content);
|
|
|
|
|
|
|
|
|
|
// 1. Try from parsed data
|
|
|
|
|
if (data && typeof data === 'object') {
|
|
|
|
|
if (Array.isArray(data)) return data;
|
|
|
|
|
if (data.todos && Array.isArray(data.todos)) return data.todos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 2. Try parsing string if it matches specific pattern
|
|
|
|
|
if (typeof content === 'string') {
|
|
|
|
|
let str = content;
|
|
|
|
|
if (str.startsWith('Updated todo list to ')) {
|
|
|
|
|
str = str.replace('Updated todo list to ', '');
|
|
|
|
|
}
|
|
|
|
|
const items = [];
|
|
|
|
|
const contentRegex = /'content':\s*'((?:[^'\\]|\\.)*)'/;
|
|
|
|
|
const statusRegex = /'status':\s*'((?:[^'\\]|\\.)*)'/;
|
|
|
|
|
const dictRegex = /\{.*?\}/g;
|
|
|
|
|
const dictMatches = str.match(dictRegex);
|
|
|
|
|
if (dictMatches) {
|
|
|
|
|
for (const dictStr of dictMatches) {
|
|
|
|
|
const contentMatch = dictStr.match(contentRegex);
|
|
|
|
|
const statusMatch = dictStr.match(statusRegex);
|
|
|
|
|
if (contentMatch && statusMatch) {
|
|
|
|
|
items.push({
|
|
|
|
|
content: contentMatch[1].replace(/\\'/g, "'").replace(/\\\\/g, "\\"),
|
|
|
|
|
status: statusMatch[1]
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (items.length > 0) return items;
|
|
|
|
|
}
|
|
|
|
|
return [];
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.todo-list-result {
|
|
|
|
|
background: var(--gray-0);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
|
|
|
|
.todo-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.todo-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
background: var(--gray-25);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: 1px solid var(--gray-150);
|
|
|
|
|
|
|
|
|
|
.todo-status {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
|
|
&.completed { color: #52c41a; }
|
|
|
|
|
&.in-progress { color: #1890ff; }
|
|
|
|
|
&.pending { color: #faad14; }
|
|
|
|
|
&.cancelled { color: #ff4d4f; }
|
|
|
|
|
&.unknown { color: var(--gray-400); }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.todo-text {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
color: var(--gray-1000);
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
|
|
.todo-item.completed & {
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-results {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|