feat(new tool): Smart Raw Error Converter

Fix #1197
This commit is contained in:
sharevb 2024-09-28 11:17:56 +02:00 committed by ShareVB
parent 318fb6efb9
commit 7a83b35adb
6 changed files with 86 additions and 7 deletions

8
components.d.ts vendored
View file

@ -129,22 +129,15 @@ declare module '@vue/runtime-core' {
MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default']
MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default']
NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default']
NCode: typeof import('naive-ui')['NCode']
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
NEllipsis: typeof import('naive-ui')['NEllipsis']
NForm: typeof import('naive-ui')['NForm']
NFormItem: typeof import('naive-ui')['NFormItem']
NH1: typeof import('naive-ui')['NH1']
NH3: typeof import('naive-ui')['NH3']
NIcon: typeof import('naive-ui')['NIcon']
NInputNumber: typeof import('naive-ui')['NInputNumber']
NLayout: typeof import('naive-ui')['NLayout']
NLayoutSider: typeof import('naive-ui')['NLayoutSider']
NMenu: typeof import('naive-ui')['NMenu']
NScrollbar: typeof import('naive-ui')['NScrollbar']
NSlider: typeof import('naive-ui')['NSlider']
NSwitch: typeof import('naive-ui')['NSwitch']
NumeronymGenerator: typeof import('./src/tools/numeronym-generator/numeronym-generator.vue')['default']
OtpCodeGeneratorAndValidator: typeof import('./src/tools/otp-code-generator-and-validator/otp-code-generator-and-validator.vue')['default']
PasswordStrengthAnalyser: typeof import('./src/tools/password-strength-analyser/password-strength-analyser.vue')['default']
@ -161,6 +154,7 @@ declare module '@vue/runtime-core' {
RsaKeyPairGenerator: typeof import('./src/tools/rsa-key-pair-generator/rsa-key-pair-generator.vue')['default']
SafelinkDecoder: typeof import('./src/tools/safelink-decoder/safelink-decoder.vue')['default']
SlugifyString: typeof import('./src/tools/slugify-string/slugify-string.vue')['default']
SmartRawConverter: typeof import('./src/tools/smart-raw-converter/smart-raw-converter.vue')['default']
SpanCopyable: typeof import('./src/components/SpanCopyable.vue')['default']
SqlPrettify: typeof import('./src/tools/sql-prettify/sql-prettify.vue')['default']
StringObfuscator: typeof import('./src/tools/string-obfuscator/string-obfuscator.vue')['default']

View file

@ -2,6 +2,7 @@ import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as emailNormalizer } from './email-normalizer';
import { tool as smartRawConverter } from './smart-raw-converter';
import { tool as asciiTextDrawer } from './ascii-text-drawer';
@ -112,6 +113,7 @@ export const toolsByCategory: ToolCategory[] = [
tomlToYaml,
xmlToJson,
jsonToXml,
smartRawConverter,
],
},
{

View file

@ -0,0 +1,12 @@
import { Disc } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'SMART Raw Converter',
path: '/smart-raw-converter',
description: 'Convert SMART Raw values to human readable',
keywords: ['smart', 'raw', 'converter'],
component: () => import('./smart-raw-converter.vue'),
icon: Disc,
createdAt: new Date('2024-07-14'),
});

View file

@ -0,0 +1,13 @@
import { describe, expect, it } from 'vitest';
import { getSmartValue } from './smart-raw-converter.service';
describe('smart-raw-converter', () => {
describe('getSmartValue', () => {
it('to return correct values', () => {
expect(getSmartValue(8590065666)).to.deep.eq({
errors: 2,
operations: 131074,
});
});
});
});

View file

@ -0,0 +1,14 @@
export function getSmartValue(raw: number) {
const n = raw.toString(2);
let bin = '';
for (let i = 0; i < 64 - n.length; ++i) {
bin += '0';
}
bin += n;
const lo = Number.parseInt(bin.slice(0, 32), 2);
const hi = Number.parseInt(bin.slice(32), 2);
return {
errors: lo,
operations: hi,
};
}

View file

@ -0,0 +1,44 @@
<script setup lang="ts">
import { getSmartValue } from './smart-raw-converter.service';
import { useValidation } from '@/composable/validation';
const inputRegex = /^(?:0x(?<hex>[a-f\d]+)|(?<dec>\d+))$/i;
const rawValue = ref('0xFE45E3');
const rawValueValidation = useValidation({
source: rawValue,
rules: [
{
validator: (v) => {
return inputRegex.test(v?.trim());
},
message: 'Smart Raw Value must be decimal or "0x" hexadecimal.',
},
],
});
const smartDecodedValue = computed(() => {
if (!rawValueValidation.isValid) {
return null;
}
const inputMatch = rawValue.value.match(inputRegex);
const rawValueInt = inputMatch?.groups?.hex
? Number.parseInt(inputMatch?.groups?.hex, 16)
: Number.parseInt(inputMatch?.groups?.dec || '0', 10);
return getSmartValue(rawValueInt);
});
</script>
<template>
<div style="max-width: 600px;">
<c-input-text
v-model:value="rawValue"
label="Smart Raw Value"
placeholder="Put your Smart Raw Value (decimal or '0x' hexa)"
:validation="rawValueValidation"
mb-2
/>
<c-card v-if="smartDecodedValue" title="Decoded">
<strong>{{ smartDecodedValue.errors }}</strong> in {{ smartDecodedValue.operations }} operations
</c-card>
</div>
</template>