103 lines
3.0 KiB
Vue
103 lines
3.0 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
class="sticky z-10 flex items-center justify-between flex-1 pl-4 border-b bg-primary border-dividerLight top-upperSecondaryStickyFold"
|
|
>
|
|
<label class="font-semibold text-secondaryLight">
|
|
{{ t("preRequest.javascript_code") }}
|
|
</label>
|
|
<div class="flex">
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
to="https://docs.hoppscotch.io/features/pre-request-script"
|
|
blank
|
|
:title="t('app.wiki')"
|
|
svg="help-circle"
|
|
/>
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('state.linewrap')"
|
|
:class="{ '!text-accent': linewrapEnabled }"
|
|
svg="wrap-text"
|
|
@click.native.prevent="linewrapEnabled = !linewrapEnabled"
|
|
/>
|
|
<ButtonSecondary
|
|
v-tippy="{ theme: 'tooltip' }"
|
|
:title="t('action.clear')"
|
|
svg="trash-2"
|
|
@click.native="clearContent"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="flex border-b border-dividerLight">
|
|
<div class="w-2/3 border-r border-dividerLight">
|
|
<div ref="preRrequestEditor" class="h-full"></div>
|
|
</div>
|
|
<div
|
|
class="sticky h-full p-4 overflow-auto bg-primary top-upperTertiaryStickyFold min-w-46 max-w-1/3 z-9"
|
|
>
|
|
<div class="pb-2 text-secondaryLight">
|
|
{{ t("helpers.pre_request_script") }}
|
|
</div>
|
|
<SmartAnchor
|
|
:label="`${t('preRequest.learn')}`"
|
|
to="https://docs.hoppscotch.io/features/pre-request-script"
|
|
blank
|
|
/>
|
|
<h4 class="pt-6 font-bold text-secondaryLight">
|
|
{{ t("preRequest.snippets") }}
|
|
</h4>
|
|
<div class="flex flex-col pt-4">
|
|
<TabSecondary
|
|
v-for="(snippet, index) in snippets"
|
|
:key="`snippet-${index}`"
|
|
:label="snippet.name"
|
|
active
|
|
@click.native="useSnippet(snippet.script)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { reactive, ref } from "@nuxtjs/composition-api"
|
|
import { usePreRequestScript } from "~/newstore/RESTSession"
|
|
import snippets from "~/helpers/preRequestScriptSnippets"
|
|
import { useCodemirror } from "~/helpers/editor/codemirror"
|
|
import linter from "~/helpers/editor/linting/preRequest"
|
|
import completer from "~/helpers/editor/completion/preRequest"
|
|
import { useI18n } from "~/helpers/utils/composables"
|
|
|
|
const t = useI18n()
|
|
|
|
const preRequestScript = usePreRequestScript()
|
|
|
|
const preRrequestEditor = ref<any | null>(null)
|
|
const linewrapEnabled = ref(true)
|
|
|
|
useCodemirror(
|
|
preRrequestEditor,
|
|
preRequestScript,
|
|
reactive({
|
|
extendedEditorConfig: {
|
|
mode: "application/javascript",
|
|
lineWrapping: linewrapEnabled,
|
|
placeholder: `${t("preRequest.javascript_code")}`,
|
|
},
|
|
linter,
|
|
completer,
|
|
environmentHighlights: false,
|
|
})
|
|
)
|
|
|
|
const useSnippet = (script: string) => {
|
|
preRequestScript.value += script
|
|
}
|
|
|
|
const clearContent = () => {
|
|
preRequestScript.value = ""
|
|
}
|
|
</script>
|