fix: better error state

This commit is contained in:
liyasthomas
2022-01-01 16:15:21 +05:30
parent 2ec401c766
commit 78ad61f153

View File

@@ -54,7 +54,7 @@
</label> </label>
</div> </div>
<div <div
v-if="!requestCode" v-if="errorState"
class="bg-primaryLight rounded font-mono w-full py-2 px-4 text-red-400 overflow-auto whitespace-normal" class="bg-primaryLight rounded font-mono w-full py-2 px-4 text-red-400 overflow-auto whitespace-normal"
> >
{{ t("error.something_went_wrong") }} {{ t("error.something_went_wrong") }}
@@ -114,6 +114,7 @@ const options = ref<any | null>(null)
const request = ref(getRESTRequest()) const request = ref(getRESTRequest())
const codegenType = ref<CodegenName>("shell-curl") const codegenType = ref<CodegenName>("shell-curl")
const copyIcon = ref("copy") const copyIcon = ref("copy")
const errorState = ref(false)
const requestCode = computed(() => { const requestCode = computed(() => {
const effectiveRequest = getEffectiveRESTRequest( const effectiveRequest = getEffectiveRESTRequest(
@@ -126,9 +127,10 @@ const requestCode = computed(() => {
const result = generateCode(codegenType.value, effectiveRequest) const result = generateCode(codegenType.value, effectiveRequest)
if (O.isSome(result)) { if (O.isSome(result)) {
errorState.value = false
return result.value return result.value
} else { } else {
// TODO: Error logic? errorState.value = true
return "" return ""
} }
}) })