it-tools/src/tools/ipv4-address-converter/ipv4-address-converter.vue

87 lines
2.4 KiB
Vue
Raw Normal View History

2023-04-08 21:10:00 +02:00
<script setup lang="ts">
import { convertBase } from '../integer-base-converter/integer-base-converter.model';
import { getIPClass } from '../ipv4-subnet-calculator/ipv4-subnet-calculator.models';
2023-04-08 21:10:00 +02:00
import { ipv4ToInt, ipv4ToIpv6, isValidIpv4 } from './ipv4-address-converter.service';
import { useValidation } from '@/composable/validation';
import Network from '@/libs/ip_calculator/network';
2023-04-08 21:10:00 +02:00
2023-04-08 21:10:00 +02:00
const rawIpAddress = useStorage('ipv4-converter:ip', '192.168.1.1');
2023-04-08 21:10:00 +02:00
const convertedSections = computed(() => {
const ipInDecimal = ipv4ToInt({ ip: rawIpAddress.value });
const networkInfo = new Network(rawIpAddress.value || '', 32);
2023-04-08 21:10:00 +02:00
return [
{
label: 'Decimal: ',
2023-04-08 21:10:00 +02:00
value: String(ipInDecimal),
},
{
label: 'Hexadecimal: ',
value: convertBase({ fromBase: 10, toBase: 16, value: String(ipInDecimal) }).toUpperCase(),
},
{
label: 'Binary: ',
value: convertBase({ fromBase: 10, toBase: 2, value: String(ipInDecimal) }),
},
{
label: 'Ipv6: ',
value: ipv4ToIpv6({ ip: rawIpAddress.value }),
},
{
label: 'Ipv6 (short): ',
value: ipv4ToIpv6({ ip: rawIpAddress.value, prefix: '::ffff:' }),
},
{
label: 'Ipv6 (decimal): ',
value: networkInfo.toIPv4MappedAddressDecimal()?.toString() || '',
},
{
label: '6to4 prefix',
value: networkInfo.to6to4Prefix()?.toString() || '',
},
{
label: 'CIDR notation',
value: `${rawIpAddress.value}/32`,
},
{
label: 'ARPA',
value: networkInfo.toARPA()?.toString() || '',
},
{
label: 'IP class',
value: getIPClass({ ip: rawIpAddress.value }),
},
{
label: 'Type',
value: networkInfo.printInfo()?.toString() || '',
},
2023-04-08 21:10:00 +02:00
];
});
const { attrs: validationAttrs } = useValidation({
source: rawIpAddress,
rules: [{ message: 'Invalid ipv4 address', validator: ip => isValidIpv4({ ip }) }],
2023-04-08 21:10:00 +02:00
});
</script>
<template>
<div>
<c-input-text v-model:value="rawIpAddress" label="The ipv4 address:" placeholder="The ipv4 address..." />
<n-divider />
<input-copyable
v-for="{ label, value } of convertedSections"
:key="label"
:label="label"
label-position="left"
label-width="100px"
label-align="right"
mb-2
:value="validationAttrs.validationStatus === 'error' ? '' : value"
placeholder="Set a correct ipv4 address"
/>
</div>
</template>