aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue')
-rw-r--r--src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue125
1 files changed, 125 insertions, 0 deletions
diff --git a/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue b/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue
new file mode 100644
index 0000000..7b488c9
--- /dev/null
+++ b/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue
@@ -0,0 +1,125 @@
+<template>
+ <div>
+ <n-form-item label="An IPv4 address with or without mask" v-bind="validationAttrs">
+ <n-input v-model:value="ip" />
+ </n-form-item>
+
+ <div v-if="networkInfo">
+ <n-table>
+ <tbody>
+ <tr v-for="{ getValue, label, undefinedFallback } in sections" :key="label">
+ <td>
+ <n-text strong>{{ label }}</n-text>
+ </td>
+ <td>
+ <copyable-ip-like v-if="getValue(networkInfo)" :ip="getValue(networkInfo)"></copyable-ip-like>
+ <n-text v-else depth="3">{{ undefinedFallback }}</n-text>
+ </td>
+ </tr>
+ </tbody>
+ </n-table>
+
+ <n-space style="margin-top: 14px" justify="space-between">
+ <n-button tertiary @click="switchToBlock({ count: -1 })">
+ <n-icon :component="ArrowLeft" />
+ Previous block
+ </n-button>
+ <n-button tertiary @click="switchToBlock({ count: 1 })">
+ Next block
+ <n-icon :component="ArrowRight" />
+ </n-button>
+ </n-space>
+ </div>
+ </div>
+</template>
+
+<script setup lang="ts">
+import { computed } from 'vue';
+import { Netmask } from 'netmask';
+import { withDefaultOnError } from '@/utils/defaults';
+import { useValidation } from '@/composable/validation';
+import { isNotThrowing } from '@/utils/boolean';
+import { useStorage } from '@vueuse/core';
+import { ArrowLeft, ArrowRight } from '@vicons/tabler';
+import { getIPClass } from './ipv4-subnet-calculator.models';
+import CopyableIpLike from './copyable-ip-like.vue';
+
+const ip = useStorage('ipv4-subnet-calculator:ip', '192.168.0.1/24');
+
+const getNetworkInfo = (address: string) => new Netmask(address.trim());
+
+const networkInfo = computed(() => withDefaultOnError(() => getNetworkInfo(ip.value), undefined));
+
+const { attrs: validationAttrs } = useValidation({
+ source: ip,
+ rules: [
+ {
+ message: 'We cannot parse this address, check the format',
+ validator: (value) => isNotThrowing(() => getNetworkInfo(value.trim())),
+ },
+ ],
+});
+
+const sections: {
+ label: string;
+ getValue: (blocks: Netmask) => string | undefined;
+ undefinedFallback?: string;
+}[] = [
+ {
+ label: 'Netmask',
+ getValue: (block) => block.toString(),
+ },
+ {
+ label: 'Network address',
+ getValue: ({ base }) => base,
+ },
+ {
+ label: 'Network mask',
+ getValue: ({ mask }) => mask,
+ },
+ {
+ label: 'Network mask in binary',
+ getValue: ({ bitmask }) => ('1'.repeat(bitmask) + '0'.repeat(32 - bitmask)).match(/.{8}/g)?.join('.') ?? '',
+ },
+ {
+ label: 'CIDR notation',
+ getValue: ({ bitmask }) => `/${bitmask}`,
+ },
+ {
+ label: 'Wildcard mask',
+ getValue: ({ hostmask }) => hostmask,
+ },
+ {
+ label: 'Network size',
+ getValue: ({ size }) => String(size),
+ },
+ {
+ label: 'First address',
+ getValue: ({ first }) => first,
+ },
+ {
+ label: 'Last address',
+ getValue: ({ last }) => last,
+ },
+ {
+ label: 'Broadcast address',
+ getValue: ({ broadcast }) => broadcast,
+ undefinedFallback: 'No broadcast address with this mask',
+ },
+ {
+ label: 'IP class',
+ getValue: ({ base: ip }) => getIPClass({ ip }),
+ undefinedFallback: 'Unknown class type',
+ },
+];
+
+function switchToBlock({ count = 1 }: { count?: number }) {
+ const next = networkInfo.value?.next(count);
+
+ if (next) {
+ ip.value = next.toString();
+ }
+}
+</script>
+
+<style lang="less" scoped></style>