prettier fixes #16
This commit is contained in:
@@ -1,23 +1,31 @@
|
||||
<script setup lang="ts">
|
||||
import Stripe from 'stripe';
|
||||
const config = useRuntimeConfig();
|
||||
const stripe = new Stripe(config.stripeSecretKey, { apiVersion: '2022-11-15' });
|
||||
const route = useRoute();
|
||||
let customer: Stripe.Response<Stripe.Customer | Stripe.DeletedCustomer>
|
||||
try{
|
||||
const session = await stripe.checkout.sessions.retrieve(route?.query?.session_id as string);
|
||||
customer = await stripe.customers.retrieve(session?.customer as string);
|
||||
} catch(e) {
|
||||
console.log(`Error ${e}`)
|
||||
}
|
||||
import Stripe from 'stripe';
|
||||
const config = useRuntimeConfig();
|
||||
const stripe = new Stripe(config.stripeSecretKey, {
|
||||
apiVersion: '2022-11-15'
|
||||
});
|
||||
const route = useRoute();
|
||||
let customer: Stripe.Response<Stripe.Customer | Stripe.DeletedCustomer>;
|
||||
try {
|
||||
const session = await stripe.checkout.sessions.retrieve(
|
||||
route?.query?.session_id as string
|
||||
);
|
||||
customer = await stripe.customers.retrieve(session?.customer as string);
|
||||
} catch (e) {
|
||||
console.log(`Error ${e}`);
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="prose lg:prose-xl m-5">
|
||||
<p>
|
||||
<span v-if="customer && !customer.deleted">We appreciate your business {{customer.name}}!</span>
|
||||
<span v-if="customer && customer.deleted">It appears your stripe customer information has been deleted!</span>
|
||||
<span v-if="customer && !customer.deleted">
|
||||
We appreciate your business {{ customer.name }}!
|
||||
</span>
|
||||
<span v-if="customer && customer.deleted">
|
||||
It appears your stripe customer information has been deleted!
|
||||
</span>
|
||||
</p>
|
||||
<p>Go to Your <NuxtLink to="/dashboard">Dashboard</NuxtLink></p>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user