Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(new tool): Smart Raw Error Converter #1322

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ 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']
NCheckbox: typeof import('naive-ui')['NCheckbox']
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
NDivider: typeof import('naive-ui')['NDivider']
Expand All @@ -141,8 +140,6 @@ declare module '@vue/runtime-core' {
NLayout: typeof import('naive-ui')['NLayout']
NLayoutSider: typeof import('naive-ui')['NLayoutSider']
NMenu: typeof import('naive-ui')['NMenu']
NSpace: typeof import('naive-ui')['NSpace']
NTable: typeof import('naive-ui')['NTable']
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']
Expand All @@ -162,6 +159,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']
Expand Down
2 changes: 2 additions & 0 deletions src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down Expand Up @@ -115,6 +116,7 @@ export const toolsByCategory: ToolCategory[] = [
tomlToYaml,
xmlToJson,
jsonToXml,
smartRawConverter,
markdownToHtml,
],
},
Expand Down
12 changes: 12 additions & 0 deletions src/tools/smart-raw-converter/index.ts
Original file line number Diff line number Diff line change
@@ -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'),
});
13 changes: 13 additions & 0 deletions src/tools/smart-raw-converter/smart-raw-converter.service.test.ts
Original file line number Diff line number Diff line change
@@ -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,
});
});
});
});
14 changes: 14 additions & 0 deletions src/tools/smart-raw-converter/smart-raw-converter.service.ts
Original file line number Diff line number Diff line change
@@ -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,
};
}
44 changes: 44 additions & 0 deletions src/tools/smart-raw-converter/smart-raw-converter.vue
Original file line number Diff line number Diff line change
@@ -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>
Loading