- DataTable组件操作列自适应 - 优化各种Modal弹窗 - 统一API调用方式(AbortSignal) - 添加全局订阅状态管理 - 优化各管理视图的交互和布局 - 修复国际化翻译问题
582 lines
20 KiB
Vue
582 lines
20 KiB
Vue
<template>
|
|
<BaseDialog
|
|
:show="show"
|
|
:title="t('admin.accounts.reAuthorizeAccount')"
|
|
width="wide"
|
|
@close="handleClose"
|
|
>
|
|
<div v-if="account" class="space-y-4">
|
|
<!-- Account Info -->
|
|
<div
|
|
class="rounded-lg border border-gray-200 bg-gray-50 p-4 dark:border-dark-600 dark:bg-dark-700"
|
|
>
|
|
<div class="flex items-center gap-3">
|
|
<div
|
|
:class="[
|
|
'flex h-10 w-10 items-center justify-center rounded-lg bg-gradient-to-br',
|
|
isOpenAI
|
|
? 'from-green-500 to-green-600'
|
|
: isGemini
|
|
? 'from-blue-500 to-blue-600'
|
|
: 'from-orange-500 to-orange-600'
|
|
]"
|
|
>
|
|
<svg
|
|
class="h-5 w-5 text-white"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<span class="block font-semibold text-gray-900 dark:text-white">{{
|
|
account.name
|
|
}}</span>
|
|
<span class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{
|
|
isOpenAI
|
|
? t('admin.accounts.openaiAccount')
|
|
: isGemini
|
|
? t('admin.accounts.geminiAccount')
|
|
: t('admin.accounts.claudeCodeAccount')
|
|
}}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Add Method Selection (Claude only) -->
|
|
<fieldset v-if="isAnthropic" class="border-0 p-0">
|
|
<legend class="input-label">{{ t('admin.accounts.oauth.authMethod') }}</legend>
|
|
<div class="mt-2 flex gap-4">
|
|
<label class="flex cursor-pointer items-center">
|
|
<input
|
|
v-model="addMethod"
|
|
type="radio"
|
|
value="oauth"
|
|
class="mr-2 text-primary-600 focus:ring-primary-500"
|
|
/>
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">{{
|
|
t('admin.accounts.types.oauth')
|
|
}}</span>
|
|
</label>
|
|
<label class="flex cursor-pointer items-center">
|
|
<input
|
|
v-model="addMethod"
|
|
type="radio"
|
|
value="setup-token"
|
|
class="mr-2 text-primary-600 focus:ring-primary-500"
|
|
/>
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">{{
|
|
t('admin.accounts.setupTokenLongLived')
|
|
}}</span>
|
|
</label>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<!-- Gemini OAuth Type Selection -->
|
|
<fieldset v-if="isGemini" class="border-0 p-0">
|
|
<legend class="input-label">{{ t('admin.accounts.oauth.gemini.oauthTypeLabel') }}</legend>
|
|
<div class="mt-2 grid grid-cols-2 gap-3">
|
|
<button
|
|
type="button"
|
|
@click="handleSelectGeminiOAuthType('code_assist')"
|
|
:class="[
|
|
'flex items-center gap-3 rounded-lg border-2 p-3 text-left transition-all',
|
|
geminiOAuthType === 'code_assist'
|
|
? 'border-blue-500 bg-blue-50 dark:bg-blue-900/20'
|
|
: 'border-gray-200 hover:border-blue-300 dark:border-dark-600 dark:hover:border-blue-700'
|
|
]"
|
|
>
|
|
<div
|
|
:class="[
|
|
'flex h-8 w-8 items-center justify-center rounded-lg',
|
|
geminiOAuthType === 'code_assist'
|
|
? 'bg-blue-500 text-white'
|
|
: 'bg-gray-100 text-gray-500 dark:bg-dark-600 dark:text-gray-400'
|
|
]"
|
|
>
|
|
<svg
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M2.25 15a4.5 4.5 0 004.5 4.5H18a3.75 3.75 0 001.332-7.257 3 3 0 00-3.758-3.848 5.25 5.25 0 00-10.233 2.33A4.502 4.502 0 002.25 15z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<span class="block text-sm font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.accounts.types.codeAssist')
|
|
}}</span>
|
|
<span class="block text-xs font-medium text-blue-600 dark:text-blue-400">{{
|
|
t('admin.accounts.oauth.gemini.needsProjectId')
|
|
}}</span>
|
|
<span class="text-xs text-gray-500 dark:text-gray-400">{{
|
|
t('admin.accounts.oauth.gemini.needsProjectIdDesc')
|
|
}}</span>
|
|
</div>
|
|
</button>
|
|
|
|
<button
|
|
type="button"
|
|
:disabled="!geminiAIStudioOAuthEnabled"
|
|
@click="handleSelectGeminiOAuthType('ai_studio')"
|
|
:class="[
|
|
'flex items-center gap-3 rounded-lg border-2 p-3 text-left transition-all',
|
|
!geminiAIStudioOAuthEnabled ? 'cursor-not-allowed opacity-60' : '',
|
|
geminiOAuthType === 'ai_studio'
|
|
? 'border-purple-500 bg-purple-50 dark:bg-purple-900/20'
|
|
: 'border-gray-200 hover:border-purple-300 dark:border-dark-600 dark:hover:border-purple-700'
|
|
]"
|
|
>
|
|
<div
|
|
:class="[
|
|
'flex h-8 w-8 items-center justify-center rounded-lg',
|
|
geminiOAuthType === 'ai_studio'
|
|
? 'bg-purple-500 text-white'
|
|
: 'bg-gray-100 text-gray-500 dark:bg-dark-600 dark:text-gray-400'
|
|
]"
|
|
>
|
|
<svg
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<span class="block text-sm font-medium text-gray-900 dark:text-white">AI Studio</span>
|
|
<span class="block text-xs font-medium text-purple-600 dark:text-purple-400">{{
|
|
t('admin.accounts.oauth.gemini.noProjectIdNeeded')
|
|
}}</span>
|
|
<span class="text-xs text-gray-500 dark:text-gray-400">{{
|
|
t('admin.accounts.oauth.gemini.noProjectIdNeededDesc')
|
|
}}</span>
|
|
<div v-if="!geminiAIStudioOAuthEnabled" class="group relative mt-1 inline-block">
|
|
<span
|
|
class="rounded bg-amber-100 px-2 py-0.5 text-xs text-amber-700 dark:bg-amber-900/30 dark:text-amber-300"
|
|
>
|
|
{{ t('admin.accounts.oauth.gemini.aiStudioNotConfiguredShort') }}
|
|
</span>
|
|
<div
|
|
class="pointer-events-none absolute left-0 top-full z-10 mt-2 w-[28rem] rounded-md border border-amber-200 bg-amber-50 px-3 py-2 text-xs text-amber-800 opacity-0 shadow-sm transition-opacity group-hover:opacity-100 dark:border-amber-700 dark:bg-amber-900/40 dark:text-amber-200"
|
|
>
|
|
{{ t('admin.accounts.oauth.gemini.aiStudioNotConfiguredTip') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<OAuthAuthorizationFlow
|
|
ref="oauthFlowRef"
|
|
:add-method="addMethod"
|
|
:auth-url="currentAuthUrl"
|
|
:session-id="currentSessionId"
|
|
:loading="currentLoading"
|
|
:error="currentError"
|
|
:show-help="isAnthropic"
|
|
:show-proxy-warning="isAnthropic"
|
|
:show-cookie-option="isAnthropic"
|
|
:allow-multiple="false"
|
|
:method-label="t('admin.accounts.inputMethod')"
|
|
:platform="isOpenAI ? 'openai' : isGemini ? 'gemini' : 'anthropic'"
|
|
:show-project-id="isGemini && geminiOAuthType === 'code_assist'"
|
|
@generate-url="handleGenerateUrl"
|
|
@cookie-auth="handleCookieAuth"
|
|
/>
|
|
|
|
</div>
|
|
|
|
<template #footer>
|
|
<div v-if="account" class="flex justify-between gap-3">
|
|
<button type="button" class="btn btn-secondary" @click="handleClose">
|
|
{{ t('common.cancel') }}
|
|
</button>
|
|
<button
|
|
v-if="isManualInputMethod"
|
|
type="button"
|
|
:disabled="!canExchangeCode"
|
|
class="btn btn-primary"
|
|
@click="handleExchangeCode"
|
|
>
|
|
<svg
|
|
v-if="currentLoading"
|
|
class="-ml-1 mr-2 h-4 w-4 animate-spin"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{
|
|
currentLoading
|
|
? t('admin.accounts.oauth.verifying')
|
|
: t('admin.accounts.oauth.completeAuth')
|
|
}}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</BaseDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, computed, watch } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useAppStore } from '@/stores/app'
|
|
import { adminAPI } from '@/api/admin'
|
|
import {
|
|
useAccountOAuth,
|
|
type AddMethod,
|
|
type AuthInputMethod
|
|
} from '@/composables/useAccountOAuth'
|
|
import { useOpenAIOAuth } from '@/composables/useOpenAIOAuth'
|
|
import { useGeminiOAuth } from '@/composables/useGeminiOAuth'
|
|
import type { Account } from '@/types'
|
|
import BaseDialog from '@/components/common/BaseDialog.vue'
|
|
import OAuthAuthorizationFlow from './OAuthAuthorizationFlow.vue'
|
|
|
|
// Type for exposed OAuthAuthorizationFlow component
|
|
// Note: defineExpose automatically unwraps refs, so we use the unwrapped types
|
|
interface OAuthFlowExposed {
|
|
authCode: string
|
|
oauthState: string
|
|
projectId: string
|
|
sessionKey: string
|
|
inputMethod: AuthInputMethod
|
|
reset: () => void
|
|
}
|
|
|
|
interface Props {
|
|
show: boolean
|
|
account: Account | null
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
const emit = defineEmits<{
|
|
close: []
|
|
reauthorized: []
|
|
}>()
|
|
|
|
const appStore = useAppStore()
|
|
const { t } = useI18n()
|
|
|
|
// OAuth composables - use both Claude and OpenAI
|
|
const claudeOAuth = useAccountOAuth()
|
|
const openaiOAuth = useOpenAIOAuth()
|
|
const geminiOAuth = useGeminiOAuth()
|
|
|
|
// Refs
|
|
const oauthFlowRef = ref<OAuthFlowExposed | null>(null)
|
|
|
|
// State
|
|
const addMethod = ref<AddMethod>('oauth')
|
|
const geminiOAuthType = ref<'code_assist' | 'ai_studio'>('code_assist')
|
|
const geminiAIStudioOAuthEnabled = ref(false)
|
|
|
|
// Computed - check if this is an OpenAI account
|
|
const isOpenAI = computed(() => props.account?.platform === 'openai')
|
|
const isGemini = computed(() => props.account?.platform === 'gemini')
|
|
const isAnthropic = computed(() => props.account?.platform === 'anthropic')
|
|
|
|
// Computed - current OAuth state based on platform
|
|
const currentAuthUrl = computed(() => {
|
|
if (isOpenAI.value) return openaiOAuth.authUrl.value
|
|
if (isGemini.value) return geminiOAuth.authUrl.value
|
|
return claudeOAuth.authUrl.value
|
|
})
|
|
const currentSessionId = computed(() => {
|
|
if (isOpenAI.value) return openaiOAuth.sessionId.value
|
|
if (isGemini.value) return geminiOAuth.sessionId.value
|
|
return claudeOAuth.sessionId.value
|
|
})
|
|
const currentLoading = computed(() => {
|
|
if (isOpenAI.value) return openaiOAuth.loading.value
|
|
if (isGemini.value) return geminiOAuth.loading.value
|
|
return claudeOAuth.loading.value
|
|
})
|
|
const currentError = computed(() => {
|
|
if (isOpenAI.value) return openaiOAuth.error.value
|
|
if (isGemini.value) return geminiOAuth.error.value
|
|
return claudeOAuth.error.value
|
|
})
|
|
|
|
// Computed
|
|
const isManualInputMethod = computed(() => {
|
|
// OpenAI always uses manual input (no cookie auth option)
|
|
return isOpenAI.value || isGemini.value || oauthFlowRef.value?.inputMethod === 'manual'
|
|
})
|
|
|
|
const canExchangeCode = computed(() => {
|
|
const authCode = oauthFlowRef.value?.authCode || ''
|
|
const sessionId = isOpenAI.value
|
|
? openaiOAuth.sessionId.value
|
|
: isGemini.value
|
|
? geminiOAuth.sessionId.value
|
|
: claudeOAuth.sessionId.value
|
|
const loading = isOpenAI.value
|
|
? openaiOAuth.loading.value
|
|
: isGemini.value
|
|
? geminiOAuth.loading.value
|
|
: claudeOAuth.loading.value
|
|
return authCode.trim() && sessionId && !loading
|
|
})
|
|
|
|
// Watchers
|
|
watch(
|
|
() => props.show,
|
|
(newVal) => {
|
|
if (newVal && props.account) {
|
|
// Initialize addMethod based on current account type (Claude only)
|
|
if (
|
|
isAnthropic.value &&
|
|
(props.account.type === 'oauth' || props.account.type === 'setup-token')
|
|
) {
|
|
addMethod.value = props.account.type as AddMethod
|
|
}
|
|
if (isGemini.value) {
|
|
const creds = (props.account.credentials || {}) as Record<string, unknown>
|
|
geminiOAuthType.value = creds.oauth_type === 'ai_studio' ? 'ai_studio' : 'code_assist'
|
|
}
|
|
if (isGemini.value) {
|
|
geminiOAuth.getCapabilities().then((caps) => {
|
|
geminiAIStudioOAuthEnabled.value = !!caps?.ai_studio_oauth_enabled
|
|
if (!geminiAIStudioOAuthEnabled.value && geminiOAuthType.value === 'ai_studio') {
|
|
geminiOAuthType.value = 'code_assist'
|
|
}
|
|
})
|
|
}
|
|
} else {
|
|
resetState()
|
|
}
|
|
}
|
|
)
|
|
|
|
// Methods
|
|
const resetState = () => {
|
|
addMethod.value = 'oauth'
|
|
geminiOAuthType.value = 'code_assist'
|
|
geminiAIStudioOAuthEnabled.value = false
|
|
claudeOAuth.resetState()
|
|
openaiOAuth.resetState()
|
|
geminiOAuth.resetState()
|
|
oauthFlowRef.value?.reset()
|
|
}
|
|
|
|
const handleSelectGeminiOAuthType = (oauthType: 'code_assist' | 'ai_studio') => {
|
|
if (oauthType === 'ai_studio' && !geminiAIStudioOAuthEnabled.value) {
|
|
appStore.showError(t('admin.accounts.oauth.gemini.aiStudioNotConfigured'))
|
|
return
|
|
}
|
|
geminiOAuthType.value = oauthType
|
|
}
|
|
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
const handleGenerateUrl = async () => {
|
|
if (!props.account) return
|
|
|
|
if (isOpenAI.value) {
|
|
await openaiOAuth.generateAuthUrl(props.account.proxy_id)
|
|
} else if (isGemini.value) {
|
|
const projectId = geminiOAuthType.value === 'code_assist' ? oauthFlowRef.value?.projectId : undefined
|
|
await geminiOAuth.generateAuthUrl(props.account.proxy_id, projectId, geminiOAuthType.value)
|
|
} else {
|
|
await claudeOAuth.generateAuthUrl(addMethod.value, props.account.proxy_id)
|
|
}
|
|
}
|
|
|
|
const handleExchangeCode = async () => {
|
|
if (!props.account) return
|
|
|
|
const authCode = oauthFlowRef.value?.authCode || ''
|
|
if (!authCode.trim()) return
|
|
|
|
if (isOpenAI.value) {
|
|
// OpenAI OAuth flow
|
|
const sessionId = openaiOAuth.sessionId.value
|
|
if (!sessionId) return
|
|
|
|
const tokenInfo = await openaiOAuth.exchangeAuthCode(
|
|
authCode.trim(),
|
|
sessionId,
|
|
props.account.proxy_id
|
|
)
|
|
if (!tokenInfo) return
|
|
|
|
// Build credentials and extra info
|
|
const credentials = openaiOAuth.buildCredentials(tokenInfo)
|
|
const extra = openaiOAuth.buildExtraInfo(tokenInfo)
|
|
|
|
try {
|
|
// Update account with new credentials
|
|
await adminAPI.accounts.update(props.account.id, {
|
|
type: 'oauth', // OpenAI OAuth is always 'oauth' type
|
|
credentials,
|
|
extra
|
|
})
|
|
|
|
// Clear error status after successful re-authorization
|
|
await adminAPI.accounts.clearError(props.account.id)
|
|
|
|
appStore.showSuccess(t('admin.accounts.reAuthorizedSuccess'))
|
|
emit('reauthorized')
|
|
handleClose()
|
|
} catch (error: any) {
|
|
openaiOAuth.error.value = error.response?.data?.detail || t('admin.accounts.oauth.authFailed')
|
|
appStore.showError(openaiOAuth.error.value)
|
|
}
|
|
} else if (isGemini.value) {
|
|
const sessionId = geminiOAuth.sessionId.value
|
|
if (!sessionId) return
|
|
|
|
const stateFromInput = oauthFlowRef.value?.oauthState || ''
|
|
const stateToUse = stateFromInput || geminiOAuth.state.value
|
|
if (!stateToUse) return
|
|
|
|
const tokenInfo = await geminiOAuth.exchangeAuthCode({
|
|
code: authCode.trim(),
|
|
sessionId,
|
|
state: stateToUse,
|
|
proxyId: props.account.proxy_id,
|
|
oauthType: geminiOAuthType.value
|
|
})
|
|
if (!tokenInfo) return
|
|
|
|
const credentials = geminiOAuth.buildCredentials(tokenInfo)
|
|
|
|
try {
|
|
await adminAPI.accounts.update(props.account.id, {
|
|
type: 'oauth',
|
|
credentials
|
|
})
|
|
await adminAPI.accounts.clearError(props.account.id)
|
|
appStore.showSuccess(t('admin.accounts.reAuthorizedSuccess'))
|
|
emit('reauthorized')
|
|
handleClose()
|
|
} catch (error: any) {
|
|
geminiOAuth.error.value = error.response?.data?.detail || t('admin.accounts.oauth.authFailed')
|
|
appStore.showError(geminiOAuth.error.value)
|
|
}
|
|
} else {
|
|
// Claude OAuth flow
|
|
const sessionId = claudeOAuth.sessionId.value
|
|
if (!sessionId) return
|
|
|
|
claudeOAuth.loading.value = true
|
|
claudeOAuth.error.value = ''
|
|
|
|
try {
|
|
const proxyConfig = props.account.proxy_id ? { proxy_id: props.account.proxy_id } : {}
|
|
const endpoint =
|
|
addMethod.value === 'oauth'
|
|
? '/admin/accounts/exchange-code'
|
|
: '/admin/accounts/exchange-setup-token-code'
|
|
|
|
const tokenInfo = await adminAPI.accounts.exchangeCode(endpoint, {
|
|
session_id: sessionId,
|
|
code: authCode.trim(),
|
|
...proxyConfig
|
|
})
|
|
|
|
const extra = claudeOAuth.buildExtraInfo(tokenInfo)
|
|
|
|
// Update account with new credentials and type
|
|
await adminAPI.accounts.update(props.account.id, {
|
|
type: addMethod.value, // Update type based on selected method
|
|
credentials: tokenInfo,
|
|
extra
|
|
})
|
|
|
|
// Clear error status after successful re-authorization
|
|
await adminAPI.accounts.clearError(props.account.id)
|
|
|
|
appStore.showSuccess(t('admin.accounts.reAuthorizedSuccess'))
|
|
emit('reauthorized')
|
|
handleClose()
|
|
} catch (error: any) {
|
|
claudeOAuth.error.value = error.response?.data?.detail || t('admin.accounts.oauth.authFailed')
|
|
appStore.showError(claudeOAuth.error.value)
|
|
} finally {
|
|
claudeOAuth.loading.value = false
|
|
}
|
|
}
|
|
}
|
|
|
|
const handleCookieAuth = async (sessionKey: string) => {
|
|
if (!props.account || isOpenAI.value) return
|
|
|
|
claudeOAuth.loading.value = true
|
|
claudeOAuth.error.value = ''
|
|
|
|
try {
|
|
const proxyConfig = props.account.proxy_id ? { proxy_id: props.account.proxy_id } : {}
|
|
const endpoint =
|
|
addMethod.value === 'oauth'
|
|
? '/admin/accounts/cookie-auth'
|
|
: '/admin/accounts/setup-token-cookie-auth'
|
|
|
|
const tokenInfo = await adminAPI.accounts.exchangeCode(endpoint, {
|
|
session_id: '',
|
|
code: sessionKey.trim(),
|
|
...proxyConfig
|
|
})
|
|
|
|
const extra = claudeOAuth.buildExtraInfo(tokenInfo)
|
|
|
|
// Update account with new credentials and type
|
|
await adminAPI.accounts.update(props.account.id, {
|
|
type: addMethod.value, // Update type based on selected method
|
|
credentials: tokenInfo,
|
|
extra
|
|
})
|
|
|
|
// Clear error status after successful re-authorization
|
|
await adminAPI.accounts.clearError(props.account.id)
|
|
|
|
appStore.showSuccess(t('admin.accounts.reAuthorizedSuccess'))
|
|
emit('reauthorized')
|
|
handleClose()
|
|
} catch (error: any) {
|
|
claudeOAuth.error.value =
|
|
error.response?.data?.detail || t('admin.accounts.oauth.cookieAuthFailed')
|
|
} finally {
|
|
claudeOAuth.loading.value = false
|
|
}
|
|
}
|
|
</script>
|