Files
cool-domain-web/src/components/PageInput.vue
T
klemek e956731642
Lint / TypeScript (push) Successful in 4m31s
Lint / Oxlint (push) Successful in 4m31s
Lint / ESLint (push) Successful in 4m32s
Deploy / Build (push) Successful in 5m16s
Deploy / Deploy to Stapler (push) Successful in 5m24s
feat: save ignored tlds in cookies
2026-06-26 14:47:20 +02:00

75 lines
2.1 KiB
Vue

<script setup lang="ts">
import { defineAsyncComponent, ref } from "vue";
import type { DomainFactory } from "@/lib/factory";
const CoolDomain = defineAsyncComponent(() => import("./CoolDomain.vue"));
import type { Domain } from "@/types";
import { isDomainAvailable } from "@/lib/whois";
const props = defineProps<{ factory: DomainFactory }>();
const input = ref<string>("");
const domains = ref<Domain[]>([]);
const noDomain = ref<boolean>(false);
function start() {
noDomain.value = false;
domains.value.splice(0, domains.value.length);
if (input.value.length) {
newDomain();
}
}
function newDomain() {
const startInput = input.value;
props.factory
.allFromWord(input.value)
.then((newDomains: Domain[]) => {
if (input.value === startInput) {
domains.value.push(...newDomains);
domains.value.forEach((domain) => void isDomainAvailable(domain));
}
})
.catch(() => {
if (input.value === startInput && !domains.value.length) {
noDomain.value = true;
}
});
}
</script>
<template>
<div>
<div class="pb-6">
<input
v-model.trim="input"
type="text"
:placeholder="$t('page_input.placeholder')"
class="input input-xl w-full"
@keyup.enter="start"
/>
</div>
<button class="btn btn-primary" :disabled="!input" @click="start">
{{ $t("button.generate") }}
</button>
<p v-for="(domain, i) in domains" :key="`domain-${i}`" class="pt-3">
<CoolDomain
:id="domain.name + domain.searching + domain.available"
:domain="domain"
></CoolDomain>
<span v-if="domain.searching"
>&nbsp;<span class="loading loading-dots loading-xs"></span
></span>
<span v-else-if="domain.available"
>&nbsp;{{ $t("seems") }}
<a
:href="`https://tld-list.com/${$i18n.locale}/tld/${domain.tld}`"
target="_blank"
class="underline"
>{{ $t("available") }}</a
></span
><span v-else>&nbsp;{{ $t("is_unavailable") }}</span>
</p>
<p v-if="noDomain" class="pt-6">{{ $t("page_input.not_found") }}.</p>
</div>
</template>