it-tools/src/tools/jwt-parser/jwt-parser.vue
2022-11-19 11:21:56 +01:00

56 lines
1.6 KiB
Vue

<template>
<n-card>
<n-form-item label="JWT to decode" :feedback="validation.message" :validation-status="validation.status">
<n-input v-model:value="raw_jwt" type="textarea" placeholder="Put your token here..." rows="5" />
</n-form-item>
<n-table>
<tbody>
<td colspan="2" class="table-header"><b>Header</b></td>
<tr v-for="(value, key) in decodedJWT.header" :key="key">
<td>
<i>{{ key }}</i>
</td>
<td>{{ value }}</td>
</tr>
<td colspan="2" class="table-header"><b>Payload</b></td>
<tr v-for="(value, key) in decodedJWT.payload" :key="key">
<td>
<i>{{ key }}</i>
</td>
<td>{{ value }}</td>
</tr>
</tbody>
</n-table>
</n-card>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue';
import jwt_decode from 'jwt-decode';
import { useValidation } from '@/composable/validation';
import { isNotThrowing } from '@/utils/boolean';
import { safe_jwt_decode } from './jwt-parser.service';
const raw_jwt = ref(
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c',
);
const decodedJWT = computed(() => {
return safe_jwt_decode(raw_jwt.value);
});
const validation = useValidation({
source: raw_jwt,
rules: [
{
validator: (value) => value.length > 0 && isNotThrowing(() => jwt_decode(value, { header: true })),
message: 'Invalid JWT',
},
],
});
</script>
<style lang="less" scoped>
.table-header {
text-align: center;
}
</style>