egirlskey/packages/client/src/pages/api-console.vue

94 lines
2.3 KiB
Vue
Raw Normal View History

2020-10-25 07:11:08 +00:00
<template>
2021-04-13 03:43:19 +00:00
<div class="_root">
<div class="_block" style="padding: 24px;">
2021-11-19 10:36:12 +00:00
<MkInput v-model="endpoint" :datalist="endpoints" class="" @update:modelValue="onEndpointChange()">
2021-08-06 13:29:19 +00:00
<template #label>Endpoint</template>
2021-04-13 03:43:19 +00:00
</MkInput>
2021-08-06 13:29:19 +00:00
<MkTextarea v-model="body" code>
<template #label>Params (JSON or JSON5)</template>
2021-04-13 03:43:19 +00:00
</MkTextarea>
2021-08-06 13:29:19 +00:00
<MkSwitch v-model="withCredential">
2021-04-13 03:43:19 +00:00
With credential
</MkSwitch>
2021-11-19 10:36:12 +00:00
<MkButton primary full :disabled="sending" @click="send">
2021-04-13 03:43:19 +00:00
<template v-if="sending"><MkEllipsis/></template>
<template v-else><i class="fas fa-paper-plane"></i> Send</template>
2021-04-13 03:43:19 +00:00
</MkButton>
2021-04-11 12:31:38 +00:00
</div>
2021-04-13 03:43:19 +00:00
<div v-if="res" class="_block" style="padding: 24px;">
2021-08-06 13:29:19 +00:00
<MkTextarea v-model="res" code readonly tall>
<template #label>Response</template>
2021-04-13 03:43:19 +00:00
</MkTextarea>
2021-04-11 12:31:38 +00:00
</div>
2020-10-25 07:11:08 +00:00
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import * as JSON5 from 'json5';
2021-11-11 17:02:25 +00:00
import MkButton from '@/components/ui/button.vue';
import MkInput from '@/components/form/input.vue';
import MkTextarea from '@/components/form/textarea.vue';
import MkSwitch from '@/components/form/switch.vue';
import * as os from '@/os';
import * as symbols from '@/symbols';
2020-10-25 07:11:08 +00:00
export default defineComponent({
components: {
MkButton, MkInput, MkTextarea, MkSwitch,
},
data() {
return {
2021-04-10 03:54:12 +00:00
[symbols.PAGE_INFO]: {
2020-11-03 11:36:12 +00:00
title: 'API console',
icon: 'fas fa-terminal'
2020-10-25 07:11:08 +00:00
},
endpoint: '',
body: '{}',
res: null,
sending: false,
endpoints: [],
withCredential: true,
};
},
created() {
os.api('endpoints').then(endpoints => {
this.endpoints = endpoints;
});
},
methods: {
send() {
this.sending = true;
os.api(this.endpoint, JSON5.parse(this.body)).then(res => {
this.sending = false;
this.res = JSON5.stringify(res, null, 2);
}, err => {
this.sending = false;
this.res = JSON5.stringify(err, null, 2);
});
},
onEndpointChange() {
os.api('endpoint', { endpoint: this.endpoint }, this.withCredential ? undefined : null).then(endpoint => {
const body = {};
for (const p of endpoint.params) {
body[p.name] =
p.type === 'String' ? '' :
p.type === 'Number' ? 0 :
p.type === 'Boolean' ? false :
p.type === 'Array' ? [] :
p.type === 'Object' ? {} :
null;
}
this.body = JSON5.stringify(body, null, 2);
});
}
}
});
</script>