mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 10:44:12 +00:00
## Summary - Use video helper popover in top up modal - Update copy for video helper - Misc style changes ## Changes - **What**: /en/main.json, TopUpCreditsDialogContent.vue, PricingTable.vue - **Breaking**: <!-- Any breaking changes (if none, remove this line) --> - **Dependencies**: <!-- New dependencies (if none, remove this line) --> ## Screenshots (if applicable) <img width="2226" height="1322" alt="image" src="https://github.com/user-attachments/assets/e8419c73-f26c-4d1c-84a6-10cdd10937c4" /> <img width="2880" height="1624" alt="image" src="https://github.com/user-attachments/assets/b27c3665-5eae-4983-a40b-f88705bf53be" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7867-Feat-cloud-pricing-plan-template-details-2e16d73d365081599610e47151b3783b) by [Unito](https://www.unito.io)
194 lines
5.8 KiB
Vue
194 lines
5.8 KiB
Vue
<template>
|
|
<div class="flex w-112 flex-col gap-8 p-8">
|
|
<!-- Header -->
|
|
<div class="flex flex-col gap-4">
|
|
<h1 class="text-2xl font-semibold text-base-foreground m-0">
|
|
{{
|
|
isInsufficientCredits
|
|
? $t('credits.topUp.addMoreCreditsToRun')
|
|
: $t('credits.topUp.addMoreCredits')
|
|
}}
|
|
</h1>
|
|
<div v-if="isInsufficientCredits" class="flex flex-col gap-2">
|
|
<p class="text-sm text-muted-foreground m-0 w-96">
|
|
{{ $t('credits.topUp.insufficientWorkflowMessage') }}
|
|
</p>
|
|
</div>
|
|
<div v-else class="flex flex-col gap-2">
|
|
<p class="text-sm text-muted-foreground m-0">
|
|
{{ $t('credits.topUp.creditsDescription') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Current Balance Section -->
|
|
<div class="flex flex-col gap-4">
|
|
<div class="flex items-baseline gap-2">
|
|
<UserCredit text-class="text-3xl font-bold" show-credits-only />
|
|
<span class="text-sm text-muted-foreground">{{
|
|
$t('credits.creditsAvailable')
|
|
}}</span>
|
|
</div>
|
|
<div v-if="formattedRenewalDate" class="text-sm text-muted-foreground">
|
|
{{ $t('credits.refreshes', { date: formattedRenewalDate }) }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Credit Options Section -->
|
|
<div class="flex flex-col gap-4">
|
|
<span class="text-sm text-muted-foreground">
|
|
{{ $t('credits.topUp.howManyCredits') }}
|
|
</span>
|
|
<div class="flex flex-col gap-2">
|
|
<CreditTopUpOption
|
|
v-for="option in creditOptions"
|
|
:key="option.credits"
|
|
:credits="option.credits"
|
|
:description="option.description"
|
|
:selected="selectedCredits === option.credits"
|
|
@select="selectedCredits = option.credits"
|
|
/>
|
|
</div>
|
|
<div class="flex flex-row items-center gap-2 group pt-2">
|
|
<i
|
|
class="pi pi-question-circle text-xs text-muted-foreground group-hover:text-base-foreground"
|
|
/>
|
|
<span
|
|
class="text-sm font-normal text-muted-foreground cursor-pointer group-hover:text-base-foreground"
|
|
@click="togglePopover"
|
|
>
|
|
{{ t('subscription.videoTemplateBasedCredits') }}
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Buy Button -->
|
|
<Button
|
|
:disabled="!selectedCredits || loading"
|
|
:loading="loading"
|
|
variant="primary"
|
|
:class="cn('w-full', (!selectedCredits || loading) && 'opacity-30')"
|
|
@click="handleBuy"
|
|
>
|
|
{{ $t('credits.topUp.buy') }}
|
|
</Button>
|
|
</div>
|
|
<Popover
|
|
ref="popover"
|
|
append-to="body"
|
|
:auto-z-index="true"
|
|
:base-z-index="1000"
|
|
:dismissable="true"
|
|
:close-on-escape="true"
|
|
unstyled
|
|
:pt="{
|
|
root: {
|
|
class:
|
|
'rounded-lg border border-interface-stroke bg-interface-panel-surface shadow-lg p-4 max-w-xs'
|
|
}
|
|
}"
|
|
>
|
|
<div class="flex flex-col gap-2">
|
|
<p class="text-sm text-base-foreground leading-normal">
|
|
{{ t('subscription.videoEstimateExplanation') }}
|
|
</p>
|
|
<a
|
|
href="https://cloud.comfy.org/?template=video_wan2_2_14B_fun_camera"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="text-sm text-azure-600 hover:text-azure-400 no-underline flex gap-1"
|
|
>
|
|
<span class="underline">
|
|
{{ t('subscription.videoEstimateTryTemplate') }}
|
|
</span>
|
|
<span class="no-underline" v-html="'→'"></span>
|
|
</a>
|
|
</div>
|
|
</Popover>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Popover } from 'primevue'
|
|
import { useToast } from 'primevue/usetoast'
|
|
import { ref } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { creditsToUsd } from '@/base/credits/comfyCredits'
|
|
import UserCredit from '@/components/common/UserCredit.vue'
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import { useFirebaseAuthActions } from '@/composables/auth/useFirebaseAuthActions'
|
|
import { useSubscription } from '@/platform/cloud/subscription/composables/useSubscription'
|
|
import { useTelemetry } from '@/platform/telemetry'
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
import CreditTopUpOption from './credit/CreditTopUpOption.vue'
|
|
|
|
interface CreditOption {
|
|
credits: number
|
|
description: string
|
|
}
|
|
|
|
const { isInsufficientCredits = false } = defineProps<{
|
|
isInsufficientCredits?: boolean
|
|
}>()
|
|
|
|
const { formattedRenewalDate } = useSubscription()
|
|
|
|
const { t } = useI18n()
|
|
const authActions = useFirebaseAuthActions()
|
|
const telemetry = useTelemetry()
|
|
const toast = useToast()
|
|
|
|
const selectedCredits = ref<number | null>(null)
|
|
const loading = ref(false)
|
|
|
|
const popover = ref()
|
|
|
|
const togglePopover = (event: Event) => {
|
|
popover.value.toggle(event)
|
|
}
|
|
|
|
const creditOptions: CreditOption[] = [
|
|
{
|
|
credits: 1055, // $5.00
|
|
description: t('credits.topUp.videosEstimate', { count: 30 })
|
|
},
|
|
{
|
|
credits: 2110, // $10.00
|
|
description: t('credits.topUp.videosEstimate', { count: 60 })
|
|
},
|
|
{
|
|
credits: 4220, // $20.00
|
|
description: t('credits.topUp.videosEstimate', { count: 120 })
|
|
},
|
|
{
|
|
credits: 10550, // $50.00
|
|
description: t('credits.topUp.videosEstimate', { count: 301 })
|
|
}
|
|
]
|
|
|
|
const handleBuy = async () => {
|
|
if (!selectedCredits.value) return
|
|
|
|
loading.value = true
|
|
try {
|
|
const usdAmount = creditsToUsd(selectedCredits.value)
|
|
telemetry?.trackApiCreditTopupButtonPurchaseClicked(usdAmount)
|
|
await authActions.purchaseCredits(usdAmount)
|
|
} catch (error) {
|
|
console.error('Purchase failed:', error)
|
|
|
|
const errorMessage =
|
|
error instanceof Error ? error.message : t('credits.topUp.unknownError')
|
|
toast.add({
|
|
severity: 'error',
|
|
summary: t('credits.topUp.purchaseError'),
|
|
detail: t('credits.topUp.purchaseErrorDetail', { error: errorMessage }),
|
|
life: 5000
|
|
})
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
</script>
|