feat: hoppscotch-common & platform additions for ai experiments (#4222)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Akash K
2024-07-30 12:16:44 +05:30
committed by GitHub
parent 2a37235229
commit d68cfb313e
12 changed files with 208 additions and 18 deletions

View File

@@ -6,13 +6,28 @@
@close="hideModal"
>
<template #body>
<HoppSmartInput
v-model="editingName"
placeholder=" "
:label="t('action.label')"
input-styles="floating-input"
@submit="editRequest"
/>
<div class="flex gap-1">
<HoppSmartInput
v-model="editingName"
class="flex-grow"
placeholder=" "
:label="t('action.label')"
input-styles="floating-input"
@submit="editRequest"
/>
<HoppButtonSecondary
v-if="showGenerateRequestNameButton"
v-tippy="{ theme: 'tooltip' }"
:icon="IconSparkle"
:disabled="isGenerateRequestNamePending"
class="rounded-md"
:class="{
'animate-pulse': isGenerateRequestNamePending,
}"
:title="t('ai_experiments.generate_request_name')"
@click="generateRequestName"
/>
</div>
</template>
<template #footer>
<span class="flex space-x-2">
@@ -36,7 +51,15 @@
<script setup lang="ts">
import { useI18n } from "@composables/i18n"
import { useToast } from "@composables/toast"
import { HoppRESTRequest } from "@hoppscotch/data"
import { useVModel } from "@vueuse/core"
import * as E from "fp-ts/Either"
import { computed, ref } from "vue"
import { useSetting } from "~/composables/settings"
import { useReadonlyStream } from "~/composables/stream"
import { platform } from "~/platform"
import IconSparkle from "~icons/lucide/sparkles"
const toast = useToast()
const t = useI18n()
@@ -46,6 +69,7 @@ const props = withDefaults(
show: boolean
loadingState: boolean
modelValue?: string
requestContext: HoppRESTRequest | null
}>(),
{
show: false,
@@ -60,8 +84,54 @@ const emit = defineEmits<{
(e: "update:modelValue", value: string): void
}>()
const ENABLE_AI_EXPERIMENTS = useSetting("ENABLE_AI_EXPERIMENTS")
const editingName = useVModel(props, "modelValue")
const currentUser = useReadonlyStream(
platform.auth.getCurrentUserStream(),
platform.auth.getCurrentUser()
)
const isGenerateRequestNamePending = ref(false)
const showGenerateRequestNameButton = computed(() => {
// Request generation applies only to the authenticated state
if (!currentUser.value) {
return false
}
return ENABLE_AI_EXPERIMENTS.value && !!platform.experiments?.aiExperiments
})
const generateRequestName = async () => {
const generateRequestNameForPlatform =
platform.experiments?.aiExperiments?.generateRequestName
if (!props.requestContext || !generateRequestNameForPlatform) {
toast.error(t("request.generate_name_error"))
return
}
isGenerateRequestNamePending.value = true
const result = await generateRequestNameForPlatform(
JSON.stringify(props.requestContext)
)
if (result && E.isLeft(result)) {
toast.error(t("request.generate_name_error"))
isGenerateRequestNamePending.value = false
return
}
editingName.value = result.right
isGenerateRequestNamePending.value = false
}
const editRequest = () => {
if (editingName.value.trim() === "") {
toast.error(t("request.invalid_name"))