45 lines
2.1 KiB
Vue
45 lines
2.1 KiB
Vue
<script setup lang="ts">
|
|
import type { ToolCall } from '~/composables/useChat';
|
|
import Debug from './Debug.vue';
|
|
|
|
const props = defineProps<{
|
|
toolCall: Readonly<ToolCall>;
|
|
}>();
|
|
|
|
const deubgToolCallOpen = ref(false);
|
|
|
|
const toggleDebugToolCall = () => {
|
|
deubgToolCallOpen.value = !deubgToolCallOpen.value;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-2">
|
|
<div
|
|
class="select-none w-full @hover:bg-[var(--color-hover)] group rounded-lg p-1 flex justify-between items-center text-[--text-tertiary] transition-colors duration-200 ease-[cubic-bezier(0.5,_1,_0.89,_1)]">
|
|
<div class="flex items-center justify-between w-full">
|
|
<div class="flex items-center gap-1">
|
|
<div
|
|
class="w-[24px] h-[24px] flex-shrink-0 rounded-lg overflow-hidden bg-[var(--bg-surface)] flex items-center justify-center">
|
|
<span class="w-3 h-3" :class="{
|
|
'i-svg-spinners-180-ring-with-bg': toolCall.status === 'pending',
|
|
'i-mynaui-x-solid text-[#ff3b3b]': toolCall.status === 'failed',
|
|
'i-mynaui-tool': toolCall.status !== 'pending' && toolCall.status !== 'failed',
|
|
}"></span>
|
|
</div>
|
|
{{ toolCall.toolName }}
|
|
</div>
|
|
|
|
<div
|
|
class="flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity duration-200 ease-[cubic-bezier(0.5,_1,_0.89,_1)]">
|
|
<button @click="toggleDebugToolCall"
|
|
class="w-[24px] h-[24px] flex-shrink-0 rounded-lg overflow-hidden @hover:bg-[var(--color-hover)] flex items-center justify-center transition-colors duration-200 ease-[cubic-bezier(0.5,_1,_0.89,_1)]">
|
|
<span class="i-mynaui-search w-3 h-3 text-[var(--text-secondary)]"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Debug v-if="deubgToolCallOpen" :toolCall="toolCall" />
|
|
</div>
|
|
</template>
|