major: Rename legalconsenthub to gremiumhub
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
import { useContactApi } from './useContactApi'
|
||||
|
||||
export function useContact() {
|
||||
const { sendContactMessage: sendContactMessageApi } = useContactApi()
|
||||
|
||||
async function sendContactMessage(subject: string, message: string): Promise<void> {
|
||||
return sendContactMessageApi({ subject, message })
|
||||
}
|
||||
|
||||
return {
|
||||
sendContactMessage
|
||||
}
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
import { ContactApi, Configuration, type ContactMessageDto } from '~~/.api-client'
|
||||
import { cleanDoubleSlashes, withoutTrailingSlash } from 'ufo'
|
||||
import { wrappedFetchWrap } from '~/utils/wrappedFetch'
|
||||
|
||||
export function useContactApi() {
|
||||
const appBaseUrl = useRuntimeConfig().app.baseURL
|
||||
const { serverApiBasePath, clientProxyBasePath } = useRuntimeConfig().public
|
||||
|
||||
const basePath = withoutTrailingSlash(
|
||||
cleanDoubleSlashes(import.meta.client ? appBaseUrl + clientProxyBasePath : clientProxyBasePath + serverApiBasePath)
|
||||
)
|
||||
|
||||
const contactApiClient = new ContactApi(
|
||||
new Configuration({ basePath, fetchApi: wrappedFetchWrap(useRequestFetch()) })
|
||||
)
|
||||
|
||||
async function sendContactMessage(contactMessageDto: ContactMessageDto): Promise<void> {
|
||||
return contactApiClient.sendContactMessage({ contactMessageDto })
|
||||
}
|
||||
|
||||
return {
|
||||
sendContactMessage
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user