fenghe-auction/app/components/stripe/CompletePage.vue
2025-04-10 15:47:40 +08:00

115 lines
5.7 KiB
Vue

<script setup>
import { onMounted, ref } from 'vue'
const stripe = Stripe("pk_test_51QfbSAAB1Vm8VfJq3AWsR4k2mZjnlF7XFrmlbc6XVXrtwXquAUfwzZmOFDbxMIAwqJBgqao8KLt2wmPc4vNOCTeo00WB78KtfV")
const statusIcon = ref('')
const statusText = ref('')
const intentId = ref('')
const intentStatus = ref('')
const viewDetailsUrl = ref('')
const iconColor = ref('')
const SuccessIcon = `<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4695 0.232963C15.8241 0.561287 15.8454 1.1149 15.5171 1.46949L6.14206 11.5945C5.97228 11.7778 5.73221 11.8799 5.48237 11.8748C5.23253 11.8698 4.99677 11.7582 4.83452 11.5681L0.459523 6.44311C0.145767 6.07557 0.18937 5.52327 0.556912 5.20951C0.924454 4.89575 1.47676 4.93936 1.79051 5.3069L5.52658 9.68343L14.233 0.280522C14.5613 -0.0740672 15.1149 -0.0953599 15.4695 0.232963Z" fill="white"/>
</svg>`
const ErrorIcon = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.25628 1.25628C1.59799 0.914573 2.15201 0.914573 2.49372 1.25628L8 6.76256L13.5063 1.25628C13.848 0.914573 14.402 0.914573 14.7437 1.25628C15.0854 1.59799 15.0854 2.15201 14.7437 2.49372L9.23744 8L14.7437 13.5063C15.0854 13.848 15.0854 14.402 14.7437 14.7437C14.402 15.0854 13.848 15.0854 13.5063 14.7437L8 9.23744L2.49372 14.7437C2.15201 15.0854 1.59799 15.0854 1.25628 14.7437C0.914573 14.402 0.914573 13.848 1.25628 13.5063L6.76256 8L1.25628 2.49372C0.914573 2.15201 0.914573 1.59799 1.25628 1.25628Z" fill="white"/>
</svg>`
const InfoIcon = `<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 1.5H4C2.61929 1.5 1.5 2.61929 1.5 4V10C1.5 11.3807 2.61929 12.5 4 12.5H10C11.3807 12.5 12.5 11.3807 12.5 10V4C12.5 2.61929 11.3807 1.5 10 1.5ZM4 0C1.79086 0 0 1.79086 0 4V10C0 12.2091 1.79086 14 4 14H10C12.2091 14 14 12.2091 14 10V4C14 1.79086 12.2091 0 10 0H4Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 7C5.25 6.58579 5.58579 6.25 6 6.25H7.25C7.66421 6.25 8 6.58579 8 7V10.5C8 10.9142 7.66421 11.25 7.25 11.25C6.83579 11.25 6.5 10.9142 6.5 10.5V7.75H6C5.58579 7.75 5.25 7.41421 5.25 7Z" fill="white"/>
<path d="M5.75 4C5.75 3.31075 6.31075 2.75 7 2.75C7.68925 2.75 8.25 3.31075 8.25 4C8.25 4.68925 7.68925 5.25 7 5.25C6.31075 5.25 5.75 4.68925 5.75 4Z" fill="white"/>
</svg>`
function setPaymentDetails(intent) {
let status = "Something went wrong, please try again."
let color = "#DF1B41"
let icon = ErrorIcon
if (!intent) {
setErrorState()
return
}
switch (intent.status) {
case "succeeded":
status = "Payment succeeded"
color = "#30B130"
icon = SuccessIcon
break
case "processing":
status = "Your payment is processing."
color = "#6D6E78"
icon = InfoIcon
break
case "requires_payment_method":
status = "Your payment was not successful, please try again."
break
}
iconColor.value = color
statusIcon.value = icon
statusText.value = status
intentId.value = intent.id
intentStatus.value = intent.status
viewDetailsUrl.value = `https://dashboard.stripe.com/payments/${intent.id}`
}
function setErrorState() {
iconColor.value = "#DF1B41"
statusIcon.value = ErrorIcon
statusText.value = "Something went wrong, please try again."
}
async function checkStatus() {
const urlParams = new URLSearchParams(window.location.search)
const clientSecret = urlParams.get("payment_intent_client_secret")
if (!clientSecret) {
setErrorState()
return
}
const { paymentIntent } = await stripe.retrievePaymentIntent(clientSecret)
setPaymentDetails(paymentIntent)
}
onMounted(() => {
checkStatus()
})
</script>
<template>
<div id="payment-status">
<div id="status-icon" :style="{ backgroundColor: iconColor }" v-html="statusIcon"></div>
<h2 id="status-text">{{ statusText }}</h2>
<div id="details-table">
<table>
<tbody>
<tr>
<td class="TableLabel">id</td>
<td id="intent-id" class="TableContent">{{ intentId }}</td>
</tr>
<tr>
<td class="TableLabel">status</td>
<td id="intent-status" class="TableContent">{{ intentStatus }}</td>
</tr>
</tbody>
</table>
</div>
<a :href="viewDetailsUrl" id="view-details" rel="noopener noreferrer" target="_blank">
View details
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.125 3.49998C2.64175 3.49998 2.25 3.89173 2.25 4.37498V11.375C2.25 11.8582 2.64175 12.25 3.125 12.25H10.125C10.6082 12.25 11 11.8582 11 11.375V9.62498C11 9.14173 11.3918 8.74998 11.875 8.74998C12.3582 8.74998 12.75 9.14173 12.75 9.62498V11.375C12.75 12.8247 11.5747 14 10.125 14H3.125C1.67525 14 0.5 12.8247 0.5 11.375V4.37498C0.5 2.92524 1.67525 1.74998 3.125 1.74998H4.875C5.35825 1.74998 5.75 2.14173 5.75 2.62498C5.75 3.10823 5.35825 3.49998 4.875 3.49998H3.125Z" fill="#0055DE"/>
<path d="M8.66672 0C8.18347 0 7.79172 0.391751 7.79172 0.875C7.79172 1.35825 8.18347 1.75 8.66672 1.75H11.5126L4.83967 8.42295C4.49796 8.76466 4.49796 9.31868 4.83967 9.66039C5.18138 10.0021 5.7354 10.0021 6.07711 9.66039L12.7501 2.98744V5.83333C12.7501 6.31658 13.1418 6.70833 13.6251 6.70833C14.1083 6.70833 14.5001 6.31658 14.5001 5.83333V0.875C14.5001 0.391751 14.1083 0 13.6251 0H8.66672Z" fill="#0055DE"/>
</svg>
</a>
<NuxtLink id="retry-button" to="/checkout">Test another</NuxtLink>
</div>
</template>
<style scoped>
/* 将原来 checkout.css 中的样式复制到这里 */
</style>