mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-16 12:12:56 -06:00
118 lines
2.6 KiB
Vue
118 lines
2.6 KiB
Vue
<template>
|
|
<v-card variant="outlined" :loading="loading">
|
|
<v-card-title class="d-flex align-center">
|
|
<v-icon start>mdi-account-question</v-icon>
|
|
Tem Whatsapp?
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
size="small"
|
|
icon
|
|
:disabled="loading"
|
|
variant="tonal"
|
|
@click="expanded = !expanded"
|
|
:style="{ transform: expanded ? 'rotate(180deg)' : '' }"
|
|
>
|
|
<v-icon>mdi-chevron-down</v-icon>
|
|
</v-btn>
|
|
</v-card-title>
|
|
<v-card-text v-if="expanded">
|
|
<v-alert v-if="error" type="error" class="mb-3">
|
|
{{ error }}
|
|
</v-alert>
|
|
|
|
<v-text-field
|
|
v-model="phone"
|
|
label="Número"
|
|
outlined
|
|
clearable
|
|
variant="outlined"
|
|
density="compact"
|
|
hide-details="auto"
|
|
class="mb-3"
|
|
hint="DDI + DDD + Número"
|
|
/>
|
|
|
|
<v-alert v-if="response" :type="response.exists ? 'success' : 'error'">
|
|
{{
|
|
response.exists ? "Whatsapp encontrado" : "Whatsapp não encontrado"
|
|
}}
|
|
|
|
<v-chip v-if="response.exists" text-color="white" class="ml-2">
|
|
<b>{{ (response.jid || "").split("@")[0] }}</b>
|
|
</v-chip>
|
|
</v-alert>
|
|
</v-card-text>
|
|
<v-card-actions v-if="expanded">
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
color="primary"
|
|
:disabled="loading || !phone"
|
|
:loading="loading"
|
|
@click="verifyPhone"
|
|
>
|
|
Consultar
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
import instanceController from "@/services/instanceController";
|
|
|
|
export default {
|
|
name: "HasWhatsapp",
|
|
props: {
|
|
instance: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data: () => ({
|
|
expanded: false,
|
|
loading: false,
|
|
error: false,
|
|
response: false,
|
|
phone: "",
|
|
}),
|
|
|
|
methods: {
|
|
formatPhone(phone) {
|
|
return phone.replace(/[^0-9]/g, "");
|
|
},
|
|
async verifyPhone() {
|
|
try {
|
|
this.loading = true;
|
|
this.error = false;
|
|
this.response = false;
|
|
|
|
const phone = this.formatPhone(this.phone);
|
|
if (phone.length < 10) throw new Error("Número inválido");
|
|
|
|
const response = await instanceController.chat.hasWhatsapp(
|
|
this.instance.instance.instanceName,
|
|
[phone]
|
|
);
|
|
|
|
this.response = response[0]
|
|
} catch (err) {
|
|
this.error = err.message;
|
|
} finally {
|
|
this.loading = false;
|
|
}
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
expanded: {
|
|
handler() {
|
|
if (this.expanded) {
|
|
this.phone = "";
|
|
this.error = false;
|
|
this.response = false;
|
|
}
|
|
},
|
|
},
|
|
},
|
|
};
|
|
</script>
|