2026-04-13 12:15:16 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { computed } from 'vue'
|
|
|
|
|
import { NButton, useMessage, useDialog } from 'naive-ui'
|
2026-04-16 08:38:18 +08:00
|
|
|
import type { AvailableModelGroup } from '@/api/hermes/system'
|
|
|
|
|
import { useModelsStore } from '@/stores/hermes/models'
|
2026-04-13 15:15:14 +08:00
|
|
|
import { useI18n } from 'vue-i18n'
|
2026-04-13 12:15:16 +08:00
|
|
|
|
|
|
|
|
const props = defineProps<{ provider: AvailableModelGroup }>()
|
|
|
|
|
|
2026-04-13 15:15:14 +08:00
|
|
|
const { t } = useI18n()
|
2026-04-13 12:15:16 +08:00
|
|
|
const modelsStore = useModelsStore()
|
|
|
|
|
const message = useMessage()
|
|
|
|
|
const dialog = useDialog()
|
|
|
|
|
|
|
|
|
|
const isCustom = computed(() => props.provider.provider.startsWith('custom:'))
|
|
|
|
|
const displayName = computed(() => props.provider.label)
|
|
|
|
|
|
|
|
|
|
async function handleDelete() {
|
|
|
|
|
dialog.warning({
|
2026-04-13 15:15:14 +08:00
|
|
|
title: t('models.deleteProvider'),
|
|
|
|
|
content: t('models.deleteConfirm', { name: displayName.value }),
|
|
|
|
|
positiveText: t('common.delete'),
|
|
|
|
|
negativeText: t('common.cancel'),
|
2026-04-13 12:15:16 +08:00
|
|
|
onPositiveClick: async () => {
|
|
|
|
|
try {
|
|
|
|
|
await modelsStore.removeProvider(props.provider.provider)
|
2026-04-13 15:15:14 +08:00
|
|
|
message.success(t('models.providerDeleted'))
|
2026-04-13 12:15:16 +08:00
|
|
|
} catch (e: any) {
|
|
|
|
|
message.error(e.message)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="provider-card">
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
<h3 class="provider-name">{{ displayName }}</h3>
|
|
|
|
|
<span class="type-badge" :class="isCustom ? 'custom' : 'builtin'">
|
2026-04-13 15:15:14 +08:00
|
|
|
{{ isCustom ? t('models.customType') : t('models.builtIn') }}
|
2026-04-13 12:15:16 +08:00
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="info-row">
|
2026-04-13 15:15:14 +08:00
|
|
|
<span class="info-label">{{ t('models.provider') }}</span>
|
2026-04-13 12:15:16 +08:00
|
|
|
<code class="info-value mono">{{ provider.provider }}</code>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-row">
|
2026-04-13 15:15:14 +08:00
|
|
|
<span class="info-label">{{ t('models.baseUrl') }}</span>
|
2026-04-13 12:15:16 +08:00
|
|
|
<code class="info-value mono">{{ provider.base_url }}</code>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="card-actions">
|
2026-04-13 15:15:14 +08:00
|
|
|
<NButton size="tiny" quaternary type="error" @click="handleDelete">{{ t('common.delete') }}</NButton>
|
2026-04-13 12:15:16 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
@use '@/styles/variables' as *;
|
|
|
|
|
|
|
|
|
|
.provider-card {
|
|
|
|
|
background-color: $bg-card;
|
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
|
border-radius: $radius-md;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
transition: border-color $transition-fast;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2026-04-16 23:13:04 +08:00
|
|
|
border-color: rgba(var(--accent-primary-rgb), 0.3);
|
2026-04-13 12:15:16 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.provider-name {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: $text-primary;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
max-width: 70%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.type-badge {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
|
|
&.builtin {
|
2026-04-16 23:13:04 +08:00
|
|
|
background: rgba(var(--accent-primary-rgb), 0.12);
|
2026-04-13 12:15:16 +08:00
|
|
|
color: $accent-primary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.custom {
|
2026-04-16 23:13:04 +08:00
|
|
|
background: rgba(var(--success-rgb), 0.12);
|
2026-04-13 12:15:16 +08:00
|
|
|
color: $success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
margin-bottom: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: $text-muted;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-value {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: $text-secondary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mono {
|
|
|
|
|
font-family: $font-code;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border-top: 1px solid $border-light;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|