123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <template>
- <div>
- <SmartTabs styles="sticky bg-primary top-upperPrimaryStickyFold z-10">
- <SmartTab :id="'query'" :label="`${t('tab.query')}`" :selected="true">
- <AppSection label="query">
- <div
- class="bg-primary border-b border-dividerLight flex flex-1 top-upperSecondaryStickyFold pl-4 z-10 sticky items-center justify-between gqlRunQuery"
- >
- <label class="font-semibold text-secondaryLight">
- {{ t("request.query") }}
- </label>
- <div class="flex">
- <ButtonSecondary
- :label="`${t('request.run')}`"
- svg="play"
- class="rounded-none !text-accent !hover:text-accentDark"
- @click.native="runQuery()"
- />
- <ButtonSecondary
- ref="saveRequest"
- :label="`${t('request.save')}`"
- svg="save"
- class="rounded-none"
- @click.native="saveRequest"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- to="https://docs.hoppscotch.io/graphql"
- blank
- :title="t('app.wiki')"
- svg="help-circle"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('action.prettify')"
- :svg="`${prettifyQueryIcon}`"
- @click.native="prettifyQuery"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('action.copy')"
- :svg="`${copyQueryIcon}`"
- @click.native="copyQuery"
- />
- </div>
- </div>
- <div ref="queryEditor"></div>
- </AppSection>
- </SmartTab>
- <SmartTab :id="'variables'" :label="`${t('tab.variables')}`">
- <AppSection label="variables">
- <div
- class="bg-primary border-b border-dividerLight flex flex-1 top-upperSecondaryStickyFold pl-4 z-10 sticky items-center justify-between"
- >
- <label class="font-semibold text-secondaryLight">
- {{ t("request.variables") }}
- </label>
- <div class="flex">
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- to="https://docs.hoppscotch.io/graphql"
- blank
- :title="t('app.wiki')"
- svg="help-circle"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('action.copy')"
- :svg="`${copyVariablesIcon}`"
- @click.native="copyVariables"
- />
- </div>
- </div>
- <div ref="variableEditor"></div>
- </AppSection>
- </SmartTab>
- <SmartTab :id="'headers'" :label="`${t('tab.headers')}`">
- <AppSection label="headers">
- <div
- class="bg-primary border-b border-dividerLight flex flex-1 top-upperSecondaryStickyFold pl-4 z-10 sticky items-center justify-between"
- >
- <label class="font-semibold text-secondaryLight">
- {{ t("tab.headers") }}
- </label>
- <div class="flex">
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- to="https://docs.hoppscotch.io/graphql"
- blank
- :title="t('app.wiki')"
- svg="help-circle"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('action.clear_all')"
- svg="trash-2"
- @click.native="clearContent()"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('state.bulk_mode')"
- svg="edit"
- :class="{ '!text-accent': bulkMode }"
- @click.native="bulkMode = !bulkMode"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('add.new')"
- svg="plus"
- :disabled="bulkMode"
- @click.native="addRequestHeader"
- />
- </div>
- </div>
- <div v-if="bulkMode" ref="bulkEditor"></div>
- <div v-else>
- <div
- v-for="(header, index) in headers"
- :key="`header-${String(index)}`"
- class="divide-dividerLight divide-x border-b border-dividerLight flex"
- >
- <SmartAutoComplete
- :placeholder="`${t('count.header', { count: index + 1 })}`"
- :source="commonHeaders"
- :spellcheck="false"
- :value="header.key"
- autofocus
- styles="
- bg-transparent
- flex
- flex-1
- py-1
- px-4
- truncate
- "
- class="flex-1 !flex"
- @input="
- updateRequestHeader(index, {
- key: $event,
- value: header.value,
- active: header.active,
- })
- "
- />
- <input
- class="bg-transparent flex flex-1 py-2 px-4"
- :placeholder="`${t('count.value', { count: index + 1 })}`"
- :name="`value ${String(index)}`"
- :value="header.value"
- autofocus
- @change="
- updateRequestHeader(index, {
- key: header.key,
- value: $event.target.value,
- active: header.active,
- })
- "
- />
- <span>
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="
- header.hasOwnProperty('active')
- ? header.active
- ? t('action.turn_off')
- : t('action.turn_on')
- : t('action.turn_off')
- "
- :svg="
- header.hasOwnProperty('active')
- ? header.active
- ? 'check-circle'
- : 'circle'
- : 'check-circle'
- "
- color="green"
- @click.native="
- updateRequestHeader(index, {
- key: header.key,
- value: header.value,
- active: !header.active,
- })
- "
- />
- </span>
- <span>
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="t('action.remove')"
- svg="trash"
- color="red"
- @click.native="removeRequestHeader(index)"
- />
- </span>
- </div>
- <div
- v-if="headers.length === 0"
- class="flex flex-col text-secondaryLight p-4 items-center justify-center"
- >
- <img
- :src="`/images/states/${$colorMode.value}/add_category.svg`"
- loading="lazy"
- class="flex-col object-contain object-center h-16 my-4 w-16 inline-flex"
- :alt="`${t('empty.headers')}`"
- />
- <span class="text-center pb-4">
- {{ t("empty.headers") }}
- </span>
- <ButtonSecondary
- :label="`${t('add.new')}`"
- filled
- svg="plus"
- class="mb-4"
- @click.native="addRequestHeader"
- />
- </div>
- </div>
- </AppSection>
- </SmartTab>
- </SmartTabs>
- <CollectionsSaveRequest
- mode="graphql"
- :show="showSaveRequestModal"
- @hide-modal="hideRequestModal"
- />
- </div>
- </template>
- <script setup lang="ts">
- import { onMounted, ref, watch } from "@nuxtjs/composition-api"
- import clone from "lodash/clone"
- import * as gql from "graphql"
- import { GQLHeader, makeGQLRequest } from "@hoppscotch/data"
- import { copyToClipboard } from "~/helpers/utils/clipboard"
- import {
- useNuxt,
- useReadonlyStream,
- useStream,
- useI18n,
- useToast,
- } from "~/helpers/utils/composables"
- import {
- addGQLHeader,
- gqlHeaders$,
- gqlQuery$,
- gqlResponse$,
- gqlURL$,
- gqlVariables$,
- removeGQLHeader,
- setGQLHeaders,
- setGQLQuery,
- setGQLResponse,
- setGQLVariables,
- updateGQLHeader,
- } from "~/newstore/GQLSession"
- import { commonHeaders } from "~/helpers/headers"
- import { GQLConnection } from "~/helpers/GQLConnection"
- import { makeGQLHistoryEntry, addGraphqlHistoryEntry } from "~/newstore/history"
- import { logHoppRequestRunToAnalytics } from "~/helpers/fb/analytics"
- import { getCurrentStrategyID } from "~/helpers/network"
- import { useCodemirror } from "~/helpers/editor/codemirror"
- import jsonLinter from "~/helpers/editor/linting/json"
- import { createGQLQueryLinter } from "~/helpers/editor/linting/gqlQuery"
- import queryCompleter from "~/helpers/editor/completion/gqlQuery"
- const t = useI18n()
- const props = defineProps<{
- conn: GQLConnection
- }>()
- const toast = useToast()
- const nuxt = useNuxt()
- const bulkMode = ref(false)
- const bulkHeaders = ref("")
- watch(bulkHeaders, () => {
- try {
- const transformation = bulkHeaders.value.split("\n").map((item) => ({
- key: item.substring(0, item.indexOf(":")).trim().replace(/^\/\//, ""),
- value: item.substring(item.indexOf(":") + 1).trim(),
- active: !item.trim().startsWith("//"),
- }))
- setGQLHeaders(transformation as GQLHeader[])
- } catch (e) {
- toast.error(`${t("error.something_went_wrong")}`)
- console.error(e)
- }
- })
- const url = useReadonlyStream(gqlURL$, "")
- const gqlQueryString = useStream(gqlQuery$, "", setGQLQuery)
- const variableString = useStream(gqlVariables$, "", setGQLVariables)
- const headers = useStream(gqlHeaders$, [], setGQLHeaders)
- const bulkEditor = ref<any | null>(null)
- useCodemirror(bulkEditor, bulkHeaders, {
- extendedEditorConfig: {
- mode: "text/x-yaml",
- placeholder: `${t("state.bulk_mode_placeholder")}`,
- },
- linter: null,
- completer: null,
- })
- const variableEditor = ref<any | null>(null)
- useCodemirror(variableEditor, variableString, {
- extendedEditorConfig: {
- mode: "application/ld+json",
- placeholder: `${t("request.variables")}`,
- },
- linter: jsonLinter,
- completer: null,
- })
- const queryEditor = ref<any | null>(null)
- const schemaString = useReadonlyStream(props.conn.schema$, null)
- useCodemirror(queryEditor, gqlQueryString, {
- extendedEditorConfig: {
- mode: "graphql",
- placeholder: `${t("request.query")}`,
- },
- linter: createGQLQueryLinter(schemaString),
- completer: queryCompleter(schemaString),
- })
- const copyQueryIcon = ref("copy")
- const prettifyQueryIcon = ref("wand")
- const copyVariablesIcon = ref("copy")
- const showSaveRequestModal = ref(false)
- watch(
- headers,
- () => {
- if (!bulkMode.value)
- if (
- (headers.value[headers.value.length - 1]?.key !== "" ||
- headers.value[headers.value.length - 1]?.value !== "") &&
- headers.value.length
- )
- addRequestHeader()
- },
- { deep: true }
- )
- const editBulkHeadersLine = (index: number, item?: GQLHeader | null) => {
- bulkHeaders.value = headers.value
- .reduce((all, header, pIndex) => {
- const current =
- index === pIndex && item != null
- ? `${item.active ? "" : "//"}${item.key}: ${item.value}`
- : `${header.active ? "" : "//"}${header.key}: ${header.value}`
- return [...all, current]
- }, [])
- .join("\n")
- }
- const clearBulkEditor = () => {
- bulkHeaders.value = ""
- }
- onMounted(() => {
- if (!headers.value?.length) {
- addRequestHeader()
- }
- })
- const copyQuery = () => {
- copyToClipboard(gqlQueryString.value)
- copyQueryIcon.value = "check"
- toast.success(`${t("state.copied_to_clipboard")}`)
- setTimeout(() => (copyQueryIcon.value = "copy"), 1000)
- }
- const response = useStream(gqlResponse$, "", setGQLResponse)
- const runQuery = async () => {
- const startTime = Date.now()
- nuxt.value.$loading.start()
- response.value = "loading"
- try {
- const runURL = clone(url.value)
- const runHeaders = clone(headers.value)
- const runQuery = clone(gqlQueryString.value)
- const runVariables = clone(variableString.value)
- const responseText = await props.conn.runQuery(
- runURL,
- runHeaders,
- runQuery,
- runVariables
- )
- const duration = Date.now() - startTime
- nuxt.value.$loading.finish()
- response.value = JSON.stringify(JSON.parse(responseText), null, 2)
- addGraphqlHistoryEntry(
- makeGQLHistoryEntry({
- request: makeGQLRequest({
- name: "",
- url: runURL,
- query: runQuery,
- headers: runHeaders,
- variables: runVariables,
- }),
- response: response.value,
- star: false,
- })
- )
- toast.success(`${t("state.finished_in", { duration })}`)
- } catch (e: any) {
- response.value = `${e}`
- nuxt.value.$loading.finish()
- toast.error(
- `${t("error.something_went_wrong")}. ${t("error.check_console_details")}`,
- {}
- )
- console.error(e)
- }
- logHoppRequestRunToAnalytics({
- platform: "graphql-query",
- strategy: getCurrentStrategyID(),
- })
- }
- const hideRequestModal = () => {
- showSaveRequestModal.value = false
- }
- const prettifyQuery = () => {
- try {
- gqlQueryString.value = gql.print(gql.parse(gqlQueryString.value))
- prettifyQueryIcon.value = "check"
- } catch (e) {
- toast.error(`${t("error.gql_prettify_invalid_query")}`)
- prettifyQueryIcon.value = "info"
- }
- setTimeout(() => (prettifyQueryIcon.value = "wand"), 1000)
- }
- const saveRequest = () => {
- showSaveRequestModal.value = true
- }
- const copyVariables = () => {
- copyToClipboard(variableString.value)
- copyVariablesIcon.value = "check"
- toast.success(`${t("state.copied_to_clipboard")}`)
- setTimeout(() => (copyVariablesIcon.value = "copy"), 1000)
- }
- const addRequestHeader = () => {
- const empty = { key: "", value: "", active: true }
- const index = headers.value.length
- addGQLHeader(empty)
- editBulkHeadersLine(index, empty)
- }
- const updateRequestHeader = (
- index: number,
- item: { key: string; value: string; active: boolean }
- ) => {
- updateGQLHeader(index, item)
- editBulkHeadersLine(index, item)
- }
- const removeRequestHeader = (index: number) => {
- const headersBeforeDeletion = headers.value
- removeGQLHeader(index)
- editBulkHeadersLine(index, null)
- const deletedItem = headersBeforeDeletion[index]
- if (deletedItem.key || deletedItem.value) {
- toast.success(`${t("state.deleted")}`, {
- action: [
- {
- text: `${t("action.undo")}`,
- onClick: (_, toastObject) => {
- setGQLHeaders(headersBeforeDeletion as GQLHeader[])
- editBulkHeadersLine(index, deletedItem)
- toastObject.goAway(0)
- },
- },
- ],
- })
- }
- }
- const clearContent = () => {
- headers.value = []
- clearBulkEditor()
- }
- </script>
|