129 lines
3.5 KiB
Vue
129 lines
3.5 KiB
Vue
<template>
|
|
<SmartModal
|
|
v-if="show"
|
|
:title="t('request.generate_code')"
|
|
@close="hideModal"
|
|
>
|
|
<template #body>
|
|
<div class="flex flex-col px-2">
|
|
<label for="requestType" class="px-4 pb-4">
|
|
{{ $t("request.choose_language") }}
|
|
</label>
|
|
<tippy ref="options" interactive trigger="click" theme="popover" arrow>
|
|
<template #trigger>
|
|
<span class="select-wrapper">
|
|
<ButtonSecondary
|
|
:label="codegens.find((x) => x.id === codegenType).name"
|
|
outline
|
|
class="flex-1 pr-8"
|
|
/>
|
|
</span>
|
|
</template>
|
|
<SmartItem
|
|
v-for="(gen, index) in codegens"
|
|
:key="`gen-${index}`"
|
|
:label="gen.name"
|
|
:info-icon="gen.id === codegenType ? 'done' : ''"
|
|
:active-info-icon="gen.id === codegenType"
|
|
@click.native="
|
|
() => {
|
|
codegenType = gen.id
|
|
options.tippy().hide()
|
|
}
|
|
"
|
|
/>
|
|
</tippy>
|
|
<div class="flex flex-1 justify-between">
|
|
<label for="generatedCode" class="px-4 pt-4 pb-4">
|
|
{{ t("request.generated_code") }}
|
|
</label>
|
|
</div>
|
|
<SmartAceEditor
|
|
v-if="codegenType"
|
|
ref="generatedCode"
|
|
:value="requestCode"
|
|
:lang="codegens.find((x) => x.id === codegenType).language"
|
|
:options="{
|
|
maxLines: 16,
|
|
minLines: 8,
|
|
autoScrollEditorIntoView: true,
|
|
readOnly: true,
|
|
showPrintMargin: false,
|
|
useWorker: false,
|
|
}"
|
|
styles="border rounded border-dividerLight"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<ButtonPrimary
|
|
ref="copyRequestCode"
|
|
:label="t('action.copy')"
|
|
:icon="copyIcon"
|
|
@click.native="copyRequestCode"
|
|
/>
|
|
<ButtonSecondary :label="t('action.dismiss')" @click.native="hideModal" />
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref, useContext, watch } from "@nuxtjs/composition-api"
|
|
import { codegens, generateCodegenContext } from "~/helpers/codegen/codegen"
|
|
import { copyToClipboard } from "~/helpers/utils/clipboard"
|
|
import { getEffectiveRESTRequest } from "~/helpers/utils/EffectiveURL"
|
|
import { getCurrentEnvironment } from "~/newstore/environments"
|
|
import { getRESTRequest } from "~/newstore/RESTSession"
|
|
|
|
const props = defineProps<{
|
|
show: boolean
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
(e: "hide-modal"): void
|
|
}>()
|
|
|
|
const {
|
|
$toast,
|
|
app: { i18n },
|
|
} = useContext()
|
|
const t = i18n.t.bind(i18n)
|
|
|
|
const options = ref<any | null>(null)
|
|
|
|
const request = ref(getRESTRequest())
|
|
const codegenType = ref("curl")
|
|
const copyIcon = ref("content_copy")
|
|
|
|
const requestCode = computed(() => {
|
|
const effectiveRequest = getEffectiveRESTRequest(
|
|
request.value as any,
|
|
getCurrentEnvironment()
|
|
)
|
|
|
|
return codegens
|
|
.find((x) => x.id === codegenType.value)!
|
|
.generator(generateCodegenContext(effectiveRequest))
|
|
})
|
|
|
|
watch(
|
|
() => props.show,
|
|
(goingToShow) => {
|
|
if (goingToShow) {
|
|
request.value = getRESTRequest()
|
|
}
|
|
}
|
|
)
|
|
|
|
const hideModal = () => emit("hide-modal")
|
|
|
|
const copyRequestCode = () => {
|
|
copyToClipboard(requestCode.value)
|
|
copyIcon.value = "done"
|
|
$toast.success(t("state.copied_to_clipboard").toString(), {
|
|
icon: "content_paste",
|
|
})
|
|
setTimeout(() => (copyIcon.value = "content_copy"), 1000)
|
|
}
|
|
</script>
|