2023-04-08 21:10:00 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2023-05-14 21:26:18 +02:00
|
|
|
<c-input-text v-model:value="rawIpAddress" label="The ipv4 address:" placeholder="The ipv4 address..." readonly />
|
2023-04-08 21:10:00 +02:00
|
|
|
|
2023-05-14 21:26:18 +02:00
|
|
|
<n-divider />
|
2023-04-08 21:10:00 +02:00
|
|
|
|
2023-05-14 21:26:18 +02:00
|
|
|
<input-copyable
|
2023-04-08 21:10:00 +02:00
|
|
|
v-for="{ label, value } of convertedSections"
|
|
|
|
:key="label"
|
|
|
|
:label="label"
|
2023-05-14 21:26:18 +02:00
|
|
|
label-position="left"
|
|
|
|
label-width="100px"
|
|
|
|
label-align="right"
|
|
|
|
mb-2
|
|
|
|
:value="validationAttrs.validationStatus === 'error' ? '' : value"
|
|
|
|
placeholder="Set a correct ipv4 address"
|
|
|
|
/>
|
2023-04-08 21:10:00 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { useValidation } from '@/composable/validation';
|
|
|
|
import { convertBase } from '../integer-base-converter/integer-base-converter.model';
|
|
|
|
import { ipv4ToInt, ipv4ToIpv6, isValidIpv4 } from './ipv4-address-converter.service';
|
|
|
|
|
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 });
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
2023-05-14 21:26:18 +02:00
|
|
|
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:' }),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
const { attrs: validationAttrs } = useValidation({
|
|
|
|
source: rawIpAddress,
|
|
|
|
rules: [{ message: 'Invalid ipv4 address', validator: (ip) => isValidIpv4({ ip }) }],
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped></style>
|