2026-04-11 15:59:14 +08:00
|
|
|
<script setup lang="ts">
|
2026-04-12 23:59:18 +08:00
|
|
|
import { renameSession } from '@/api/sessions'
|
2026-04-13 00:52:34 +08:00
|
|
|
import { useChatStore, type Session } from '@/stores/chat'
|
2026-04-12 23:59:18 +08:00
|
|
|
import { NButton, NDropdown, NInput, NModal, NPopconfirm, NTooltip, useMessage } from 'naive-ui'
|
2026-04-13 00:52:34 +08:00
|
|
|
import { computed, nextTick, ref, watch } from 'vue'
|
2026-04-12 23:59:18 +08:00
|
|
|
import ChatInput from './ChatInput.vue'
|
|
|
|
|
import MessageList from './MessageList.vue'
|
2026-04-11 15:59:14 +08:00
|
|
|
|
|
|
|
|
const chatStore = useChatStore()
|
|
|
|
|
const message = useMessage()
|
|
|
|
|
|
|
|
|
|
const showSessions = ref(true)
|
2026-04-12 23:59:18 +08:00
|
|
|
const showRenameModal = ref(false)
|
|
|
|
|
const renameValue = ref('')
|
|
|
|
|
const renameSessionId = ref<string | null>(null)
|
|
|
|
|
const renameInputRef = ref<InstanceType<typeof NInput> | null>(null)
|
2026-04-13 00:52:34 +08:00
|
|
|
const collapsedGroups = ref<Set<string>>(new Set())
|
2026-04-11 15:59:14 +08:00
|
|
|
|
2026-04-13 01:11:07 +08:00
|
|
|
const sourceLabel: Record<string, string> = {
|
|
|
|
|
telegram: 'Telegram',
|
|
|
|
|
api_server: 'API Server',
|
|
|
|
|
cli: 'CLI',
|
|
|
|
|
discord: 'Discord',
|
|
|
|
|
slack: 'Slack',
|
|
|
|
|
matrix: 'Matrix',
|
|
|
|
|
whatsapp: 'WhatsApp',
|
|
|
|
|
signal: 'Signal',
|
|
|
|
|
email: 'Email',
|
|
|
|
|
sms: 'SMS',
|
|
|
|
|
dingtalk: 'DingTalk',
|
|
|
|
|
feishu: 'Feishu',
|
|
|
|
|
wecom: 'WeCom',
|
|
|
|
|
weixin: 'WeChat',
|
|
|
|
|
bluebubbles: 'iMessage',
|
|
|
|
|
mattermost: 'Mattermost',
|
|
|
|
|
cron: 'Cron',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getSourceLabel(source?: string): string {
|
|
|
|
|
if (!source) return ''
|
|
|
|
|
return sourceLabel[source] || source
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 00:52:34 +08:00
|
|
|
// Source sort order: api_server first, cron last, others alphabetical
|
|
|
|
|
function sourceSortKey(source: string): number {
|
|
|
|
|
if (source === 'api_server') return -1
|
|
|
|
|
if (source === 'cron') return 999
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Group sessions by source, with sort order
|
|
|
|
|
interface SessionGroup {
|
|
|
|
|
source: string
|
|
|
|
|
label: string
|
|
|
|
|
sessions: Session[]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const groupedSessions = computed<SessionGroup[]>(() => {
|
|
|
|
|
const all = [...chatStore.sessions].sort((a, b) => b.createdAt - a.createdAt)
|
|
|
|
|
|
|
|
|
|
const map = new Map<string, Session[]>()
|
|
|
|
|
for (const s of all) {
|
|
|
|
|
const key = s.source || ''
|
|
|
|
|
if (!map.has(key)) map.set(key, [])
|
|
|
|
|
map.get(key)!.push(s)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const keys = [...map.keys()].sort((a, b) => {
|
|
|
|
|
const ka = sourceSortKey(a)
|
|
|
|
|
const kb = sourceSortKey(b)
|
|
|
|
|
if (ka !== kb) return ka - kb
|
|
|
|
|
return a.localeCompare(b)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return keys.map(key => ({
|
|
|
|
|
source: key,
|
|
|
|
|
label: key ? getSourceLabel(key) : 'Other',
|
|
|
|
|
sessions: map.get(key)!,
|
|
|
|
|
}))
|
2026-04-11 15:59:14 +08:00
|
|
|
})
|
|
|
|
|
|
2026-04-13 00:52:34 +08:00
|
|
|
function toggleGroup(source: string) {
|
|
|
|
|
const isExpanded = !collapsedGroups.value.has(source)
|
|
|
|
|
if (isExpanded) {
|
|
|
|
|
collapsedGroups.value = new Set([...collapsedGroups.value, source])
|
|
|
|
|
} else {
|
|
|
|
|
collapsedGroups.value = new Set(
|
|
|
|
|
groupedSessions.value.map(g => g.source).filter(s => s !== source)
|
|
|
|
|
)
|
|
|
|
|
// Auto-select the first session in the expanded group
|
|
|
|
|
const group = groupedSessions.value.find(g => g.source === source)
|
|
|
|
|
if (group?.sessions.length) {
|
|
|
|
|
chatStore.switchSession(group.sessions[0].id)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Default: expand only the first group, collapse the rest
|
|
|
|
|
watch(groupedSessions, (groups) => {
|
|
|
|
|
if (collapsedGroups.value.size > 0) return
|
|
|
|
|
collapsedGroups.value = new Set(groups.map(g => g.source))
|
|
|
|
|
}, { once: true })
|
|
|
|
|
|
2026-04-12 23:59:18 +08:00
|
|
|
const activeSessionTitle = computed(() =>
|
|
|
|
|
chatStore.activeSession?.title || 'New Chat',
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const activeSessionSource = computed(() =>
|
|
|
|
|
chatStore.activeSession?.source || '',
|
2026-04-11 15:59:14 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
function handleNewChat() {
|
|
|
|
|
chatStore.newChat()
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 23:59:18 +08:00
|
|
|
function copySessionId(id?: string) {
|
|
|
|
|
const sessionId = id || chatStore.activeSessionId
|
|
|
|
|
if (sessionId) {
|
|
|
|
|
navigator.clipboard.writeText(sessionId)
|
2026-04-11 15:59:14 +08:00
|
|
|
message.success('Copied')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleDeleteSession(id: string) {
|
|
|
|
|
chatStore.deleteSession(id)
|
|
|
|
|
message.success('Session deleted')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatTime(ts: number) {
|
|
|
|
|
const d = new Date(ts)
|
|
|
|
|
const now = new Date()
|
|
|
|
|
const isToday = d.toDateString() === now.toDateString()
|
|
|
|
|
if (isToday) return d.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })
|
|
|
|
|
return d.toLocaleDateString([], { month: 'short', day: 'numeric' })
|
|
|
|
|
}
|
2026-04-12 23:59:18 +08:00
|
|
|
|
|
|
|
|
// Context menu
|
|
|
|
|
const contextMenuOptions = [
|
|
|
|
|
{ label: 'Rename', key: 'rename' },
|
|
|
|
|
{ label: 'Copy Session ID', key: 'copy-id' },
|
|
|
|
|
]
|
|
|
|
|
const contextSessionId = ref<string | null>(null)
|
|
|
|
|
|
|
|
|
|
function handleContextMenu(e: MouseEvent, sessionId: string) {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
contextSessionId.value = sessionId
|
|
|
|
|
showContextMenu.value = true
|
|
|
|
|
contextMenuX.value = e.clientX
|
|
|
|
|
contextMenuY.value = e.clientY
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const showContextMenu = ref(false)
|
|
|
|
|
const contextMenuX = ref(0)
|
|
|
|
|
const contextMenuY = ref(0)
|
|
|
|
|
|
|
|
|
|
function handleContextMenuSelect(key: string) {
|
|
|
|
|
showContextMenu.value = false
|
|
|
|
|
if (!contextSessionId.value) return
|
|
|
|
|
if (key === 'copy-id') {
|
|
|
|
|
copySessionId(contextSessionId.value)
|
|
|
|
|
} else if (key === 'rename') {
|
|
|
|
|
const session = chatStore.sessions.find(s => s.id === contextSessionId.value)
|
|
|
|
|
renameSessionId.value = contextSessionId.value
|
|
|
|
|
renameValue.value = session?.title || ''
|
|
|
|
|
showRenameModal.value = true
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
renameInputRef.value?.focus()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleClickOutside() {
|
|
|
|
|
showContextMenu.value = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function handleRenameConfirm() {
|
|
|
|
|
if (!renameSessionId.value || !renameValue.value.trim()) return
|
|
|
|
|
const ok = await renameSession(renameSessionId.value, renameValue.value.trim())
|
|
|
|
|
if (ok) {
|
|
|
|
|
const session = chatStore.sessions.find(s => s.id === renameSessionId.value)
|
|
|
|
|
if (session) session.title = renameValue.value.trim()
|
|
|
|
|
if (chatStore.activeSession?.id === renameSessionId.value) {
|
|
|
|
|
chatStore.activeSession.title = renameValue.value.trim()
|
|
|
|
|
}
|
|
|
|
|
message.success('Renamed')
|
|
|
|
|
} else {
|
|
|
|
|
message.error('Rename failed')
|
|
|
|
|
}
|
|
|
|
|
showRenameModal.value = false
|
|
|
|
|
}
|
2026-04-11 15:59:14 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="chat-panel">
|
|
|
|
|
<!-- Session List -->
|
|
|
|
|
<aside class="session-list" :class="{ collapsed: !showSessions }">
|
|
|
|
|
<div class="session-list-header">
|
|
|
|
|
<span v-if="showSessions" class="session-list-title">Sessions</span>
|
|
|
|
|
<NButton quaternary size="tiny" @click="handleNewChat" circle>
|
|
|
|
|
<template #icon>
|
|
|
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>
|
|
|
|
|
</template>
|
|
|
|
|
</NButton>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="showSessions" class="session-items">
|
2026-04-13 00:52:34 +08:00
|
|
|
<div v-if="chatStore.isLoadingSessions && chatStore.sessions.length === 0" class="session-loading">Loading...</div>
|
|
|
|
|
<div v-else-if="chatStore.sessions.length === 0" class="session-empty">No sessions</div>
|
|
|
|
|
<template v-for="group in groupedSessions" :key="group.source">
|
|
|
|
|
<div class="session-group-header" @click="toggleGroup(group.source)">
|
|
|
|
|
<svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="group-chevron" :class="{ collapsed: collapsedGroups.has(group.source) }"><polyline points="9 18 15 12 9 6"/></svg>
|
|
|
|
|
<span class="session-group-label">{{ group.label }}</span>
|
|
|
|
|
<span class="session-group-count">{{ group.sessions.length }}</span>
|
2026-04-11 15:59:14 +08:00
|
|
|
</div>
|
2026-04-13 00:52:34 +08:00
|
|
|
<template v-if="!collapsedGroups.has(group.source)">
|
|
|
|
|
<button
|
|
|
|
|
v-for="s in group.sessions"
|
|
|
|
|
:key="s.id"
|
|
|
|
|
class="session-item"
|
|
|
|
|
:class="{ active: s.id === chatStore.activeSessionId }"
|
|
|
|
|
@click="chatStore.switchSession(s.id)"
|
|
|
|
|
@contextmenu="handleContextMenu($event, s.id)"
|
|
|
|
|
>
|
|
|
|
|
<div class="session-item-content">
|
|
|
|
|
<span class="session-item-title">{{ s.title }}</span>
|
|
|
|
|
<span class="session-item-meta">
|
|
|
|
|
<span v-if="s.model" class="session-item-model">{{ s.model }}</span>
|
|
|
|
|
<span class="session-item-time">{{ formatTime(s.createdAt) }}</span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<NPopconfirm
|
|
|
|
|
v-if="s.id !== chatStore.activeSessionId || chatStore.sessions.length > 1"
|
|
|
|
|
@positive-click="handleDeleteSession(s.id)"
|
|
|
|
|
>
|
|
|
|
|
<template #trigger>
|
|
|
|
|
<button class="session-item-delete" @click.stop>
|
|
|
|
|
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
|
|
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
Delete this session?
|
|
|
|
|
</NPopconfirm>
|
|
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
2026-04-11 15:59:14 +08:00
|
|
|
</div>
|
|
|
|
|
</aside>
|
|
|
|
|
|
2026-04-12 23:59:18 +08:00
|
|
|
<!-- Context Menu -->
|
|
|
|
|
<NDropdown
|
|
|
|
|
placement="bottom-start"
|
|
|
|
|
trigger="manual"
|
|
|
|
|
:x="contextMenuX"
|
|
|
|
|
:y="contextMenuY"
|
|
|
|
|
:options="contextMenuOptions"
|
|
|
|
|
:show="showContextMenu"
|
|
|
|
|
@select="handleContextMenuSelect"
|
|
|
|
|
@clickoutside="handleClickOutside"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- Rename Modal -->
|
|
|
|
|
<NModal
|
|
|
|
|
v-model:show="showRenameModal"
|
|
|
|
|
preset="dialog"
|
|
|
|
|
title="Rename Session"
|
|
|
|
|
positive-text="OK"
|
|
|
|
|
negative-text="Cancel"
|
|
|
|
|
@positive-click="handleRenameConfirm"
|
|
|
|
|
>
|
|
|
|
|
<NInput
|
|
|
|
|
ref="renameInputRef"
|
|
|
|
|
v-model:value="renameValue"
|
|
|
|
|
placeholder="Enter new title"
|
|
|
|
|
@keydown.enter="handleRenameConfirm"
|
|
|
|
|
/>
|
|
|
|
|
</NModal>
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
<!-- Chat Area -->
|
|
|
|
|
<div class="chat-main">
|
|
|
|
|
<header class="chat-header">
|
|
|
|
|
<div class="header-left">
|
|
|
|
|
<NButton quaternary size="small" @click="showSessions = !showSessions" circle>
|
|
|
|
|
<template #icon>
|
|
|
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/></svg>
|
|
|
|
|
</template>
|
|
|
|
|
</NButton>
|
2026-04-12 23:59:18 +08:00
|
|
|
<span class="header-session-title">{{ activeSessionTitle }}</span>
|
|
|
|
|
<span v-if="activeSessionSource" class="source-badge">{{ getSourceLabel(activeSessionSource) }}</span>
|
2026-04-12 23:23:50 +08:00
|
|
|
</div>
|
2026-04-11 15:59:14 +08:00
|
|
|
<div class="header-actions">
|
|
|
|
|
<NTooltip trigger="hover">
|
|
|
|
|
<template #trigger>
|
2026-04-12 23:59:18 +08:00
|
|
|
<NButton quaternary size="small" @click="copySessionId()" circle>
|
2026-04-11 15:59:14 +08:00
|
|
|
<template #icon>
|
|
|
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>
|
|
|
|
|
</template>
|
|
|
|
|
</NButton>
|
|
|
|
|
</template>
|
|
|
|
|
Copy Session ID
|
|
|
|
|
</NTooltip>
|
|
|
|
|
<NButton size="small" @click="handleNewChat">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>
|
|
|
|
|
</template>
|
|
|
|
|
New Chat
|
|
|
|
|
</NButton>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<MessageList />
|
|
|
|
|
<ChatInput />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
@use '@/styles/variables' as *;
|
|
|
|
|
|
|
|
|
|
.chat-panel {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-list {
|
|
|
|
|
width: 220px;
|
|
|
|
|
border-right: 1px solid $border-color;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
transition: width $transition-normal, opacity $transition-normal;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
|
width: 0;
|
|
|
|
|
border-right: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-list-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-list-title {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 00:52:34 +08:00
|
|
|
.session-group-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
padding: 6px 10px 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-chevron {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
transition: transform 0.15s ease;
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-group-label {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-group-count {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
.session-items {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 0 6px 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 21:33:04 +08:00
|
|
|
.session-loading,
|
|
|
|
|
.session-empty {
|
|
|
|
|
padding: 16px 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
.session-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
border-radius: $radius-sm;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: $text-secondary;
|
|
|
|
|
transition: all $transition-fast;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba($accent-primary, 0.06);
|
|
|
|
|
color: $text-primary;
|
|
|
|
|
|
|
|
|
|
.session-item-delete {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background: rgba($accent-primary, 0.1);
|
|
|
|
|
color: $text-primary;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-item-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-item-title {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-item-time {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: $text-muted;
|
2026-04-12 23:23:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-item-meta {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
2026-04-11 15:59:14 +08:00
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 23:23:50 +08:00
|
|
|
.session-item-model {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: $accent-primary;
|
|
|
|
|
background: rgba($accent-primary, 0.08);
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
max-width: 100px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
.session-item-delete {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
transition: all $transition-fast;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $error;
|
|
|
|
|
background: rgba($error, 0.1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-main {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-left {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
overflow: hidden;
|
2026-04-12 23:23:50 +08:00
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
.header-session-title {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: $text-primary;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 23:59:18 +08:00
|
|
|
.source-badge {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
background: rgba($text-muted, 0.12);
|
|
|
|
|
padding: 1px 7px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-11 15:59:14 +08:00
|
|
|
.header-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
</style>
|