Files
speckle-server/packages/frontend-2/components/developer-settings/CreateApplicationSuccessDialog.vue
T
andrewwallacespeckle 3a25277c2c [WBX-281] - 2049 Hardcoded URL in Create Application Success Dialog (#2053)
* Use NUXT_PUBLIC_BASE_URL to build application URL

* Use URL constructor for auth link

* Revert "Use URL constructor for auth link"

This reverts commit 8a84fdb2c850e0a0698ac06337b355074aa07da1.

* Build url using URL(...).toString()
2024-02-20 11:28:12 +00:00

76 lines
2.4 KiB
Vue

<template>
<LayoutDialog v-model:open="isOpen" max-width="sm" :buttons="dialogButtons">
<template #header>Create Application</template>
<div class="flex flex-col gap-4 text-sm text-foreground">
<div class="flex flex-col gap-3">
<h6 class="h6 font-bold text-center">Your new app is ready</h6>
<div class="grid grid-cols-2 gap-x-6 gap-y-3 py-2 text-sm max-w-xs mx-auto">
<div class="flex items-center">App Id:</div>
<div class="w-40">
<CommonClipboardInputWithToast
v-if="props.application?.id"
:value="props.application?.id"
/>
</div>
<div class="flex items-center">App Secret:</div>
<div class="w-40">
<CommonClipboardInputWithToast
v-if="props.application?.secret"
:value="props.application?.secret"
/>
</div>
</div>
</div>
<div class="flex gap-4 items-center border-primary border rounded-lg px-4 py-3">
<ExclamationTriangleIcon class="h-8 w-8 mt-0.5 text-primary" />
<div class="max-w-md flex flex-col gap-1.5 text-sm">
<p>
<strong>Note:</strong>
To authenticate users inside your app, direct them to
</p>
<CommonClipboardInputWithToast v-if="authUrl" :value="authUrl" is-multiline />
<p>
`{code_challenge}` is an OAuth2 plain code challenge that your app needs to
generate for each authentication request.
</p>
</div>
</div>
</div>
</LayoutDialog>
</template>
<script setup lang="ts">
import { LayoutDialog } from '@speckle/ui-components'
import { ExclamationTriangleIcon } from '@heroicons/vue/24/outline'
import type { ApplicationItem } from '~~/lib/developer-settings/helpers/types'
const props = defineProps<{
application: ApplicationItem | null
}>()
const isOpen = defineModel<boolean>('open', { required: true })
const {
public: { baseUrl }
} = useRuntimeConfig()
const authUrl = computed(() => {
if (props.application?.id) {
const url = new URL(`/authn/verify/${props.application.id}`, baseUrl)
const finalUrl = `${url.toString()}/{code_challenge}`
return finalUrl
}
return null
})
const dialogButtons = computed(() => [
{
text: 'Close',
props: { color: 'primary', fullWidth: true },
onClick: () => (isOpen.value = false)
}
])
</script>