feat: hoppscotch-common & platform additions for ai experiments (#4222)
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
@@ -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"))
|
||||
|
||||
@@ -6,13 +6,28 @@
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
<HoppSmartInput
|
||||
v-model="requestUpdateData.name"
|
||||
placeholder=" "
|
||||
:label="t('action.label')"
|
||||
input-styles="floating-input"
|
||||
@submit="saveRequest"
|
||||
/>
|
||||
<div class="flex gap-1">
|
||||
<HoppSmartInput
|
||||
v-model="requestUpdateData.name"
|
||||
class="flex-grow"
|
||||
placeholder=" "
|
||||
:label="t('action.label')"
|
||||
input-styles="floating-input"
|
||||
@submit="saveRequest"
|
||||
/>
|
||||
<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">
|
||||
@@ -33,11 +48,17 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, watch } from "vue"
|
||||
import { useI18n } from "@composables/i18n"
|
||||
import { useToast } from "@composables/toast"
|
||||
import { HoppGQLRequest } from "@hoppscotch/data"
|
||||
import * as E from "fp-ts/Either"
|
||||
import { computed, ref, watch } from "vue"
|
||||
|
||||
import { useSetting } from "~/composables/settings"
|
||||
import { useReadonlyStream } from "~/composables/stream"
|
||||
import { editGraphqlRequest } from "~/newstore/collections"
|
||||
import { platform } from "~/platform"
|
||||
import IconSparkle from "~icons/lucide/sparkles"
|
||||
|
||||
const t = useI18n()
|
||||
const toast = useToast()
|
||||
@@ -48,6 +69,7 @@ const props = defineProps<{
|
||||
requestIndex: number | null
|
||||
request: HoppGQLRequest | null
|
||||
editingRequestName: string
|
||||
requestContext: HoppGQLRequest | null
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
@@ -63,6 +85,52 @@ watch(
|
||||
}
|
||||
)
|
||||
|
||||
const ENABLE_AI_EXPERIMENTS = useSetting("ENABLE_AI_EXPERIMENTS")
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
requestUpdateData.value.name = result.right
|
||||
|
||||
isGenerateRequestNamePending.value = false
|
||||
}
|
||||
|
||||
const saveRequest = () => {
|
||||
if (!requestUpdateData.value.name) {
|
||||
toast.error(`${t("collection.invalid_name")}`)
|
||||
|
||||
@@ -139,6 +139,7 @@
|
||||
:folder-path="editingFolderPath"
|
||||
:request="editingRequest"
|
||||
:request-index="editingRequestIndex"
|
||||
:request-context="editingRequest"
|
||||
:editing-request-name="editingRequest ? editingRequest.name : ''"
|
||||
@hide-modal="displayModalEditRequest(false)"
|
||||
/>
|
||||
|
||||
@@ -142,6 +142,7 @@
|
||||
<CollectionsEditRequest
|
||||
v-model="editingRequestName"
|
||||
:show="showModalEditRequest"
|
||||
:request-context="editingRequest"
|
||||
:loading-state="modalLoadingState"
|
||||
@submit="updateEditingRequest"
|
||||
@hide-modal="displayModalEditRequest(false)"
|
||||
|
||||
Reference in New Issue
Block a user