mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 15:14:49 -06:00
290 lines
7.7 KiB
Vue
290 lines
7.7 KiB
Vue
<template>
|
|
<v-card variant="outlined" :loading="loading">
|
|
<v-card-title
|
|
class="d-flex align-center"
|
|
@click="toggleExpanded"
|
|
style="cursor: pointer"
|
|
v-ripple
|
|
>
|
|
<v-icon start>mdi-chat</v-icon>
|
|
Chatwoot
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
size="small"
|
|
icon
|
|
:disabled="loading"
|
|
variant="tonal"
|
|
@click.stop="toggleExpanded"
|
|
: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-form v-model="valid">
|
|
<v-text-field
|
|
v-model="chatwootData.url"
|
|
label="URL"
|
|
:disabled="loading"
|
|
outlined
|
|
dense
|
|
hide-details="auto"
|
|
class="mb-3"
|
|
:rules="[
|
|
(url) => {
|
|
if (!url) return 'URL é obrigatório';
|
|
if (!url.startsWith('http'))
|
|
return 'URL deve começar com http ou https';
|
|
return true;
|
|
},
|
|
]"
|
|
/>
|
|
|
|
<div class="d-flex gap-4 flex-wrap">
|
|
<div class="flex-grow-1">
|
|
<v-text-field
|
|
v-model="chatwootData.account_id"
|
|
label="ID da conta"
|
|
:disabled="loading"
|
|
outlined
|
|
dense
|
|
hide-details="auto"
|
|
class="mb-3"
|
|
:rules="[
|
|
(account_id) => {
|
|
if (!account_id) return 'ID da conta é obrigatório';
|
|
return true;
|
|
},
|
|
]"
|
|
/>
|
|
</div>
|
|
<div class="flex-grow-1">
|
|
<v-text-field
|
|
v-model="chatwootData.token"
|
|
label="Token da conta"
|
|
:disabled="loading"
|
|
outlined
|
|
dense
|
|
hide-details="auto"
|
|
class="mb-3"
|
|
:rules="[
|
|
(token) => {
|
|
if (!token) return 'Token é obrigatório';
|
|
return true;
|
|
},
|
|
]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex gap-x-4 flex-wrap">
|
|
<div>
|
|
<v-checkbox
|
|
v-model="chatwootData.sign_msg"
|
|
:disabled="loading"
|
|
hide-details
|
|
class="mb-3"
|
|
density="compact"
|
|
>
|
|
<template v-slot:label>
|
|
<span>Assinar mensagens</span>
|
|
<HelpTooltip>
|
|
Adiciona o nome do atendente na primeira linha da mensagem
|
|
</HelpTooltip>
|
|
</template>
|
|
</v-checkbox>
|
|
</div>
|
|
<div>
|
|
<v-checkbox
|
|
v-model="chatwootData.reopen_conversation"
|
|
label="Reabrir conversa"
|
|
:disabled="loading"
|
|
hide-details
|
|
class="mb-3"
|
|
density="compact"
|
|
>
|
|
<template v-slot:label>
|
|
<span>Reabrir conversa</span>
|
|
<HelpTooltip>
|
|
Reabre a conversa do cliente quando ele inicia uma nova
|
|
conversa em vez de criar uma nova conversa
|
|
</HelpTooltip>
|
|
</template>
|
|
</v-checkbox>
|
|
</div>
|
|
|
|
<div>
|
|
<v-checkbox
|
|
v-model="chatwootData.conversation_pending"
|
|
label="Conversa pendente"
|
|
:disabled="loading"
|
|
hide-details
|
|
class="mb-3"
|
|
density="compact"
|
|
>
|
|
<template v-slot:label>
|
|
<span>Iniciar conversas como pendente</span>
|
|
<HelpTooltip>
|
|
Inicia a conversa como pendente ao invés de aberta
|
|
</HelpTooltip>
|
|
</template>
|
|
</v-checkbox>
|
|
</div>
|
|
<div v-if="chatwootData.auto_create !== undefined">
|
|
<v-checkbox
|
|
v-model="chatwootData.auto_create"
|
|
label="Conversa pendente"
|
|
:disabled="loading"
|
|
hide-details
|
|
class="mb-3"
|
|
density="compact"
|
|
>
|
|
<template v-slot:label>
|
|
<span>Criar Caixa de Entrada</span>
|
|
<HelpTooltip>
|
|
Cria automaticamente a caixa de entrada no Chatwoot
|
|
</HelpTooltip>
|
|
</template>
|
|
</v-checkbox>
|
|
</div>
|
|
</div>
|
|
</v-form>
|
|
</v-card-text>
|
|
<v-card-actions v-if="expanded" class="d-flex flex-wrap gap-x-1">
|
|
<v-switch
|
|
v-model="chatwootData.enabled"
|
|
label="Habilitado"
|
|
color="primary"
|
|
:disabled="loading"
|
|
hide-details
|
|
></v-switch>
|
|
<v-btn variant="text" @click="chatwootConfig" size="small">
|
|
Como configurar o chatwoot?
|
|
</v-btn>
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
:disabled="
|
|
!valid ||
|
|
JSON.stringify(chatwootData) === JSON.stringify(defaultChatwootData)
|
|
"
|
|
:loading="loading"
|
|
color="primary"
|
|
@click="saveChatwoot"
|
|
variant="tonal"
|
|
>
|
|
Salvar
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
<chatwoot-config :instance="instance" ref="chatwootConfig" />
|
|
</template>
|
|
|
|
<script>
|
|
import ChatwootConfig from "@/components/modal/ChatwootConfig.vue";
|
|
import instanceController from "@/services/instanceController";
|
|
|
|
const defaultObj = () => ({
|
|
enabled: false,
|
|
url: "",
|
|
account_id: "",
|
|
token: "",
|
|
sign_msg: true,
|
|
reopen_conversation: true,
|
|
conversation_pending: false,
|
|
auto_create: undefined,
|
|
});
|
|
|
|
export default {
|
|
name: "InstanceChatwoot",
|
|
props: {
|
|
instance: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data: () => ({
|
|
expanded: false,
|
|
loading: false,
|
|
error: false,
|
|
valid: false,
|
|
chatwootData: {
|
|
enabled: false,
|
|
url: "",
|
|
account_id: "",
|
|
token: "",
|
|
sign_msg: true,
|
|
reopen_conversation: true,
|
|
conversation_pending: false,
|
|
},
|
|
defaultChatwootData: {
|
|
enabled: false,
|
|
url: "",
|
|
account_id: "",
|
|
token: "",
|
|
sign_msg: true,
|
|
reopen_conversation: true,
|
|
conversation_pending: false,
|
|
},
|
|
}),
|
|
methods: {
|
|
toggleExpanded() {
|
|
if (this.loading) return;
|
|
this.expanded = !this.expanded;
|
|
},
|
|
chatwootConfig() {
|
|
this.$refs.chatwootConfig.open();
|
|
},
|
|
async saveChatwoot() {
|
|
try {
|
|
this.loading = true;
|
|
this.error = false;
|
|
await instanceController.chatwoot.set(
|
|
this.instance.instance.instanceName,
|
|
{
|
|
...this.chatwootData,
|
|
url: this.chatwootData.url.trim().replace(/\/$/, ""),
|
|
}
|
|
);
|
|
this.defaultChatwootData = Object.assign({}, this.chatwootData);
|
|
} catch (e) {
|
|
this.error = e.message?.message || e.message || e;
|
|
} finally {
|
|
this.loading = false;
|
|
}
|
|
},
|
|
async loadChatwoot() {
|
|
try {
|
|
this.loading = true;
|
|
this.error = false;
|
|
const chatwootData = await instanceController.chatwoot.get(
|
|
this.instance.instance.instanceName
|
|
);
|
|
|
|
const validData = chatwootData._doc || chatwootData;
|
|
|
|
this.chatwootData = Object.assign(defaultObj(), validData || {});
|
|
this.defaultChatwootData = Object.assign(
|
|
defaultObj(),
|
|
validData || {}
|
|
);
|
|
} catch (e) {
|
|
this.error = e.message?.message || e.message || e;
|
|
} finally {
|
|
this.loading = false;
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
expanded(expanded) {
|
|
if (expanded) this.loadChatwoot();
|
|
},
|
|
},
|
|
components: { ChatwootConfig },
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|