refactor: minor input stylings

This commit is contained in:
liyasthomas
2021-07-10 23:38:35 +05:30
parent d94c8aec51
commit 2e092d34a6
7 changed files with 294 additions and 269 deletions

View File

@@ -1,10 +1,12 @@
<template> <template>
<div> <AppSection label="bodyParameters">
<ul> <div
<li> v-if="bodyParams.length !== 0"
<div class="flex flex-1"> class="flex flex-1 items-center justify-between pl-4"
<label for="reqParamList">{{ $t("request_body") }}</label> >
<div> <label for="reqParamList" class="font-semibold text-xs">
{{ $t("request_body") }}
</label>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title="$t('clear')" :title="$t('clear')"
@@ -12,38 +14,48 @@
@click.native="clearContent('bodyParams', $event)" @click.native="clearContent('bodyParams', $event)"
/> />
</div> </div>
</div> <div
</li>
</ul>
<ul
v-for="(param, index) in bodyParams" v-for="(param, index) in bodyParams"
:key="index" :key="index"
class=" class="
flex
border-b border-dashed border-b border-dashed
divide-y divide-x
md:divide-x
border-divider border-divider
divide-dashed divide-divider divide-dashed divide-divider
md:divide-y-0
" "
:class="{ 'border-t': index == 0 }" :class="{ 'border-t': index == 0 }"
> >
<li>
<input <input
class="input" class="
:placeholder="`key ${index + 1}`" px-4
:name="`bparam ${index}`" py-3
text-xs
flex flex-1
font-semibold
bg-primaryLight
focus:outline-none
"
:placeholder="$t('parameter_count', { count: index + 1 })"
:name="'param' + index"
:value="param.key" :value="param.key"
autofocus autofocus
@change="updateBodyParams($event, index, `setKeyBodyParams`)" @change="updateBodyParams($event, index, `setKeyBodyParams`)"
@keyup.prevent="setRouteQueryState" @keyup.prevent="setRouteQueryState"
/> />
</li>
<li>
<input <input
v-if="!requestBodyParamIsFile(index)" v-if="!requestBodyParamIsFile(index)"
class="input" class="
:placeholder="`value ${index + 1}`" px-4
py-3
text-xs
flex flex-1
font-semibold
bg-primaryLight
focus:outline-none
"
:placeholder="$t('value_count', { count: index + 1 })"
:name="'value' + index"
:value="param.value" :value="param.value"
@change=" @change="
// if input is form data, set value to be an array containing the value // if input is form data, set value to be an array containing the value
@@ -63,9 +75,7 @@
</SmartDeletableChip> </SmartDeletableChip>
</div> </div>
</div> </div>
</li>
<div> <div>
<li>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title=" :title="
@@ -84,10 +94,8 @@
" "
@click.native="toggleActive(index, param)" @click.native="toggleActive(index, param)"
/> />
</li>
</div> </div>
<div v-if="contentType === 'multipart/form-data'"> <div v-if="contentType === 'multipart/form-data'">
<li>
<label for="attachment" class="p-0"> <label for="attachment" class="p-0">
<ButtonSecondary <ButtonSecondary
class="w-full" class="w-full"
@@ -103,30 +111,17 @@
multiple multiple
@change="setRequestAttachment($event, index)" @change="setRequestAttachment($event, index)"
/> />
</li>
</div> </div>
<div> <div>
<li>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title="$t('delete')" :title="$t('delete')"
icon="delete" icon="delete"
@click.native="removeRequestBodyParam(index)" @click.native="removeRequestBodyParam(index)"
/> />
</li>
</div> </div>
</ul>
<ul>
<li>
<ButtonSecondary
name="addrequest"
icon="add"
:label="$t('add_new')"
@click.native="addRequestBodyParam"
/>
</li>
</ul>
</div> </div>
</AppSection>
</template> </template>
<script> <script>
@@ -139,6 +134,23 @@ export default {
return this.$store.state.request.contentType return this.$store.state.request.contentType
}, },
}, },
watch: {
bodyParams: {
handler(newValue) {
if (
newValue[newValue.length - 1]?.key !== "" ||
newValue[newValue.length - 1]?.value !== ""
)
this.addRequestBodyParam()
},
deep: true,
},
},
mounted() {
if (!this.bodyParams?.length) {
this.addRequestBodyParam()
}
},
methods: { methods: {
clearContent(bodyParams, $event) { clearContent(bodyParams, $event) {
this.$emit("clear-content", bodyParams, $event) this.$emit("clear-content", bodyParams, $event)

View File

@@ -1,10 +1,12 @@
<template> <template>
<AppSection label="headers"> <AppSection label="headers">
<ul v-if="headers.length !== 0"> <div
<li> v-if="headers.length !== 0"
<div class="flex flex-1"> class="flex flex-1 items-center justify-between pl-4"
<label for="headerList">{{ $t("header_list") }}</label> >
<div> <label for="headerList" class="font-semibold text-xs">
{{ $t("header_list") }}
</label>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title="$t('clear')" :title="$t('clear')"
@@ -12,23 +14,18 @@
@click.native="clearContent('headers', $event)" @click.native="clearContent('headers', $event)"
/> />
</div> </div>
</div> <div
</li>
</ul>
<ul
v-for="(header, index) in headers" v-for="(header, index) in headers"
:key="`${header.value}_${index}`" :key="`${header.value}_${index}`"
class=" class="
flex
border-b border-dashed border-b border-dashed
divide-y divide-x
md:divide-x
border-divider border-divider
divide-dashed divide-divider divide-dashed divide-divider
md:divide-y-0
" "
:class="{ 'border-t': index == 0 }" :class="{ 'border-t': index == 0 }"
> >
<li>
<SmartAutoComplete <SmartAutoComplete
:placeholder="$t('header_count', { count: index + 1 })" :placeholder="$t('header_count', { count: index + 1 })"
:source="commonHeaders" :source="commonHeaders"
@@ -43,10 +40,16 @@
" "
@keyup.prevent="setRouteQueryState" @keyup.prevent="setRouteQueryState"
/> />
</li>
<li>
<input <input
class="input" class="
px-4
py-3
text-xs
flex flex-1
font-semibold
bg-primaryLight
focus:outline-none
"
:placeholder="$t('value_count', { count: index + 1 })" :placeholder="$t('value_count', { count: index + 1 })"
:name="'value' + index" :name="'value' + index"
:value="header.value" :value="header.value"
@@ -58,9 +61,7 @@
" "
@keyup.prevent="setRouteQueryState" @keyup.prevent="setRouteQueryState"
/> />
</li>
<div> <div>
<li>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title=" :title="
@@ -71,8 +72,8 @@
: $t('turn_off') : $t('turn_off')
" "
:icon=" :icon="
param.hasOwnProperty('active') header.hasOwnProperty('active')
? param.active ? header.active
? 'check_box' ? 'check_box'
: 'check_box_outline_blank' : 'check_box_outline_blank'
: 'check_box' : 'check_box'
@@ -84,28 +85,16 @@
}) })
" "
/> />
</li>
</div> </div>
<div> <div>
<li>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title="$t('delete')" :title="$t('delete')"
icon="delete" icon="delete"
@click.native="removeRequestHeader(index)" @click.native="removeRequestHeader(index)"
/> />
</li>
</div> </div>
</ul> </div>
<ul>
<li>
<ButtonSecondary
icon="add"
:label="$t('add_new')"
@click.native="addRequestHeader"
/>
</li>
</ul>
</AppSection> </AppSection>
</template> </template>
@@ -121,6 +110,23 @@ export default {
commonHeaders, commonHeaders,
} }
}, },
watch: {
headers: {
handler(newValue) {
if (
newValue[newValue.length - 1]?.key !== "" ||
newValue[newValue.length - 1]?.value !== ""
)
this.addRequestHeader()
},
deep: true,
},
},
mounted() {
if (!this.params?.length) {
this.addRequestHeader()
}
},
methods: { methods: {
clearContent(headers, $event) { clearContent(headers, $event) {
this.$emit("clear-content", headers, $event) this.$emit("clear-content", headers, $event)

View File

@@ -9,7 +9,7 @@
</label> </label>
<ButtonSecondary <ButtonSecondary
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
:title="$t('clear')" :title="$t('clear_all')"
icon="clear_all" icon="clear_all"
@click.native="clearContent('parameters', $event)" @click.native="clearContent('parameters', $event)"
/> />
@@ -20,11 +20,9 @@
class=" class="
flex flex
border-b border-dashed border-b border-dashed
divide-y divide-x
md:divide-x
border-divider border-divider
divide-dashed divide-divider divide-dashed divide-divider
md:divide-y-0
" "
:class="{ 'border-t': index == 0 }" :class="{ 'border-t': index == 0 }"
> >
@@ -80,7 +78,6 @@
py-3 py-3
mr-8 mr-8
focus:outline-none focus:outline-none
border-b border-dividerLight
font-medium font-medium
bg-primaryLight bg-primaryLight
" "
@@ -135,14 +132,6 @@
/> />
</div> </div>
</div> </div>
<div class="flex sticky bottom-0 bg-primary z-10 flex-1">
<ButtonSecondary
icon="add"
class="flex-1"
:label="$t('add_new')"
@click.native="addRequestParam"
/>
</div>
</AppSection> </AppSection>
</template> </template>
@@ -151,6 +140,23 @@ export default {
props: { props: {
params: { type: Array, default: () => [] }, params: { type: Array, default: () => [] },
}, },
watch: {
params: {
handler(newValue) {
if (
newValue[newValue.length - 1]?.key !== "" ||
newValue[newValue.length - 1]?.value !== ""
)
this.addRequestParam()
},
deep: true,
},
},
mounted() {
if (!this.params?.length) {
this.addRequestParam()
}
},
methods: { methods: {
clearContent(parameters, $event) { clearContent(parameters, $event) {
this.$emit("clear-content", parameters, $event) this.$emit("clear-content", parameters, $event)

View File

@@ -1,28 +1,28 @@
<template> <template>
<div class="flex flex-col"> <div
<div class="flex items-center justify-between"> class="
<label>{{ $t("response") }}</label> flex
<label v-if="active" sticky
><i class="animate-spin material-icons">refresh</i></label top-0
z-10
bg-primary
items-center
p-4
font-mono font-semibold
space-x-4
"
:class="statusCategory ? statusCategory.className : ''"
> >
<label v-else :class="statusCategory ? statusCategory.className : ''"> <i v-if="active" class="animate-spin material-icons">refresh</i>
<i class="material-icons">fiber_manual_record</i> <span v-else>
</label> {{ response.status }}
</div> </span>
<div class="flex flex-col lg:flex-row"> <span v-if="response.duration" class="text-xs">
<label class="flex-1"> {{ `${response.duration} ms` }}
{{ $t("status") + `: \xA0 ` }} </span>
<span :class="statusCategory ? statusCategory.className : ''"> <span v-if="response.size" class="text-xs">
{{ response.status || $t("waiting_send_req") }} {{ `${response.size} B` }}
</span> </span>
</label>
<label>
{{ $t("duration") + `: \xA0 ${response.duration} ms` }}
</label>
<label>
{{ $t("size") + `: \xA0 ${response.size} B` }}
</label>
</div>
</div> </div>
</template> </template>

View File

@@ -1,5 +1,5 @@
<template> <template>
<SmartTabs styles="m-4"> <SmartTabs styles="sticky z-10 top-13">
<SmartTab <SmartTab
v-for="(lens, index) in validLenses" v-for="(lens, index) in validLenses"
:id="lens.lensName" :id="lens.lensName"

View File

@@ -3,7 +3,15 @@
<input <input
ref="acInput" ref="acInput"
v-model="text" v-model="text"
class="input" class="
px-4
py-3
text-xs
flex flex-1
font-semibold
bg-primaryLight
focus:outline-none
"
type="text" type="text"
:placeholder="placeholder" :placeholder="placeholder"
:spellcheck="spellcheck" :spellcheck="spellcheck"
@@ -187,6 +195,8 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
.autocomplete-wrapper { .autocomplete-wrapper {
@apply relative; @apply relative;
@apply flex;
@apply flex-1;
input:focus + ul.suggestions, input:focus + ul.suggestions,
ul.suggestions:hover { ul.suggestions:hover {
@@ -209,7 +219,7 @@ export default {
@apply w-full; @apply w-full;
@apply block; @apply block;
@apply py-2 px-4; @apply py-2 px-4;
@apply text-sm; @apply text-xs;
@apply font-mono; @apply font-mono;
&:last-child { &:last-child {

View File

@@ -2,10 +2,10 @@
<!-- eslint-disable --> <!-- eslint-disable -->
<div> <div>
<Splitpanes vertical :dbl-click-splitter="false"> <Splitpanes vertical :dbl-click-splitter="false">
<Pane class="overflow-auto"> <Pane class="overflow-auto hide-scrollbar">
<Splitpanes horizontal :dbl-click-splitter="false"> <Splitpanes horizontal :dbl-click-splitter="false">
<Pane class="overflow-auto"> <Pane class="overflow-auto hide-scrollbar">
<div class="sticky top-0 z-10 bg-primary flex px-4 pt-4 pb-2"> <div class="sticky top-0 z-10 bg-primary flex p-4">
<div class="relative inline-flex"> <div class="relative inline-flex">
<span class="select-wrapper"> <span class="select-wrapper">
<tippy <tippy
@@ -28,6 +28,7 @@
px-4 px-4
py-2 py-2
truncate truncate
text-secondaryDark
font-semibold font-semibold
border border-divider border border-divider
transition transition
@@ -59,6 +60,7 @@
w-full w-full
font-mono font-semibold font-mono font-semibold
truncate truncate
text-secondaryDark
px-4 px-4
py-2 py-2
border border-divider border border-divider
@@ -90,7 +92,6 @@
font-mono font-mono
flex flex
items-center items-center
justify-center
truncate truncate
font-semibold font-semibold
bg-accent bg-accent
@@ -110,7 +111,6 @@
font-mono font-mono
flex flex
items-center items-center
justify-center
truncate truncate
font-semibold font-semibold
bg-accent bg-accent
@@ -248,7 +248,7 @@
</tippy> </tippy>
</div> </div>
</div> </div>
<SmartTabs styles="sticky top-62px z-10"> <SmartTabs styles="sticky top-70px z-10">
<SmartTab <SmartTab
:id="'params'" :id="'params'"
:label=" :label="
@@ -325,7 +325,13 @@
<li> <li>
<div class="flex flex-1"> <div class="flex flex-1">
<span> <span>
<SmartToggle :on="rawInput" /> <SmartToggle
v-if="canListParameters"
:on="rawInput"
@change="rawInput = !rawInput"
>
{{ $t("raw_input") }}
</SmartToggle>
</span> </span>
</div> </div>
</li> </li>
@@ -700,7 +706,7 @@
</SmartTab> </SmartTab>
</SmartTabs> </SmartTabs>
</Pane> </Pane>
<Pane class="overflow-auto"> <Pane class="overflow-auto hide-scrollbar">
<HttpResponse <HttpResponse
:response="response" :response="response"
:active="runningRequest" :active="runningRequest"
@@ -966,22 +972,7 @@ export default {
this.setRouteQueryState() this.setRouteQueryState()
}, },
params: { params: {
handler(newValue) { handler() {
if (!this.paramsWatchEnabled) {
this.paramsWatchEnabled = true
return
}
let path = this.path
let queryString = getQueryParams(newValue)
.map(({ key, value }) => `${key.trim()}=${value.trim()}`)
.join("&")
queryString = queryString === "" ? "" : `?${encodeURI(queryString)}`
if (path.includes("?")) {
path = path.slice(0, path.indexOf("?")) + queryString
} else {
path = path + queryString
}
this.path = path
this.setRouteQueryState() this.setRouteQueryState()
}, },
deep: true, deep: true,
@@ -2026,7 +2017,7 @@ export default {
this.headers = [] this.headers = []
this.testReports = [] this.testReports = []
} }
target.innerHTML = this.doneButton // target.innerHTML = this.doneButton
this.$toast.info(this.$t("cleared"), { this.$toast.info(this.$t("cleared"), {
icon: "clear_all", icon: "clear_all",
}) })