You've already forked iFlow-Settings-Editor-GUI
247 lines
6.4 KiB
Vue
247 lines
6.4 KiB
Vue
<template>
|
|
<section>
|
|
<div class="content-header">
|
|
<h1 class="content-title">{{ $t('api.title') }}</h1>
|
|
<p class="content-desc">{{ $t('api.description') }}</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-title">
|
|
<Exchange size="16" />
|
|
{{ $t('api.profileManagement') }}
|
|
<button class="btn btn-primary btn-sm" @click="$emit('create-profile')" style="margin-left: auto">
|
|
<Add size="14" />
|
|
{{ $t('api.newProfile') }}
|
|
</button>
|
|
</div>
|
|
<div class="profile-list">
|
|
<div v-for="profile in profiles" :key="profile.name" class="profile-item" :class="{ active: currentProfile === profile.name }" @click="$emit('select-profile', profile.name)">
|
|
<div class="profile-icon" :style="getProfileIconStyle(profile.name)">
|
|
<span class="profile-icon-text">{{ getProfileInitial(profile.name) }}</span>
|
|
</div>
|
|
<div class="profile-info">
|
|
<div class="profile-name">{{ profile.name }}</div>
|
|
<div class="profile-url">{{ getProfileUrl(profile.name) }}</div>
|
|
</div>
|
|
<div class="profile-status" v-if="currentProfile === profile.name">
|
|
<span class="status-badge">
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2">
|
|
<polyline points="3,8 6,11 13,4"></polyline>
|
|
</svg>
|
|
{{ $t('api.inUse') }}
|
|
</span>
|
|
</div>
|
|
<div class="profile-actions">
|
|
<button class="action-btn" @click.stop="$emit('edit-profile', profile.name)" :title="$t('api.edit')">
|
|
<Edit size="14" />
|
|
</button>
|
|
<button class="action-btn" @click.stop="$emit('duplicate-profile', profile.name)" :title="$t('api.duplicate')">
|
|
<Copy size="14" />
|
|
</button>
|
|
<button class="action-btn action-btn-danger" v-if="profile.name !== 'default'" @click.stop="$emit('delete-profile', profile.name)" :title="$t('api.delete')">
|
|
<Delete size="14" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Add, Edit, Delete, Exchange, Copy } from '@icon-park/vue-next'
|
|
|
|
const props = defineProps({
|
|
profiles: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
currentProfile: {
|
|
type: String,
|
|
default: 'default',
|
|
},
|
|
settings: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
defineEmits(['create-profile', 'select-profile', 'edit-profile', 'duplicate-profile', 'delete-profile'])
|
|
|
|
const profileColors = [
|
|
'linear-gradient(135deg, #f97316 0%, #fb923c 100%)',
|
|
'linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%)',
|
|
'linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%)',
|
|
'linear-gradient(135deg, #10b981 0%, #34d399 100%)',
|
|
'linear-gradient(135deg, #f43f5e 0%, #fb7185 100%)',
|
|
'linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%)',
|
|
]
|
|
|
|
const getProfileInitial = name => (name ? name.charAt(0).toUpperCase() : '?')
|
|
|
|
const getProfileUrl = name => {
|
|
if (!props.settings.apiProfiles || !props.settings.apiProfiles[name]) {
|
|
return ''
|
|
}
|
|
const profile = props.settings.apiProfiles[name]
|
|
return profile.baseUrl || ''
|
|
}
|
|
|
|
const getProfileIconStyle = name => {
|
|
if (name === 'default') {
|
|
return { background: 'linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%)' }
|
|
}
|
|
let hash = 0
|
|
for (let i = 0; i < name.length; i++) {
|
|
hash = name.charCodeAt(i) + ((hash << 5) - hash)
|
|
}
|
|
const index = Math.abs(hash) % profileColors.length
|
|
return { background: profileColors[index] }
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.profile-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
.profile-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 14px 16px;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
cursor: pointer;
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
animation: fadeIn 0.3s ease backwards;
|
|
}
|
|
.profile-item:nth-child(1) {
|
|
animation-delay: 0.02s;
|
|
}
|
|
.profile-item:nth-child(2) {
|
|
animation-delay: 0.04s;
|
|
}
|
|
.profile-item:nth-child(3) {
|
|
animation-delay: 0.06s;
|
|
}
|
|
.profile-item:nth-child(4) {
|
|
animation-delay: 0.08s;
|
|
}
|
|
.profile-item:nth-child(5) {
|
|
animation-delay: 0.1s;
|
|
}
|
|
.profile-item:hover {
|
|
background: var(--bg-tertiary);
|
|
border-color: var(--text-tertiary);
|
|
transform: translateX(4px);
|
|
}
|
|
.profile-item.active {
|
|
background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
|
|
box-shadow:
|
|
0 0 0 1px var(--accent),
|
|
0 4px 12px rgba(59, 130, 246, 0.15);
|
|
}
|
|
.profile-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.profile-icon-text {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: white;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.profile-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
margin-left: 14px;
|
|
}
|
|
.profile-name {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
letter-spacing: -0.01em;
|
|
}
|
|
.profile-url {
|
|
font-size: 12px;
|
|
color: var(--text-tertiary);
|
|
margin-top: 3px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.profile-status {
|
|
margin-left: 12px;
|
|
}
|
|
.status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 5px 10px;
|
|
background: rgba(59, 130, 246, 0.1);
|
|
color: var(--accent);
|
|
border-radius: 16px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
.status-badge svg {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
.profile-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-left: 12px;
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
.profile-item:hover .profile-actions,
|
|
.profile-item.active .profile-actions {
|
|
opacity: 1;
|
|
}
|
|
.action-btn {
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--text-tertiary);
|
|
cursor: pointer;
|
|
border-radius: var(--radius);
|
|
transition: all 0.2s ease;
|
|
}
|
|
.action-btn:hover {
|
|
background: var(--bg-hover);
|
|
color: var(--text-primary);
|
|
}
|
|
.action-btn.action-btn-danger:hover {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
color: var(--danger);
|
|
}
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(8px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
.btn-sm {
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
align-self: flex-end;
|
|
}
|
|
</style>
|