Merge codeday/jason => codeday/isai
This commit is contained in:
@@ -348,7 +348,8 @@ const newSendRequest = async () => {
|
||||
const ensureMethodInEndpoint = () => {
|
||||
if (
|
||||
!/^http[s]?:\/\//.test(newEndpoint.value) &&
|
||||
!newEndpoint.value.startsWith("<<")
|
||||
!newEndpoint.value.startsWith("<<") &&
|
||||
!newEndpoint.value.startsWith("{{")
|
||||
) {
|
||||
const domain = newEndpoint.value.split(/[/:#?]+/)[0]
|
||||
if (domain === "localhost" || /([0-9]+\.)*[0-9]/.test(domain)) {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<div
|
||||
class="sticky z-10 flex items-center justify-between pl-4 border-b bg-primary border-dividerLight top-upperMobileSecondaryStickyFold sm:top-upperSecondaryStickyFold"
|
||||
>
|
||||
<label class="font-semibold text-secondaryLight"> Variables </label>
|
||||
<label class="font-semibold text-secondaryLight"> My Variables </label>
|
||||
<div class="flex">
|
||||
<ButtonSecondary
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
@@ -15,28 +15,28 @@
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
v-for="(vari, index) in workingVars"
|
||||
:key="`vari-${vari.id}-${index}`"
|
||||
v-for="(variable, index) in workingVars"
|
||||
:key="`vari-${variable.id}-${index}`"
|
||||
class="flex border-b divide-x divide-dividerLight border-dividerLight draggable-content group"
|
||||
>
|
||||
<SmartEnvInput
|
||||
v-model="vari.key"
|
||||
v-model="variable.key"
|
||||
:placeholder="`${t('count.parameter', { count: index + 1 })}`"
|
||||
@change="
|
||||
updateVar(index, {
|
||||
id: vari.id,
|
||||
id: variable.id,
|
||||
key: $event,
|
||||
value: vari.value,
|
||||
value: variable.value,
|
||||
})
|
||||
"
|
||||
/>
|
||||
<SmartEnvInput
|
||||
v-model="vari.value"
|
||||
v-model="variable.value"
|
||||
:placeholder="`${t('count.value', { count: index + 1 })}`"
|
||||
@change="
|
||||
updateVar(index, {
|
||||
id: vari.id,
|
||||
key: vari.key,
|
||||
id: variable.id,
|
||||
key: variable.key,
|
||||
value: $event,
|
||||
})
|
||||
"
|
||||
|
||||
@@ -116,6 +116,8 @@ const aggregateEnvs = useReadonlyStream(aggregateEnvs$, []) as Ref<
|
||||
>
|
||||
const aggregateVars = useReadonlyStream(restVars$, []) as Ref<HoppRESTVar[]>
|
||||
|
||||
const aggregateVars = useReadonlyStream(restVars$, []) as Ref<HoppRESTVar[]>
|
||||
|
||||
const envVars = computed(() =>
|
||||
props.envs
|
||||
? props.envs.map((x) => ({
|
||||
|
||||
@@ -14,7 +14,7 @@ import {
|
||||
HoppRESTHeader,
|
||||
HoppRESTParam,
|
||||
} from "@hoppscotch/data"
|
||||
import { parseTemplateStringV } from "@hoppscotch/data/src/pathVariables"
|
||||
import { parseTemplateStringV } from "@hoppscotch/data/src/variables"
|
||||
import { arrayFlatMap, arraySort } from "../functional/array"
|
||||
import { toFormData } from "../functional/formData"
|
||||
import { tupleToRecord } from "../functional/record"
|
||||
|
||||
@@ -12,11 +12,10 @@ export type Environment = {
|
||||
export type Variables = {
|
||||
key: string
|
||||
value: string
|
||||
}[]
|
||||
|
||||
}[]
|
||||
|
||||
const REGEX_ENV_VAR = /<<([^>]*)>>/g // "<<myVariable>>"
|
||||
const REGEX_PATHVAR = /{{([^>]*)}}/g // "{{myVariable}}"
|
||||
const REGEX_PATH_VAR = /{{([^>]*)}}/g // "{{myVariable}}"
|
||||
|
||||
/**
|
||||
* How much times can we expand environment variables
|
||||
|
||||
@@ -16,7 +16,7 @@ export type Variables = {
|
||||
}[]
|
||||
|
||||
const REGEX_ENV_VAR = /<<([^>]*)>>/g // "<<myVariable>>"
|
||||
const REGEX_PATHVAR = /{{([^>]*)}}/g // "{{myVariable}}"
|
||||
const REGEX_MY_VAR = /{{([^}]*)}}/g // "{{myVariable}}"
|
||||
|
||||
/**
|
||||
* How much times can we expand environment variables
|
||||
@@ -32,9 +32,9 @@ const ENV_EXPAND_LOOP = "ENV_EXPAND_LOOP" as const
|
||||
export function parseTemplateStringEV(
|
||||
str: string,
|
||||
variables: Environment["variables"],
|
||||
pathVariables: Variables
|
||||
myVariables: Variables
|
||||
) {
|
||||
if (!variables || !str || !pathVariables) {
|
||||
if (!variables || !str || !myVariables) {
|
||||
return E.right(str)
|
||||
}
|
||||
|
||||
@@ -49,10 +49,13 @@ export function parseTemplateStringEV(
|
||||
depth++
|
||||
}
|
||||
|
||||
while (result.match(REGEX_PATHVAR) != null && depth <= ENV_MAX_EXPAND_LIMIT) {
|
||||
/**
|
||||
* TODO: Create an error state when there is a suspected loop while recursively expanding these variables
|
||||
*/
|
||||
while (result.match(REGEX_MY_VAR) != null && depth <= ENV_MAX_EXPAND_LIMIT) {
|
||||
result = decodeURI(encodeURI(result)).replace(
|
||||
REGEX_PATHVAR,
|
||||
(_, p1) => pathVariables.find((x) => x.key === p1)?.value || ""
|
||||
REGEX_MY_VAR,
|
||||
(_, p1) => myVariables.find((x) => x.key === p1)?.value || ""
|
||||
)
|
||||
}
|
||||
|
||||
@@ -62,15 +65,14 @@ export function parseTemplateStringEV(
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use `parseTemplateStringE` instead
|
||||
* @deprecated Use `parseTemplateStringEV` instead
|
||||
*/
|
||||
export const parseTemplateStringV = (
|
||||
str: string,
|
||||
variables: Environment["variables"],
|
||||
pathVariables: Variables
|
||||
myVariables: Variables
|
||||
) =>
|
||||
pipe(
|
||||
parseTemplateStringEV(str, variables, pathVariables),
|
||||
parseTemplateStringEV(str, variables, myVariables),
|
||||
E.getOrElse(() => str)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user